~ubuntu-branches/ubuntu/trusty/libconfig-inifiles-perl/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard, upstream, Salvatore Bonaccorso, Jonas Smedegaard
  • Date: 2013-05-09 16:38:47 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20130509163847-d7883gygpth102bz
Tags: 2.79-1
[ upstream ]
* New release.
  + Fix test failures with Pod-Simple-3.28.

[ Salvatore Bonaccorso ]
* Use canonical hostname (anonscm.debian.org) in Vcs-Git URL.

[ Jonas Smedegaard ]
* Update README.source to emphasize control.in file as *not* a
  show-stopper for contributions.
* Bump policy compliance to standards-version 3.9.4.
* Do copyright-check by default: Backports-friendly nowadays.
  Build-depend on devscripts.
* Bump packaging license to GPL-3+, and extend coverage to include
  current year.
* Bump dephelper compatibility level to 8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
# -*- mode: makefile; coding: utf-8 -*-
3
 
# Copyright © 2002, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2012 Jonas
4
 
# Smedegaard <dr@jones.dk>
 
3
# Copyright © 2002, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2012, 2013
 
4
# Jonas Smedegaard <dr@jones.dk>
5
5
# Description: Main Debian packaging script for Config::IniFiles
6
6
#
7
7
# This program is free software; you can redistribute it and/or modify
8
8
# it under the terms of the GNU General Public License as published by
9
 
# the Free Software Foundation; either version 2, or (at your option)
 
9
# the Free Software Foundation; either version 3, or (at your option)
10
10
# any later version.
11
11
#
12
12
# This program is distributed in the hope that it will be useful, but
17
17
# You should have received a copy of the GNU General Public License
18
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
 
-include /usr/share/cdbs/1/rules/upstream-tarball.mk
21
 
-include /usr/share/cdbs/1/rules/utils.mk
 
20
include /usr/share/cdbs/1/rules/upstream-tarball.mk
 
21
include /usr/share/cdbs/1/rules/utils.mk
22
22
include /usr/share/cdbs/1/class/perl-build.mk
23
23
include /usr/share/cdbs/1/rules/debhelper.mk
24
24
 
25
25
DEB_UPSTREAM_PACKAGE = Config-IniFiles
26
26
#DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/Config
27
27
DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/Config/SHLOMIF
28
 
DEB_UPSTREAM_TARBALL_VERSION := $(shell echo '$(DEB_UPSTREAM_VERSION)' | awk -F. '{print $$1"."$$2$$3$$4$$5}')
29
 
DEB_UPSTREAM_TARBALL_MD5 = 9999dedf8776a31ec4d2926ba2ebc8f5
30
 
 
31
 
# Suppress optional build-dependencies
32
 
CDBS_BUILD_DEPENDS_rules_upstream-tarball =
33
 
CDBS_BUILD_DEPENDS_rules_utils_copyright-check =
 
28
DEB_UPSTREAM_TARBALL_MD5 = fb31fa4ec1af06c41bbe4445329b3bf5
 
29
 
 
30
pkg = $(DEB_SOURCE_PACKAGE)
 
31
 
 
32
# Needed by upstream build process and (always) at runtime
 
33
deps = liblist-moreutils-perl (>= 0.33)
 
34
 
 
35
# Needed by upstream testsuite
 
36
deps-test = libio-stringy-perl
 
37
 
 
38
CDBS_BUILD_DEPENDS +=, $(deps), $(deps-test)
 
39
CDBS_DEPENDS_$(pkg) = $(deps)
34
40
 
35
41
# Perl-base is sufficient, and was once wanted by localization-config for use
36
42
# in debian-installer.
37
43
DEB_DH_PERL_ARGS = -d
38
 
 
39
 
# Needed both by upstream tests and (always) at runtime
40
 
deps = liblist-moreutils-perl (>= 0.33)
41
 
CDBS_BUILD_DEPENDS += , $(deps)
42
 
CDBS_DEPENDS_DEFAULT = $(deps)
43
 
 
44
 
# Needed by upstream tests
45
 
CDBS_BUILD_DEPENDS += , libio-stringy-perl