From: Martin Mares Date: Thu, 27 Jan 2022 13:44:46 +0000 (+0100) Subject: Released as version 1.3 X-Git-Tag: v1.3 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=a24e69d6cbcbb3921ec39bc347515cd8cd6349d8;p=suidgw.git Released as version 1.3 --- diff --git a/Makefile b/Makefile index 8aded27..77d6c45 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,4 @@ +VERSION=1.3 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -std=gnu99 DESTDIR=/ @@ -16,3 +17,12 @@ install: all clean: rm -f suidgw *.o + +release: + git tag v$(VERSION) + git push --tags + git archive --format=tar --prefix=suidgw-$(VERSION)/ HEAD | gzip >suidgw-$(VERSION).tar.gz + rsync suidgw-$(VERSION).tar.gz jw:/home/ftp/pub/mj/linux/ + ssh jw 'cd web && bin/release-prog suidgw $(VERSION)' + +.PHONY: all test-setup install release diff --git a/NEWS b/NEWS new file mode 120000 index 0000000..d526672 --- /dev/null +++ b/NEWS @@ -0,0 +1 @@ +debian/changelog \ No newline at end of file diff --git a/README b/README index 64cccff..b962510 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ This package contains the suidgw utility -Copyright (c) 2013 Martin Mares +Copyright (c) 2013-2022 Martin Mares All files in this package can be freely distributed and used according to the terms of the GNU General Public License, either version 2 or diff --git a/debian/changelog b/debian/changelog index 2108d1b..d316e5e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,20 @@ +suidgw (1.3) stable; urgency=medium + + * Avoid crashing when executed with an empty argument list. + (The crash seems to have no impact on security.) + + * Always reset umask to 0077. + + * Debian package no longer uses dpkg-statoverride to assign setuid + rights to /usr/bin/suidgw. Please note that if you used a previous + version of the package, you need to clean up the statoverride record + manually. + + -- Martin Mares Thu, 27 Jan 2022 14:44:29 +0100 + suidgw (1.2) unstable; urgency=low * Automatic release. Please see Git commit log at git://git.ucw.cz/suidgw.git - for history. + for earlier history. -- Martin Mares Fri, 15 Feb 2013 11:29:49 +0100