Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions 01-main/packages/fsearch
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
DEFVER=2
CODENAMES_SUPPORTED="bullseye bookworm jammy noble"
# shellcheck disable=SC2168
local THE_KEY
# shellcheck disable=SC2168
Expand All @@ -9,14 +10,8 @@ case ${UPSTREAM_ID} in
THE_REPO="https://ppa.launchpadcontent.net/christian-boxdoerfer/fsearch-stable/ubuntu ${UPSTREAM_CODENAME} main"
;;
*)
# shellcheck disable=SC2168
local DEBIANVER
case ${UPSTREAM_CODENAME} in
sid|13|trixie) DEBIANVER=Unstable ;;
*) DEBIANVER="${UPSTREAM_RELEASE}" ;;
esac
THE_KEY="https://download.opensuse.org/repositories/home:cboxdoerfer/Debian_${DEBIANVER}/Release.key"
THE_REPO="http://download.opensuse.org/repositories/home:/cboxdoerfer/Debian_${DEBIANVER}/ /"
THE_KEY="https://download.opensuse.org/repositories/home:cboxdoerfer/Debian_${UPSTREAM_RELEASE}/Release.key"
THE_REPO="http://download.opensuse.org/repositories/home:/cboxdoerfer/Debian_${UPSTREAM_RELEASE}/ /"
;;
esac
ASC_KEY_URL="${THE_KEY}"
Expand Down