diff --git a/debian/changelog b/debian/changelog index 951adf5..3ff11a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,19 @@ -uronode (2.15-1) UNRELEASED; urgency=medium +uronode (2.15-2) unstable; urgency=medium + + * Add zlib to control and patch in correct ifdef to configure + * Add netrom MOTD patch + * Standards bump to 4.6.2.0 + + -- Dave Hibberd Tue, 08 Aug 2023 21:48:30 +0100 + +uronode (2.15-1) unstable; urgency=medium * New upstream version 2.15 * Standards bump to 4.6.0.1 * Multiple definition patch removed - Included upstream - -- Dave Hibberd Sat, 05 Feb 2022 11:58:10 +0000 + -- Dave Hibberd Sat, 05 Nov 2022 17:01:31 +0100 uronode (2.13-2) unstable; urgency=medium diff --git a/debian/control b/debian/control index 22956e6..2a2bc9b 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Debian Hamradio Maintainers Uploaders: Dave Hibberd Build-Depends: debhelper-compat (= 13), libax25-dev, zlib1g-dev -Standards-Version: 4.6.0.1 +Standards-Version: 4.6.2.0 Vcs-Browser: https://salsa.debian.org/debian-hamradio-team/uronode Vcs-Git: https://salsa.debian.org/debian-hamradio-team/uronode.git Homepage: https://uronode.sourceforge.net/ diff --git a/debian/patches/netrom-motd.patch b/debian/patches/netrom-motd.patch index a740fc6..b4da15c 100644 --- a/debian/patches/netrom-motd.patch +++ b/debian/patches/netrom-motd.patch @@ -1,3 +1,7 @@ +Description: Add in motd functionality for Netrom +Author: Dave Hibberd +Last-Update: 2023-08-07 + --- a/node.c +++ b/node.c @@ -301,6 +301,11 @@ diff --git a/debian/patches/zlib-ifdef.patch b/debian/patches/zlib-ifdef.patch index 003b860..0ccde6d 100644 --- a/debian/patches/zlib-ifdef.patch +++ b/debian/patches/zlib-ifdef.patch @@ -1,6 +1,10 @@ +Description: Fix zlib ifdef to ensure it builds right +Author: Dave Hibberd +Last-Update: 2023-08-07 + --- a/configure +++ b/configure -@@ -74,14 +74,15 @@ +@@ -74,14 +74,14 @@ _sleep 1 echo -n "Checking for the existence of the Zlib headers... " ZLIB="" @@ -10,13 +14,10 @@ do if [ -f $zlibdir/zlib.h ] then -- echo $zlibdir/zlib.h -- ZLIB="-lz" + echo $zlibdir/zlib.h + ZLIB="-lz" - HAVEZLIB="#define HAVE_ZLIB 1" -+ echo "skipping zlib until it works right..." -+ # echo $zlibdir/zlib.h -+ # ZLIB="-lz" -+ # HAVEZLIB="#define HAVE_ZLIB_H 1" ++ HAVEZLIB="#define HAVE_ZLIB_H 1" fi done if [ -z "$ZLIB" ]