commit autotrace for openSUSE:Factory

2014-08-13 Thread h_root
Hello community,

here is the log from the commit of package autotrace for openSUSE:Factory 
checked in at 2014-08-13 17:08:26

Comparing /work/SRC/openSUSE:Factory/autotrace (Old)
 and  /work/SRC/openSUSE:Factory/.autotrace.new (New)


Package is autotrace

Changes:

--- /work/SRC/openSUSE:Factory/autotrace/autotrace.changes  2013-03-01 
07:11:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.autotrace.new/autotrace.changes 2014-08-13 
17:08:48.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 12 20:12:25 UTC 2014 - sfal...@opensuse.org
+
+- Add 0001-fix_input_png.patch:  Corrects build failure against libpng15
+- Updated .spec file to use %make_install macro 
+
+---

New:

  0001-fix_input_png.patch



Other differences:
--
++ autotrace.spec ++
--- /var/tmp/diff_new_pack.S9JdH1/_old  2014-08-13 17:08:48.0 +0200
+++ /var/tmp/diff_new_pack.S9JdH1/_new  2014-08-13 17:08:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package autotrace
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,7 +28,9 @@
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:pstoedit.m4
-Patch:  %{name}-%{version}-quotefix.diff
+Patch0: %{name}-%{version}-quotefix.diff
+# PATCH-FIX_OPENSUSE 0001-fix_input_png.patch sfal...@opensuse.org -- fixes 
build failure against libpng15
+Patch1: 0001-fix_input_png.patch
 Url:http://autotrace.sourceforge.net/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ImageMagick-devel
@@ -43,10 +45,6 @@
 AutoTrace is now a stand-alone program and can be compiled on any UNIX
 platform using GCC.
 
-Authors:
-
-Martin Weber mart...@gmx.net
-
 %package -n libautotrace3
 Summary:Library for converting bitmaps to vector graphics
 Group:  System/Libraries
@@ -59,10 +57,6 @@
 AutoTrace is now a stand-alone program and can be compiled on any UNIX
 platform using GCC.
 
-Authors:
-
-Martin Weber mart...@gmx.net
-
 %package devel
 
 Summary:Library for converting bitmaps to vector graphics
@@ -77,13 +71,10 @@
 AutoTrace is now a stand-alone program and can be compiled on any UNIX
 platform using GCC.
 
-Authors:
-
-Martin Weber mart...@gmx.net
-
 %prep
 %setup -q
-%patch
+%patch0
+%patch1 -p1
 
 %build
 export CFLAGS=$RPM_OPT_FLAGS -fno-strict-aliasing -fno-tree-sra
@@ -94,12 +85,9 @@
 %{__make} %{?jobs:-j%jobs}
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT install
+%make_install
 %{__rm} -f %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -n libautotrace3 -p /sbin/ldconfig
 
 %postun -n libautotrace3 -p /sbin/ldconfig

