From b556f15076ac7ddfc503bca2fceceee3c2759a88 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Wed, 2 Aug 2017 14:32:59 -0400 Subject: add dh-elpa-Version: binary package field There is a debhelper mechanism for dh_* tools to embed their versions in generated maintscripts, but our emacsen-common maintscripts are not true maintscripts, so we can't use that mechanism. Using a binary package field makes it possible for us to find packages that need rebuilding without looking inside the contents of any binary packages. --- elpa.pm | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 elpa.pm (limited to 'elpa.pm') diff --git a/elpa.pm b/elpa.pm deleted file mode 100755 index a43f395..0000000 --- a/elpa.pm +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/perl -# debhelper sequence file for dh_elpa script - -use warnings; -use strict; -use Debian::Debhelper::Dh_Lib; -use Dpkg::Version; -use Module::Metadata; -use Config::Tiny; - -insert_after("dh_install", "dh_elpa"); - -# check dh_make_perl version is new enough for dh_elpa_test -my $info = Module::Metadata->new_from_module("Debian::Control"); -my $version = Dpkg::Version->new($info->version()); - -my $options; -$options = Config::Tiny->read( "debian/elpa-test" ) - if ( -f "debian/elpa-test" ); - -if ( $version >= "0.90" - && !defined $options->{_}->{ "disable" } - && !defined $ENV{ 'DH_ELPA_TEST_DISABLE' } - ) { - insert_after("dh_auto_test", "dh_elpa_test"); - remove_command("dh_auto_test"); -} - -1; -- cgit v1.2.3