diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:15 +0000 |
commit | 0f6b2443675d884ba6c51deaaec99e088fbbd712 (patch) | |
tree | e4efe55d3a2af16cb7168c886a0df64a139596a5 /debian | |
parent | 008b7bc2dc24c32cddb092d94e33ec0019bb9f9e (diff) |
more tweaking to debian/rules. Added target 'cvs-mkul'...
Author: doogie
Date: 1999-03-21 13:24:35 GMT
more tweaking to debian/rules. Added target 'cvs-mkul' which copies all
files for the current build into ../upload-<VER>, to allow for easier
uploading. Also, this version has an nmu in the changelog, and the fix
described therein works, but these debs are built against glibc 2.1, which
Jason doesn't what apt built against. I am not placing them up for
download.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules index 07357f764..00bcc60e4 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,15 @@ # Made with the aid of dh_make, by Craig Small # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. # Some lines taken from debmake, by Christoph Lameter. -# $Id: rules,v 1.11 1999/03/21 12:43:43 doogie Exp $ +# $Id: rules,v 1.12 1999/03/21 13:24:35 doogie Exp $ + + +# For the deb builder, you can run 'debian/rules cvs-build', which does all +# steps nescessary to produce a proper source tarball with the CVS/ removed. +# It builds in debian/cvs-build/apt-<VER>/, and places files in +# debian/cvs-build/. Optionally, you can run 'debian/rules cvs-mkul' to +# create ../upload-<VER>, with all the files needed to be uploaded placed +# in it. DEB_BUILD_PROG:=debuild APT_DEBVER=$(shell dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p') @@ -21,9 +29,10 @@ endif # Find the libapt-pkg major version for use in other control files export LIBAPT_MAJOR:=$(shell egrep '^MAJOR=' apt-pkg/makefile |cut -d '=' -f 2) -debian/shlibs.local: - rm $@ - echo "libapt-pkg $(LIBAPT_MAJOR) libapt-pkg$(LIBAPT_MAJOR)" >> $@ +#debian/shlibs.local: +# rm -f $@ +# echo "libapt-pkg $(LIBAPT_MAJOR) libapt-pkg$(LIBAPT_MAJOR)" >> $@ +# echo "libapt-pkg $(LIBAPT_MAJOR) apt $(APT_DEBVER)" >> $@ build: build-stamp build-stamp: configure @@ -207,4 +216,8 @@ cvs-build: (mkdir -p debian/cvs-build/apt-$(APT_DEBVER);cd debian/cvs-build/apt-$(APT_DEBVER);tar x) # The next line isn't needed, as debuild will make the .tar.gz for us. # (cd debian/cvs-build;tar zcf apt_$(APT_DEBVER).tar.gz apt-$(APT_DEBVER)) - (cd debian/cvs-build/apt-$(APT_DEBVER);$(DEB_BUILD_PROG) -us -uc) + (cd debian/cvs-build/apt-$(APT_DEBVER);$(DEB_BUILD_PROG)) + +cvs-mkul: + -mkdir -p ../upload-$(APT_DEBVER) + cp `find debian/cvs-build -maxdepth 1 -type f` ../upload-$(APT_DEBVER) |