++ 0001-fix_input_png.patch ++
diff -rupN autotrace-0.31.1.old/input-png.c autotrace-0.31.1/input-png.c
--- autotrace-0.31.1.old/input-png.c2002-10-10 13:44:14.0 -0700
+++ autotrace-0.31.1/input-png.c2014-08-12 13:02:26.761764663 -0700
@@ -42,17 +42,17 @@ static png_bytep * read_png(png_structp
 
 static void handle_warning(png_structp png, const at_string message) {
 LOG1(PNG warning: %s, message);
-   at_exception_warning((at_exception_type *)png-error_ptr,
+   at_exception_warning((at_exception_type *)png_get_error_ptr(png),
 message);
-   /* at_exception_fatal((at_exception_type *)at_png-error_ptr,
+   /* at_exception_fatal((at_exception_type *)png_get_error_ptr(png),
   PNG warning); */
 }
 
 static void handle_error(png_structp png, const at_string message) {
LOG1(PNG error: %s, message);
-   at_exception_fatal((at_exception_type *)png-error_ptr,
+   at_exception_fatal((at_exception_type *)png_get_error_ptr(png),
   message);
-   /* at_exception_fatal((at_exception_type *)at_png-error_ptr,
+   /* at_exception_fatal((at_exception_type *)png_get_error_ptr(at_png),
   PNG error); */

 }
@@ -157,8 +157,8 @@ read_png(png_structp png_ptr, png_infop
 
png_set_strip_16(png_ptr);
png_set_packing(png_ptr);
-   if ((png_ptr-bit_depth  8) ||
-   (png_ptr-color_type == PNG_COLOR_TYPE_PALETTE) ||
+   if ((png_get_bit_depth(png_ptr, info_ptr)  8) ||
+   (png_get_color_type(png_ptr, info_ptr) == 
PNG_COLOR_TYPE_PALETTE) ||
(png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)))
png_set_expand(png_ptr);
 
@@ -181,20 +181,10 @@ read_png(png_structp png_ptr, png_infop
  

commit autotrace for openSUSE:Factory

2013-02-28 Thread h_root
Hello community,

here is the log from the commit of package autotrace for openSUSE:Factory 
checked in at 2013-03-01 07:11:51

Comparing /work/SRC/openSUSE:Factory/autotrace (Old)
 and  /work/SRC/openSUSE:Factory/.autotrace.new (New)


Package is autotrace, Maintainer is sbra...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/autotrace/autotrace.changes  2011-10-03 
09:13:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.autotrace.new/autotrace.changes 2013-03-01 
07:11:52.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 28 05:59:30 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---



Other differences:
--
++ autotrace.spec ++
--- /var/tmp/diff_new_pack.XhO9Uv/_old  2013-03-01 07:11:54.0 +0100
+++ /var/tmp/diff_new_pack.XhO9Uv/_new  2013-03-01 07:11:54.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package autotrace
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,16 +16,16 @@
 #
 
 
-
 Name:   autotrace
-BuildRequires:  gcc-c++ pstoedit-devel
+BuildRequires:  gcc-c++
 BuildRequires:  libtool
-License:GPL-2.0+ ; LGPL-2.1+
-Group:  Productivity/Graphics/Convertors
+BuildRequires:  pstoedit-devel
 Summary:Program for Converting Bitmaps to Vector Graphics
+License:GPL-2.0+ and LGPL-2.1+
+Group:  Productivity/Graphics/Convertors
 Provides:   bitmap_tracing
 Version:0.31.1
-Release:629
+Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:pstoedit.m4
 Patch:  %{name}-%{version}-quotefix.diff
@@ -48,10 +48,8 @@
 Martin Weber mart...@gmx.net
 
 %package -n libautotrace3
-License:GPL-2.0+ ; LGPL-2.1+
-
-Group:  System/Libraries
 Summary:Library for converting bitmaps to vector graphics
+Group:  System/Libraries
 
 %description -n libautotrace3
 AutoTrace is a program for converting bitmaps to vector graphics. The
@@ -66,10 +64,9 @@
 Martin Weber mart...@gmx.net
 
 %package devel
-License:GPL-2.0+ ; LGPL-2.1+
 
-Group:  Development/Libraries/C and C++
 Summary:Library for converting bitmaps to vector graphics
+Group:  Development/Libraries/C and C++
 Requires:   libautotrace3 = %{version}
 
 %description devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit autotrace for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package autotrace for openSUSE:Factory 
checked in at 2011-12-06 17:59:59

Comparing /work/SRC/openSUSE:Factory/autotrace (Old)
 and  /work/SRC/openSUSE:Factory/.autotrace.new (New)


Package is autotrace, Maintainer is sbra...@suse.com

Changes:




Other differences:
--
++ autotrace.spec ++
--- /var/tmp/diff_new_pack.v0zHUG/_old  2011-12-06 18:01:33.0 +0100
+++ /var/tmp/diff_new_pack.v0zHUG/_new  2011-12-06 18:01:33.0 +0100
@@ -20,7 +20,7 @@
 Name:   autotrace
 BuildRequires:  gcc-c++ pstoedit-devel
 BuildRequires:  libtool
-License:GPLv2+ ; LGPLv2.1+
+License:GPL-2.0+ ; LGPL-2.1+
 Group:  Productivity/Graphics/Convertors
 Summary:Program for Converting Bitmaps to Vector Graphics
 Provides:   bitmap_tracing
@@ -48,7 +48,7 @@
 Martin Weber mart...@gmx.net
 
 %package -n libautotrace3
-License:GPLv2+ ; LGPLv2.1+
+License:GPL-2.0+ ; LGPL-2.1+
 
 Group:  System/Libraries
 Summary:Library for converting bitmaps to vector graphics
@@ -66,7 +66,7 @@
 Martin Weber mart...@gmx.net
 
 %package devel
-License:GPLv2+ ; LGPLv2.1+
+License:GPL-2.0+ ; LGPL-2.1+
 
 Group:  Development/Libraries/C and C++
 Summary:Library for converting bitmaps to vector graphics

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit autotrace for openSUSE:Factory

2011-10-03 Thread h_root

Hello community,

here is the log from the commit of package autotrace for openSUSE:Factory
checked in at Mon Oct 3 09:13:29 CEST 2011.




--- openSUSE:Factory/autotrace/autotrace.changes2011-09-23 
01:52:14.0 +0200
+++ autotrace/autotrace.changes 2011-09-30 22:09:52.0 +0200
@@ -1,0 +2,5 @@
+Fri Sep 30 20:07:43 UTC 2011 - co...@suse.com
+
+- add libtool as buildrequire to make the spec file more reliable
+
+---

calling whatdependson for head-i586




Other differences:
--
++ autotrace.spec ++
--- /var/tmp/diff_new_pack.LmfYGX/_old  2011-10-03 09:13:25.0 +0200
+++ /var/tmp/diff_new_pack.LmfYGX/_new  2011-10-03 09:13:25.0 +0200
@@ -19,6 +19,7 @@
 
 Name:   autotrace
 BuildRequires:  gcc-c++ pstoedit-devel
+BuildRequires:  libtool
 License:GPLv2+ ; LGPLv2.1+
 Group:  Productivity/Graphics/Convertors
 Summary:Program for Converting Bitmaps to Vector Graphics

continue with q...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org