summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* minor improvementJoey Hess2009-07-19
|
* Merge commit 'remotes/bzed/python-build' into buildsystemsJoey Hess2009-07-19
|\
| * Build for all supported Pythons if installed.Bernd Zeimetz2009-07-19
| | | | | | | | | | | | | | python_distutils buildsystem: Build for all supported Python versions in case they're installed. Ensure that correct shebangs are created by using `python' first during build and install. Closes: #520834
* | relocate comment inside ifJoey Hess2009-07-18
|/
* Merge branch 'master' into buildsystemsJoey Hess2009-07-15
|\ | | | | | | | | Conflicts: debian/changelog
| * dh_install: Add test suite covering the last 5 bugs.Joey Hess2009-07-15
| |
| * releasing version 7.2.23Joey Hess2009-07-15
| |
| * dh_install: Fix support for the case where debian/tmp is explicitly ↵Joey Hess2009-07-15
| | | | | | | | specified in filename paths despite being searched by default. Closes: #537140
* | forgot to add ant.pmJoey Hess2009-07-14
| |
* | test suite should not need modification to add a new build systemJoey Hess2009-07-14
| |
* | fix indentJoey Hess2009-07-14
| |
* | Merge branch 'master' into buildsystemsJoey Hess2009-07-14
|\| | | | | | | | | Conflicts: debian/changelog
| * releasing version 7.2.22Joey Hess2009-07-14
| |
| * dh_install: Fix support for the case where --sourcedir=debian/tmp/foo is ↵Joey Hess2009-07-14
| | | | | | | | used. Perl was not being greedy enough and the 'foo' was not stripped from the destination directory in this unusual case. Closes: #537017
* | Add ant buildsystem support. Closes: #537021Joey Hess2009-07-14
| |
* | releasing version 7.3.2Joey Hess2009-07-08
| |
* | Merge branch 'master' into buildsystemsJoey Hess2009-07-08
|\| | | | | | | | | Conflicts: debian/changelog
| * Add a versioned dep on perl-base, to get a version that supports ↵Joey Hess2009-07-08
| | | | | | | | GetOptionsFromArray. Closes: #536310
* | Merge branch 'master' into buildsystemsJoey Hess2009-07-02
|\|
| * avoid installing empty translated debhelper.7 man pagesJoey Hess2009-07-02
| | | | | | | | When empty due to not being fully enough translated, as is the case now.
* | Merge branch 'master' into buildsystemsJoey Hess2009-07-02
|\| | | | | | | | | Conflicts: debian/changelog
| * releasing version 7.2.20Joey Hess2009-07-02
| |
| * dh_install: Fix installation of entire top-level directory from debian/tmp. ↵Joey Hess2009-07-02
| | | | | | | | | | | | | | | | | | Closes: #535367 This was broken by the slash removal fix in e45749314e98a3304b1f845884ac50327c29cc10. Of course those unnecessary slashes were actually necessary for dirname to DTRT.
* | mention configureJoey Hess2009-07-01
| |
* | releasing version 7.3.0Joey Hess2009-07-01
| |
* | improve list formattingJoey Hess2009-07-01
| |
* | Merge commit 'remotes/modestas/buildsystems' into buildsystemsJoey Hess2009-06-30
|\ \
| * | rmdir_builddir(): use shell commands rather than perl equivalent.Modestas Vainius2009-06-30
| | | | | | | | | | | | | | | | | | | | | | | | Pass --ignore-fail-on-non-empty option to shell rmddir and later check with -d if the exists to get the same effect. Also drop no act check from rmdir_builddir(), doit() does it for us now. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | | Merge branch 'master' into buildsystemsJoey Hess2009-06-30
|\ \ \ | |/ / |/| / | |/ | | Conflicts: debian/changelog
| * releasing version 7.2.19Joey Hess2009-06-30
| |
| * dh_install: Fix use of debian/tmp in v7 mode; a bug caused it to put files ↵Joey Hess2009-06-30
| | | | | | | | | | | | | | inside a debian/tmp directory in the package build directory, now that prefix is stripped. (See #534565) (This also includes a fix to avoid doubled slashes in paths passed to commands.)
| * dh_install: Handle correctly the case where a glob expands to a dangling ↵Joey Hess2009-06-30
| | | | | | | | symlink, installing the dangling link as requested. Closes: #534565
| * typoJoey Hess2009-06-30
| |
* | remove enforce_out_of_source_buildingJoey Hess2009-06-29
| | | | | | | | | | It was only used by the test suite, and while symetrical I don't feel that justifies keeping dead code.
* | layoutJoey Hess2009-06-29
| |
* | Use ASCII RS for separating options in DH_INTERNAL_OPTIONS.Modestas Vainius2009-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since now extra options via dh command line arguments are encouraged, dh will break when a bit more complex option gets added to DH_INTERNAL_OPTIONS and it gets misparsed by the debhelper command called from the override. E.g. debian/rules: | %: | dh --builddirectory="build dir" | | override_dh_install: | dh_install Will fail with something like: | .... | make[1]: Entering directory `............' | dh_install | cp: cannot stat `debian/tmp/dir': No such file or directory | dh_install: cp returned exit code 1 | make[1]: *** [override_dh_install] Error 1 So since DH_INTERNAL_OPTIONS is exclusively for internal use, why not to use an old good ASCII unrepresentable control character as a separator? So I chose ASCII 1E - RS Record Separator. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Bug fix: pass extra command line arguments to cmake.Modestas Vainius2009-06-30
| | | | | | | | Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Add URLs to python_distutils --build-base bugs.Modestas Vainius2009-06-30
| |
* | Call SUPER in python_distutils::pre_building_step.Modestas Vainius2009-06-30
| | | | | | | | Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | More verbose rmdir_builddir() and more its testsModestas Vainius2009-06-30
| | | | | | | | Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Support absolute paths for builddir.Modestas Vainius2009-06-30
| | | | | | | | | | | | | | | | If build directory is absolute or ../ path, _rel2rel falls back to absolute paths. Try even harder to convert supplied builddir to relative in _set_builddir(). Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Add absolute path test for canonpath.Modestas Vainius2009-06-30
| | | | | | | | Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Rename _canonpath to canonpath.Modestas Vainius2009-06-30
| | | | | | | | Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Rename enforce_out_of_source_building() to prefer_Modestas Vainius2009-06-30
| | | | | | | | | | | | | | | | Also add enforce_out_of_source_building() for clarity which does not take any parameters. Now both have a clear name and no confusing parameter combinations. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
* | Make dh not complain about unknown, command-specific options passed to itJoey Hess2009-06-29
| | | | | | | | | | and further suppress warnings about such options it passes on to debhelper commands. This was attempted incompletely before in version 7.2.17.
* | fix pod oopsJoey Hess2009-06-29
| |
* | Merge branch 'master' into buildsystemsJoey Hess2009-06-29
|\| | | | | | | | | Conflicts: debian/changelog
| * releasing version 7.2.18Joey Hess2009-06-29
| |
* | misc minor changesJoey Hess2009-06-29
| |
* | updatesJoey Hess2009-06-28
| |