1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 05:18:06 +01:00

patch management with dpkg-source v3

Simplify debian/rules by using dpkg-source v3 (quilt) instead of the
home-grown patch system in debian/rules.

Change debian/nightly_build.sh to build a non-native package.
This commit is contained in:
Andreas Metzler
2010-08-16 16:29:39 +02:00
committed by Carlos R. Mafra
parent dcbfb467de
commit fef3ee5742
6 changed files with 16 additions and 53 deletions

View File

@@ -65,7 +65,12 @@ doEnv() {
doChlog() {
cp debian/changelog ${CHLOGBKP}
debchange -v ${BASEVERSION}-${REPOVERSION} "${CHANGELOG}" || return 1
debchange -v ${BASEVERSION}-${REPOVERSION}-1 "${CHANGELOG}" || return 1
}
doTarball() {
echo tar -czf ../wmaker_${BASEVERSION}-${REPOVERSION}.orig.tar.gz .
tar -czf ../wmaker_${BASEVERSION}-${REPOVERSION}.orig.tar.gz .
}
doBuild() {
@@ -90,6 +95,7 @@ RC=0
if doPull ; then
doEnv
doChlog || errorExit "Error adding new changelog entry."
doTarball || errorExit "Error building source tarball."
doBuild || errorExit "Error during build of .deb package."
else
RC=1