Skip to content

Commit

Permalink
Attempt to account for devel/testing codename logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
erenfro committed Jun 26, 2024
1 parent bdfa2d8 commit 9b25c47
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/insync-deb/.SRCINFO
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ replaces = insync
maintainer = Eric Renfro <[email protected]>
repology = project: insync
sha256sums = c7ec225d000932a3b7b093b9b0d3c1c69c2de2c35ac680d9a4ca95d1ca2af185
sha256sums_noble = c9a9e261648d36b2c049f74317fff99692c39b7ca6bf8546fdf32b95dc80580a
sha256sums_bookworm = c7ec225d000932a3b7b093b9b0d3c1c69c2de2c35ac680d9a4ca95d1ca2af185
7 changes: 7 additions & 0 deletions packages/insync-deb/insync-deb.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ depends=("procps")
arch=('amd64')
codename="bullseye"
codename="$(cut -d':' -f2 <<< "${DISTRO}")"
case "${codename}" in
sid | testing) codename="trixie" ;;
devel | oracular) codename="noble" ;;
*) ;;
esac
sha256sums=("c7ec225d000932a3b7b093b9b0d3c1c69c2de2c35ac680d9a4ca95d1ca2af185")
sha256sums_noble=("c9a9e261648d36b2c049f74317fff99692c39b7ca6bf8546fdf32b95dc80580a")
sha256sums_bookworm=("c7ec225d000932a3b7b093b9b0d3c1c69c2de2c35ac680d9a4ca95d1ca2af185")
source=("https://cdn.insynchq.com/builds/linux/${pkgver}/insync_${pkgver}-${codename}_amd64.deb")
replaces=("insync")
pkgdesc="Manage your Google Drive, OneDrive, and Dropbox files straight from your Desktop"
Expand Down

0 comments on commit 9b25c47

Please sign in to comment.