Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-06-29 Thread Cyril Brulebois
Control: tag -1 pending

gregor herrmann  (2017-06-28):
> Thanks, uploaded.

Flagged for acceptance, thanks.


KiBi.


signature.asc
Description: Digital signature


Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-06-28 Thread gregor herrmann
On Wed, 28 Jun 2017 01:13:37 +0200, Cyril Brulebois wrote:

> gregor herrmann  (2017-05-19):
> > I've prepared an update for libx11-protocol-other-perl in jessie to
> > fix #848060. The only change is to disable a brittle test via
> > debian/rules in order to avoid test/build failures.
> This looks good to me, feel free to upload (targetting jessie); thanks.

Thanks, uploaded.


Cheers,
gregor

-- 
 .''`.  https://info.comodo.priv.at/ - Debian Developer https://www.debian.org
 : :' : OpenPGP fingerprint D1E1 316E 93A7 60A8 104D  85FA BB3A 6801 8649 AA06
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   NP: Didier Squiban: Marche des conscrits du Faoutet


signature.asc
Description: Digital Signature


Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-06-27 Thread Cyril Brulebois
Control: tag -1 confirmed

gregor herrmann  (2017-05-19):
> I've prepared an update for libx11-protocol-other-perl in jessie to
> fix #848060. The only change is to disable a brittle test via
> debian/rules in order to avoid test/build failures.

This looks good to me, feel free to upload (targetting jessie); thanks.


KiBi.


signature.asc
Description: Digital signature


Bug#862997: jessie-pu: package libx11-protocol-other-perl/28-1+deb8u1

2017-05-19 Thread gregor herrmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

I've prepared an update for libx11-protocol-other-perl in jessie to
fix #848060. The only change is to disable a brittle test via
debian/rules in order to avoid test/build failures.

Full debdiff attached.


Cheers,
gregor

-BEGIN PGP SIGNATURE-

iQKTBAEBCgB9FiEE0eExbpOnYKgQTYX6uzpoAYZJqgYFAlkfUYtfFIAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQx
RTEzMTZFOTNBNzYwQTgxMDREODVGQUJCM0E2ODAxODY0OUFBMDYACgkQuzpoAYZJ
qgbbFQ/+N314RF9UUhXc4y4fom6YRkoKOvs5wr+qIvnU6wNG9i9Z7414OzXGirZ5
EAF/omMD3Y86UyqAHDXayHTvGDgUGIdJ9X+WBOOVd51wnU3Rp1i5Qbqa7RhzWrzs
lj8Z1kjpW6ECzaeWE/ElXchrAdwPszlisqx+EH2nYbuGkFGq5sSwri8abcEMdt4D
15jnoZ2MD3FcPBYqUv1rrS1rAfaGCgTqG63XMXY6OBGkPBBYMwk3VnjPFQDlOJ5g
IucX7uY7xcaNneXognWXEEIhcigO3GbZn08o/qf/c4MM7A9+hzq0lEDglH+tV4KU
djkzX2Bp3tLIlAp0LC6/82CRycvNmkHmJmOmxv825PA0DPK3JhIfDAZMHLh0jZQR
tUrJfLQfxJXy2GxkVRUwy6bV0jLfqqvObqF6NFSF83JOLR7howZ/ytDZ6cEwFAAO
ybhKtytetTn12VG7Gs5iXJELb8Dr8o4XnSmJY/LgoB6SXTNZULPn3PWkTuGFMsK3
Lu0DB21p+hPQBNFv04h+wRR78HrLDMs1GT83cP9o6HAvxqS7Y8UGkO6fgMwAk0Om
M2FGft2Q7j3IBLu+JaJ1tj75eh5vtEUWHAF/UXRhmQftFIIh2fq0kJJ14R/jTeGi
vJUWo8/QvT5BwOq6STBHM//+b+cmn0pVMMaddh0LJqoGbJgCq68=
=K9bF
-END PGP SIGNATURE-
diff --git a/debian/changelog b/debian/changelog
index 4afdeec..d31f2d2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+libx11-protocol-other-perl (28-1+deb8u1) UNRELEASED; urgency=medium
+
+  * Disable t/XSetRoot.t during build and autopkgtest.
+This test is known to have problems with xvfb.
+Thanks to Santiago Vila for the bug report. (Closes: #848060)
+
+ -- gregor herrmann   Fri, 19 May 2017 22:07:14 +0200
+
 libx11-protocol-other-perl (28-1) unstable; urgency=low
 
   * Initial Release. (Closes: #735257)
diff --git a/debian/rules b/debian/rules
index c242220..0228c2a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,8 +1,10 @@
 #!/usr/bin/make -f
 
+TEST_FILES = $(filter-out t/XSetRoot.t, $(wildcard t/*.t))
+
 %:
dh $@
 
 # The tests need an X server. This provides one even inside a chroot
 override_dh_auto_test:
-   xvfb-run -a dh_auto_test
+   xvfb-run -a dh_auto_test -- TEST_FILES="$(TEST_FILES)"