This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pale-moon. from d602c03 debian/rules: add autoconf config.{guess,sub} replacement hack from Debian crossstream. new 00df1da debian/rules: add non-parallel stamps/dummy target. new 9a2ab48 debian/rules: add clean rules for stamps and config.{guess,sub} files. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 2 ++ debian/rules | 18 +++++++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit 00df1dac34e2b50f06a994df14fa7850275ce2e6 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 30 23:30:41 2018 +0200 debian/rules: add non-parallel stamps/dummy target. --- debian/changelog | 1 + debian/rules | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/debian/changelog b/debian/changelog index 090bd77..14104ee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,7 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium - Add line that actually exports stuff. Duh. - Add autoconf config.{guess,sub} replacement hack from Debian crossstream. + - Add non-parallel stamps/dummy target. * debian/mozconfig: - Remove autoconf flags that should better be handled by debian/rules. * debian/make.mk: diff --git a/debian/rules b/debian/rules index f73e23f..ca298a1 100755 --- a/debian/rules +++ b/debian/rules @@ -119,4 +119,12 @@ override_dh_shlibdeps: # It's OK to leave this in for those that do. override_dh_builddeb: dh_builddeb -- -Z xz + + +.NOTPARALLEL: + +$(shell awk -F:: '$$1 ~ /^stamps\// && !/%/ { print $$1 }' debian/rules) stamps/dummy:: + @mkdir -p stamps + $(if $(wildcard $@),,touch $@) + endif -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit 9a2ab48ba2344ac5315640c6d2439d552aa59752 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 30 23:40:03 2018 +0200 debian/rules: add clean rules for stamps and config.{guess,sub} files. --- debian/changelog | 1 + debian/rules | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 14104ee..09dc851 100644 --- a/debian/changelog +++ b/debian/changelog @@ -28,6 +28,7 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium - Add autoconf config.{guess,sub} replacement hack from Debian crossstream. - Add non-parallel stamps/dummy target. + - Add clean rules for stamps and config.{guess,sub} files. * debian/mozconfig: - Remove autoconf flags that should better be handled by debian/rules. * debian/make.mk: diff --git a/debian/rules b/debian/rules index ca298a1..365374d 100755 --- a/debian/rules +++ b/debian/rules @@ -91,9 +91,17 @@ stamps/prepare-configure:: stamps/dummy %: dh $@ --parallel -override_dh_auto_clean: +override_dh_auto_clean:: rm -f mozconfig + rm -rf stamps + debian/rules debian/control TESTDIR= dh_auto_clean + + for dir in $(AUTOCONF_DIRS); do \ + for file in config.guess config.sub; do \ + sed -i '2!b;/^exec "/ d' $$dir/$$file; \ + done; \ + done override_dh_auto_configure: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git