Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock (or reduce age-days accordingly) package gnustep-back; it fixes RC bugs #663388 and #764695. Debdiff attached. unblock gnustep-back/0.24.0-3
diff --git a/debian/changelog b/debian/changelog index 2d65c8e..e392e3c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +gnustep-back (0.24.0-3) unstable; urgency=medium + + * debian/gnustep-back-common.postinst: Ignore errors from mv which lead + to failure when font directories do not contain spaces, thanks Thomas + Zell (Closes: #764695). + * debian/gnustep-back-common.prerm: Revert bogus change introduced in + 0.24.0-1 (finally closes: #663388). + * debian/control.m4 (Standards-Version): Bump to 3.9.6; no changes + needed. + * debian/control: Regenerate. + + -- Yavor Doganov <ya...@gnu.org> Tue, 28 Oct 2014 11:17:15 +0200 + gnustep-back (0.24.0-2) unstable; urgency=medium * Upload to unstable; should finally fix the piuparts issue once diff --git a/debian/control b/debian/control index cfa37b4..6efa135 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Debian GNUstep maintainers <pkg-gnustep-maintain...@lists.alioth.debian.org> Uploaders: Gürkan Sengün <gur...@phys.ethz.ch>, Yavor Doganov <ya...@gnu.org> -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Build-Depends: debhelper (>= 9), m4, libgnustep-gui-dev (>= 0.24), diff --git a/debian/control.m4 b/debian/control.m4 index 90bc3fc..bd8a058 100644 --- a/debian/control.m4 +++ b/debian/control.m4 @@ -4,7 +4,7 @@ Priority: optional Maintainer: Debian GNUstep maintainers <pkg-gnustep-maintain...@lists.alioth.debian.org> Uploaders: Gürkan Sengün <gur...@phys.ethz.ch>, Yavor Doganov <ya...@gnu.org> -Standards-Version: 3.9.5 +Standards-Version: 3.9.6 Build-Depends: debhelper (>= 9), m4, libgnustep-gui-dev (>= V_GUI), diff --git a/debian/gnustep-back-common.postinst b/debian/gnustep-back-common.postinst index f7b0645..a0b02c5 100644 --- a/debian/gnustep-back-common.postinst +++ b/debian/gnustep-back-common.postinst @@ -15,9 +15,9 @@ case "$1" in mknfonts $(fc-list : file | grep -v '\.gz' | cut -d: -f1) \ 2>/var/log/gnustep-back-common.log \ || (echo " failed, see /var/log/gnustep-back-common.log."; exit 1) - # Remove whitespace in directories. + # Remove whitespace in directories, if any. for dir in *\ */; do - mv "$dir" `echo $dir | tr -d [:space:]` + (mv "$dir" `echo $dir | tr -d [:space:]`) || true done echo " done." ;; diff --git a/debian/gnustep-back-common.prerm b/debian/gnustep-back-common.prerm index c0ee512..beb52ac 100644 --- a/debian/gnustep-back-common.prerm +++ b/debian/gnustep-back-common.prerm @@ -4,9 +4,6 @@ set -e case "$1" in remove) rm -rf /var/lib/GNUstep - ;; - purge) - rm -rf /var/lib/GNUstep rm -f /var/log/gnustep-back-common.log ;; upgrade|deconfigure)