This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pale-moon. from 7a14bf8 debian/palemoon.install.in: don't try to pick mozav{codec,util} on non-amd64 platforms. new c8473fd debian/control.in: only depend upon libavcodec on non-amd64 architectures. new 3a201bc debian/rules: force regeneration of debian/control in every clean run. 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 | 3 +++ debian/control.in | 2 ++ debian/rules | 2 ++ 3 files changed, 7 insertions(+) -- 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 c8473fd2280b388b95beae4cb55a31ba6c2eb764 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Feb 25 23:12:42 2019 +0100 debian/control.in: only depend upon libavcodec on non-amd64 architectures. --- debian/changelog | 1 + debian/control.in | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 14ba579..1f78deb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ palemoon (28.3.1+repack-1-0x2go1) UNRELEASED; urgency=medium at the build automatically. * debian/control.in: - Fix syntax error. + - Only depend upon libavcodec on non-amd64 architectures. * debian/upstream.mk: - Fix upstream version fetching, version.txt location changed. * debian/rules: diff --git a/debian/control.in b/debian/control.in index aa6b5be..953b152 100644 --- a/debian/control.in +++ b/debian/control.in @@ -97,7 +97,9 @@ Package: palemoon Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, +%if DEB_BUILD_ARCH != amd64 libavcodec54 | libavcodec-extra54 | libavcodec55 | libavcodec-extra55 | libavcodec56 | libavcodec-extra56 | libavcodec57 | libavcodec-extra57 | libavcodec58 | libavcodec-extra58 | libavcodec-ffmpeg56 | libavcodec-ffmpeg-extra56, +%endif fontconfig, procps, debianutils (>= 1.16), -- 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 3a201bc0046310615aea5127d81be0e9e495cba0 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Feb 25 23:15:49 2019 +0100 debian/rules: force regeneration of debian/control in every clean run. Needed for architecture checks in debian/control.in. --- debian/changelog | 2 ++ debian/rules | 2 ++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 1f78deb..b3e17d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,8 @@ palemoon (28.3.1+repack-1-0x2go1) UNRELEASED; urgency=medium - No need to generate a special manifest file and use it any longer. - Keep MPL-1.1 and MPL-2.0 targets as stubs. - Unstubbify MPL rules again, but take files out of debian directory. + - Force regeneration of debian/control in every clean run. Needed for + architecture checks in debian/control.in. * debian/installer/Makefile.in: - Switch some hardcoded places to use $(MOZ_BUILD_APP), some other places to hardcoded filename extensions and drop the (hopefully unneeded) diff --git a/debian/rules b/debian/rules index ebc8155..296a0d7 100755 --- a/debian/rules +++ b/debian/rules @@ -201,6 +201,8 @@ override_dh_auto_build override_dh_auto_build-arch: stamps/build-palemoon override_dh_auto_clean:: rm -f MPL rm -f $(filter-out debian/control,$(GENERATED_FILES)) + # Force regenration of debian/control - we need this for architecture checks. + touch debian/control.in # FIXME: handle potentially generated files, once we have them. rm -f configure js/src/configure rm -rf stamps l10n -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git