Bug#860577: jessie-pu: package sus/7.20161013~deb8u1

2017-04-25 Thread Adam D. Barratt
Control: tags -1 + pending

On Sun, 2017-04-23 at 21:13 +0100, Adam D. Barratt wrote:
> Control: tags -1 + confirmed
> 
> On Tue, 2017-04-18 at 23:12 +0200, Andreas Beckmann wrote:
> > sus is a downloader package in contrib.
> > The download URL+checksum for susv4 has changed ... rendering the
> > package uninstallable.
> > This is a backport of the package in sid with the debhelper bump
> > reverted.
> 
> Please go ahead.

Uploaded and flagged for acceptance.

Regards,

Adam



Bug#860577: jessie-pu: package sus/7.20161013~deb8u1

2017-04-23 Thread Adam D. Barratt
Control: tags -1 + confirmed

On Tue, 2017-04-18 at 23:12 +0200, Andreas Beckmann wrote:
> sus is a downloader package in contrib.
> The download URL+checksum for susv4 has changed ... rendering the
> package uninstallable.
> This is a backport of the package in sid with the debhelper bump
> reverted.

Please go ahead.

Regards,

Adam



Bug#860577: jessie-pu: package sus/7.20161013~deb8u1

2017-04-18 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian@packages.debian.org
Usertags: pu

sus is a downloader package in contrib.
The download URL+checksum for susv4 has changed ... rendering the
package uninstallable.
This is a backport of the package in sid with the debhelper bump
reverted.


Andreas
diff -Nru sus-7.20160312~deb8u1/debian/changelog sus-7.20161013~deb8u1/debian/changelog
--- sus-7.20160312~deb8u1/debian/changelog	2016-03-21 00:58:24.0 +0100
+++ sus-7.20161013~deb8u1/debian/changelog	2017-04-18 23:05:48.0 +0200
@@ -1,3 +1,22 @@
+sus (7.20161013~deb8u1) jessie; urgency=medium
+
+  * Non-maintainer upload.
+  * Rebuild for jessie.
+  * Revert debhelper to compat level 9.
+
+ -- Andreas Beckmann   Tue, 18 Apr 2017 23:05:48 +0200
+
+sus (7.20161013) unstable; urgency=medium
+
+  * New upstream release: contains SUSv4 TC2; update checksum
+(Closes: #840318)
+  * urgency=medium since susv4 is no longer installable
+  * debian/compat: Use debheloper v10
+  * debian/control:
+- Bump Standards-Version to 3.9.8 (No changes needed)
+
+ -- David Weinehall   Thu, 13 Oct 2016 14:15:32 +0300
+
 sus (7.20160312~deb8u1) jessie; urgency=medium
 
   * Non-maintainer upload.
diff -Nru sus-7.20160312~deb8u1/debian/control sus-7.20161013~deb8u1/debian/control
--- sus-7.20160312~deb8u1/debian/control	2016-03-12 02:25:59.0 +0100
+++ sus-7.20161013~deb8u1/debian/control	2017-04-18 23:03:29.0 +0200
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: David Weinehall 
 Build-Depends-Indep: debhelper (>= 9)
-Standards-Version: 3.9.7
+Standards-Version: 3.9.8
 
 Package: susv2
 Architecture: all
@@ -32,4 +32,4 @@
  redistributed, so this is an installer that fetches them and installs
  them in a Debian appropriate way.  This installer will fetch and
  install POSIX:2008 (also known as Single Unix Specification v4) with
- the POSIX:2013 Technical Corrigendum 1.
+ POSIX:2013 Technical Corrigendum 1 and POSIX:2016 Technical Corrigendum 2.
diff -Nru sus-7.20160312~deb8u1/debian/susv4.postinst sus-7.20161013~deb8u1/debian/susv4.postinst
--- sus-7.20160312~deb8u1/debian/susv4.postinst	2016-03-10 18:35:07.0 +0100
+++ sus-7.20161013~deb8u1/debian/susv4.postinst	2016-10-13 13:15:32.0 +0200
@@ -5,14 +5,14 @@
 TEMPDIR=$(mktemp -d) || exit 1
 
 echo Fetching file...
-wget -P $TEMPDIR http://pubs.opengroup.org/onlinepubs/9699919799/download/susv4tc1.tar.bz2
+wget -P $TEMPDIR http://pubs.opengroup.org/onlinepubs/9699919799/download/susv4tc2.tar.bz2
 
 echo Verifying SHA512 checksum...
-SHA512SUM="a646544074cb13b891b71d83fbe65dc23665e4bce1fdef09931f3025229eb7225e2ff620f05646d48a0256d53c12c39282d155eba2d7bba3831ab1b87d7e640b"
-[ x"$(sha512sum $TEMPDIR/susv4tc1.tar.bz2 | cut -f1 -d\ )" = x"$SHA512SUM" ] || (rm -rf $TEMPDIR; exit 1)
+SHA512SUM="cc86b2b4860b1069cb8712ef7b5a9702510f48d6585b5414ff561f85677974c156d8cc95cf29dfdab360c13ecb884e19e2112fe5c6bc49666417c9a744a816ad"
+[ x"$(sha512sum $TEMPDIR/susv4tc2.tar.bz2 | cut -f1 -d\ )" = x"$SHA512SUM" ] || (rm -rf $TEMPDIR; exit 1)
 
 echo Untarring...
-bunzip2 -cd $TEMPDIR/susv4tc1.tar.bz2 | tar xf - -C /usr/share/doc/susv4 --no-same-permissions --no-same-owner
+bunzip2 -cd $TEMPDIR/susv4tc2.tar.bz2 | tar xf - -C /usr/share/doc/susv4 --no-same-permissions --no-same-owner
 
 rm -rf $TEMPDIR