Your message dated Tue, 24 Mar 2020 21:06:15 +0000
with message-id <[email protected]>
and subject line Bug#810078: fixed in xstarfish 1.1+ds-1
has caused the Debian Bug report #810078,
regarding xstarfish: diff for NMU version 1.1-11.1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
810078: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810078
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: xstarfish
Version: 1.1-11
Severity: normal
Tags: patch pending

Dear maintainer,

I've prepared an NMU for xstarfish (versioned as 1.1-11.1) and
uploaded it to DELAYED/7. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru xstarfish-1.1/debian/changelog xstarfish-1.1/debian/changelog
--- xstarfish-1.1/debian/changelog      2010-08-12 21:48:02.000000000 +0200
+++ xstarfish-1.1/debian/changelog      2016-01-06 10:55:22.000000000 +0100
@@ -1,3 +1,13 @@
+xstarfish (1.1-11.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix build failure with ld --as-needed. LP: #832847, using patch from doko
+    (Closes: #641274)
+  * Apply patch for libpng transistion, patch from Nobuhiro(Closes: #635704)
+  * Also, change B-D to libpng-dev (Closes: #662570)
+
+ -- Tobias Frost <[email protected]>  Wed, 06 Jan 2016 10:55:22 +0100
+
 xstarfish (1.1-11) unstable; urgency=low
 
   * New maintainer (Closes: #486776)
diff -Nru xstarfish-1.1/debian/control xstarfish-1.1/debian/control
--- xstarfish-1.1/debian/control        2010-08-12 06:18:41.000000000 +0200
+++ xstarfish-1.1/debian/control        2016-01-06 10:48:40.000000000 +0100
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Simon Fondrie-Teitler <[email protected]>
-Build-Depends: debhelper (>=5), libpng12-dev, libx11-dev, xbitmaps
+Build-Depends: debhelper (>=5), libpng-dev, libx11-dev, xbitmaps
 Standards-Version: 3.9.1
 
 Package: xstarfish
@@ -15,4 +15,4 @@
  XStarfish generates colourful, tiled images for your background using random
  numbers fed through mathematical functions. It does not use source image
  files, so it can generate its images nearly forever without running out of
- material. 
+ material.
diff -Nru xstarfish-1.1/debian/patches/debian-changes-1.1-11.1 
xstarfish-1.1/debian/patches/debian-changes-1.1-11.1
--- xstarfish-1.1/debian/patches/debian-changes-1.1-11.1        1970-01-01 
01:00:00.000000000 +0100
+++ xstarfish-1.1/debian/patches/debian-changes-1.1-11.1        2016-01-06 
10:42:30.000000000 +0100
@@ -0,0 +1,40 @@
+Description: Upstream changes introduced in version 1.1-11.1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ xstarfish (1.1-11.1) unstable; urgency=low
+ .
+   * Non-maintainer upload.
+   * libpng transition.
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Nobuhiro Iwamatsu <[email protected]>
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- xstarfish-1.1.orig/unix/makepng.c
++++ xstarfish-1.1/unix/makepng.c
+@@ -79,7 +79,11 @@ void MakePNGFile(StarfishRef tex, const
+       if(theInfoPtr)
+       {
+               /* set up the png error handling. */
++#if PNG_LIBPNG_VER_MAJOR >= 1 && PNG_LIBPNG_VER_MINOR >= 4
++              if (setjmp(png_jmpbuf((theWritePtr))))
++#else
+               if (setjmp(theWritePtr->jmpbuf))
++#endif
+               {
+                       png_destroy_write_struct(&theWritePtr, &theInfoPtr);
+                       fclose(theFile);
diff -Nru xstarfish-1.1/debian/patches/debian-changes-1.1-11ubuntu1 
xstarfish-1.1/debian/patches/debian-changes-1.1-11ubuntu1
--- xstarfish-1.1/debian/patches/debian-changes-1.1-11ubuntu1   1970-01-01 
01:00:00.000000000 +0100
+++ xstarfish-1.1/debian/patches/debian-changes-1.1-11ubuntu1   2016-01-06 
10:43:46.000000000 +0100
@@ -0,0 +1,47 @@
+Description: Upstream changes introduced in version 1.1-11ubuntu1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ xstarfish (1.1-11ubuntu1) oneiric; urgency=low
+ .
+   * Fix build failure with ld --as-needed. LP: #832847.
+ .
+ The person named in the Author field signed this changelog entry.
+Author: Matthias Klose <[email protected]>
+Bug-Ubuntu: https://bugs.launchpad.net/bugs/832847
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+--- xstarfish-1.1.orig/Makefile
++++ xstarfish-1.1/Makefile
+@@ -2,14 +2,16 @@
+ # seems to work fairly well on a P3-300 too
+ CC = cc -O3 -funroll-all-loops -I ./portable -I ./portable/pixels/ \
+       -I ./portable/generators/ -I ./unix/ -g -D__USE_EXTERN_INLINES
+-LDFLAGS = -L/usr/X11R6/lib -lm -lX11 -lpng
++LDFLAGS = -L/usr/X11R6/lib
++LIBS = -lm -lX11 -lpng
+ VPATH = ./portable/:./portable/pixels/:./portable/generators/:./unix/
+ OBJECTS =     starfish-engine.o generators.o genutils.o\
+               bufferxform.o greymap.o pixmap.o starfish-rasterlib.o \
+               coswave-gen.o spinflake-gen.o rangefrac-gen.o \
+               bubble-gen.o flatwave-gen.o setdesktop.o makepng.o
+ 
+-starfish: $(OBJECTS)
++starfish: $(OBJECTS) unix/starfish.o
++      $(CC) -o starfish $(LDFLAGS) $(OBJECTS) unix/starfish.o $(LIBS)
+ 
+ starfish-engine.o: starfish-engine.c starfish-engine.h generators.h \
+       starfish-rasterlib.h
diff -Nru xstarfish-1.1/debian/patches/series 
xstarfish-1.1/debian/patches/series
--- xstarfish-1.1/debian/patches/series 2010-08-12 23:26:30.000000000 +0200
+++ xstarfish-1.1/debian/patches/series 2016-01-06 10:43:46.000000000 +0100
@@ -1 +1,3 @@
 previous-maintainer-changes
+debian-changes-1.1-11ubuntu1
+debian-changes-1.1-11.1

--- End Message ---
--- Begin Message ---
Source: xstarfish
Source-Version: 1.1+ds-1
Done: Adam Borowski <[email protected]>

We believe that the bug you reported is fixed in the latest version of
xstarfish, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Adam Borowski <[email protected]> (supplier of updated xstarfish package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Sun, 22 Mar 2020 02:57:33 +0100
Source: xstarfish
Architecture: source
Version: 1.1+ds-1
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <[email protected]>
Changed-By: Adam Borowski <[email protected]>
Closes: 392396 810078 885953
Changes:
 xstarfish (1.1+ds-1) unstable; urgency=medium
 .
   * Orphan the package.
   * Repack the .orig tarball to remove binaries from a proprietary MacOS
     tool which cause errors on QA (bad filenames, masquerading as .gz),
     precompiled source, old Debian packaging.  Closes: #392396, #885953
   * Drop pre-cretaceous Provides/Replaces.
   * Ack NMU.  Closes: #810078
Checksums-Sha1:
 3de9926b1adcd7d652b9a2f762a8d835716b3975 1716 xstarfish_1.1+ds-1.dsc
 bc21a7a90074c3eb04c751d7ad77d847a45ed9dd 44964 xstarfish_1.1+ds.orig.tar.xz
 8e12fb12ac0d4bbc35793e1d8c77783b740eca13 9784 xstarfish_1.1+ds-1.debian.tar.xz
 b08b83bf00d7f2c43a39a1ab7c1b0d00e35139a1 5795 
xstarfish_1.1+ds-1_source.buildinfo
Checksums-Sha256:
 23b36139ed45266cf1608829b31464dd0e0cfa68531e31b016f8a2a0ed8cdec6 1716 
xstarfish_1.1+ds-1.dsc
 c5ef6aef3757b2c70179d6ecaa19cf14fcbcd2c04c55b9e3970e7f3e0c03d3ad 44964 
xstarfish_1.1+ds.orig.tar.xz
 d4e9c2e9161799643d48c486d496606a455f750c49140741124c14af6574ff18 9784 
xstarfish_1.1+ds-1.debian.tar.xz
 647c81d95ffd413ed290b582211aa7f295d7c71147a662ad8bc426fe7be24782 5795 
xstarfish_1.1+ds-1_source.buildinfo
Files:
 1ff5a996f262a6b1826a5b3474421d72 1716 utils optional xstarfish_1.1+ds-1.dsc
 3374d3a4ceeb6d0b3382c35eebf0dbfe 44964 utils optional 
xstarfish_1.1+ds.orig.tar.xz
 a308fc2bab7267dde7cdfaad357cbfe0 9784 utils optional 
xstarfish_1.1+ds-1.debian.tar.xz
 724f128516cc01e143f809b498068b4f 5795 utils optional 
xstarfish_1.1+ds-1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEkjZVexcMh/iCHArDweDZLphvfH4FAl53zLIACgkQweDZLphv
fH61Fg/+Iy6hbIhVw4k3JucXFNB1fh5Hkjf+wNW6nJfhNoN2fjU4FRDZSR221DQ1
krRPUogyTJTsWUzv74HybeYcwveqSKuhdbeiMTxws9e/8WXllUXj7rG2IY3AbLXN
HHIlML1KFSGqPDo9gR8CpzKZEYSL/1bifQiYOSQHF1cnnQJstFzIM/JZfFLwVjJY
sRpeZl7QUaCTMOhddpQmsvu98TOfLOjrRZC1ZeClcICyy3F8yLaJo/BwiDrwu20n
M3wwC/9oCyVcPkas1eGBsVdT0FMkl9hVXwbBzCaa0WYgam7D7Wmu7eFb7BWZQcGf
kgLqbky9mYYhpNM49ZcLcT+cYvo/PJWwJQaqYEUeRO8psGR8GjXUBQfGnmdkv6uk
rcGAoEDM6HzQeUKhXFLy6IHshGD6+ufscoPN6Ah2kbUGCPCMZ8qIGmyoog+qqEsG
DIshP/JdXCgXId4eSzg5RCuBzJZjLKf+KHt8vQRbWUTcpVuAWlbsLhxsgX40n6ZB
C+4rcnJjuUHAXoJlXlqQ8Vf5zNL41Rtv+/Lbwo3znhovZd2CfDrf549BKjUzcLfA
3diTW4q4hfkPK1gO+htsVSp8EtI5YxOFaPUdwHS9dkAw+GvkYhgyMzIzT8tVz9/P
mkM+qpXlRPYYWs298qT5zqDQPGN9/2RUYXKlg5WZ5VUhh+4Uk/A=
=bmAx
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to