This is an automated email from the git hooks/post-receive script. jreyer-guest pushed a commit to branch master in repository wine.
commit 48f2c99a6dbef58013876d1c567bae0bd9d574e2 Author: Jens Reyer <[email protected]> Date: Fri Sep 11 19:08:52 2015 +0200 Add bug control file. Show package status of every package in the sourcepackage when reporting bugs. I couldn't find a way to wrap lines, therefore this long ugly line. See /usr/share/doc/reportbug/README.developers.gz and 'man dh_bugfiles'. --- debian/bug-control.in | 1 + debian/rules | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/debian/bug-control.in b/debian/bug-control.in new file mode 100644 index 0000000..05c4040 --- /dev/null +++ b/debian/bug-control.in @@ -0,0 +1 @@ +package-status: wineVERSION wine32VERSION wine64VERSION wine32VERSION-preloader wine64VERSION-preloader wine32VERSION-tools wine64VERSION-tools fonts-wineVERSION libwineVERSION libwineVERSION-dev libwineVERSION-dbg diff --git a/debian/rules b/debian/rules index 0715fff..7be5176 100755 --- a/debian/rules +++ b/debian/rules @@ -46,7 +46,8 @@ CONFLAGS+=--enable-win64 endif # additional files to generate -INSTALLS=$(shell ls debian/*VERSION* | sed s/VERSION/$(VERSION)/) +INSTALLS=$(shell ls debian/*VERSION* | sed s/VERSION/$(VERSION)/) \ + debian/bug-control \ debian/control: debian/control.in sed s/VERSION/$(VERSION)/g < $< > $@ @@ -66,6 +67,9 @@ debian/libwine$(VERSION)%: debian/libwineVERSION% debian/fonts-wine$(VERSION)%: debian/fonts-wineVERSION% sed s/VERSION/$(VERSION)/g < $< > $@ +debian/bug-control: debian/bug-control.in + sed s/VERSION/$(VERSION)/g < $< > $@ + %: dh $@ --parallel --with autoreconf @@ -75,6 +79,9 @@ override_dh_auto_configure: ln -s /usr/share/misc/config.guess tools dh_auto_configure -- $(CONFLAGS) +override_dh_bugfiles: + dh_bugfiles -A + override_dh_install: $(INSTALLS) mkdir -p debian/tmp cp ANNOUNCE debian/tmp/changelog -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git _______________________________________________ pkg-wine-party mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-wine-party
