Hello community,

here is the log from the commit of package rss-glx for openSUSE:Factory checked 
in at 2017-04-07 13:54:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rss-glx (Old)
 and      /work/SRC/openSUSE:Factory/.rss-glx.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rss-glx"

Fri Apr  7 13:54:52 2017 rev:13 rq:483128 version:0.9.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/rss-glx/rss-glx.changes  2014-10-16 
18:16:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rss-glx.new/rss-glx.changes     2017-04-07 
13:54:56.361641071 +0200
@@ -1,0 +2,6 @@
+Mon Mar 27 12:05:41 UTC 2017 - [email protected]
+
+- fix build with ImageMagick 7
+  + rss-glx-ImageMagick7.patch
+
+-------------------------------------------------------------------

New:
----
  rss-glx-ImageMagick7.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rss-glx.spec ++++++
--- /var/tmp/diff_new_pack.EGiAzG/_old  2017-04-07 13:54:57.333503789 +0200
+++ /var/tmp/diff_new_pack.EGiAzG/_new  2017-04-07 13:54:57.337503224 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rss-glx
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,14 @@
 Url:            http://rss-glx.sourceforge.net/
 Source:         
http://prdownloads.sourceforge.net/rss-glx/rss-glx_%{version}.tar.bz2
 # PATCH-FIX-OPENSUSE
-Patch:          rss-glx-optflags.patch
+Patch0:         rss-glx-optflags.patch
+# patch should go upstream, but there is TODO: source files include
+# magick/MagickCore.h and wand/MagickWand.h. This works for us for
+# both ImageMagick-6 and ImageMagick-7 because we package wand/ and
+# magick/ symlinks of ImageMagick include dir, but files should
+# include MagickCore/MagickCore.h and MagickWand/MagickWand.h for
+# ImageMagick-7 instead; the upstream seem to be dead anyway though
+Patch1:         rss-glx-ImageMagick7.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  freealut-devel
 BuildRequires:  gcc-c++
@@ -50,7 +57,8 @@
 
 %prep
 %setup -n %{name}_%{version}
-%patch
+%patch0
+%patch1 -p1
 
 %build
 autoreconf -fiv

++++++ rss-glx-ImageMagick7.patch ++++++
Index: rss-glx_0.9.1/configure.in
===================================================================
--- rss-glx_0.9.1.orig/configure.in     2017-03-27 13:34:31.042941813 +0200
+++ rss-glx_0.9.1/configure.in  2017-03-27 13:34:31.050941977 +0200
@@ -75,7 +75,7 @@ fi
 AC_CHECK_FUNCS(random_r nrand48)
 
 # Check for ImageMagick.
-PKG_CHECK_MODULES(Wand, Wand >= 6.4)
+PKG_CHECK_MODULES(MagickWand, MagickWand >= 6.4)
 
 if test -d src/skyrocket_sounds ; then
        AC_ARG_ENABLE(sound, [  --disable-sound         Don't compile with 
sound.])
Index: rss-glx_0.9.1/src/Makefile.am
===================================================================
--- rss-glx_0.9.1.orig/src/Makefile.am  2010-01-04 01:44:04.000000000 +0100
+++ rss-glx_0.9.1/src/Makefile.am       2017-03-27 13:36:06.468859903 +0200
@@ -12,8 +12,8 @@ colorfire_LDADD = @BZIP2@
 cyclone_SOURCES = driver.c cyclone.cpp rgbhsl.h rgbhsl.cpp rsRand.h
 cyclone_LDADD = -LrsMath -lrsMath
 drempels_SOURCES = driver.h driver.c drempels.cpp gpoly.h gpoly.cpp TexMgr.h 
TexMgr.cpp rgbhsl.h rgbhsl.cpp noise1234.h noise1234.c
-drempels_CXXFLAGS = @Wand_CFLAGS@
-drempels_LDADD = @PTHREAD_LIBS@ @Wand_LIBS@
+drempels_CXXFLAGS = @MagickWand_CFLAGS@
+drempels_LDADD = @PTHREAD_LIBS@ @MagickWand_LIBS@
 euphoria_SOURCES = driver.h driver.c euphoria.cpp euphoria_textures.h 
