Skip to content

Commit

Permalink
Update debian packages (#26971)
Browse files Browse the repository at this point in the history
  • Loading branch information
heronhaye committed Jun 4, 2024
1 parent 0c98770 commit 8a112fb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions packaging/linux/deb/package_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@ if [ "$mode" = "production" ] ; then
repo_url="http:https://dist.keybase.io/linux/deb/repo"
elif [ "$mode" = "prerelease" ] ; then
repo_url="http:https://prerelease.keybase.io/deb"
# debian bullseye removed libappindicator1 in favor of libayatana-appindicator1, so allow both.
# "psmisc" provides "killall", which is used in run_keybase and
# post_install.sh.
# lsof used in post_install.sh
# systemd-container provides machinectl, which is used in post_install.sh
# 'libasound2, libnss3, libxss1, libxtst6' is required by the GUI (issue #9872 and #17365)
dependencies="Depends: libappindicator1 | libayatana-appindicator1, fuse, libgconf-2-4, psmisc, lsof, procps, libasound2, libnss3, libxss1, libxtst6, libgtk-3-0"
dependencies="Depends: libayatana-appindicator3-1, fuse, psmisc, lsof, procps, libasound2, libnss3, libxss1, libxtst6, libgtk-3-0"
elif [ "$mode" = "staging" ] ; then
# Note: This doesn't exist yet. But we need to be distinct from the
# production URL, because we're moving to a model where we build a clean repo
Expand Down
2 changes: 1 addition & 1 deletion packaging/linux/smoketest/debian-stable/Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Vagrant.configure("2") do |config|
config.vm.box = "debian/bullseye64"
config.vm.box = "debian/bookworm64"
config.vm.synced_folder "../vagrantcommon/", "/vagrant", type: "rsync"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
Expand Down
2 changes: 1 addition & 1 deletion packaging/linux/smoketest/fedora/Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Vagrant.configure("2") do |config|
config.vm.box = "generic/fedora36"
config.vm.box = "bento/fedora-40"
config.vm.synced_folder "../vagrantcommon/", "/vagrant", type: "rsync"
config.vm.provider "virtualbox" do |vb|
vb.memory = "4096"
Expand Down
2 changes: 1 addition & 1 deletion packaging/linux/test/keybase-arch-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ MAINTAINER Keybase <[email protected]>

RUN pacman -Syy

RUN pacman -S --noconfirm git binutils fuse gconf libxss gtk3 fakeroot lsof
RUN pacman -S --noconfirm git binutils fuse libxss gtk3 fakeroot lsof
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Keybase <[email protected]>
RUN apt-get update

# Install dependencies for keybase
RUN apt-get install -y libappindicator1 fuse libgconf-2-4 psmisc procps lsof
RUN apt-get install -y fuse psmisc procps lsof

# Nice to have
RUN apt-get install -y vim less curl
Expand Down
2 changes: 1 addition & 1 deletion packaging/linux/test/keybase-ubuntu-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Keybase <[email protected]>
RUN apt-get update

# Install dependencies for keybase
RUN apt-get install -y libappindicator1 fuse libgconf-2-4 psmisc procps lsof
RUN apt-get install -y libappindicator1 fuse psmisc procps lsof

# Nice to have
RUN apt-get install -y vim less curl sudo
Expand Down

0 comments on commit 8a112fb

Please sign in to comment.