summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* fix unterminated S<..> in spanish poJoey Hess2011-02-10
|
* Improve handling of logging in override targetsJoey Hess2011-02-10
| | | | | | | | | | | | | | | Changes in 76ef1cbd64829ee4a5156a5fc4b887bcba6b974f broke --remaining-packages in override target. Now all debhelper commands run in the override target are marked as running as part of the override, and when the whole target is run, the log is updated to indicate that commands run during the override have finished. So, inside the override target, --remaining-packages will see the commands run as part of the target as having been run. Outside, if the target fails, dh won't see the commands run it it as having been run. Closes: #612828
* changelogJoey Hess2011-02-08
|
* refactor cross command generationJoey Hess2011-02-08
|
* mergeJoey Hess2011-02-08
|\
| * Use cross-binutils helpers when cross-compilingLoïc Minier2011-02-08
| | | | | | | | | | dh_strip, dh_makeshlibs: use triplet-objdump, triplet-objcopy and triplet-strip from cross-binutils when cross-compiling; closes: #412118.
* | releasing version 8.1.0Joey Hess2011-02-05
| |
* | remove MODULEBUILDRC overrideJoey Hess2011-01-25
| | | | | | | | | | | | | | | | | | | | | | | | This doesn't work reliably, see #607313. Probably that is caused by the perl_build buildsystem not being detected for a package that has a Makefile.PL, and so MODULEBUILDRC is not overridden. So, I could add it there too, but then it's also possible for it to be run from a Makefile.. so I could add it to dh_auto_*. But then there are packages that don't use those. So I conclude that dealing with this in debhelper is out of its scope, and this needs to be fixed at a higher level, probably dpkg-dev.
* | changelogJoey Hess2011-01-25
| |
* | dh_installinit: never call init scripts directly, only through invoke-rc.dSteve Langasek2011-01-25
| |
* | update to DEP-5Joey Hess2011-01-13
| |
* | dh_compress: Ignore objects.inv files, generated by Sphinx documentation. ↵Joey Hess2011-01-04
| | | | | | | | Closes: #608907
* | Ignore objects.inv files, generated by Sphinx documentationJosselin Mouette2011-01-04
| |
* | dh_compress: Javascript files are not compressed, as these go with ↵Joey Hess2010-12-22
| | | | | | | | (uncompressed) html files. Closes: #603553
* | Revert "changelog"Joey Hess2010-12-07
| | | | | | | | This reverts commit c91178b5e6d02a057eec471eab4837db1e3a2f6c.
* | Revert "dh: Add sequence dependencies and satisfy dependencies prior to ↵Joey Hess2010-12-07
| | | | | | | | | | | | | | | | running sequence" This reverts commit c685546d18606fafee2ad9d3a1cb3d90dd7e9d5e. Caused extra work, and possible FTBFS conditions.
* | changelogJoey Hess2010-12-07
| |
* | dh: Add sequence dependencies and satisfy dependencies prior to running sequenceRoger Leigh2010-12-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add %sequence_deps and invoke recursively prior to examining logs and running commands in sequence. The supplied dependencies are equivalent to the following make rules: build: build-arch build-indep install: install-arch install-indep install-arch: build-arch install-indep: build-indep binary: binary-arch binary-indep binary-arch: install-arch binary-indep: install-indep In the existing dh command sequences, the binary sequences all included the corresponding install sequence commands, and in turn the install sequences all included the corresponding build commands. While this works, it has a major deficiency. If the "binary" sequence is run, it will not run the "build" target in debian/rules. This leads to a situation where building with dpkg-buildpackge, which would typically invoke "debian/rules build" followed by "debian/rules binary-arch" and/or "debian/rules debian-indep" may do something different than just invoking "debian/rules binary" or "dh binary" because the build target in debian/rules is effectively bypassed. This applies equally to the -arch and -indep sequence variants. This change eliminates the duplicated sequence commands, and instead invokes the appropriate target(s) in debian/rules, as specified in the %sequence_deps hash. In the common case, the dh sequence by the same name will be called, so the behaviour is identical. However, this provides a means to utilise all of the policy-specified targets, plus the install targets and extend them with additional dependencies and commands, while still allowing full use of dh and giving identical behaviour whether dh or debian/rules targets are used. Signed-off-by: Roger Leigh <rleigh@debian.org>
* | dh: Use "architecture independent" rather than "binary independent" for ↵Roger Leigh2010-12-05
| | | | | | | | | | | | consistency Signed-off-by: Roger Leigh <rleigh@debian.org>
* | dh_installdocs: Clarify that debian/README.Debian and debian/TODO are only ↵Joey Hess2010-12-05
| | | | | | | | installed into the first package listed in debian/control. Closes: #606036
* | dh_listpackages: Do not display warnings if options cause no packages to be ↵Joey Hess2010-11-22
| | | | | | | | listed.
* | changelogJoey Hess2010-11-22
| |
* | dh: Add support for build-arch, build-indep, install-arch and install-indep ↵Roger Leigh2010-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sequences The existing binary-arch and binary-indep sequences depend upon these new sequences, leading to the following possible orders: binary → install → build binary-arch → install-arch → build-arch binary-indep → install-indep → build-indep This is the logical dependency ordering of the sequences; the actual order is of course in reverse so that build is followed by install and binary. Signed-off-by: Roger Leigh <rleigh@debian.org>
* | reorderJoey Hess2010-11-22
| |
* | dh: Improve filtering in dh_listpackages example. Closes: #604561Joey Hess2010-11-22
| |
* | dh: Use $(filter) rather than $(findstring)Roger Leigh2010-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | $(findstring) can match partial strings and so is unreliable when a package builds several binary packages and one package contains the name of another package within its name. In these cases, $(findstring) can return a partial match which leads to problems (performing unwanted actions which could lead to build failure, for example). $(filter) matches the entire string in the wordlist, so is a reliable replacement for $(findstring). Signed-off-by: Roger Leigh <rleigh@debian.org>
* | updated spanish translation after large typography changeJoey Hess2010-11-11
| |
* | French translation update after massive man page typographyValéry Perrin2010-11-07
| | | | | | | | Signed-off-by: Valéry Perrin <valery.perrin.debian@free.fr>
* | Fix deprecated command list on translated debhelper(7) man pages. Closes: ↵Joey Hess2010-11-02
| | | | | | | | #601204
* | dh: Inhibit logging for commands run inside override targetsJoey Hess2010-11-02
| | | | | | | | | | | | | | Note that only the overridden command is inhibited. I wanted to avoid a behavior change if a rules file runs other debhelper commands inside the target, and relies on the logging preventing them being run later on in the sequence.
* | Explicitly build-depend on a new enough perl-base. Closes: #601188Joey Hess2010-11-02
| |
* | bugcloseJoey Hess2010-11-02
| |
* | typoJoey Hess2010-11-02
| |
* | Apply manual pages conventionsDavid Prévot2010-11-02
| | | | | | | | | | | | | | | | | | 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.
* | typoJoey Hess2010-11-02
| |
* | maintscript filesJoey Hess2010-11-02
| | | | | | | | | | | | | | 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)
* | note that the hardcoded arg_max here is obsoleteJoey Hess2010-10-27
| |
* | add file added by recent spanish updateJoey Hess2010-10-26
| |
* | Large update to Spanish man page translations by Omar Campagne. Closes: #600913Joey Hess2010-10-21
| |
* | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2010-10-17
|\ \
| * | Fix french misspelling and strings lenghtValéry Perrin2010-10-15
| | |
* | | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2010-09-29
|\| |
| * | update french translation.Valery Perrin2010-09-26
| | |
* | | stop testing jobserver availability codeJoey Hess2010-09-29
|/ / | | | | | | | | Testing this is sensative to what FDs are inherited by the test script. After the recent fix, it started breaking another way.
* | Avoid open fd 5 or 6 breaking buildsystem test suite. Closes: #596679Joey Hess2010-09-13
| |
* | Man page fixes about what program -u passes params to. Closes: #593342Joey Hess2010-08-17
| |
* | correct license of dh_installinitJoey Hess2010-08-13
| | | | | | | | | | | | 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+.
* | python_distutils: Pass --force to setup.py build, to ensure that when ↵Joey Hess2010-08-07
| | | | | | | | | | | | | | | | | | | | 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
* | updateJoey Hess2010-08-07
| |
* | releasing version 8.0.0Joey Hess2010-08-07
| |