summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* debhelper no longer build-depends on man-db, to ease bootstrapping.Joey Hess2011-08-29
| | | | The man page recode is not necessary as the man pages are utf-8 already.
* releasing version 8.9.6Joey Hess2011-08-23
|
* dh_installlogcheck: Add support for --name.Gergely Nagy2011-08-23
| | | | | | | | This patch makes dh_installlogcheck be similar to other helpers, like dh_installlogrotate that already support a --name option: to install the files as if they were installed by a different package. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* releasing version 8.9.5Joey Hess2011-08-23
|
* dh_ucf: fix test for ucf/ucfr availability and quote filenamesJeroen Schot2011-08-23
|
* dh_compress: Don't compress _sources documentation subdirectory as used by ↵Joey Hess2011-08-20
| | | | python-sphinx. Closes: #637492 Thanks, Jakub Wilk
* releasing version 8.9.4Joey Hess2011-08-06
|
* hide deprecation noticeJoey Hess2011-08-06
| | | | Can this test be written w/o using --after?
* dpkg-buildflags is only used to set environment in v9Joey Hess2011-08-06
| | | | | | To avoid re-breaking packages that were already broken a first time by dpkg-buildpackage unconditionally setting the environment, and unbroke it by unsetting variables in the rules file. (Example: numpy)
* changelogJoey Hess2011-08-05
|
* Add support for running tests in parallel to the cmake build system.Modestas Vainius2011-08-05
| | | | | | | | | | | Pass appropriate -jN option to ctest (via ARGS variable in the Makefile) to enable support for running tests in parallel. Similarly to makefile build system, ctest -j1 mode is enforced even when parallel mode in debhelper is not explicitly enabled. Unlike make, CTest does not have "unlimited parallel" setting (-j implies -j1). So in order to simulate unlimited parallel, allow to fork a huge number of threads instead.
* changelogJoey Hess2011-08-05
|
* makefile.pm: remove build directory even if Makefile does not exist yet.Modestas Vainius2011-08-05
| | | | | | Assume that the package can be cleaned (i.e. the build directory can be removed) as long as it is built out-of-source tree and can be configured. This is useful for derivative buildsystems which generate Makefiles.
* dh: The --before --after --until and --remaining options are deprecated. Use ↵Joey Hess2011-08-05
| | | | override targets instead.
* updateJoey Hess2011-07-19
|
* releasing version 8.9.3Joey Hess2011-07-19
|
* doc tweak re target dependenciesJoey Hess2011-07-19
| | | | | | | | | | | | | If a rules file has a custom install or binary target, those targets still need to explicitly depend on the build target. Unless dh is used in such a target (which it probably is of course). It's not possible to avoid the need for those dependencies. A rules file with a hand-written binary target simply does not run dh, so dh can do nothing to help it run the build target. Reword the docs to not give the wrong impression that dh somehow magically makes that work.
* dh: Remove obsolete optimisation hack that caused sequence breakage in v9 ↵Joey Hess2011-07-19
| | | | | | | | | | | | | | | | | | with a rules file with an explict build target. Closes: #634784 This hack was necessary back when dh ran each target, and so recursively invoked itself. If debian/rules binary ran debian/rules binary-arch ran debian/rules install-arch ran debian/rules build-arch, then debhelper commands would be running with -a throughout, and so for debian/rules binary-indep it would have to re-run all the commands with -i. The hack avoided this extra work (and expecially dh_auto_configure running twice) by first running the common commands without -i or -a and only then following through with running the explicit per-arch targets, which didn't run many (if any) additional commands. But now dh does not run implicit targets, so (unless targets are explicit), it will instead just construct a sequence of debhelper commands to run directly, and so the -a flag is avoided.
* releasing version 8.9.2Joey Hess2011-07-18
|
* Support make 3.82. Closes: #634385Joey Hess2011-07-18
|
* releasing version 8.9.1Joey Hess2011-07-17
|
* tweakJoey Hess2011-07-17
|
* changelogJoey Hess2011-07-17
|
* fix exit status propigationJoey Hess2011-07-17
| | | | | Also simplified a lot by not special-casing the base case, at the cost of always forking once.
* no need to wait when parallel is disabledJoey Hess2011-07-17
|
* minorJoey Hess2011-07-17
|
* dh_builddeb: support for parallel builds of debsGergely Nagy2011-07-17
| | | | | | | | Implement support for parallel deb builds, when DEB_BUILD_OPTIONS has parallels=N - limiting the number of forked processes to N. Requested-By: Kari Pahula <kaol@debian.org> Signed-Off-By: Gergely Nagy <algernon@madhouse-project.org>
* adjust test number for new build systemJoey Hess2011-07-17
|
* Remove debhelper.log in compat level 1. Closes: #634155Joey Hess2011-07-17
|
* layutJoey Hess2011-07-16
|
* oops, only force qt4 when it's enabledJoey Hess2011-07-16
|
* Now the QT4 version of qmake can be explicitly selected by passing ↵Joey Hess2011-07-16
| | | | | | | | | | | | --buildsystem=qmake_qt4. Closes: #566840 There is that build system option patch that I suckily never applied, and could be used here.. but this is at its core a different build system, and so handling it as such makes the most sense. It may make sense to have a qmake_qt3 build system, but perhaps QT 3 will instead just go away. I considered just waiting, but this is an easy fix. ;)
* reorg notes sectionJoey Hess2011-07-16
|
* add bug closureJoey Hess2011-07-16
|
* avoid undef when dh is run w/o a sequenceJoey Hess2011-07-16
|
* dh: In v9, do not enable any python support commands.Joey Hess2011-07-16
| | | | | | | | | | | | dh_pysupport has started emitting a deprecation warning, which is very annoying since it clutters every build that uses dh -- even builds where it doesn't do anything. Since there is not just a dh_python2, but also a dh_python3 waiting in the wings, this is clearly too volatile a situation for dh to try to support further. I considered making dh_python detect and run the right dh_python[23] helper -- a python helper helper as it were -- but 70-odd packages still use that command.
* typoJoey Hess2011-07-09
|
* Typo fixes. Closes: #632662Joey Hess2011-07-04
|
* some tweaks to mention dh_python2Joey Hess2011-06-28
|
* releasing version 8.9.0Joey Hess2011-06-24
|
* dh_auto_configure: If there is a problem with cmake, display the CMakeCache.txt.Joey Hess2011-06-24
|
* Revert "Always respect DEB_${flag}_{APPEND,SET} envvars."Joey Hess2011-06-20
| | | | | | This reverts commit fcfcd1298f6ea1fcfb2b2b5a529303270aa800d9. Per Raphael's mail.
* reorderJoey Hess2011-06-19
|
* Always respect DEB_${flag}_{APPEND,SET} envvars.Modestas Vainius2011-06-19
| | | | | | Do that even when dpkg-buildpackage modifies environment variables. Also document DEB_${flag}_{APPEND,SET} as recommended way to override standard build flags.
* In the unlikely case Dpkg::BuildFlags fails, don't do anything.Modestas Vainius2011-06-19
|
* updateJoey Hess2011-06-19
|
* Use Dpkg::BuildFlags module directly in set_buildflags().Modestas Vainius2011-06-19
| | | | | | | Dpkg::BuildFlags API is declared stable. It should be safe to use it directly rather than dpkg-buildflags wrapper. In addition, do not do any DEB_BUILD_OPTIONS=noopt handling in debhelper. Dpkg::BuildFlags already does it for us.
* Correct docs about multiarch and v9. Closes: #630826Joey Hess2011-06-17
|
* Fix =>/>= typo in dh_makeshlibs(1).Cyril Brulebois2011-06-16
|
* Merge branch 'master' into smarter-targetsJoey Hess2011-06-14
|\ | | | | | | | | Conflicts: dh