[iptables] manpages: various updates

Patrick McHardy netfilter-cvslog-bounces at lists.netfilter.org
Thu Jul 3 20:41:23 CEST 2008


Gitweb:		http://git.netfilter.org/cgi-bin/gitweb.cgi?p=iptables.git;a=commit;h=55dffefc95151b5746a853c8ed71097d7b5a8575
commit 55dffefc95151b5746a853c8ed71097d7b5a8575
Author:     Jan Engelhardt <jengelh at medozas.de>
AuthorDate: Thu Jul 3 20:27:50 2008 +0200
Commit:     Patrick McHardy <kaber at trash.net>
CommitDate: Thu Jul 3 20:27:50 2008 +0200

    manpages: various updates
    
    - synchronized iptables--ip6tbales manpages
    - -S option, list of chain names, protocol names
    - markup updates
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>

commit b669b27dd6ba8b94fbff5fa17ea3ca26ead53bea
Author:     Jan Engelhardt <jengelh at medozas.de>
AuthorDate: Thu Jul 3 20:26:56 2008 +0200
Commit:     Patrick McHardy <kaber at trash.net>
CommitDate: Thu Jul 3 20:26:56 2008 +0200

    build: various changes to release.sh
    
    - 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 at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>

commit 3a72b1f2d3aef3ba1bae80faefe3709e17da523d
Author:     Jan Engelhardt <jengelh at medozas.de>
AuthorDate: Thu Jul 3 20:25:42 2008 +0200
Commit:     Patrick McHardy <kaber at trash.net>
CommitDate: Thu Jul 3 20:25:42 2008 +0200

    build: quote variables in release.sh
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>
       via  55dffefc95151b5746a853c8ed71097d7b5a8575 (commit)
       via  b669b27dd6ba8b94fbff5fa17ea3ca26ead53bea (commit)
       via  3a72b1f2d3aef3ba1bae80faefe3709e17da523d (commit)
      from  4ded0f11d382c37a57c04077f453b3978eeded17 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 55dffefc95151b5746a853c8ed71097d7b5a8575
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Thu Jul 3 20:27:50 2008 +0200

    manpages: various updates
    
    - synchronized iptables--ip6tbales manpages
    - -S option, list of chain names, protocol names
    - markup updates
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>

commit b669b27dd6ba8b94fbff5fa17ea3ca26ead53bea
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Thu Jul 3 20:26:56 2008 +0200

    build: various changes to release.sh
    
    - 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 at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>

commit 3a72b1f2d3aef3ba1bae80faefe3709e17da523d
Author: Jan Engelhardt <jengelh at medozas.de>
Date:   Thu Jul 3 20:25:42 2008 +0200

    build: quote variables in release.sh
    
    Signed-off-by: Jan Engelhardt <jengelh at medozas.de>
    Signed-off-by: Patrick McHardy <kaber at trash.net>

-----------------------------------------------------------------------

 COMMIT_NOTES   |   24 ----
 ip6tables.8.in |  319 +++++++++++++++++++++-----------------------------------
 iptables.8.in  |  296 +++++++++++++++++++---------------------------------
 release.sh     |   25 +++--
 4 files changed, 238 insertions(+), 426 deletions(-)
 delete mode 100644 COMMIT_NOTES
Signed-off-by: Jan Engelhardt <jengelh at medozas.de>
Signed-off-by: Patrick McHardy <kaber at trash.net>

diff --git a/release.sh b/release.sh
index 5635e4c..f77ef25 100644
--- a/release.sh
+++ b/release.sh
@@ -7,14 +7,14 @@ PREV_VERSION=1.4.1
 TMPDIR=/tmp/ipt-release
 IPTDIR="$TMPDIR/iptables-$VERSION"
 
-PATCH=patch-iptables-$PREV_VERSION-$VERSION.bz2
-TARBALL=iptables-$VERSION.tar.bz2
-CHANGELOG=changes-iptables-$PREV_VERSION-$VERSION.txt
+PATCH="patch-iptables-$PREV_VERSION-$VERSION.bz2";
+TARBALL="iptables-$VERSION.tar.bz2";
+CHANGELOG="changes-iptables-$PREV_VERSION-$VERSION.txt";
 
 mkdir -p "$TMPDIR"
-git shortlog v$PREV_VERSION..v$VERSION > "$TMPDIR/$CHANGELOG"
-git diff v$PREV_VERSION..v$VERSION | bzip2 > "$TMPDIR/$PATCH"
-git archive --prefix=iptables-$VERSION/ v$VERSION | tar -xC "$TMPDIR/"
+git shortlog "v$PREV_VERSION..v$VERSION" > "$TMPDIR/$CHANGELOG"
+git diff "v$PREV_VERSION..v$VERSION" | bzip2 > "$TMPDIR/$PATCH"
+git archive --prefix="iptables-$VERSION/" "v$VERSION" | tar -xC "$TMPDIR/"
 
 cd "$IPTDIR" && {
 	sh autogen.sh
@@ -22,9 +22,9 @@ cd "$IPTDIR" && {
 	cd ..
 }
 
-tar -cjf $TARBALL iptables-$VERSION
-gpg -u "Netfilter Core Team" -sb $TARBALL
-md5sum $TARBALL > $TARBALL.md5sum
+tar -cjf "$TARBALL" "iptables-$VERSION";
+gpg -u "Netfilter Core Team" -sb "$TARBALL";
+md5sum "$TARBALL" >"$TARBALL.md5sum";
 
-gpg -u "Netfilter Core Team" -sb $PATCH
-md5sum $PATCH > $PATCH.md5sum
+gpg -u "Netfilter Core Team" -sb "$PATCH";
+md5sum "$PATCH" >"$PATCH.md5sum";



More information about the netfilter-cvslog mailing list