]> git.donarmstrong.com Git - debhelper.git/commitdiff
r121: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:00:36 +0000 (05:00 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:00:36 +0000 (05:00 +0000)
debhelper.1
debian/changelog
debian/rules
dh_compress
doc/README
doc/TODO

index f32966662a0a990bf5aae54e374b1c50f5f9a853..e37085aa096dbd61fce04f65dc6d5ae82a5fa7d2 100644 (file)
@@ -100,5 +100,8 @@ An introduction to debhelper.
 .TP
 .BR /usr/doc/debhelper/examples/
 A set of example debian/rules files that use debhelper.
+.TP
+.BR http://kitenet.net/programs/debhelper/
+Debhelper web site.
 .SH AUTHOR
 Joey Hess <joeyh@master.debian.org>
index 3ee300483f740a34e6d7f564ac8abeec6e65f83f..651c20a57fb1e6656bb94fc3de1204aaf4dc966f 100644 (file)
@@ -1,3 +1,17 @@
+debhelper (1.1.14) unstable; urgency=low
+
+  * Debhelper now has a web page at http://kitenet.net/programs/debhelper/
+
+  * Added code to debian/rules to update the web page when I release new
+    debhelpers.
+  * dh_compress: since version 0.88 or so, dh_compress has bombed out if
+    a debian/compress file returned an error code. This was actually
+    unintentional - in fact, the debian/compress example in the man page
+    will fail this way if usr/info or usr/X11R6 is not present. Corrected
+    the program to not fail. (#26214)
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun, 30 Aug 1998 22:15:44 -0700
+
 debhelper (1.1.13) unstable; urgency=low
 
   * dh_installmanpages: rewritten in perl. Allows me to fix bug #26221 (long
index 94af8686b96870b02b7376f8508a45acad4f28b9..20ba1a7054d9af278072e9ea12dde55a1e3bed91 100755 (executable)
@@ -51,5 +51,25 @@ binary-indep: 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)
+localdist:
+       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
+
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+.PHONY: build clean binary-indep binary-arch binary localdist
index b94cfcfeec8ffe59292fed2279454c840ee76ba4..76f7614d31105d2d60e20db9b58cec725ec6ad63 100755 (executable)
@@ -21,7 +21,7 @@ filelist () {
        if [ "$compress" ]; then
                # The config file is a sh script that outputs the files to be compressed
                # (typically using find).
-               sh $olddir/$compress 2>/dev/null
+               sh $olddir/$compress 2>/dev/null || true
        else
                # By default fall back on what the policy manual says to compress.
                find usr/info usr/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true
index 76b2263e118553bd86f1ef6cc67db76c3339ccd2..2aa9175d2fb8151f5506e120e4f21e7bb44964fc 100644 (file)
@@ -51,4 +51,6 @@ does this even if only the arch-dependant package is being built (for ports
 to other architectures). I handle this in debian/rules.multi by calling
 dh_movefiles in the install target.
 
+Debhelper's home page is at http://kitenet.net/programs/debhelper/
+
 -- Joey Hess <joeyh@master.debian.org>
index c36b1dc6e738887db4e9d504c67cd6e840102571..df9e3c48dda0e3b7625eb7224611a22b0c08b686 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -68,10 +68,3 @@ Long term goals:
 
 * Convert selected debhelper commands to be perl programs, for speed, ease
   of maintainence, and 8-bit cleanness.
-
-Fixes to backport to 1.0 tree:
-
-* dh_installdocs used -m 655 for a TODO file. (minor, dh_fixperms cleans up
-       after it)
-* dh_fixperms had a problem with removing x bits on examples files -
-       backport fix.