Fix computation of next version for release candidates

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@7564 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
el_cubano 2007-10-28 23:26:58 +00:00
parent 2d6cfe469e
commit e4169af2c4
8 changed files with 34 additions and 6 deletions

View File

@ -1,3 +1,10 @@
shorewall-common (4.0.5-2) UNRELEASED; urgency=low
* NOT RELEASED YET
* debian/rules: Fix computation of next version for release candidates
-- Roberto C. Sanchez <roberto@connexer.com> Sun, 28 Oct 2007 19:20:29 -0400
shorewall-common (4.0.5-1) experimental; urgency=low
* Initial release (Closes: #446657, #436071, #436072, #336088)

View File

@ -7,7 +7,7 @@
include /usr/share/dpatch/dpatch.make
# shorewall version
export V=`cat install.sh | grep "^VERSION=" | head -n 1 | cut -f 2 -d "="`
export V=`grep "^VERSION=" install.sh | head -n 1 | cut -f 2 -d "="`
SRWL=$(CURDIR)/debian/shorewall-common

View File

@ -1,3 +1,10 @@
shorewall-lite (4.0.5-2) UNRELEASED; urgency=low
* NOT RELEASED YET
* debian/rules: Fix computation of next version for release candidates
-- Roberto C. Sanchez <roberto@connexer.com> Sun, 28 Oct 2007 19:21:52 -0400
shorewall-lite (4.0.5-1) experimental; urgency=low
* New upstream release (Closes: #430119)

View File

@ -7,7 +7,7 @@
include /usr/share/dpatch/dpatch.make
# shorewall version
export V=`cat install.sh | grep "^VERSION=" | head -n 1 | cut -f 2 -d "="`
export V=`grep "^VERSION=" install.sh | head -n 1 | cut -f 2 -d "="`
SRWL=$(CURDIR)/debian/shorewall-lite

View File

@ -1,3 +1,10 @@
shorewall-perl (4.0.5-2) UNRELEASED; urgency=low
* NOT RELEASED YET
* debian/rules: Fix computation of next version for release candidates
-- Roberto C. Sanchez <roberto@connexer.com> Sun, 28 Oct 2007 19:22:16 -0400
shorewall-perl (4.0.5-1) experimental; urgency=low
* Initial release (Closes: #446645)

View File

@ -7,11 +7,11 @@
include /usr/share/dpatch/dpatch.make
# shorewall version
export V=`cat install.sh | grep "^VERSION=" | head -n 1 | cut -f 2 -d "="`
export V=`grep "^VERSION=" install.sh | head -n 1 | cut -f 2 -d "="`
VMAJOR:=$(shell echo $(V) |cut -f 1 -d .)
VMINOR:=$(shell echo $(V) |cut -f 2 -d .)
VPATCH:=$(shell echo $(V) |cut -f 3 -d .)
NEXTPATCH:=$(shell expr $(VPATCH) + 1)
NEXTPATCH:=$(shell expr $(VPATCH) + 1 2>/dev/null || expr `echo $(VPATCH) | cut -f 1 -d - ` + 1)
SRWL=$(CURDIR)/debian/shorewall-perl

View File

@ -1,3 +1,10 @@
shorewall-shell (4.0.5-2) UNRELEASED; urgency=low
* NOT RELEASED YET
* debian/rules: Fix computation of next version for release candidates
-- Roberto C. Sanchez <roberto@connexer.com> Sun, 28 Oct 2007 19:22:28 -0400
shorewall-shell (4.0.5-1) experimental; urgency=low
* Initial release (Closes: #446644)

View File

@ -7,11 +7,11 @@
include /usr/share/dpatch/dpatch.make
# shorewall version
export V=`cat install.sh | grep "^VERSION=" | head -n 1 | cut -f 2 -d "="`
export V=`grep "^VERSION=" install.sh | head -n 1 | cut -f 2 -d "="`
VMAJOR:=$(shell echo $(V) |cut -f 1 -d .)
VMINOR:=$(shell echo $(V) |cut -f 2 -d .)
VPATCH:=$(shell echo $(V) |cut -f 3 -d .)
NEXTPATCH:=$(shell expr $(VPATCH) + 1)
NEXTPATCH:=$(shell expr $(VPATCH) + 1 2>/dev/null || expr `echo $(VPATCH) | cut -f 1 -d - ` + 1)
SRWL=$(CURDIR)/debian/shorewall-shell