[Python-modules-commits] r30066 - in packages/gamera/trunk/debian (5 files)
danstender-guest at users.alioth.debian.org
danstender-guest at users.alioth.debian.org
Thu Aug 7 13:09:25 UTC 2014
Date: Thursday, August 7, 2014 @ 13:09:24
Author: danstender-guest
Revision: 30066
* bumped debhelper level to 9:
+ changed d/compat, updated version in d/control.
+ removed d/dh_buildid (obsolete).
Modified:
packages/gamera/trunk/debian/changelog
packages/gamera/trunk/debian/compat
packages/gamera/trunk/debian/control
packages/gamera/trunk/debian/rules
Deleted:
packages/gamera/trunk/debian/dh_buildid
Modified: packages/gamera/trunk/debian/changelog
===================================================================
--- packages/gamera/trunk/debian/changelog 2014-08-07 02:20:34 UTC (rev 30065)
+++ packages/gamera/trunk/debian/changelog 2014-08-07 13:09:24 UTC (rev 30066)
@@ -2,8 +2,11 @@
* bumped wxpython dependencies to 3.0 (updated gendoc-use-wxversion.diff and
and gendoc-draw-text.diff, Closes: #757208).
+ * bumped debhelper level to 9:
+ + changed d/compat, updated version in d/control.
+ + removed d/dh_buildid (obsolete).
- -- Daniel Stender <debian at danielstender.com> Wed, 06 Aug 2014 13:06:22 +0200
+ -- Daniel Stender <debian at danielstender.com> Thu, 07 Aug 2014 14:54:49 +0200
gamera (3.4.1-1) unstable; urgency=medium
Modified: packages/gamera/trunk/debian/compat
===================================================================
--- packages/gamera/trunk/debian/compat 2014-08-07 02:20:34 UTC (rev 30065)
+++ packages/gamera/trunk/debian/compat 2014-08-07 13:09:24 UTC (rev 30066)
@@ -1 +1 @@
-7
+9
Modified: packages/gamera/trunk/debian/control
===================================================================
--- packages/gamera/trunk/debian/control 2014-08-07 02:20:34 UTC (rev 30065)
+++ packages/gamera/trunk/debian/control 2014-08-07 13:09:24 UTC (rev 30066)
@@ -5,7 +5,7 @@
Uploaders:
Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Build-Depends:
- debhelper (>= 7),
+ debhelper (>= 9),
dpkg-dev (>= 1.15.7~),
libpng-dev,
libtiff-dev,
Deleted: packages/gamera/trunk/debian/dh_buildid
===================================================================
--- packages/gamera/trunk/debian/dh_buildid 2014-08-07 02:20:34 UTC (rev 30065)
+++ packages/gamera/trunk/debian/dh_buildid 2014-08-07 13:09:24 UTC (rev 30066)
@@ -1,82 +0,0 @@
-#!/usr/bin/perl
-
-# Copyright © 2011 Jakub Wilk <jwilk at debian.org>
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the
-# "Software"), to deal in the Software without restriction, including
-# without limitation the rights to use, copy, modify, merge, publish,
-# distribute, sublicense, and/or sell copies of the Software, and to
-# permit persons to whom the Software is furnished to do so, subject to
-# the following conditions:
-#
-# The above copyright notice and this permission notice shall be included
-# in all copies or substantial portions of the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND EXPRESS
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-=head1 NAME
-
-dh_buildid - move /usr/lib/debug/* files into build-id locations
-
-=cut
-
-use strict;
-use warnings;
-
-use File::Find;
-use Debian::Debhelper::Dh_Lib;
-
-=head1 SYNOPSIS
-
-B<dh_buildid> [S<I<debhelper options>>] [B<-X>I<item>]
-
-=cut
-
-init();
-
-umask 0022;
-foreach my $package (@{$dh{DOPACKAGES}}) {
- my $debug_root = tmpdir($package) . "/usr/lib/debug";
- my $build_id_root = "$debug_root/.build-id";
- next unless -d $debug_root;
- my $wanted = sub {
- return unless -f $_;
- return if excludefile($_);
- my $path = $_;
- my $elfnotes = `readelf -n $path`;
- my ($build_id_dir, $build_id_path);
- if ($elfnotes=~/^\s+Build ID: ([0-9a-f]{2})([0-9a-f]+)$/m) {
- $build_id_dir = "$build_id_root/$1";
- $build_id_path = "$build_id_dir/$2.debug"
- } else {
- # Maybe built with old GCC? Or readelf is too old? Or it's not an ELF
- # at all? Anyway, leaving it as it won't hurt.
- return;
- }
- doit('mkdir', '-p', $build_id_dir)
- unless -d $build_id_dir;
- doit('mv', $path, $build_id_path);
- };
- find({wanted => $wanted, no_chdir => 1}, $debug_root);
- # Pure empty directories:
- doit('find', $debug_root, '-type', 'd', '-empty', '-delete');
-}
-
-=head1 SEE ALSO
-
-L<debhelper(7)>
-
-=head1 AUTHOR
-
-Jakub Wilk <jwilk at debian.org>
-
-=cut
-
-# vim:ts=4 sw=4 et
Modified: packages/gamera/trunk/debian/rules
===================================================================
--- packages/gamera/trunk/debian/rules 2014-08-07 02:20:34 UTC (rev 30065)
+++ packages/gamera/trunk/debian/rules 2014-08-07 13:09:24 UTC (rev 30066)
@@ -86,7 +86,6 @@
dh_compress -a
dh_fixperms -a
dh_strip -a --dbg-package=python-gamera-dbg
- debian/dh_buildid -a
dh_shlibdeps -a
dh_installdeb -a
dh_gencontrol -a -- -Vvigra:Version=$(vigra_version)
More information about the Python-modules-commits
mailing list