Control: tags 705588 + pending Control: tags 705948 + pending Control: severity 705948 serious
Dear maintainer, I've prepared an NMU for nyquist (versioned as 3.05-2.1) and uploaded it to DELAYED/5. Please feel free to tell me if I should delay it longer. I can reproduce the i386 FTBFS very reliably, so I'm rasing its severity to serious. Regards. -- regards, Mattia Rizzolo GPG Key: 66AE 2B4A FCCF 3F52 DA18 4D18 4B04 3FCD B944 4540 .''`. more about me: https://mapreri.org : :' : Launchpad user: https://launchpad.net/~mapreri `. `'` Debian QA page: https://qa.debian.org/developer.php?login=mattia `-
[0;0mdiffstat for nyquist-3.05 nyquist-3.05[0;0m [0;0m[0;0m [0;0m changelog | 13 +++++++++++++[0;0m [0;0m control | 2 +-[0;0m [0;0m patches/intgen-avoid-overlapping-strcpy.patch | 17 +++++++++++++++++[0;0m [0;0m patches/series | 1 +[0;0m [0;0m 4 files changed, 32 insertions(+), 1 deletion(-)[0;0m [0;0m[0;0m [1;36mdiff -Nru nyquist-3.05/debian/changelog nyquist-3.05/debian/changelog[0;0m [0;31m--- nyquist-3.05/debian/changelog 2012-07-18 03:57:02.000000000 +0200[0;0m [0;32m+++ nyquist-3.05/debian/changelog 2017-04-02 19:57:10.000000000 +0200[0;0m [0;36m@@ -1,3 +1,16 @@[0;0m [0;32m+nyquist (3.05-2.1) unstable; urgency=medium[0;0m [0;32m+[0;0m [0;32m+ * Non-maintainer upload.[0;0m [0;32m+[0;0m [0;32m+ [ Jonathan Dowland ][0;0m [0;32m+ * Update Vcs-Browser URL. Closes: #705588[0;0m [0;32m+[0;0m [0;32m+ [ Andy Whitcroft ][0;0m [0;32m+ * Add patch to fix FTBFS on i386 due to overlapping use of strcpy().[0;0m [0;32m+ Closes: #705948[0;0m [0;32m+[0;0m [0;32m+ -- Mattia Rizzolo <mat...@debian.org> Sun, 02 Apr 2017 19:57:10 +0200[0;0m [0;32m+[0;0m [0;0m nyquist (3.05-2) unstable; urgency=low[0;0m [0;0m [0;0m [0;0m * patches/remove-corba-reference.diff: remove unnecessary import.[0;0m [1;36mdiff -Nru nyquist-3.05/debian/control nyquist-3.05/debian/control[0;0m [0;31m--- nyquist-3.05/debian/control 2012-07-18 03:34:52.000000000 +0200[0;0m [0;32m+++ nyquist-3.05/debian/control 2017-04-02 19:53:43.000000000 +0200[0;0m [0;36m@@ -6,7 +6,7 @@[0;0m [0;0m Build-Depends: debhelper (>= 8), javahelper, autoconf, automake1.11, libtool (>= 2.2.6),[0;0m [0;0m autotools-dev, default-jdk, libsndfile1-dev, liblo-dev, portaudio19-dev[0;0m [0;0m Build-Conflicts: autoconf2.13, automake1.4[0;0m [0;31m-Vcs-Browser: http://[7msvn.debian.org/wsvn/collab-maint/deb-maint/nyquist/trunk/?op=log[27m[0;0m [0;32m+Vcs-Browser: http://[7manonscm.debian.org/viewvc/collab-maint/deb-maint/nyquist/trunk/[27m[0;0m [0;0m Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/nyquist/trunk[0;0m [0;0m Standards-Version: 3.9.3[0;0m [0;0m [0;0m [1;36mdiff -Nru nyquist-3.05/debian/patches/intgen-avoid-overlapping-strcpy.patch nyquist-3.05/debian/patches/intgen-avoid-overlapping-strcpy.patch[0;0m [0;31m--- nyquist-3.05/debian/patches/intgen-avoid-overlapping-strcpy.patch 1970-01-01 01:00:00.000000000 +0100[0;0m [0;32m+++ nyquist-3.05/debian/patches/intgen-avoid-overlapping-strcpy.patch 2017-04-02 19:57:10.000000000 +0200[0;0m [0;36m@@ -0,0 +1,17 @@[0;0m [0;32m+Description: intgen avoid overlapping strcpy[0;0m [0;32m+ Lisp intgen is using overlapping strcpy which is not permitted,[0;0m [0;32m+ switch to using memmove.[0;0m [0;32m+Author: Andy Whitcroft <a...@ubuntu.com>[0;0m [0;32m+Last-Update: 2013-04-22[0;0m [0;32m+[0;0m [0;32m+--- nyquist-3.05.orig/misc/intgen.c[0;0m [0;32m++++ nyquist-3.05/misc/intgen.c[0;0m [0;32m+@@ -487,7 +487,7 @@ static void process_file(fname, out)[0;0m [0;32m+ /* strip off leading directory prefix, if any */[0;0m [0;32m+ cp = strrchr(incl_file, FILESEP); /* find the last slash */[0;0m [0;32m+ if (cp) {[0;0m [0;32m+- strcpy(incl_file, cp + 1 /* skip the slash */);[0;0m [0;32m++ memmove(incl_file, cp + 1 /* skip the slash */, strlen(cp + 1) + 1);[0;0m [0;32m+ }[0;0m [0;32m+ [0;0m [0;32m+ if (flag != no_include_prefix) fprintf(out, "#include \"%s\"\n\n", incl_file);[0;0m [1;36mdiff -Nru nyquist-3.05/debian/patches/series nyquist-3.05/debian/patches/series[0;0m [0;31m--- nyquist-3.05/debian/patches/series 2012-07-18 03:02:31.000000000 +0200[0;0m [0;32m+++ nyquist-3.05/debian/patches/series 2017-04-02 19:57:10.000000000 +0200[0;0m [0;36m@@ -4,3 +4,4 @@[0;0m [0;0m use-system-liblo.patch[0;0m [0;0m use-system-portadio.patch[0;0m [0;0m fix-term-includes.patch[0;0m [0;32m+intgen-avoid-overlapping-strcpy.patch[0;0m
signature.asc
Description: PGP signature