]> git.donarmstrong.com Git - debhelper.git/log
debhelper.git
14 years agoTypo. Closes: #555659
Joey Hess [Thu, 12 Nov 2009 18:31:01 +0000 (13:31 -0500)]
Typo. Closes: #555659

14 years agodh_installdocs: Warn if a doc-base file cannot be parsed to find a document id. Close...
Joey Hess [Thu, 12 Nov 2009 18:30:14 +0000 (13:30 -0500)]
dh_installdocs: Warn if a doc-base file cannot be parsed to find a document id. Closes: #555677

14 years agoclarify
Joey Hess [Thu, 12 Nov 2009 18:21:37 +0000 (13:21 -0500)]
clarify

14 years agoAdjust code to add deprecation warning for compatability level 4. (Man page already...
Joey Hess [Thu, 12 Nov 2009 18:11:38 +0000 (13:11 -0500)]
Adjust code to add deprecation warning for compatability level 4. (Man page already said it was deprecated.) Closes: #555899

14 years agoDrop deprecated programs from the list of commands in debhelper(7). Closes: #548382
Joey Hess [Thu, 5 Nov 2009 02:17:38 +0000 (21:17 -0500)]
Drop deprecated programs from the list of commands in debhelper(7). Closes: #548382

14 years agoupdate
Joey Hess [Thu, 5 Nov 2009 01:52:06 +0000 (20:52 -0500)]
update

14 years agoAdd deprecation warnings for -u to the documentation, since putting options after...
Joey Hess [Thu, 5 Nov 2009 01:47:13 +0000 (20:47 -0500)]
Add deprecation warnings for -u to the documentation, since putting options after -- is much more sane. (However, -u will not go away any time soon.) Closes: #554509

14 years agoclarify changelog
Joey Hess [Thu, 5 Nov 2009 01:39:07 +0000 (20:39 -0500)]
clarify changelog

14 years ago--max-parallel requires a number
Joey Hess [Thu, 5 Nov 2009 01:30:44 +0000 (20:30 -0500)]
--max-parallel requires a number

14 years agosupport unlimited parallel jobs
Joey Hess [Thu, 29 Oct 2009 23:45:06 +0000 (19:45 -0400)]
support unlimited parallel jobs

dpkg-buildpackage -j sets DEB_BUILD_OPTIONS=parallel=-1. Policy does not
cover this but the intent is to allow unlimited parallel jobs.

Also, there is no longer any way for parallel to be set to undef, so remove
code to handle that.

14 years agoupdate test suite for implicit parallelisation and flag rename
Joey Hess [Thu, 29 Oct 2009 20:32:29 +0000 (16:32 -0400)]
update test suite for implicit parallelisation and flag rename

14 years agologic error
Joey Hess [Thu, 29 Oct 2009 20:25:43 +0000 (16:25 -0400)]
logic error

14 years agoimplement the other option: parallel enabled implicitly by DEB_BUILD_OPTIONS
Joey Hess [Thu, 29 Oct 2009 20:12:57 +0000 (16:12 -0400)]
implement the other option: parallel enabled implicitly by DEB_BUILD_OPTIONS

I renamed --parallel to --max-parallel to clarify that it doesn't enable
parallelism, but only controls how much of it is allowed.

14 years agoremove implicit --parallel setting by dh
Joey Hess [Wed, 28 Oct 2009 22:30:24 +0000 (18:30 -0400)]
remove implicit --parallel setting by dh

14 years agologic simplification
Joey Hess [Wed, 28 Oct 2009 22:22:44 +0000 (18:22 -0400)]
logic simplification

14 years agopreliminary changelog
Joey Hess [Wed, 28 Oct 2009 22:22:22 +0000 (18:22 -0400)]
preliminary changelog

14 years agoclarify wording
Joey Hess [Wed, 28 Oct 2009 21:57:33 +0000 (17:57 -0400)]
clarify wording

14 years agorefactor --parallel processing
Joey Hess [Wed, 28 Oct 2009 21:46:45 +0000 (17:46 -0400)]
refactor --parallel processing

Use a function to set the value rather than post-processing.

14 years agoreduce amount of MAKEFLAGS cleaning
Joey Hess [Wed, 28 Oct 2009 21:23:28 +0000 (17:23 -0400)]
reduce amount of MAKEFLAGS cleaning

Now clean_jobserver_makeflags will only remove --jobserver settings
from MAKEFLAGS. This is simpler and easier to understand than
the old behavior, which, if there was no --jobserver, removed
all -j and --jobs, while leaving those when removing --jobserver.

This relies on -j options passed to make overriding
-j settings in MAKEFLAGS. So we don't need to clean those out,
we can just override them.

14 years agosplit get_make_jobserver_status into two functions
Joey Hess [Wed, 28 Oct 2009 20:45:12 +0000 (16:45 -0400)]
split get_make_jobserver_status into two functions

I disliked the complexity of the return values, and the boilerplate
code that followed the two calls to the function, to clean/unset
MAKEFLAGS. To solve both, I refactored it into two functions, one simply
tests to see if a jobserver is specified but unavailable, while the other
cleans/unsets MAKEFLAGS.

This loses the ability to pull the jobs-N count out of MAKEFLAGS,
but that was not currently used.

14 years agomove obscure function to EOF
Joey Hess [Wed, 28 Oct 2009 20:03:46 +0000 (16:03 -0400)]
move obscure function to EOF

14 years agoSupport parallel building in makefile buildsystem
Modestas Vainius [Wed, 28 Oct 2009 19:49:34 +0000 (15:49 -0400)]
Support parallel building in makefile buildsystem

1) Add routine to Dh_Lib (used by dh and makefile.pm) which is capable of
detecting make jobserver and job control options from the MAKEFLAGS environment
variable. It also generates and returns a clean up MAKEFLAGS from these
options.

