summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-11-02Apply manual pages conventionsDavid Prévot58-651/+652
As advised in man(1), always use: B<bold text> type exactly as shown. I<italic text> replace with appropriate argument. s/debian/Debian/ if needed. s/ / / also. s/perl/Perl/ s/python/Python/ and s/emacs/Emacs/ too.
2010-11-02typoJoey Hess1-1/+1
2010-11-02maintscript filesJoey Hess4-0/+61
dh_installdeb: Support debian/package.maintscript files, which can contain dpkg-maintscript-helper commands. This can be used to automate moving or removing conffiles, or anything added to dpkg-maintscript-helper later on. Closes: #574443 (Thanks, Colin Watson)
2010-10-27note that the hardcoded arg_max here is obsoleteJoey Hess1-0/+1
2010-10-26add file added by recent spanish updateJoey Hess1-0/+8
2010-10-21Large update to Spanish man page translations by Omar Campagne. Closes: #600913Joey Hess6-2485/+1941
2010-10-17Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess3-97/+172
2010-10-15Fix french misspelling and strings lenghtValéry Perrin3-97/+172
2010-09-29Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess3-185/+124
2010-09-29stop testing jobserver availability codeJoey Hess1-20/+3
Testing this is sensative to what FDs are inherited by the test script. After the recent fix, it started breaking another way.
2010-09-26update french translation.Valery Perrin3-185/+124
2010-09-13Avoid open fd 5 or 6 breaking buildsystem test suite. Closes: #596679Joey Hess2-0/+10
2010-08-17Man page fixes about what program -u passes params to. Closes: #593342Joey Hess3-2/+3
2010-08-13correct license of dh_installinitJoey Hess1-1/+1
It was GPL 2+ ; Steve added some code and chose to bump the license to GPL 3, which is his right (and I don't mind), but that code is still mixed with 2+ code, which is now 3+.
2010-08-07python_distutils: Pass --force to setup.py build, to ensure that when ↵Joey Hess2-1/+11
python-dbg is run it does not win and result in scripts having it in the shebang line. Closes: #589759 (cherry picked from commit 865e6266a5eaae81004bf530bc23da1c3fdc10b1) Conflicts: debian/changelog
2010-08-07updateJoey Hess1-4/+1
2010-08-07releasing version 8.0.08.0.0Joey Hess5-176/+164
2010-08-07Revert "python_distutils: Pass --force to setup.py build, to ensure that ↵Joey Hess2-6/+1
when python-dbg is run it does not win and result in scripts having it in the shebang line. Closes: #589759" This reverts commit 865e6266a5eaae81004bf530bc23da1c3fdc10b1. Conflicts: debian/changelog Too late for 8.0.0 since testing is frozen. Will put back in later.
2010-08-07Finalized v8 mode, which is the new recommended default.Joey Hess2-7/+5
2010-07-25python_distutils: Pass --force to setup.py build, to ensure that when ↵Joey Hess2-1/+9
python-dbg is run it does not win and result in scripts having it in the shebang line. Closes: #589759
2010-07-18Bug#589574: [PATCH] dh_fixperms: Ensure files in /etc/sudoers.d/ are mode ↵Carsten Hey2-0/+13
440. Closes: #589574 Signed-off-by: Carsten Hey <carsten@debian.org>
2010-06-30releasing version 7.9.37.9.3Joey Hess1-2/+2
2010-06-30perl_makemaker: import compat(). Closes: #587654Joey Hess2-0/+7
2010-06-29releasing version 7.9.27.9.2Joey Hess1-2/+2
2010-06-23In v8 mode, stop passing packlist=0 in perl_makemaker buildsystem, since ↵Joey Hess2-2/+12
perl_build is tried first. Avoids the makemaker warning message introduced by the fix to #527990.
2010-06-16releasing version 7.9.17.9.1Joey Hess5-687/+891
2010-06-16postrm-init: Avoid calling the error handler if update-rc.d fails. Closes: ↵Joey Hess2-1/+3
#586065
2010-06-06add autotools_dev exampleJoey Hess1-0/+9
2010-05-28Merge commit '93a73a7ead5d90accb7259a46efdebab113e6550'Joey Hess4-15/+18
2010-05-28Revert "In v8 mode, debhelper only ever acts on packages that can be built ↵Joey Hess4-20/+9
for the given architecture, even if -N or -p are used to specify packages specific to other architectures." This reverts commit 653fb43cfa731d047deaf19b61aef2ebbeb00990. Oops, I meant to not make this change.. -N was already fixed, and fixing -p does not seem important.
2010-05-28updateJoey Hess2-11/+10
2010-05-28In v8 mode, prefer the perl_build buildsystem over perl_makemaker. Closes: ↵Joey Hess4-4/+8
#578805
2010-05-28In v8 mode, debhelper only ever acts on packages that can be built for the ↵Joey Hess4-9/+20
given architecture, even if -N or -p are used to specify packages specific to other architectures.
2010-05-28dh_installchangelogs: Also look for changelog files in doc(s) ↵Joey Hess2-10/+14
subdirectories. Closes: #521258
2010-05-28dh_installchangelogs: Support packages placing their changelog in a file ↵Joey Hess2-1/+3
with a name like HISTORY. Closes: #582749
2010-05-27exampleJoey Hess2-1/+2
2010-05-27wordingJoey Hess1-2/+2
2010-05-27consistently use v7 not V7 (etc)Joey Hess3-17/+17
2010-05-27In v8 mode, dh expects the sequence to run is always its first parameter.Joey Hess4-15/+32
This avoids ambiguities when parsing options to be passed on to debhelper commands. (See #570039) In the end, the idea of putting the debhelper command options after -- seemed to need too much knowledge about whether an option like --buildsystem is a dh option or a command option. I did consider making no change.. The ambiguities this eliminates are small. But it seemed worth simplifying dh's option parser, and only about 1/6th of calls to dh in the archive don't put the sequence first already. (Docs have shown that as the right thing to do for some time.)
2010-05-27correct outdated commentJoey Hess1-2/+1
2010-05-27dh_fixperms: Tighten globs used to find library .so files, avoiding ↵Joey Hess2-1/+3
incorrectly matching things like "foo.sources". Closes: #583328
2010-05-24use dpkg-mergechangelogJoey Hess1-0/+1
2010-05-23updateJoey Hess1-3/+5
2010-05-23clarifyJoey Hess1-1/+1
2010-05-23debian/compress files are now deprecated. Seems only one package (genesis) ↵Joey Hess3-6/+8
still uses them.
2010-05-23updateJoey Hess1-1/+4
2010-05-23dh_testversion: Removed this deprecated command.Joey Hess3-90/+1
2 packages in the archive still use it, but both like this: ifneq ($(shell dh_testversion '<<' 7.4.10 2>/dev/null && echo old),old) dh_parallel = --parallel endif Happily, the way that was written, if the command doesn't exist, it does the right thing and enables the behavior for the new debhelper. Not that it would greatly matter if it did not, since --parallel is not crucial.
2010-05-23In v8 mode, dh_makeshlibs will run dpkg-gensymbols on all shared libraries ↵Joey Hess4-3/+25
it generates shlibs files for. This means that -X can be used to exclude libraries from processing by dpkg-gensymbols. It also means that libraries in unusual locations, where dpkg-gensymbols does not itself normally look will be passed to it, a behavior change which may break some packages. Closes: #557603
2010-05-23In v8 mode, do not allow directly passing unknown options to debhelper ↵Joey Hess7-7/+24
commands. (Unknown options in DH_OPTIONS still only result in warnings.)
2010-05-23update Package-Type docsJoey Hess1-1/+1
dpkg supports the field now, so no XC- needed