[debhelper-devel] [debhelper] 01/05: Merge tag 'debian/9.20160618.1' into jessie-backports

Niels Thykier nthykier at moszumanska.debian.org
Sat Oct 15 08:53:07 UTC 2016


This is an automated email from the git hooks/post-receive script.

nthykier pushed a commit to branch jessie-backports
in repository debhelper.

commit 9cc1fe5ab5f7a11052321aefc9dc960a1c4adde0
Merge: 6c16177 4717550
Author: Niels Thykier <niels at thykier.net>
Date:   Mon Jun 20 17:59:26 2016 +0000

    Merge tag 'debian/9.20160618.1' into jessie-backports
    
    Release debhelper/9.20160618.1 into unstable
    
    Format: 1.8
    Date: Sat, 18 Jun 2016 20:52:29 +0000
    Source: debhelper
    Binary: debhelper
    Architecture: source
    Version: 9.20160618.1
    Distribution: unstable
    Urgency: medium
    Maintainer: Debhelper Maintainers <debhelper-devel at lists.alioth.debian.org>
    Changed-By: Niels Thykier <niels at thykier.net>
    Description:
     debhelper  - helper programs for debian/rules
    Changes:
     debhelper (9.20160618.1) unstable; urgency=medium
     .
       * Dh_Lib.pm: Reject requests for compat 4 instead of
         silently accepting it (while all helpers no longer
         check for it).
    Checksums-Sha1:
     ce3dfcb9605d9f4e2ce271c2c0ff3b8b8f01541e 1716 debhelper_9.20160618.1.dsc
     4f2cb65226967584eabdb33328e6f87fafffafdb 338204 debhelper_9.20160618.1.tar.xz
    Checksums-Sha256:
     a90158db3c7c29b607e35fdb9c5ddc5adea8c262540323789828eaaeddec3d17 1716 debhelper_9.20160618.1.dsc
     c1a7e2a56ea2e6dd4be28969d8c0ae28ef99cdd30da3cb8c338d264677d60386 338204 debhelper_9.20160618.1.tar.xz
    Files:
     a6e9a89e9e932e3ffd968f28ca71bf76 1716 devel optional debhelper_9.20160618.1.dsc
     989d974e089dff2cbf8a13232c05fa2a 338204 devel optional debhelper_9.20160618.1.tar.xz

 Debian/Debhelper/Buildsystem/ant.pm              |   4 +
 Debian/Debhelper/Buildsystem/python_distutils.pm |   8 +-
 Debian/Debhelper/Dh_Getopt.pm                    |  10 +-
 Debian/Debhelper/Dh_Lib.pm                       | 102 +++++++++------
 autoscripts/postinst-moveconffile                |   9 --
 autoscripts/preinst-moveconffile                 |   9 --
 autoscripts/preinst-sgmlcatalog                  |   8 --
 debhelper.pod                                    |  65 +---------
 debian/changelog                                 |  67 +++++++++-
 debian/control                                   |   2 +-
 dh                                               |  38 +++---
 dh_clean                                         |  11 --
 dh_compress                                      |   8 +-
 dh_gconf                                         |   4 +-
 dh_install                                       |  13 +-
 dh_installcatalogs                               |  15 +--
 dh_installdocs                                   |  14 +--
 dh_installman                                    |  23 ++--
 dh_installmanpages                               |  10 +-
 dh_installmodules                                |   7 +-
 dh_installudev                                   |  16 ---
 dh_md5sums                                       |   7 +-
 dh_perl                                          |   9 +-
 dh_strip                                         | 150 +++++++++++------------
 doc/PROGRAMMING                                  |   6 +
 t/buildsystems/buildsystem_tests.t               |   9 +-
 t/dh-lib.t                                       |   6 +-
 t/size.t                                         |   8 +-
 28 files changed, 314 insertions(+), 324 deletions(-)