2) Add --parallel option to build system framework which allows source packages
to specify that they support parallel building. Optional value for this option is
the number of maximum parallel process to allow. However, the actual number of
parallel process (if any) for the specific build is determined from
DEB_BUILD_OPTIONS env variable as specified by Debian Policy.

By default (no --parallel option) parallel is neither enabled nor disabled
(depends on the external environment). However, dh may pass --parallel to
dh_auto_* implicitly in case 4) described below.

3) Add parallel support for makefile buildsystem. This implementation
forcefully starts a new make job server (or disables parallel) for the number
of process requested. If --parallel was not passed to the build system at all,
the build system will only clean up MAKEFLAGS from stale jobserver options to
avoid pointless make warnings.

4) If dh detects that it is being run by dpkg-buildpackage -jX and it is NOT
run with "+" prefix from debian/rules (i.e. jobserver is not reachable), it
enables --parallel implicitly. This closes: #532805.

Signed-off-by: Modestas Vainius <modestas@vainius.eu>
14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 19 Oct 2009 20:12:24 +0000 (16:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoconsistently print whole failing command line
Joey Hess [Mon, 19 Oct 2009 20:05:47 +0000 (16:05 -0400)]
consistently print whole failing command line

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 12 Oct 2009 00:12:31 +0000 (20:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agotwo more dh_install tests
Joey Hess [Sun, 11 Oct 2009 23:53:47 +0000 (19:53 -0400)]
two more dh_install tests

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Thu, 1 Oct 2009 19:12:20 +0000 (15:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper 7.4.3
Joey Hess [Thu, 1 Oct 2009 18:47:15 +0000 (14:47 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.4.3
Joey Hess [Thu, 1 Oct 2009 18:43:03 +0000 (14:43 -0400)]
releasing version 7.4.3

14 years agoinvert python ordering
Joey Hess [Thu, 1 Oct 2009 18:20:59 +0000 (14:20 -0400)]
invert python ordering

--force allows doing so

14 years agoindentation
Joey Hess [Thu, 1 Oct 2009 18:11:13 +0000 (14:11 -0400)]
indentation

14 years agoPass --force option to Python distutils install command.
Andrew Straw [Sun, 27 Sep 2009 00:26:01 +0000 (17:26 -0700)]
Pass --force option to Python distutils install command.

This command will prevent distutils from attempting to determine
whether a file should be installed based on the timestamp of the
to-be-overwritten file.

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 29 Sep 2009 22:12:04 +0000 (18:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agofix a spelling mistake in dh_makeshlibs man french translation (#494300 part 2)
valery perrin [Tue, 29 Sep 2009 21:17:13 +0000 (23:17 +0200)]
fix a spelling mistake in dh_makeshlibs man french translation (#494300 part 2)

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 28 Sep 2009 02:12:26 +0000 (22:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoformat
Joey Hess [Mon, 28 Sep 2009 01:24:09 +0000 (21:24 -0400)]
format

14 years agoAllow dpkg-architecture to print errors to stderr. Closes: #548636
Joey Hess [Mon, 28 Sep 2009 01:23:46 +0000 (21:23 -0400)]
Allow dpkg-architecture to print errors to stderr. Closes: #548636

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Thu, 17 Sep 2009 21:12:31 +0000 (17:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoAdd dh_lintian french translation
valery perrin [Thu, 17 Sep 2009 20:44:04 +0000 (22:44 +0200)]
Add dh_lintian french translation

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Wed, 16 Sep 2009 00:12:05 +0000 (20:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years ago* update french translation. Closes: #494300, #477703
Valéry Perrin [Tue, 15 Sep 2009 23:15:09 +0000 (01:15 +0200)]
* update french translation. Closes: #494300, #477703
* add --previous at po4a command into Makefile
* add dh, dh_auto_install, dh_auto_clean, dh_auto_configure,
  dh_auto_install, dh_auto_test, dh_bugfiles, dh_icons,
  dh_installifupdown, dh_installudev, dh_prep
  into po4a.cfg manpages list

Valery.Perrin (valery.perrin.debian@free.fr)

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 15 Sep 2009 18:12:02 +0000 (14:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_perl: Do not look at perl scripts under /usr/share/doc. Closes: #546683
Joey Hess [Tue, 15 Sep 2009 17:19:00 +0000 (13:19 -0400)]
dh_perl: Do not look at perl scripts under /usr/share/doc. Closes: #546683

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 14 Sep 2009 21:12:12 +0000 (17:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.4.2 7.4.2
Joey Hess [Mon, 14 Sep 2009 20:17:40 +0000 (16:17 -0400)]
releasing version 7.4.2

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 14 Sep 2009 18:12:22 +0000 (14:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_installudev: With --name, install debian/<package>.<name>.udev to rules.d/<priorit...
Joey Hess [Mon, 14 Sep 2009 17:31:34 +0000 (13:31 -0400)]
dh_installudev: With --name, install debian/<package>.<name>.udev to rules.d/<priority>-<name>, the same as debian/<name>.udev is installed for the first package. Closes: #546337

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 14 Sep 2009 17:12:09 +0000 (13:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoReorder dh_pysupport call in dh sequence to come before dh_installinit, so the genera...
Joey Hess [Mon, 14 Sep 2009 17:11:07 +0000 (13:11 -0400)]
Reorder dh_pysupport call in dh sequence to come before dh_installinit, so the generated postinst script registers python modules before trying to use them. Closes: #546293

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 8 Sep 2009 22:12:19 +0000 (18:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_installdocs: Add --link-doc option that can be used to link documentation director...
Joey Hess [Tue, 8 Sep 2009 21:58:18 +0000 (17:58 -0400)]
dh_installdocs: Add --link-doc option that can be used to link documentation directories. This is easier to use and more flexible than the old method of running dh_link first to make a broken symlink. Closes: #545676 Thanks, Colin Watson

14 years agoBug#545676: dh_installdocs: option to link documentation directories
Colin Watson [Tue, 8 Sep 2009 11:17:02 +0000 (12:17 +0100)]
Bug#545676: dh_installdocs: option to link documentation directories

As discussed by e-mail, dh_installdocs could do with an option to make
the documentation directory a symlink, to clean up dh-using packages
that otherwise need to use override targets to arrange for dh_link to
run before dh_installdocs.

This turns out to be slightly involved due to the need to handle the
case where you want to do this *and* also install some extra
documentation in the symlink target, while also making a dangling
symlink and avoiding file conflicts in the simple case, so I had to
change dh_installchangelogs as well. I think this is right now; tested
on debconf ('dh_installdocs -Ndebconf-doc --link-doc=debconf;
dh_installdocs -pdebconf-doc') and groff ('dh_installdocs
--link-doc=groff-base').

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 7 Sep 2009 18:12:19 +0000 (14:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh: Remove duplicate dh_installcatalogs list. Closes: #545483 (It was only run once...
Joey Hess [Mon, 7 Sep 2009 17:12:47 +0000 (13:12 -0400)]
dh: Remove duplicate dh_installcatalogs list. Closes: #545483 (It was only run once due to logging.)

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 7 Sep 2009 17:12:12 +0000 (13:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoMan page typo. Closes: #545443
Joey Hess [Mon, 7 Sep 2009 16:48:53 +0000 (12:48 -0400)]
Man page typo. Closes: #545443

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Sun, 6 Sep 2009 23:11:56 +0000 (19:11 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.4.1 7.4.1
Joey Hess [Sun, 6 Sep 2009 22:53:30 +0000 (18:53 -0400)]
releasing version 7.4.1

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Fri, 4 Sep 2009 21:12:07 +0000 (17:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_prep(1): Clarify when it should be called. Closes: #544969
Joey Hess [Fri, 4 Sep 2009 20:53:41 +0000 (16:53 -0400)]
dh_prep(1): Clarify when it should be called. Closes: #544969

14 years agoAdd FILES sections to man pages. Closes: #545041
Joey Hess [Fri, 4 Sep 2009 20:50:49 +0000 (16:50 -0400)]
Add FILES sections to man pages. Closes: #545041

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Wed, 2 Sep 2009 19:12:54 +0000 (15:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoformatting
Joey Hess [Wed, 2 Sep 2009 18:54:27 +0000 (14:54 -0400)]
formatting

14 years agoreword
Joey Hess [Wed, 2 Sep 2009 18:51:31 +0000 (14:51 -0400)]
reword

14 years agoformatting
Joey Hess [Wed, 2 Sep 2009 18:50:21 +0000 (14:50 -0400)]
formatting

14 years agoupstart support
Steve Langasek [Wed, 2 Sep 2009 18:49:34 +0000 (14:49 -0400)]
upstart support

Patch dh_installinit to handle upstart job files in preference over init
scripts, and provide compatibility symlinks in /etc/init.d for sysv-rc
implementations.  Closes: #536035.

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 1 Sep 2009 18:12:26 +0000 (14:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.4.0 7.4.0
Joey Hess [Tue, 1 Sep 2009 17:56:35 +0000 (13:56 -0400)]
releasing version 7.4.0

14 years ago-a == -s
Joey Hess [Tue, 1 Sep 2009 17:40:52 +0000 (13:40 -0400)]
-a == -s

The -a flag now does the same thing as the -s flag, so debhelper users do
not need to worry about using the -s flag when building a package that only
builds for some architectures, and dh will also work in that situation.
Closes: #540794
14 years agoOptimise -s handling to avoid running dpkg-architecture if the package is arch all.
Joey Hess [Tue, 1 Sep 2009 17:20:37 +0000 (13:20 -0400)]
Optimise -s handling to avoid running dpkg-architecture if the package is arch all.

14 years agorefactor
Joey Hess [Tue, 1 Sep 2009 17:10:28 +0000 (13:10 -0400)]
refactor

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Wed, 26 Aug 2009 22:12:16 +0000 (18:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.3.16 7.3.16
Joey Hess [Wed, 26 Aug 2009 21:18:52 +0000 (17:18 -0400)]
releasing version 7.3.16

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Wed, 26 Aug 2009 21:12:34 +0000 (17:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agochangelog
Joey Hess [Wed, 26 Aug 2009 20:52:44 +0000 (16:52 -0400)]
changelog

14 years agocwd is exported
Joey Hess [Wed, 26 Aug 2009 20:50:19 +0000 (16:50 -0400)]
cwd is exported

14 years agoSupport --destdir option in dh_auto_install
Modestas Vainius [Wed, 26 Aug 2009 20:49:39 +0000 (16:49 -0400)]
Support --destdir option in dh_auto_install

This patch adds --destdir option to dh_auto_install which allows to override
destdir auto-selection. This basically closes #538201 since the same requested
behaviour can be achieved but in a more clean way.

Signed-off-by: Modestas Vainius <modestas@vainius.eu>
14 years agochangelog
Joey Hess [Wed, 26 Aug 2009 20:46:33 +0000 (16:46 -0400)]
changelog

14 years agodrop regex support from remove_command_options
Joey Hess [Wed, 26 Aug 2009 20:41:53 +0000 (16:41 -0400)]
drop regex support from remove_command_options

I hope that it will not be needed; indeed I doubt that
remove_command_options will be used much, because sequence addons would
need to try to do conflicting things to need it. And the interface makes it
hard for such conflicting sequence addons to work around the other, since
addons can be loaded in either order. So let's not encourage them too
much, and if there's a use case later, we can made changes.

I haven't applied Modestas's enhanced patch that allows adding an option to
all commands because I similarly think it might not be used. If a use case
comes along we can add something like that.

14 years agoAllow dh addons to pass options to debhelper commands
Modestas Vainius [Wed, 26 Aug 2009 20:40:45 +0000 (16:40 -0400)]
Allow dh addons to pass options to debhelper commands

Add dh addons APIs add_command_options()/remove_command_options() that
allow addons to add additional options which dh will pass to the specified
debhelper commands.

Signed-off-by: Modestas Vainius <modestas@vainius.eu>
14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 25 Aug 2009 18:12:03 +0000 (14:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_installdocs: Loosen the Document field parsing, to accept everything doc-base...
Joey Hess [Tue, 25 Aug 2009 17:19:17 +0000 (13:19 -0400)]
dh_installdocs: Loosen the Document field parsing, to accept everything doc-base *really* accepts in a doc id (not just what it's documented to accept). Closes: #543499

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 24 Aug 2009 17:12:27 +0000 (13:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh_desktop: Clarify in man page why it's a no-op. Closes: #543364
Joey Hess [Mon, 24 Aug 2009 16:59:22 +0000 (12:59 -0400)]
dh_desktop: Clarify in man page why it's a no-op. Closes: #543364

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Fri, 21 Aug 2009 22:12:15 +0000 (18:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.3.15 7.3.15
Joey Hess [Fri, 21 Aug 2009 21:27:13 +0000 (17:27 -0400)]
releasing version 7.3.15

14 years agodh_installudev transition
Joey Hess [Fri, 21 Aug 2009 21:19:18 +0000 (17:19 -0400)]
dh_installudev transition

* dh_installudev: Install rules files into new location
  /lib/udev/rules.d/
* dh_installudev: Add code to delete old conffiles unless
  they're modified, and in that case, rename them to override
  the corresponding file in /lib/udev. (Based on patch by
  Martin Pitt.) (Note that this file will not be deleted on purge --
  I can't see a good way to determine when it's appropriate to do
  that.)
* dh_installudev: Set default priority to 60; dropping the "z".
  If --priority=zNN is passed, treat that as priority NN.
* Above Closes: #491117
* dh_installudev: Drop code handling move of /etc/udev/foo into
  /etc/udev/rules.d/.

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Mon, 17 Aug 2009 22:12:10 +0000 (18:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.3.14 7.3.14
Joey Hess [Mon, 17 Aug 2009 21:23:05 +0000 (17:23 -0400)]
releasing version 7.3.14

14 years agodh_perl: Remove perl minimum dependency per new policy. Closes: #541811
Joey Hess [Mon, 17 Aug 2009 20:02:15 +0000 (16:02 -0400)]
dh_perl: Remove perl minimum dependency per new policy. Closes: #541811

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Sun, 16 Aug 2009 17:22:17 +0000 (13:22 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agodh: Display $@ error if addon load fails. Closes: #541845
Joey Hess [Sun, 16 Aug 2009 16:56:01 +0000 (12:56 -0400)]
dh: Display $@ error if addon load fails. Closes: #541845

14 years agoRun pod2man with --utf8. Closes: #541270
Joey Hess [Sun, 16 Aug 2009 16:45:28 +0000 (12:45 -0400)]
Run pod2man with --utf8. Closes: #541270

14 years agoavoid loading File::Spec when not needed
Joey Hess [Sun, 16 Aug 2009 16:37:39 +0000 (12:37 -0400)]
avoid loading File::Spec when not needed

14 years agodh: Add --list option to list available addons.
Colin Watson [Thu, 13 Aug 2009 08:03:34 +0000 (09:03 +0100)]
dh: Add --list option to list available addons.

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Sat, 15 Aug 2009 01:21:28 +0000 (21:21 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoreleasing version 7.3.13 7.3.13
Joey Hess [Sat, 15 Aug 2009 00:22:47 +0000 (20:22 -0400)]
releasing version 7.3.13

14 years agoimprove python regexps, per bzed
Joey Hess [Fri, 14 Aug 2009 01:48:14 +0000 (21:48 -0400)]
improve python regexps, per bzed

14 years agoMerge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper
Joey Hess [Tue, 11 Aug 2009 17:12:35 +0000 (13:12 -0400)]
Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelper

14 years agoremove out of place comment
Joey Hess [Tue, 11 Aug 2009 16:49:31 +0000 (12:49 -0400)]
remove out of place comment