]> git.donarmstrong.com Git - debhelper.git/commitdiff
r96: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:53:55 +0000 (04:53 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:53:55 +0000 (04:53 +0000)
debian/changelog
dh_installcron
dh_installcron.1

index cca97b6f2cacb6da1fe4fc7aa8a5aed7ff703f0d..88d8c7f8f3dd16daf9b71fb3a514f7ea598b6464 100644 (file)
@@ -1,3 +1,15 @@
+debhelper (0.99) unstable; urgency=low
+
+  * !!!! WARNING: Debhelper (specifically dh_compress) is broken with
+    !!!! libtricks. Use fakeroot instead until this is fixed.
+  * dh_compress: applied patch from Herbert Xu <herbert@gondor.apana.org.au>
+    to make it not fail if there are no candidates for compression (#24654).
+  * Removed a whole debhelper-0.96 tree that had crept into the source
+    package by accident.
+  * Is version 1.0 next?
+
+ -- Joey Hess <joeyh@master.debian.org>  Thu, 16 Jul 1998 10:03:21 -0700
+
 debhelper (0.98) unstable; urgency=low
 
   * dh_lib: isnative: pass -l<changelog> to dpkg-parsechangelog, to support
index 9cd7cb5ef4f9d56eec800466458a128b72d4a867..448e38a43156d12bd238e083d70ae3feedd78116 100755 (executable)
@@ -8,7 +8,7 @@ PATH=debian:$PATH:/usr/lib/debhelper
 for PACKAGE in $DH_DOPACKAGES; do
        TMP=`tmpdir $PACKAGE`
 
-       for type in daily weekly monthly; do
+       for type in daily weekly monthly d; do
                cron=`pkgfile $PACKAGE cron.$type`
                if [ "$cron" ]; then
                        if [ ! -d $TMP/etc/cron.$type ]; then
index 31f8d810143aa2c7343779f4aed022fbc797900f..20bdc82ff486a75ef7e2d6535913e526d9da4853 100644 (file)
@@ -7,8 +7,8 @@ dh_installcron \- install cron scripts into etc/cron.*
 .SH "DESCRIPTION"
 dh_installcron is a debhelper program that is responsible for installing
 cron scripts into etc/cron.* in package build directories. The files 
-debian/cron.daily, debian/cron.weekly, and debian/cron.monthly are
-installed. If your package generates multiple binary packages (or if you
+debian/cron.daily, debian/cron.weekly, debian/cron.monthly, and debian/cron.d
+are installed. If your package generates multiple binary packages (or if you
 just prefer to do it), you can also use filenames like 
 debian/package.cron.daily, where "package" is replaced with the name of the 
 binary package this cron script goes into.