.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>
+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
./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
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
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>
* 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.