diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-04 21:51:32 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-05-04 21:51:32 +0200 |
commit | 888c49107facbed08ce58d944f317e7f5f5bbe1f (patch) | |
tree | eb9c61b287ea286231a39742f3ddb12c30f09a30 /debian | |
parent | 70371bc8163cab22dec315f73db087095a011669 (diff) |
* debian/rules:
- remove targets refering to CVS or arch as they are useless
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 43 |
2 files changed, 2 insertions, 43 deletions
diff --git a/debian/changelog b/debian/changelog index 710b0f844..d206b1dd8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -62,6 +62,8 @@ apt (0.7.26~exp4) UNRELEASED; urgency=low * methods/rred.cc: - use the patchfile modification time instead of the one from the "old" file - thanks to Philipp Weis for noticing! (Closes: #571541) + * debian/rules: + - remove targets refering to CVS or arch as they are useless [ Jari Aalto ] * cmdline/apt-get.cc: diff --git a/debian/rules b/debian/rules index ba19f2526..bb2cc34c3 100755 --- a/debian/rules +++ b/debian/rules @@ -314,23 +314,9 @@ apt-transport-https: build debian/shlibs.local libapt-pkg-dev dh_md5sums -p$@ dh_builddeb -p$@ -source diff: - @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false - -# Update from CVS -l33ch: really-clean - cvs update - buildlib/mkChangeLog - -# Update from CVS and then configure for build -super-l33ch: l33ch Makefile.in - configure: $(MAKE) configure -l33ch-stamp: super-l33ch - touch $@ - really-clean: clean -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f find -name ChangeLog | xargs rm -f @@ -338,32 +324,3 @@ really-clean: clean binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary debian/shlibs.local - - -# Done by the uploader. -#cvs update… -#edit debian/changelog -# configure.in has the version automatically updated now. -# edit configure.in -# debian/rules cvs-build - -CVS_BUILDDIR=apt-$(APT_DEBVER) -CVS_ROOT=$(shell cat CVS/Root) -CVS_MODULE=$(shell cat CVS/Repository) -cvs-build: - rm -rf debian/cvs-build - mkdir --parents debian/cvs-build - (cd debian/cvs-build;cvs -d $(CVS_ROOT) export -r$(APT_CVSTAG) -d apt-$(APT_DEBVER) $(CVS_MODULE)) - $(MAKE) -C debian/cvs-build/$(CVS_BUILDDIR) startup doc - (cd debian/cvs-build/$(CVS_BUILDDIR);$(DEB_BUILD_PROG)) - -cvs-mkul: - -mkdir --parents ../upload-$(APT_DEBVER) - cp $(find debian/cvs-build -maxdepth 1 -type f) ../upload-$(APT_DEBVER) - -arch-build: - rm -rf debian/arch-build - mkdir --parents debian/arch-build/apt-$(APT_DEBVER) - tar -c --exclude=arch-build --no-recursion -f - $(bzr inventory) | (cd debian/arch-build/$(PKG)-$(APT_DEBVER);tar xf -) - $(MAKE) -C debian/arch-build/apt-$(APT_DEBVER) startup doc - (cd debian/arch-build/apt-$(APT_DEBVER); $(DEB_BUILD_PROG); dpkg-genchanges -S > ../apt_$(APT_DEBVER)_source.changes) |