Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
VERSION=$(date '+%y.%m.0.0')
dch --distribution `lsb_release -cs` -b -v ${VERSION} "Release ${VERSION}"
dpkg-buildpackage -us -uc
dpkg-buildpackage -us -uc -d
mv ../open-eid* .
- name: Lintian
run: lintian *.deb
Expand Down
5 changes: 3 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ Section: metapackages
Priority: optional
Maintainer: ria <info@ria.ee>
Build-Depends:
debhelper-compat (= 12)
Standards-Version: 4.5.1
debhelper-compat (= 13)
Standards-Version: 4.6.1
Rules-Requires-Root: no
Homepage: https://www.ria.ee

Package: open-eid
Expand Down
18 changes: 4 additions & 14 deletions install-open-eid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ test_root
test_sudo

# version name LTS supported until
# 20.04 focal LTS 2025-04
# 22.04 jammy LTS 2027-04
# 24.04 noble LTS 2029-04
# 24.10 oracular - 2025-07
Expand All @@ -135,11 +134,6 @@ case $distro in
# Debian lacks https support for apt, by default
sudo apt install apt-transport-https
case "$codename" in
bullseye)
make_warn "Debian $codename is not officially supported"
make_warn "Installing from ubuntu-focal repository"
add_repository focal
;;
bookworm)
make_warn "Debian $codename is not officially supported"
make_warn "Installing from ubuntu-jammy repository"
Expand All @@ -156,10 +150,10 @@ case $distro in
*) ;;
esac
case $codename in
utopic|vivid|wily|trusty|artful|cosmic|disco|xenial|eoan|groovy|hirsute|impish|bionic|zorin|kinetic|lunar|mantic)
utopic|vivid|wily|trusty|artful|cosmic|disco|xenial|eoan|groovy|hirsute|impish|bionic|zorin|kinetic|lunar|mantic|focal)
make_fail "Ubuntu $codename is not officially supported"
;;
focal|jammy|noble|oracular)
jammy|noble|oracular)
add_repository $codename
;;
*)
Expand All @@ -179,10 +173,6 @@ case $distro in
make_warn "Linux Mint 21 is not officially supported"
add_repository jammy
;;
20*)
make_warn "Linux Mint 20 is not officially supported"
add_repository focal
;;
*)
make_fail "Linux Mint $release is not officially supported"
;;
Expand All @@ -201,10 +191,10 @@ case $distro in
;;
pop)
case $codename in
artful|cosmic|disco|eoan|bionic)
artful|cosmic|disco|eoan|bionic|focal)
make_fail "Pop!_OS $codename is not officially supported"
;;
focal|jammy)
jammy)
make_warn "Pop!_OS $codename is not officially supported"
add_repository $codename
;;
Expand Down
Loading