summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* comment mungingJoey Hess2009-11-18
|
* changelogJoey Hess2009-11-18
|
* Improve build system auto-selection processModestas Vainius2009-11-18
| | | | | | | | | | | | | | | This patch alters semantics of check_auto_buildable() a bit. Now it can also indicate if the source has already been partitially built with the build system and if so, such build system may be auto-selected over a less specific its parent (in the inheritance tree) even if the latter is earlier in the @BUILDSYSTEMS array. However, this still leaves a requirement that a derivative build system must not do anything that may break packages of the parent build system. Otherwise, introduction of a new derivative build system might break packages which already had that build system implemented via overrides... Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* cute tail display of config.log, to include a headerJoey Hess2009-11-16
|
* creditJoey Hess2009-11-16
|
* clarifyJoey Hess2009-11-16
|
* autoconf: If configure fails, cat config.log. Intended to make it easier to ↵Joey Hess2009-11-16
| | | | debug configure script failures on autobuilders. Closes: #556384
* make error() throw a catchable error with dieJoey Hess2009-11-16
| | | | | exit cannot be caught with eval.. I used exit before because I thought it was cute for erorr() to call warning(). Silly.
* Enable verbose ctest output on test failureModestas Vainius2009-11-16
| | | | | | | | | | | | When test fails, enable verbose ctest output. This allows to get more details on a test failure from the build logs. Auto-select cmake in further steps only if cmake was run in configure step. CMake writes CMakeCache.txt to build directory when it is run. Depend on the presence of this file for auto-selection in build, test, install and clean steps. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* cmake: Set CTEST_OUTPUT_ON_FAILURE when running test suite. Closes: #555807Joey Hess2009-11-12
|
* Enable verbose ctest output on test failureModestas Vainius2009-11-12
| | | | | | | When test fails, enable verbose ctest output. This allows to get more details on a test failure from the build logs. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* Typo. Closes: #555659Joey Hess2009-11-12
|
* dh_installdocs: Warn if a doc-base file cannot be parsed to find a document ↵Joey Hess2009-11-12
| | | | id. Closes: #555677
* clarifyJoey Hess2009-11-12
|
* Adjust code to add deprecation warning for compatability level 4. (Man page ↵Joey Hess2009-11-12
| | | | already said it was deprecated.) Closes: #555899
* Drop deprecated programs from the list of commands in debhelper(7). Closes: ↵Joey Hess2009-11-04
| | | | #548382
* updateJoey Hess2009-11-04
|
* Add deprecation warnings for -u to the documentation, since putting options ↵Joey Hess2009-11-04
| | | | after -- is much more sane. (However, -u will not go away any time soon.) Closes: #554509
* clarify changelogJoey Hess2009-11-04
|
* --max-parallel requires a numberJoey Hess2009-11-04
|
* support unlimited parallel jobsJoey Hess2009-10-29
| | | | | | | | 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.
* update test suite for implicit parallelisation and flag renameJoey Hess2009-10-29
|
* logic errorJoey Hess2009-10-29
|
* implement the other option: parallel enabled implicitly by DEB_BUILD_OPTIONSJoey Hess2009-10-29
| | | | | I renamed --parallel to --max-parallel to clarify that it doesn't enable parallelism, but only controls how much of it is allowed.
* remove implicit --parallel setting by dhJoey Hess2009-10-28
|
* logic simplificationJoey Hess2009-10-28
|
* preliminary changelogJoey Hess2009-10-28
|
* clarify wordingJoey Hess2009-10-28
|
* refactor --parallel processingJoey Hess2009-10-28
| | | | Use a function to set the value rather than post-processing.
* reduce amount of MAKEFLAGS cleaningJoey Hess2009-10-28
| | | | | | | | | | | 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.
* split get_make_jobserver_status into two functionsJoey Hess2009-10-28
| | | | | | | | | | | 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.
* move obscure function to EOFJoey Hess2009-10-28
|
* Support parallel building in makefile buildsystemModestas Vainius2009-10-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-10-19
|\
| * consistently print whole failing command lineJoey Hess2009-10-19
| |
* | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-10-11
|\|
| * two more dh_install testsJoey Hess2009-10-11
| |
* | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-10-01
|\|
| * Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-10-01
| |\
| * | releasing version 7.4.3Joey Hess2009-10-01
| | |
| * | invert python orderingJoey Hess2009-10-01
| | | | | | | | | | | | --force allows doing so
| * | indentationJoey Hess2009-10-01
| | |
| * | Pass --force option to Python distutils install command.Andrew Straw2009-10-01
| | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-09-29
|\ \ \ | | |/ | |/|
| * | fix a spelling mistake in dh_makeshlibs man french translation (#494300 part 2)valery perrin2009-09-29
| |/
* | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-09-27
|\|
| * formatJoey Hess2009-09-27
| |
| * Allow dpkg-architecture to print errors to stderr. Closes: #548636Joey Hess2009-09-27
| |
* | Merge branch 'master' of ssh://git.debian.org/git/debhelper/debhelperJoey Hess2009-09-17
|\|
| * Add dh_lintian french translationvalery perrin2009-09-17
| |