Package: release.debian.org Severity: normal Tags: jessie User: [email protected] Usertags: pu
tangerine-icon-theme has a flaw in its build system that can cause a race between internal cleanup (running in the background) and removal of the build chroot which results in hanging processes blocking the pty. Andreas
diff -u tangerine-icon-theme-0.26.debian/debian/changelog tangerine-icon-theme-0.26.debian/debian/changelog --- tangerine-icon-theme-0.26.debian/debian/changelog +++ tangerine-icon-theme-0.26.debian/debian/changelog @@ -1,3 +1,17 @@ +tangerine-icon-theme (0.26.debian-3.1~deb8u1) jessie; urgency=medium + + * Non-maintainer upload. + * Rebuild for jessie. + + -- Andreas Beckmann <[email protected]> Tue, 06 Oct 2015 11:46:38 +0200 + +tangerine-icon-theme (0.26.debian-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * debian/cleanup.sh: Do not run processes in background. (Closes: #793161) + + -- Andreas Beckmann <[email protected]> Sat, 12 Sep 2015 18:26:08 +0200 + tangerine-icon-theme (0.26.debian-3) unstable; urgency=high * Use "libmagickcore-dev | libmagick9-dev" as the imagemagick build-dep, diff -u tangerine-icon-theme-0.26.debian/debian/clean-up.sh tangerine-icon-theme-0.26.debian/debian/clean-up.sh --- tangerine-icon-theme-0.26.debian/debian/clean-up.sh +++ tangerine-icon-theme-0.26.debian/debian/clean-up.sh @@ -3,13 +3,13 @@ # Manually clean-up -find ./ -name Makefile.in* | xargs rm -f &>/dev/null -rm -f ./po/Makefile.in.in &>/dev/null -rm -f ./configure &>/dev/null -rm -f ./intltool-update.in &>/dev/null -rm -f ./intltool-merge.in &>/dev/null -rm -r ./intltool-extract.in &>/dev/null -rm -f ./config.guess &>/dev/null -rm -f ./config.sub &>/dev/null -rm -f ./install-sh &>/dev/null -rm -f ./missing &>/dev/null -rm -f ./aclocal.m4 &>/dev/null +find ./ -name Makefile.in* | xargs rm -f >/dev/null +rm -f ./po/Makefile.in.in >/dev/null +rm -f ./configure >/dev/null +rm -f ./intltool-update.in >/dev/null +rm -f ./intltool-merge.in >/dev/null +rm -r ./intltool-extract.in >/dev/null +rm -f ./config.guess >/dev/null +rm -f ./config.sub >/dev/null +rm -f ./install-sh >/dev/null +rm -f ./missing >/dev/null +rm -f ./aclocal.m4 >/dev/null diff -u tangerine-icon-theme-0.26.debian/debian/control tangerine-icon-theme-0.26.debian/debian/control --- tangerine-icon-theme-0.26.debian/debian/control +++ tangerine-icon-theme-0.26.debian/debian/control @@ -1,3 +1,7 @@ +# This file is autogenerated. DO NOT EDIT! +# +# Modifications should be made to debian/control.in instead. +# This file is regenerated automatically in the clean target. Source: tangerine-icon-theme Section: non-free/x11 Priority: optional

