[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#863712: unblock: pd-pdstring/0.10.2-3



Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package pd-pdstring

This upload fixes the "online" documentation of the package:
documentation is a set of interactive examples that will automatically be opened
when the user clicks on "Help" within the runtime environment (puredata, aka
"Pd").
The documentation was broken insofar, as it was installed at a place, where Pd
wouldn't look for it, resulting in no documentation for the end-user.

unblock pd-pdstring/0.10.2-3

-- System Information:
Debian Release: 9.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64
 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru pd-pdstring-0.10.2/debian/changelog pd-pdstring-0.10.2/debian/changelog
--- pd-pdstring-0.10.2/debian/changelog	2016-11-10 10:22:16.000000000 +0100
+++ pd-pdstring-0.10.2/debian/changelog	2017-05-29 22:59:44.000000000 +0200
@@ -1,3 +1,12 @@
+pd-pdstring (0.10.2-3) unstable; urgency=medium
+
+  * Moved fix-help-files patch to common/m4 (Closes: #863665)
+  * Set well-defined user for repdroducible builds.
+    Thanks to Chris Lamb <lamby@debian.org> (Closes: #861756)
+  * Refreshed patches (fuzz offset)
+
+ -- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>  Mon, 29 May 2017 22:59:44 +0200
+
 pd-pdstring (0.10.2-2) unstable; urgency=medium
 
   * Enabled reproducible build.
diff -Nru pd-pdstring-0.10.2/debian/patches/fix-help-files-install-dir.patch pd-pdstring-0.10.2/debian/patches/fix-help-files-install-dir.patch
--- pd-pdstring-0.10.2/debian/patches/fix-help-files-install-dir.patch	2016-11-10 10:22:16.000000000 +0100
+++ pd-pdstring-0.10.2/debian/patches/fix-help-files-install-dir.patch	2017-05-29 22:59:44.000000000 +0200
@@ -1,25 +1,27 @@
 Description: fix configure to install help-files to extdir
 Author: Roman Haefeli <reduzent@gmail.com>
---- a/configure
-+++ b/configure
-@@ -3550,9 +3550,6 @@
- 
- 
+Last-Update: 2017-05-04
+--- pd-pdstring.orig/common/m4/ax_pd_external.m4
++++ pd-pdstring/common/m4/ax_pd_external.m4
+@@ -146,9 +146,6 @@
+ 	[pddir="\${prefix}/pd"])
+  AC_SUBST(pddir)
  
 - pddocdir="${pddir}/doc/5.reference"
--
+- AC_SUBST(pddocdir)
 -
   ##-- pdincludedir
- 
- # Check whether --with-pd-include was given.
-@@ -3582,6 +3579,10 @@
-  pdexternsdir="$pdextdir"
+  AC_ARG_WITH(pd-include,
+ 	AC_HELP_STRING([--with-pd-include=DIR], [Pd include directory (default=NONE)]),
+@@ -171,6 +168,11 @@
   pdexecdir="$pdextdir"
- 
-+ ##-- pddocdir
+  AC_SUBST(pdexternsdir)
+  AC_SUBST(pdexecdir)
++
 + # Nowadays the help files usually are installed besides the class files
 + pddocdir="${pdextdir}"
++ AC_SUBST(pddocdir)
 +
- 
   ## pd-directory/ies
   ##^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ 
diff -Nru pd-pdstring-0.10.2/debian/patches/reproducible-build.patch pd-pdstring-0.10.2/debian/patches/reproducible-build.patch
--- pd-pdstring-0.10.2/debian/patches/reproducible-build.patch	2016-11-10 10:22:16.000000000 +0100
+++ pd-pdstring-0.10.2/debian/patches/reproducible-build.patch	2017-05-29 22:59:44.000000000 +0200
@@ -1,19 +1,21 @@
 Description: Make the build reproducible
 Author: Chris Lamb <lamby@debian.org>
-Last-Update: 2016-08-04
-
---- pd-pdstring-0.10.2.orig/common/m4/ax_pd_external.m4
-+++ pd-pdstring-0.10.2/common/m4/ax_pd_external.m4
-@@ -242,7 +242,11 @@ AC_DEFUN([AX_PD_EXTERNAL],
+Last-Update: 2017-05-04
+--- pd-pdstring.orig/common/m4/ax_pd_external.m4
++++ pd-pdstring/common/m4/ax_pd_external.m4
+@@ -244,8 +244,13 @@
  
   ##vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
   ## compiled
 - AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was configured])
+- AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",    [User who configured this package])
 + if test -n "$SOURCE_DATE_EPOCH"; then
-+   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH"`",   [Date this package was configured])
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "$(LC_ALL=C date --utc --date="@$SOURCE_DATE_EPOCH")",   [Date this package was configured])
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "Debian",    [User who configured this package])
 + else
-+   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "`date`",   [Date this package was configured])
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_DATE,  "$(date)",   [Date this package was configured])
++   AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",    [User who configured this package])
 + fi
-  AC_DEFINE_UNQUOTED(PACKAGE_BUILD_USER,  "$USER",    [User who configured this package])
   ## /compiled
   ##^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+ 

Reply to: