]> git.donarmstrong.com Git - debhelper.git/commitdiff
r261: * No user visible changes. Modified the package to interface better with
authorjoey <joey>
Sat, 28 Aug 1999 02:16:36 +0000 (02:16 +0000)
committerjoey <joey>
Sat, 28 Aug 1999 02:16:36 +0000 (02:16 +0000)
     my new local build system, which auto-updates the home page when a new
     debhelper is built.

Makefile [deleted file]
debian/changelog
debian/rules

diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index 5efe0a3..0000000
--- a/Makefile
+++ /dev/null
@@ -1,3 +0,0 @@
-# Take it from here, debian/rules.
-# This whole file could be a symlink, but CVS sucks.
-include debian/rules
index e7846baac63a5271c893bd1ee8c0524836c110a4..7dd9558a57b335a6c465f15f82409e1fba6ee247 100644 (file)
@@ -1,3 +1,11 @@
+debhelper (2.0.27) unstable; urgency=low
+
+  * No user visible changes. Modified the package to interface better with
+    my new local build system, which auto-updates the home page when a new
+    debhelper is built.
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 26 Aug 1999 23:20:40 -0700
+
 debhelper (2.0.25) unstable; urgency=low
 
   * Corrected debian/fixlinks to make the correct debian/* symlinks needed
index 09a09a1eb4552598fb1c30542e5b8714a037eb1b..aae9e6b65dae0d370b40246ea05edd57673ab2b5 100755 (executable)
@@ -19,9 +19,8 @@ VERSION=$(shell expr "`dpkg-parsechangelog 2>/dev/null |grep Version:`" : '.*Ver
 
 export DH_VERBOSE=1
 
-build: link-stamp
-       # Run regression tests.
-       $(MAKE) test
+build: link-stamp test
+# Nothing to do.       
 
 clean: link-stamp
        ./dh_testdir
@@ -99,43 +98,16 @@ binary-indep: link-stamp build
        ./dh_md5sums
        ./dh_builddeb
 
-# Install in the proper location on my ftp server and web server. Not intended
-# for use by anyone except the author.
-OLD_VER=$(shell perl -e '<>;<>;while(<>){last if /^ --/};<>;$$_=<>;print m/\((.*?)\)/'<debian/changelog)
-dist: commit link-stamp
-       dpkg-buildpackage -rfakeroot -tc
-       if [ `hostname` = 'kite' ] ; then \
-               cp ../debhelper_$(VERSION).tar.gz ../../public; \
-               rm /home/ftp/pub/code/debhelper/* || true; \
-               cp debian/changelog /home/pub/programs/debhelper/CHANGES; \
-               echo $(VERSION) > /home/pub/programs/debhelper/LATEST-VERSION-IS; \
-               cd ..; rm -rf debhelper-$(OLD_VER); \
-               [ -f ../public/debhelper_$(OLD_VER).tar.gz ] && \
-               tar zxf ../public/debhelper_$(OLD_VER).tar.gz || \
-               tar zxf ../outdated/debhelper_$(OLD_VER).tar.gz; \
-               diff -r -u --new-file debhelper-$(OLD_VER) debhelper-$(VERSION) > \
-                       /home/ftp/pub/code/debhelper/diffs/debhelper-$(VERSION).diff; \
-               gzip -9f /home/ftp/pub/code/debhelper/diffs/debhelper-$(VERSION).diff; \
-               cd /tmp; rm -f debhelper-$(OLD-VER); \
-        fi
-
+# Fix links when checking out of cvs by calling this target.
 link-stamp:
        sh -e debian/fixlinks
        touch link-stamp
 
-# This is for local use - it tags the current code with the debian version
-# number, then commits the current code using the contents of the changelog
-# as the cvs changelog, then increments the version number
-commit:
-       cvs -Q commit -m "`dpkg-parsechangelog | grep '^  '`"
-       cvs -Q tag rel-$(shell dpkg-parsechangelog | grep ^Version: \
-               |cut -d " " -f 2 |tr '.' '-')
-       
-new:
-       # Update w/o editing.
-       EDITOR=true dch -i 2>/dev/null
-       # Dch has to change the bloody directory name. Feh.
-       mv . ../debhelper
+# Update the debhelper web page. Not intended for use by anyone except the
+# author.
+installhook:
+       cp debian/changelog /home/pub/programs/debhelper/CHANGES
+       echo $(VERSION) > /home/pub/programs/debhelper/LATEST-VERSION-IS
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary dist