diff options
author | Simo Sorce <idra@samba.org> | 2004-05-14 12:44:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:35 -0500 |
commit | 658d069b167a3dc946f3981d57ffe6f8defeb11a (patch) | |
tree | e1e6819d09256eae58cda05a7c4866479813f0bd /packaging/Debian/debian-stable/scripts | |
parent | c32c36d96f3a7863ab8514456e8a0eb9e4839264 (diff) | |
download | samba-658d069b167a3dc946f3981d57ffe6f8defeb11a.tar.gz samba-658d069b167a3dc946f3981d57ffe6f8defeb11a.tar.bz2 samba-658d069b167a3dc946f3981d57ffe6f8defeb11a.zip |
r731: add the current debian directory for debian stable (woody) targeted releases
(This used to be commit 4b9f891319fad31eb0494ab57d186568f35443ba)
Diffstat (limited to 'packaging/Debian/debian-stable/scripts')
-rwxr-xr-x | packaging/Debian/debian-stable/scripts/patch-source | 28 | ||||
-rwxr-xr-x | packaging/Debian/debian-stable/scripts/unpatch-source | 20 |
2 files changed, 48 insertions, 0 deletions
diff --git a/packaging/Debian/debian-stable/scripts/patch-source b/packaging/Debian/debian-stable/scripts/patch-source new file mode 100755 index 0000000000..a8559b4167 --- /dev/null +++ b/packaging/Debian/debian-stable/scripts/patch-source @@ -0,0 +1,28 @@ +#!/bin/sh -e +# +# + +for patch in debian/patches/*.patch; do + echo '->'`basename $patch`: + patch -p1 --ignore-whitespace < $patch +done + +# This code is currently not used because it creates a long version +# number string. For now we're sticking to <upstream version>-Debian, +# as in 3.0.0rc2-Debian. peloy@debian.org.- + +# ---- Begin unused code ---- +# Get Debian version number from 1st line of the Debian changelog +#DEBIAN_VERSION=`sed -n -e '1s/^.*(\(.*\)).*$/\1/p' debian/changelog` + +# Insert Debian version number in source/VERSION, which will then be +# used to create source/include/version.h. +#TMPFILE=source/VERSION.debian +#sed -e "s/^\(SAMBA_VERSION_VENDOR_SUFFIX=\).*$/\1\"Debian-${DEBIAN_VERSION}\"/" source/VERSION > ${TMPFILE} +#mv -f ${TMPFILE} source/VERSION +# ---- End unused code ---- + +# Regenerate configure only if it is older than configure.in +[ source/configure -ot source/configure.in ] && (cd source && sh ./autogen.sh) + +exit 0 diff --git a/packaging/Debian/debian-stable/scripts/unpatch-source b/packaging/Debian/debian-stable/scripts/unpatch-source new file mode 100755 index 0000000000..d3681cfa50 --- /dev/null +++ b/packaging/Debian/debian-stable/scripts/unpatch-source @@ -0,0 +1,20 @@ +#!/bin/sh -e +# +# + +# We want to reverse the patches in the opposite order we applied +# them, hence the 'ls|sort -r'. +for patch in `ls debian/patches/*.patch | sort -r`; do + patch -p1 -R --ignore-whitespace < $patch +done + +# Unused code. See comment in the patch-source script. + +#TMPFILE=source/VERSION.debian +#sed -e "s/^\(SAMBA_VERSION_VENDOR_SUFFIX=\).*$/\1/" source/VERSION > ${TMPFILE} +#mv -f ${TMPFILE} source/VERSION + +# Regenerate configure only if it is older than configure.in +[ source/configure -ot source/configure.in ] && (cd source && autoheader && autoconf) + +exit 0 |