euphoria_textures.c rgbhsl.h rgbhsl.cpp
 euphoria_LDADD = -LrsMath -lrsMath @BZIP2@
 feedback_SOURCES = driver.c feedback.cpp rgbhsl.h rgbhsl.cpp
@@ -34,8 +34,8 @@ lattice_LDADD = @BZIP2@
 lorenz_SOURCES = driver.c lorenz.cpp
 lorenz_LDADD = -LrsMath -lrsMath
 matrixview_SOURCES = driver.c matrixview.c matrixview_textures.c
-matrixview_CFLAGS = @Wand_CFLAGS@
-matrixview_LDADD = @BZIP2@ @PTHREAD_LIBS@ @Wand_LIBS@
+matrixview_CFLAGS = @MagickWand_CFLAGS@
+matrixview_LDADD = @BZIP2@ @PTHREAD_LIBS@ @MagickWand_LIBS@
 plasma_SOURCES = driver.c plasma.cpp rsDefines.h rsRand.h
 pixelcity_SOURCES = driver.c
 pixelcity_LDADD = @quesoglc_LIBS@ -LPixelCity -lPixelCity
Index: rss-glx_0.9.1/src/matrixview.c
===================================================================
--- rss-glx_0.9.1.orig/src/matrixview.c 2010-01-05 03:54:55.000000000 +0100
+++ rss-glx_0.9.1/src/matrixview.c      2017-03-27 13:52:50.828843964 +0200
@@ -84,8 +84,8 @@ float *pts;
 float *texcoords;
 unsigned char *colors;
 
-#include <magick/api.h>
-#include <wand/magick-wand.h>
+#include <magick/MagickCore.h>
+#include <wand/MagickWand.h>
 #include <dirent.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -102,7 +102,7 @@ void loadNextImageFromDisk() {
        ExceptionInfo exception;
        int dirLoop = 0;
 
-       GetExceptionInfo (&exception);
+       ClearMagickException (&exception);
 
        int imageLoaded = 0;
        do {
@@ -215,7 +215,7 @@ void loadNextImage ()
                Image *image = NULL, *scaled_image;
                ImageInfo *image_info;
 
-               GetExceptionInfo (&exception);
+               ClearMagickException (&exception);
 
                if (!pics)
                        LOAD_TEXTURE (pics, cpics, cpics_compressedsize, 
cpics_size)
@@ -227,10 +227,17 @@ void loadNextImage ()
                        image_info = CloneImageInfo ((ImageInfo *) NULL);
                        image_info->size = AcquireMagickMemory(sizeof("90x70"));
                        strcpy(image_info->size, "90x70");
+#if MagickLibVersion >= 0x700
+                       image = AcquireImage(image_info, &exception);
+#else
                        image = AcquireImage(image_info);
+#endif
 
+#if MagickLibVersion >= 0x700
+                       ImportImagePixels(image, 0, 0, 90, 70, "I", CharPixel, 
(unsigned char *)(pics + ((random () & 15) * (90 * 70))), &exception);
+#else
                        ImportImagePixels(image, 0, 0, 90, 70, "I", CharPixel, 
(unsigned char *)(pics + ((random () & 15) * (90 * 70))));
-
+#endif
                        scaled_image = ScaleImage (image, text_x, text_y, 
&exception);
 
                        ExportImagePixels (scaled_image, 0, 0, text_x, text_y, 
"I", CharPixel, pic, &exception);
Index: rss-glx_0.9.1/src/TexMgr.cpp
===================================================================
--- rss-glx_0.9.1.orig/src/TexMgr.cpp   2009-05-19 20:10:43.000000000 +0200
+++ rss-glx_0.9.1/src/TexMgr.cpp        2017-03-27 13:34:31.050941977 +0200
@@ -25,8 +25,8 @@
 #endif
 #include <cstdlib>
 
-#include <magick/api.h>
-#include <wand/magick-wand.h>
+#include <magick/MagickCore.h>
+#include <wand/MagickWand.h>
 #include <dirent.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -258,7 +258,7 @@ void TexMgr::loadNextImageFromDisk() {
        ExceptionInfo exception;
        int dirLoop = 0;
 
-       GetExceptionInfo (&exception);
+       ClearMagickException (&exception);
 
        int imageLoaded = 0;
        do {

Reply via email to