]> mj.ucw.cz Git - suidgw.git/commitdiff
Released as version 1.3 v1.3
authorMartin Mares <mj@ucw.cz>
Thu, 27 Jan 2022 13:44:46 +0000 (14:44 +0100)
committerMartin Mares <mj@ucw.cz>
Thu, 27 Jan 2022 13:45:12 +0000 (14:45 +0100)
Makefile
NEWS [new symlink]
README
debian/changelog

index 8aded27ffce1b53767cb4d7136937beaec438921..77d6c4563256d05b57b6259e04bce817d05173db 100644 (file)
--- 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 (symlink)
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 64cccff19a30e75689f51b13814034bf276ed543..b96251000ba7015708cbc9676faa3ce10a5fa358 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@
 
 This package contains the suidgw utility
 
-Copyright (c) 2013 Martin Mares <mj@ucw.cz>
+Copyright (c) 2013-2022 Martin Mares <mj@ucw.cz>
 
 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
index 2108d1b88a86cf50af721a1f027aae9293152f63..d316e5eb2a6c65daac56ad656a93d06deea920bd 100644 (file)
@@ -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 <mj@ucw.cz>  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 <mj@ucw.cz>  Fri, 15 Feb 2013 11:29:49 +0100