commit fly for openSUSE:Factory

2018-03-14 Thread root
Hello community,

here is the log from the commit of package fly for openSUSE:Factory checked in 
at 2018-03-14 19:40:18

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


Package is "fly"

Wed Mar 14 19:40:18 2018 rev:17 rq:586464 version:2.0.1

Changes:

--- /work/SRC/openSUSE:Factory/fly/fly.changes  2012-05-31 17:04:53.0 
+0200
+++ /work/SRC/openSUSE:Factory/.fly.new/fly.changes 2018-03-14 
19:40:41.661671652 +0100
@@ -1,0 +2,27 @@
+Tue Mar 13 16:13:21 UTC 2018 - avin...@opensuse.org
+
+- switch download to mirror site so that "localrun downloadfiles"
+  can work
+
+---
+Tue Mar 13 13:04:00 UTC 2018 - crrodrig...@opensuse.org
+
+- remove buildrequires on freetype2-devel, libjpeg-devel
+  libpng-devel, xorg-x11, xorg-x11-devel, only gd library
+  is ever used.
+
+---
+Sat Oct  7 23:06:37 UTC 2017 - aavind...@gmail.com
+
+- Update to 2.0.1
+  * Fly tested for compatibility with gd version 2.0.35.
+  * Makefile updated for correct/new reference to freetype library.
+  * Has been tested on Linux/x86.
+- Drop fly-2.0.0-libs.patch (freetype lib reference fixed upstream)
+- Lint spec file
+- Fix a few warnings:
+  * Incorrect file endings
+  * Drop duplicate example from source
+  * Drop gif examples as gifs are not supported
+
+---

Old:

  fly-2.0.0-libs.patch
  fly-2.0.0.tar.gz

New:

  fly-2.0.1.tar.gz



Other differences:
--
++ fly.spec ++
--- /var/tmp/diff_new_pack.1ebjYi/_old  2018-03-14 19:40:42.797631300 +0100
+++ /var/tmp/diff_new_pack.1ebjYi/_new  2018-03-14 19:40:42.817630590 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fly
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -16,38 +16,43 @@
 #
 
 
-
 Name:   fly
-BuildRequires:  freetype2-devel gd-devel libjpeg-devel libpng-devel xorg-x11 
xorg-x11-devel
-Url:http://martin.gleeson.com/fly/
+Version:2.0.1
+Release:0
+Summary:A Script to Create PNGs
 License:SUSE-Permissive
 Group:  Productivity/Graphics/Visualization/Other
-Version:2.0.0_PNG
-Release:773
-Summary:A Script to Create PNGs
-Source: fly-2.0.0.tar.gz
-Patch:  fly-2.0.0-libs.patch
+Url:http://martin.gleeson.com/fly/
+# Mirror is used since martin gleeson (master site) rejects robot requests
+Source: http://www.w3perl.com/fly/dist/%{name}-%{version}.tar.gz
 Patch1: fly-2.0.0-gif.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  dos2unix
+BuildRequires:  gd-devel
 
 %description
 Fly allows you to create images with script statements. It uses gdlib.
 
 %prep
-%setup -n %{name}-2.0.0
-%patch
+%setup -q
 %patch1
