]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
build: various changes to release.sh
authorJan Engelhardt <jengelh@medozas.de>
Thu, 3 Jul 2008 18:26:56 +0000 (20:26 +0200)
committerPatrick McHardy <kaber@trash.net>
Thu, 3 Jul 2008 18:26:56 +0000 (20:26 +0200)
- do not remove autogen.sh
- remove COMMIT_NOTES - it does not apply to git anymore
- create SHA1 sums for tarballs and patches

Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
COMMIT_NOTES [deleted file]
release.sh

diff --git a/COMMIT_NOTES b/COMMIT_NOTES
deleted file mode 100644 (file)
index 5b6e6f7..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-A quick list of rules for committing stuff into netfilter svn:
-
-- Always include the Name of the Author/Contributor in the SVN comment
-  like 'fix for foo (Au Thor)'
-
-- make sure that you have set the executable bits on an 'extensions/.*-test'
-  script before adding/committing it to SVN
-
-- If the commit fixes a bugzilla bug, please include '(Closes: #bugnr)' in
-  the commit message
-
-- Make sure you don't commit to svn while a feature freeze is announced
-
-- For new extensions, there are two possible cases:
-       1) header files are just in patch-o-matic patch, you need an
-          'extensions/.*-test' script to have a conditional build
-       2) header files are in patch-o-matic patch, and copied to
-          'netfilter/include/linux/netfilter_xxx'.  This way the extension
-          can be built _unconditionally_, and thus be included in
-          'extensions/Makefile'.  Make sure to keep the headers in sync!
-
-  Usually '1)' is used, but in case something is expected to show up in the
-  kernel soon, we should already make userspace support unconditionally.
-
index f77ef2596eb83ed7394e11ee8a4f5dd60e73da29..526fb95347637ac961fc649a35cb843c3c423f49 100644 (file)
@@ -18,13 +18,14 @@ git archive --prefix="iptables-$VERSION/" "v$VERSION" | tar -xC "$TMPDIR/"
 
 cd "$IPTDIR" && {
        sh autogen.sh
-       rm autogen.sh COMMIT_NOTES
        cd ..
 }
 
 tar -cjf "$TARBALL" "iptables-$VERSION";
 gpg -u "Netfilter Core Team" -sb "$TARBALL";
 md5sum "$TARBALL" >"$TARBALL.md5sum";
+sha1sum "$TARBALL" >"$TARBALL.sha1sum";
 
 gpg -u "Netfilter Core Team" -sb "$PATCH";
 md5sum "$PATCH" >"$PATCH.md5sum";
+sha1sum "$PATCH" >"$PATCH.sha1sum";