diff --cc debian/changelog
index e413b09,a690890..ddda3da
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,10 -1,68 +1,75 @@@
+ debhelper (9.20160618.1) unstable; urgency=medium
+ 
+   * Dh_Lib.pm: Reject requests for compat 4 instead of
+     silently accepting it (while all helpers no longer
+     check for it).
+ 
+  -- Niels Thykier <niels at thykier.net>  Sat, 18 Jun 2016 20:52:29 +0000
+ 
+ debhelper (9.20160618) unstable; urgency=medium
+ 
+   * dh: Fix bug where "--help" or "--list" would not work
+     unless "debian/compat" existed and had a supported
+     compat level.  (Closes: #820508)
+   * dh_compress: Gracefully handle debian (or any other
+     path segment in the package "tmpdir") being a symlink
+     pointing outside the same directory.  Thanks to
+     Bernhard Miklautz for the report.  (Closes: #820711)
+   * Dh_Lib.pm: Compat files are now mandatory.
+   * dh_clean: Remove work around for missing compat file.
+     This removes a confusing warning when the package is
+     not built by CDBS.  (Closes: #811059)
+   * debhelper.pod: Add a line stating that debian/compat
+     is mandatory.  (Closes: #805405)
+   * dh_strip: Apply patch from Peter Pentchev to only strip
+     static libraries with a basename matching "lib.*\.a".
+     (Closes: #820446)
+   * ant.pm: Apply patch from Emmanuel Bourg to pass a
+     normalised "user.name" parameter to ant.
+     (Closes: #824490)
+   * dh_installudev/dh_installmodules: Drop maintainer
+     script snippets for migrating conffiles.
+     - Side effect, avoids portability issue with certain
+       shell implementations.  (Closes: #815158)
+   * autoscripts/*inst-moveconffile: Remove unused files.
+   * dh: Update documentation to reflect the current
+     implementation.
+   * Remove support for compat 4.
+   * dh_strip: Add debuglinks to ELF binaries even with
+     DEB_BUILD_OPTIONS=noautodbgsym to make the regular deb
+     bit-for-bit reproducible with vs. without this flag.
+     Thanks to Helmut Grohne for the report.
+   * dh_installcatalogs: Apply patch from Helmut Grohne to
+     explicitly trigger a new update-sgmlcatalog trigger,
+     since dpkg does not triger conffiles on package removal.
+     (Closes: #825005)
+   * dh_installcatalos: Apply patch from Helmut Grohne to
+     remove autoscript for a transition that completed in
+     Wheezy.
+   * dh_strip: Unconditionally pass --enable-deterministic-archives
+     to strip for static libs as the stable version of binutils
+     supports it.
+   * dh_strip: Use file(1) to determine the build-id when
+     available.  This saves an readelf call for every binary in
+     the package.
+   * dh_strip: Cache file(1) output to avoid calling file(1)
+     twice on all ELF binaries in the package.
+   * Dh_Lib.pm: Add better error messages when a debhelper program
+     fails due to an executable config file not terminating with
+     success.  (Closes: #818933)
+   * dh_strip: Pass -e to file(1) to skip tests for file formats
+     that dh_strip does not care about.
+   * Bump standards-version to 3.9.8 - no changes required.
+ 
+  -- Niels Thykier <niels at thykier.net>  Sat, 18 Jun 2016 14:41:05 +0000
+ 
 +debhelper (9.20160403~bpo8+1) jessie-backports; urgency=medium
 +
 +  * Rebuild for jessie-backports.
 +  * Disable automatic dbgsym as it requires dpkg-dev 1.18.2
 +
 + -- Niels Thykier <niels at thykier.net>  Fri, 10 Jun 2016 17:48:34 +0000
 +
  debhelper (9.20160403) unstable; urgency=medium
  
    * d/control: Requre dh-autoreconf (>= 12) to ensure
diff --cc debian/control
index b5b1708,b9eb40b..7f29dce
--- a/debian/control
+++ b/debian/control
@@@ -3,8 -3,8 +3,8 @@@ Section: deve
  Priority: optional
  Maintainer: Debhelper Maintainers <debhelper-devel at lists.alioth.debian.org>
  Uploaders: Niels Thykier <niels at thykier.net>, Bernhard R. Link <brlink at debian.org>, Tianon Gravi <tianon at debian.org>
 -Build-Depends: po4a (>= 0.24), dpkg-dev (>= 1.18.0~)
 +Build-Depends: po4a (>= 0.24)
- Standards-Version: 3.9.7
+ Standards-Version: 3.9.8
  Vcs-Git: https://anonscm.debian.org/git/debhelper/debhelper.git
  Vcs-Browser: https://anonscm.debian.org/git/debhelper/debhelper.git
  

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debhelper/debhelper.git




More information about the debhelper-devel mailing list