+# Gifs are not supported
+rm -fr examples/gif
+
+# Duplicate file in source
+rm -f examples/jpeg/small-end.fly
+
+# Use unix line endings
+dos2unix README examples/{jpeg,png,perl}/* examples/example.csh
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS" CC="%__cc"
+make %{?_smp_mflags} CFLAGS="%{optflags}" CC="gcc" LIBS="-lgd"
 
 %install
-mkdir -p $RPM_BUILD_ROOT%{_prefix}/bin
-install -m 755 fly $RPM_BUILD_ROOT%{_prefix}/bin
+mkdir -p %{buildroot}%{_bindir}
+install -m 755 fly %{buildroot}%{_bindir}
 
 %files
-%defattr(-,root,root)
 %doc README examples doc
-%{_prefix}/bin/fly
+%{_bindir}/fly
 
 %changelog

++ fly-2.0.0.tar.gz -> fly-2.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fly-2.0.0/Makefile new/fly-2.0.1/Makefile
--- old/fly-2.0.0/Makefile  2001-11-25 09:39:28.0 +0100
+++ new/fly-2.0.1/Makefile  2009-06-17 03:24:05.0 +0200
@@ -4,13 +4,12 @@
 # If you already have gd installed, use the line below and comment out the
 # following line
 #   GD = /path/to/gd/directory
-GD = gd-1.8.4
-LIBDIRS = -L$(GD) -L/usr/local/web/lib
-INCDIRS = -I$(GD) -I/usr/local/web/include
+LIBDIRS = -L$(GD)
+INCDIRS = -I$(GD)
 CC = gcc
 
 CFLAGS = -O -pedantic -Wall $(INCDIRS) $(LIBDIRS)
-LIBS = -lgd -lm -lz -lttf -lpng -ljpeg #-lXpm 
+LIBS = -lgd -lm -lz -lfreetype -lpng -ljpeg #-lXpm 
 
 all: fly
 
@@ -21,7 +20,7 @@
$(CC) -c $(CFLAGS) fly.c
 
 mostlyclean:
-   rm -f fly.o temp.gif core; cd $(GD); make clean;
+   rm -f fly.o temp.gif core; make clean;
 clean:
-   rm -f fly.o fly temp.gif core; cd $(GD); 

commit fly for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package fly for openSUSE:Factory checked in 
at 2012-05-31 17:04:27

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


Package is fly, Maintainer is nadvor...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/fly/fly.changes  2011-10-06 16:02:05.0 
+0200
+++ /work/SRC/openSUSE:Factory/.fly.new/fly.changes 2012-05-31 
17:04:53.0 +0200
@@ -1,0 +2,7 @@
+Tue May 29 19:38:46 UTC 2012 - cfarr...@suse.com
+
+- license update: SUSE-Permissive
+  SPDX format (or next best alternative from the spreadsheet linked at
+  license.opensuse.org)
+
+---



Other differences:
--
++ fly.spec ++
--- /var/tmp/diff_new_pack.BbfxM9/_old  2012-05-31 17:04:56.0 +0200
+++ /var/tmp/diff_new_pack.BbfxM9/_new  2012-05-31 17:04:56.0 +0200
@@ -20,7 +20,7 @@
 Name:   fly
 BuildRequires:  freetype2-devel gd-devel libjpeg-devel libpng-devel xorg-x11 
xorg-x11-devel
 Url:http://martin.gleeson.com/fly/
-License:Any permissive
+License:SUSE-Permissive
 Group:  Productivity/Graphics/Visualization/Other
 Version:2.0.0_PNG
 Release:773

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



commit fly for openSUSE:Factory

2011-10-06 Thread h_root

Hello community,

here is the log from the commit of package fly for openSUSE:Factory
checked in at Thu Oct 6 16:02:08 CEST 2011.




--- openSUSE:Factory/fly/fly.changes2011-09-23 01:58:00.0 +0200
+++ fly/fly.changes 2011-10-05 15:57:53.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct  5 13:57:50 UTC 2011 - u...@suse.com
+
+- cross-build fix: use %__cc macro
+
+---

calling whatdependson for head-i586




Other differences:
--
++ fly.spec ++
--- /var/tmp/diff_new_pack.2UPvvg/_old  2011-10-06 16:02:04.0 +0200
+++ /var/tmp/diff_new_pack.2UPvvg/_new  2011-10-06 16:02:04.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package fly (Version 2.0.0_PNG)
+# spec file for package fly
 #
-# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 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
@@ -15,6 +15,8 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+
 Name:   fly
 BuildRequires:  freetype2-devel gd-devel libjpeg-devel libpng-devel xorg-x11 
xorg-x11-devel
 Url:http://martin.gleeson.com/fly/
@@ -37,7 +39,7 @@
 %patch1
 
 %build
-make CFLAGS=$RPM_OPT_FLAGS
+make CFLAGS=$RPM_OPT_FLAGS CC=%__cc
 
 %install
 mkdir -p $RPM_BUILD_ROOT%{_prefix}/bin

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



commit fly for openSUSE:Factory

2011-09-20 Thread h_root

Hello community,

here is the log from the commit of package fly for openSUSE:Factory
checked in at Tue Sep 20 09:30:09 CEST 2011.




--- fly/fly.changes 2006-10-31 17:15:44.0 +0100
+++ /mounts/work_src_done/STABLE/fly/fly.changes2011-09-19 
02:15:27.0 +0200
@@ -1,0 +2,6 @@
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Apply packaging guidelines (remove redundant/obsolete
+  tags/sections from specfile, etc.)
+
+---

calling whatdependson for head-i586




Other differences:
--
++ fly.spec ++
--- /var/tmp/diff_new_pack.8F03K5/_old  2011-09-20 09:30:05.0 +0200
+++ /var/tmp/diff_new_pack.8F03K5/_new  2011-09-20 09:30:05.0 +0200
@@ -15,15 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
-
 Name:   fly
 BuildRequires:  freetype2-devel gd-devel libjpeg-devel libpng-devel xorg-x11 
xorg-x11-devel
 Url:http://martin.gleeson.com/fly/
 License:Any permissive
 Group:  Productivity/Graphics/Visualization/Other
-AutoReqProv:on
 Version:2.0.0_PNG
 Release:773
 Summary:A Script to Create PNGs
@@ -35,12 +31,6 @@
 %description
 Fly allows you to create images with script statements. It uses gdlib.
 
-
-
-Authors:
-
-Martin Gleeson glee...@unimelb.edu.au
-
 %prep
 %setup -n %{name}-2.0.0
 %patch
@@ -50,13 +40,9 @@
 make CFLAGS=$RPM_OPT_FLAGS
 
 %install
-rm -rf $RPM_BUILD_ROOT
 mkdir -p $RPM_BUILD_ROOT%{_prefix}/bin
 install -m 755 fly $RPM_BUILD_ROOT%{_prefix}/bin
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root)
 %doc README examples doc






Remember to have fun...

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