Skip to content
Open
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
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
debathena-machtype (10.9) unstable; urgency=medium

* Build for Jammy

-- Jonathon Weiss <[email protected]> Fri, 25 Aug 2023 15:43:54 -0400

debathena-machtype (10.8) unstable; urgency=low

* Fix build for bionic, which has a base-files version of 10
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Priority: extra
Maintainer: Debathena Project <[email protected]>
Build-Depends: debhelper,
lsb-release,
python-minimal (>= 2.6~),
python-minimal (>= 2.6~) | python2 (>= 2.6~),
openafs-client (>= 1.4.12+dfsg-3~),
Standards-Version: 3.9.3

Expand Down
7 changes: 5 additions & 2 deletions generate_sysnames.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ def __init__(self, version, **kwargs):
# Update this when a new release comes online
# add "deprecated=True" to distros when we stop building for
# them.
distros = [Debian('10.2ubuntu7', sysver='10.0'), # buster release a year after bionic, so cut-off at eoan
distros = [
Ubuntu('22.04'),
Ubuntu('20.04'),
Debian('10.2ubuntu7', sysver='10.0'), # buster release a year after bionic, so cut-off at eoan
Ubuntu('18.04'),
Ubuntu('17.10', deprecated=True),
Ubuntu('17.04', deprecated=True),
Expand All @@ -135,7 +138,7 @@ def __init__(self, version, **kwargs):
Ubuntu('12.10', deprecated=True),
Ubuntu('12.04'),
Ubuntu('11.10', deprecated=True),
Debian('6.0'),
Debian('6.0', deprecated=True),
Ubuntu('11.04', deprecated=True),
Ubuntu('10.10', deprecated=True),
Ubuntu('10.04'),
Expand Down