Package: release.debian.org
Tags: stretch
Severity: normal
User: release.debian....@packages.debian.org
Usertags: pu

Hi,

I'm sorry but I've made a regression for xfonts-ayu during
jessie-stretch release
cycle, and fixed in 1:1.7a-6. It's tiny, tiny fix, so I hope to put it
into stretch, too.

Here's a git diff

diff --git a/debian/changelog b/debian/changelog
index cb984e8..938f809 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+xfonts-ayu (1:1.7a-1+deb9u1) stable-proposed-updates; urgency=low
+
+  * debian/rules
+    - fix regression instroduced in 1:1.7a-1, wildcards evaluation is too
+      early and as a result, bold and italic was not produced (Closes: #870320)
+      Thanks to Takeshi Soejima <so...@mbox.kyoto-inet.or.jp>
+
+ -- Hideki Yamane <henr...@debian.org>  Thu, 03 Aug 2017 20:07:09 +0900
+
 xfonts-ayu (1:1.7a-1) unstable; urgency=medium

   * add Epoch since avoid tarball-in-tarball package
diff --git a/debian/rules b/debian/rules
index d7e969e..01d1705 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,6 +14,6 @@ override_dh_auto_build:
        # wildcard evaluates *.bdf immediately, but we want it after mkitalic
        $(foreach bdf,$(shell ls *.bdf),$(shell
$(CURDIR)/debian/mkbold -V $(bdf) > \
        $(patsubst %.bdf,%b.bdf,$(bdf))))
-       $(foreach bdf,$(wildcard *.bdf),$(shell bdftopcf $(bdf) -o
$(bdf:%.bdf=%.pcf)))
+       $(foreach bdf,$(shell ls *.bdf),$(shell bdftopcf $(bdf) -o
$(bdf:%.bdf=%.pcf)))
        # wildcard evaluates *.pcf immediately, but there aren't yet...
        $(foreach pcf,$(shell ls *.pcf),$(shell gzip -c9 -n $(pcf) > $(pcf).gz))

Reply via email to