diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-12 18:36:53 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2019-07-12 18:36:53 +0200 |
commit | bc95f6faea1c4cf8655d2b77397fb2850f5337cc (patch) | |
tree | 9eff6cb34b3866a67c1b377b410730a0e4b9a1cf /debian | |
parent | 0a1b85d1f4be822f6c494f6c426b1084a132e58d (diff) |
Use pybuild as buildsystem
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | debian/rules | 12 |
2 files changed, 8 insertions, 7 deletions
diff --git a/debian/changelog b/debian/changelog index 14fd84c..920bca1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,8 +2,9 @@ scons (3.0.5-1) UNRELEASED; urgency=medium * New upstream release: - Refresh patches.at - - Remove 0115-secure_script_scons.patch and + - Remove 0115-secure_script_scons.patch and 0105-java_ignore_nonexistent_files.patch. + - Use pybuild as buildsystem. * Refresh debian/patches/0110-remove_stale_files.patch for python 3 compatibility (Closes: #893740). Thanks to Bernd Zeimetz <bzed@debian.org>. diff --git a/debian/rules b/debian/rules index d375e94..6171813 100755 --- a/debian/rules +++ b/debian/rules @@ -1,11 +1,11 @@ #!/usr/bin/make -f %: - dh $@ --with python2,python3 + dh $@ --with python2,python3 --buildsystem=pybuild -clean: - rm -fr build - dh $@ +#clean: +# rm -fr build +# dh $@ -override_dh_auto_install: - dh_auto_install -- --no-version-script --standalone-lib --no-install-man +#override_dh_auto_install: +# dh_auto_install -- --no-version-script --standalone-lib --no-install-man |