Bug#870609: stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1

2017-08-06 Thread Hideki Yamane
On Sun, 6 Aug 2017 13:37:19 +0100
Jonathan Wiltshire  wrote:
> > For future reference, the preferred workflow is that the bug gets filed
> > first, then we discuss / okay the upload, and /then/ the upload happens.
> 
> Flagged for acceptance.

 Thanks guys, okay I should do so next time.


-- 
Hideki Yamane 



Processed: Re: Bug#870609: stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1

2017-08-06 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #870609 [release.debian.org] stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1
Added tag(s) pending.

-- 
870609: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870609
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#870609: stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1

2017-08-06 Thread Jonathan Wiltshire
Control: tag -1 pending

On Thu, Aug 03, 2017 at 02:24:40PM +0100, Adam D. Barratt wrote:
> On 2017-08-03 12:11, Hideki Yamane wrote:
> > 
> > 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.
> 
> For future reference, the preferred workflow is that the bug gets filed
> first, then we discuss / okay the upload, and /then/ the upload happens.

Flagged for acceptance.

Thanks,

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



Bug#870609: stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1

2017-08-03 Thread Adam D. Barratt

On 2017-08-03 12:11, Hideki Yamane wrote:


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.


For future reference, the preferred workflow is that the bug gets filed 
first, then we discuss / okay the upload, and /then/ the upload happens.



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


In this case, we'd have requested that the distribution be "stretch".

Regards,

Adam



Bug#870609: stretch-pu: xfonts-ayu/1:1.7a-1+deb9u1

2017-08-03 Thread Hideki Yamane
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 
+
+ -- Hideki Yamane   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))