From 944ba1d5cb6475302a03b83fb3e81f21a24f6a90 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 18 Mar 2009 10:49:51 +0000 Subject: [PATCH 01/88] Initial import --- .cvsignore | 1 + import.log | 1 + sources | 1 + wcslib-lm.patch | 12 +++++++ wcslib.spec | 84 +++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 99 insertions(+) create mode 100644 import.log create mode 100644 wcslib-lm.patch create mode 100644 wcslib.spec diff --git a/.cvsignore b/.cvsignore index e69de29..cec3e51 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +wcslib-4.3.1.tar.gz diff --git a/import.log b/import.log new file mode 100644 index 0000000..d31f8a3 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +wcslib-4_3_1-2_fc10:HEAD:wcslib-4.3.1-2.fc10.src.rpm:1237373198 diff --git a/sources b/sources index e69de29..817bc27 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +1ba90fbb6975472966f3aed17bbfbfd7 wcslib-4.3.1.tar.gz diff --git a/wcslib-lm.patch b/wcslib-lm.patch new file mode 100644 index 0000000..6db126e --- /dev/null +++ b/wcslib-lm.patch @@ -0,0 +1,12 @@ +diff -ur wcslib-4.3.1/makedefs.in wcslib-4.3.1.new/makedefs.in +--- wcslib-4.3.1/makedefs.in 2007-12-27 06:57:22.000000000 +0100 ++++ wcslib-4.3.1.new/makedefs.in 2009-03-16 15:50:23.000000000 +0100 +@@ -107,7 +107,7 @@ + # Shared (dynamic) library (see note 3 above). + SHRLIB := @SHRLIB@ + SHRFLAGS := @SHRFLAGS@ +- SHRLD := @SHRLD@ ++ SHRLD := @SHRLD@ -lm + SHRLN := @SHRLN@ + + # Installation utilities and locations. diff --git a/wcslib.spec b/wcslib.spec new file mode 100644 index 0000000..8f12720 --- /dev/null +++ b/wcslib.spec @@ -0,0 +1,84 @@ +Name: wcslib +Version: 4.3.1 +Release: 2%{?dist} +Summary: An implementation of the FITS World Coordinate System standard + +Group: Development/Libraries +# Library is under LGPLv3+ utils under GPLv3+ +License: LGPLv3+ +URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ +Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.gz +Patch0: wcslib-lm.patch +Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: cfitsio-devel zlib-devel + +%description +WCSLIB is a library that implements the "World Coordinate System" (WCS) +convention in FITS (Flexible Image Transport System) + +%package devel +Summary: Libraries, includes, etc. used to develop an application with %{name} +Group: Development/Libraries +License: LGPLv3+ +Requires: wcslib = %{version}-%{release} +%description devel +These are the files needed to develop an application using %{name}. + +%package utils +Summary: Utility progrmas provided by %{name} +Group: Development/Libraries +License: GPLv3+ +Requires: wcslib = %{version}-%{release} +%description utils +Utils provided with %{name} + +%prep +%setup -q +%patch0 -p1 + +%build +%configure +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}/%{_bindir} +mkdir -p %{buildroot}/%{_libdir} +mkdir -p %{buildroot}/%{_includedir}/wcslib +install -m 755 utils/fitshdr %{buildroot}/%{_bindir} +install -m 755 utils/HPXcvt %{buildroot}/%{_bindir} +install -m 644 wcsconfig.h %{buildroot}/%{_includedir}/wcslib +install -m 644 C/*.h %{buildroot}/%{_includedir}/wcslib +install -m 755 C/libwcs.so.4.3 %{buildroot}/%{_libdir} +ln -s libwcs.so.4.3 %{buildroot}/%{_libdir}/libwcs.so.4 +ln -s libwcs.so.4.3 %{buildroot}/%{_libdir}/libwcs.so + +%clean +rm -rf %{buildroot} + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%doc COPYING.LESSER README +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%{_libdir}/*.so +%{_includedir}/wcslib + +%files utils +%defattr(-,root,root,-) +%doc COPYING +%{_bindir}/* + +%changelog +* Mon Mar 16 2009 Sergio Pascual 4.3.1-2 +- Added patch to link explicitly with libmath. +- Removed duplicate licenses. + +* Sat Feb 14 2009 Sergio Pascual 4.3.1-1 +- First version. From b94b21a07a2607cbbc2bba481c851904b0749ade Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 07:06:31 +0000 Subject: [PATCH 02/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 8f12720..cc344f8 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.3.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -76,6 +76,9 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 4.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Mar 16 2009 Sergio Pascual 4.3.1-2 - Added patch to link explicitly with libmath. - Removed duplicate licenses. From 0cc31182ba8522cb2b1cbf624a0026ee4740e650 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:12 +0000 Subject: [PATCH 03/88] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0aeb3e2..21c781b 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: wcslib -# $Id$ +# $Id: Makefile,v 1.1 2009/03/18 03:43:16 kevin Exp $ NAME := wcslib SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 09ac782eb2dfaeef80d103a01bc72fbfb08f5764 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:13:36 +0000 Subject: [PATCH 04/88] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 21c781b..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wcslib -# $Id: Makefile,v 1.1 2009/03/18 03:43:16 kevin Exp $ -NAME := wcslib -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index d31f8a3..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -wcslib-4_3_1-2_fc10:HEAD:wcslib-4.3.1-2.fc10.src.rpm:1237373198 From 1cd121febae3ed0ce6efc0cafef2d81e76f241c9 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 10 Nov 2010 04:58:47 +0100 Subject: [PATCH 05/88] - New upstream source - Added pkgconfig file --- .gitignore | 1 + sources | 2 +- wcslib-lm.patch | 12 ------------ wcslib.spec | 24 ++++++++++++++---------- 4 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 wcslib-lm.patch diff --git a/.gitignore b/.gitignore index cec3e51..00b3242 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ wcslib-4.3.1.tar.gz +/wcslib-4.5.6.tar.bz2 diff --git a/sources b/sources index 817bc27..75985d7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1ba90fbb6975472966f3aed17bbfbfd7 wcslib-4.3.1.tar.gz +b50030caa59010f4a50c5947647e431b wcslib-4.5.6.tar.bz2 diff --git a/wcslib-lm.patch b/wcslib-lm.patch deleted file mode 100644 index 6db126e..0000000 --- a/wcslib-lm.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur wcslib-4.3.1/makedefs.in wcslib-4.3.1.new/makedefs.in ---- wcslib-4.3.1/makedefs.in 2007-12-27 06:57:22.000000000 +0100 -+++ wcslib-4.3.1.new/makedefs.in 2009-03-16 15:50:23.000000000 +0100 -@@ -107,7 +107,7 @@ - # Shared (dynamic) library (see note 3 above). - SHRLIB := @SHRLIB@ - SHRFLAGS := @SHRFLAGS@ -- SHRLD := @SHRLD@ -+ SHRLD := @SHRLD@ -lm - SHRLN := @SHRLN@ - - # Installation utilities and locations. diff --git a/wcslib.spec b/wcslib.spec index cc344f8..ade40d0 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,15 +1,13 @@ Name: wcslib -Version: 4.3.1 -Release: 3%{?dist} +Version: 4.5.6 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ -Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.gz -Patch0: wcslib-lm.patch -Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 BuildRequires: cfitsio-devel zlib-devel %description @@ -25,7 +23,7 @@ Requires: wcslib = %{version}-%{release} These are the files needed to develop an application using %{name}. %package utils -Summary: Utility progrmas provided by %{name} +Summary: Utility programs provided by %{name} Group: Development/Libraries License: GPLv3+ Requires: wcslib = %{version}-%{release} @@ -34,7 +32,6 @@ Utils provided with %{name} %prep %setup -q -%patch0 -p1 %build %configure @@ -44,14 +41,16 @@ make %{?_smp_mflags} rm -rf %{buildroot} mkdir -p %{buildroot}/%{_bindir} mkdir -p %{buildroot}/%{_libdir} +mkdir -p %{buildroot}/%{_libdir}/pkgconfig mkdir -p %{buildroot}/%{_includedir}/wcslib install -m 755 utils/fitshdr %{buildroot}/%{_bindir} install -m 755 utils/HPXcvt %{buildroot}/%{_bindir} install -m 644 wcsconfig.h %{buildroot}/%{_includedir}/wcslib +install -m 644 wcslib.pc %{buildroot}/%{_libdir}/pkgconfig install -m 644 C/*.h %{buildroot}/%{_includedir}/wcslib -install -m 755 C/libwcs.so.4.3 %{buildroot}/%{_libdir} -ln -s libwcs.so.4.3 %{buildroot}/%{_libdir}/libwcs.so.4 -ln -s libwcs.so.4.3 %{buildroot}/%{_libdir}/libwcs.so +install -m 755 C/libwcs.so.%{version} %{buildroot}/%{_libdir} +ln -s libwcs.so.%{version} %{buildroot}/%{_libdir}/libwcs.so.4 +ln -s libwcs.so.%{version} %{buildroot}/%{_libdir}/libwcs.so %clean rm -rf %{buildroot} @@ -68,6 +67,7 @@ rm -rf %{buildroot} %files devel %defattr(-,root,root,-) %{_libdir}/*.so +%{_libdir}/pkgconfig/wcslib.pc %{_includedir}/wcslib %files utils @@ -76,6 +76,10 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Tue Nov 09 2010 Sergio Pascual 4.5.6-1 +- New upstream source +- Added pkgconfig file + * Mon Jul 27 2009 Fedora Release Engineering - 4.3.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From bd63057041ac1bb05fed511396df75b952e82fca Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 13 Dec 2010 11:53:22 +0100 Subject: [PATCH 06/88] - New upstream source - Patch to fix problems compiling i686 in x86_64 --- .gitignore | 1 + sources | 2 +- wcslib-cross.patch | 48 ++++++++++++++++++++++++++++++++++++++++++++++ wcslib.spec | 13 +++++++++++-- 4 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 wcslib-cross.patch diff --git a/.gitignore b/.gitignore index 00b3242..e83af7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ wcslib-4.3.1.tar.gz /wcslib-4.5.6.tar.bz2 +/wcslib-4.6.3.tar.bz2 diff --git a/sources b/sources index 75985d7..91102a1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b50030caa59010f4a50c5947647e431b wcslib-4.5.6.tar.bz2 +634f449fdd2c741d393ba5adeef2cfb0 wcslib-4.6.3.tar.bz2 diff --git a/wcslib-cross.patch b/wcslib-cross.patch new file mode 100644 index 0000000..cb74af2 --- /dev/null +++ b/wcslib-cross.patch @@ -0,0 +1,48 @@ +diff -ur wcslib-4.6.3/configure wcslib-4.6.3.new/configure +--- wcslib-4.6.3/configure 2010-11-24 02:35:31.000000000 +0100 ++++ wcslib-4.6.3.new/configure 2010-12-13 11:31:39.519768352 +0100 +@@ -9648,7 +9648,7 @@ + *) + # Covers Linux and Solaris at least. + SHRLIB="libwcs.so.$V" +- SHRLD="$SHRLD -shared -Wl,-h\$(SHRLIB)" ++ SHRLD="$SHRLD $CFLAGS -shared -Wl,-h\$(SHRLIB)" + SHRLN="libwcs.so" + ;; + esac +diff -ur wcslib-4.6.3/utils/GNUmakefile wcslib-4.6.3.new/utils/GNUmakefile +--- wcslib-4.6.3/utils/GNUmakefile 2010-11-16 07:16:20.000000000 +0100 ++++ wcslib-4.6.3.new/utils/GNUmakefile 2010-12-13 11:44:09.276785040 +0100 +@@ -59,20 +59,20 @@ + fitshdr : fitshdr.c + -@ echo '' + $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@.o $< +- $(LD) -o $@ $@.o $(LDFLAGS) $(LIBS) ++ $(LD) $(CFLAGS) -o $@ $@.o $(LDFLAGS) $(LIBS) + -@ $(RM) $@.o + + HPXcvt : HPXcvt.c + -@ echo '' + $(CC) $(CPPFLAGS) $(CFITSIOINC) $(CFLAGS) -c -o $@.o $< +- $(LD) -o $@ $@.o $(LDFLAGS) $(CFITSIOLIB) $(LIBS) ++ $(LD) $(CFLAGS) -o $@ $@.o $(LDFLAGS) $(CFITSIOLIB) $(LIBS) + -@ $(RM) $@.o + + wcsware : wcsware.c $(GETWCSTAB) $(LIBWCS) + -@ echo '' + $(CC) -DDO_CFITSIO $(CPPFLAGS) -I../pgsbox -I../C $(CFITSIOINC) \ + $(CFLAGS) -c -o $@.o $< +- $(LD) $(LDFLAGS) -o $@ $@.o $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) \ ++ $(LD) $(CFLAGS) $(LDFLAGS) -o $@ $@.o $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) \ + $(FLIBS) $(LIBS) + -@ $(RM) $@.o + +@@ -80,7 +80,7 @@ + -@ echo '' + $(CC) -DDO_CFITSIO $(CPPFLAGS) -I../pgsbox -I../C $(PGPLOTINC) \ + $(CFITSIOINC) $(CFLAGS) -c -o $@.o $< +- $(LD) $(LDFLAGS) -o $@ $@.o $(PGSBOXLIB) $(PGPLOTLIB) \ ++ $(LD) $(CFLAGS) $(LDFLAGS) -o $@ $@.o $(PGSBOXLIB) $(PGPLOTLIB) \ + $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) $(FLIBS) $(LIBS) + -@ $(RM) $@.o + diff --git a/wcslib.spec b/wcslib.spec index ade40d0..4a088db 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,5 +1,5 @@ Name: wcslib -Version: 4.5.6 +Version: 4.6.3 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -8,6 +8,7 @@ Group: Development/Libraries License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 +Patch0: wcslib-cross.patch BuildRequires: cfitsio-devel zlib-devel %description @@ -32,9 +33,10 @@ Utils provided with %{name} %prep %setup -q +%patch0 -p1 %build -%configure +%configure --disable-fortran make %{?_smp_mflags} %install @@ -55,6 +57,9 @@ ln -s libwcs.so.%{version} %{buildroot}/%{_libdir}/libwcs.so %clean rm -rf %{buildroot} +%check +make check + %post -p /sbin/ldconfig %postun -p /sbin/ldconfig @@ -76,6 +81,10 @@ rm -rf %{buildroot} %{_bindir}/* %changelog +* Tue Nov 09 2010 Sergio Pascual 4.6.3-1 +- New upstream source +- Patch to fix problems compiling i686 in x86_64 + * Tue Nov 09 2010 Sergio Pascual 4.5.6-1 - New upstream source - Added pkgconfig file From 481a7c5fe651be373d78b32182100eaecbd730bc Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 13 Dec 2010 13:30:32 +0100 Subject: [PATCH 07/88] - Race condition with parallel make --- wcslib.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 4a088db..6abf7d3 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -37,7 +37,9 @@ Utils provided with %{name} %build %configure --disable-fortran -make %{?_smp_mflags} +# seems to have a race condition +#make %{?_smp_mflags} +make %install rm -rf %{buildroot} @@ -81,6 +83,9 @@ make check %{_bindir}/* %changelog +* Tue Nov 09 2010 Sergio Pascual 4.6.3-2 +- Race condition with parallel make + * Tue Nov 09 2010 Sergio Pascual 4.6.3-1 - New upstream source - Patch to fix problems compiling i686 in x86_64 From 1f5ad5a75808dac3d9c574ebd0b7ea28dfa58c1a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 20:11:10 -0600 Subject: [PATCH 08/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 6abf7d3..b1644f8 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -83,6 +83,9 @@ make check %{_bindir}/* %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 4.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Nov 09 2010 Sergio Pascual 4.6.3-2 - Race condition with parallel make From 836a7c6aaa86a19ce34fee6ed23421346d9f086c Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 21 Feb 2011 22:53:25 +0100 Subject: [PATCH 09/88] New upstream source --- wcslib.spec | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 6abf7d3..3658284 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.6.3 -Release: 2%{?dist} +Version: 4.7 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -8,7 +8,6 @@ Group: Development/Libraries License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 -Patch0: wcslib-cross.patch BuildRequires: cfitsio-devel zlib-devel %description @@ -33,7 +32,6 @@ Utils provided with %{name} %prep %setup -q -%patch0 -p1 %build %configure --disable-fortran @@ -83,6 +81,9 @@ make check %{_bindir}/* %changelog +* Sun Feb 20 2011 Sergio Pascual 4.7-1 +- New upstream source + * Tue Nov 09 2010 Sergio Pascual 4.6.3-2 - Race condition with parallel make From 62b3661e9ff5e652a78a4e69cf0ea98800bf39a5 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 21 Feb 2011 22:59:51 +0100 Subject: [PATCH 10/88] EVR bump for rebuilding --- .gitignore | 1 + sources | 2 +- wcslib.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e83af7d..f713a3e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.5.6.tar.bz2 /wcslib-4.6.3.tar.bz2 +/wcslib-4.7.tar.bz2 diff --git a/sources b/sources index 91102a1..1af1973 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -634f449fdd2c741d393ba5adeef2cfb0 wcslib-4.6.3.tar.bz2 +139edd8acf971f74493b70b88de3fb2c wcslib-4.7.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index 24d2986..51900f6 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -81,6 +81,9 @@ make check %{_bindir}/* %changelog +* Mon Feb 21 2011 Sergio Pascual 4.7-2 +- EVR bump for rebuilding + * Sun Feb 20 2011 Sergio Pascual 4.7-1 - New upstream source From fa75a0f292047025e2b43828987da13a5244e64e Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Fri, 6 Jan 2012 17:23:44 +0100 Subject: [PATCH 11/88] New upstream source --- wcslib-cross.patch | 48 ---------------------------------------------- wcslib-perms.patch | 33 +++++++++++++++++++++++++++++++ wcslib.spec | 38 ++++++++++++++++-------------------- 3 files changed, 49 insertions(+), 70 deletions(-) delete mode 100644 wcslib-cross.patch create mode 100644 wcslib-perms.patch diff --git a/wcslib-cross.patch b/wcslib-cross.patch deleted file mode 100644 index cb74af2..0000000 --- a/wcslib-cross.patch +++ /dev/null @@ -1,48 +0,0 @@ -diff -ur wcslib-4.6.3/configure wcslib-4.6.3.new/configure ---- wcslib-4.6.3/configure 2010-11-24 02:35:31.000000000 +0100 -+++ wcslib-4.6.3.new/configure 2010-12-13 11:31:39.519768352 +0100 -@@ -9648,7 +9648,7 @@ - *) - # Covers Linux and Solaris at least. - SHRLIB="libwcs.so.$V" -- SHRLD="$SHRLD -shared -Wl,-h\$(SHRLIB)" -+ SHRLD="$SHRLD $CFLAGS -shared -Wl,-h\$(SHRLIB)" - SHRLN="libwcs.so" - ;; - esac -diff -ur wcslib-4.6.3/utils/GNUmakefile wcslib-4.6.3.new/utils/GNUmakefile ---- wcslib-4.6.3/utils/GNUmakefile 2010-11-16 07:16:20.000000000 +0100 -+++ wcslib-4.6.3.new/utils/GNUmakefile 2010-12-13 11:44:09.276785040 +0100 -@@ -59,20 +59,20 @@ - fitshdr : fitshdr.c - -@ echo '' - $(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@.o $< -- $(LD) -o $@ $@.o $(LDFLAGS) $(LIBS) -+ $(LD) $(CFLAGS) -o $@ $@.o $(LDFLAGS) $(LIBS) - -@ $(RM) $@.o - - HPXcvt : HPXcvt.c - -@ echo '' - $(CC) $(CPPFLAGS) $(CFITSIOINC) $(CFLAGS) -c -o $@.o $< -- $(LD) -o $@ $@.o $(LDFLAGS) $(CFITSIOLIB) $(LIBS) -+ $(LD) $(CFLAGS) -o $@ $@.o $(LDFLAGS) $(CFITSIOLIB) $(LIBS) - -@ $(RM) $@.o - - wcsware : wcsware.c $(GETWCSTAB) $(LIBWCS) - -@ echo '' - $(CC) -DDO_CFITSIO $(CPPFLAGS) -I../pgsbox -I../C $(CFITSIOINC) \ - $(CFLAGS) -c -o $@.o $< -- $(LD) $(LDFLAGS) -o $@ $@.o $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) \ -+ $(LD) $(CFLAGS) $(LDFLAGS) -o $@ $@.o $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) \ - $(FLIBS) $(LIBS) - -@ $(RM) $@.o - -@@ -80,7 +80,7 @@ - -@ echo '' - $(CC) -DDO_CFITSIO $(CPPFLAGS) -I../pgsbox -I../C $(PGPLOTINC) \ - $(CFITSIOINC) $(CFLAGS) -c -o $@.o $< -- $(LD) $(LDFLAGS) -o $@ $@.o $(PGSBOXLIB) $(PGPLOTLIB) \ -+ $(LD) $(CFLAGS) $(LDFLAGS) -o $@ $@.o $(PGSBOXLIB) $(PGPLOTLIB) \ - $(GETWCSTAB) $(CFITSIOLIB) $(LIBWCS) $(FLIBS) $(LIBS) - -@ $(RM) $@.o - diff --git a/wcslib-perms.patch b/wcslib-perms.patch new file mode 100644 index 0000000..85f0827 --- /dev/null +++ b/wcslib-perms.patch @@ -0,0 +1,33 @@ +diff -ur wcslib-4.8.4/C/GNUmakefile wcslib-4.8.4.perm/C/GNUmakefile +--- wcslib-4.8.4/C/GNUmakefile 2011-12-05 07:41:10.000000000 +0100 ++++ wcslib-4.8.4.perm/C/GNUmakefile 2012-01-06 16:54:57.473299563 +0100 +@@ -253,7 +253,7 @@ + fi + - $(LN_S) $(WCSLIB) $(LIBDIR)/libwcs.a + - if [ "$(SHRLIB)" != "" ] ; then \ +- $(INSTALL) -m 644 $(SHRLIB) $(LIBDIR) ; \ ++ $(INSTALL) -m 755 $(SHRLIB) $(LIBDIR) ; \ + if [ -h "$(LIBDIR)/$(SONAME)" ] ; then \ + $(RM) $(LIBDIR)/$(SONAME) ; \ + fi ; \ +@@ -266,7 +266,7 @@ + fi ; \ + fi + - if [ ! -d "$(INCDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(INCDIR) ; \ ++ $(INSTALL) -d -m 0755 $(INCDIR) ; \ + fi + $(INSTALL) -m 444 *.h $(INCDIR) + $(RM) $(INCLINK) +diff -ur wcslib-4.8.4/utils/GNUmakefile wcslib-4.8.4.perm/utils/GNUmakefile +--- wcslib-4.8.4/utils/GNUmakefile 2011-10-04 09:54:26.000000000 +0200 ++++ wcslib-4.8.4.perm/utils/GNUmakefile 2012-01-06 16:56:05.360754907 +0100 +@@ -114,7 +114,7 @@ + - if [ ! -d "$(MANDIR)" ] ; then \ + $(INSTALL) -d -m 2775 $(MANDIR)/man1 ; \ + fi +- $(INSTALL) -m 755 $(MAN) $(MANDIR)/man1 ++ $(INSTALL) -m 644 $(MAN) $(MANDIR)/man1 + + GNUmakefile : ../makedefs ; + diff --git a/wcslib.spec b/wcslib.spec index 51900f6..476de76 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,13 +1,14 @@ Name: wcslib -Version: 4.7 -Release: 2%{?dist} +Version: 4.8.4 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ -Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 +Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.xz +Patch0: wcslib-perms.patch BuildRequires: cfitsio-devel zlib-devel %description @@ -32,30 +33,19 @@ Utils provided with %{name} %prep %setup -q +%patch0 -p1 %build -%configure --disable-fortran +%configure --disable-fortran --disable-static # seems to have a race condition #make %{?_smp_mflags} make %install rm -rf %{buildroot} -mkdir -p %{buildroot}/%{_bindir} -mkdir -p %{buildroot}/%{_libdir} -mkdir -p %{buildroot}/%{_libdir}/pkgconfig -mkdir -p %{buildroot}/%{_includedir}/wcslib -install -m 755 utils/fitshdr %{buildroot}/%{_bindir} -install -m 755 utils/HPXcvt %{buildroot}/%{_bindir} -install -m 644 wcsconfig.h %{buildroot}/%{_includedir}/wcslib -install -m 644 wcslib.pc %{buildroot}/%{_libdir}/pkgconfig -install -m 644 C/*.h %{buildroot}/%{_includedir}/wcslib -install -m 755 C/libwcs.so.%{version} %{buildroot}/%{_libdir} -ln -s libwcs.so.%{version} %{buildroot}/%{_libdir}/libwcs.so.4 -ln -s libwcs.so.%{version} %{buildroot}/%{_libdir}/libwcs.so - -%clean -rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +# fix permissions +rm -rf %{buildroot}//usr/share/doc/wcslib-4.8.4 %check make check @@ -65,22 +55,26 @@ make check %postun -p /sbin/ldconfig %files -%defattr(-,root,root,-) %doc COPYING.LESSER README %{_libdir}/*.so.* %files devel -%defattr(-,root,root,-) +%doc COPYING.LESSER html wcslib.pdf %{_libdir}/*.so +%exclude %{_libdir}/*.a %{_libdir}/pkgconfig/wcslib.pc %{_includedir}/wcslib +%{_includedir}/wcslib-4.8.4 %files utils -%defattr(-,root,root,-) %doc COPYING %{_bindir}/* +%{_mandir}/man1/* %changelog +* Fri Jan 06 2012 Sergio Pascual 4.8.4-1 +- New upstream source + * Mon Feb 21 2011 Sergio Pascual 4.7-2 - EVR bump for rebuilding From 09665c12ab26f4eb445b86679a7226da473ab39e Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Fri, 6 Jan 2012 17:48:42 +0100 Subject: [PATCH 12/88] New upstream source (source added) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f713a3e..03f1ece 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.5.6.tar.bz2 /wcslib-4.6.3.tar.bz2 /wcslib-4.7.tar.bz2 +/wcslib-4.8.4.tar.xz diff --git a/sources b/sources index 1af1973..701cb76 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -139edd8acf971f74493b70b88de3fb2c wcslib-4.7.tar.bz2 +1c80a0c1365bb46ff8f5abfed46edbb4 wcslib-4.8.4.tar.xz diff --git a/wcslib.spec b/wcslib.spec index 476de76..ea600ea 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.8.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -45,7 +45,7 @@ make rm -rf %{buildroot} make install DESTDIR=%{buildroot} # fix permissions -rm -rf %{buildroot}//usr/share/doc/wcslib-4.8.4 +rm -rf %{buildroot}//usr/share/doc/wcslib-%{version} %check make check @@ -64,7 +64,7 @@ make check %exclude %{_libdir}/*.a %{_libdir}/pkgconfig/wcslib.pc %{_includedir}/wcslib -%{_includedir}/wcslib-4.8.4 +%{_includedir}/wcslib-%{version} %files utils %doc COPYING @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Jan 06 2012 Sergio Pascual 4.8.4-2 +- New upstream source (source added) + * Fri Jan 06 2012 Sergio Pascual 4.8.4-1 - New upstream source From 17b6a2269e794e4de50f7e350c0ea7a3fb1d556a Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sat, 7 Jan 2012 01:25:07 +0100 Subject: [PATCH 13/88] Disable check --- wcslib.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index ea600ea..79be5b7 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.8.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -47,8 +47,8 @@ make install DESTDIR=%{buildroot} # fix permissions rm -rf %{buildroot}//usr/share/doc/wcslib-%{version} -%check -make check +# %check +# make check %post -p /sbin/ldconfig @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jan 07 2012 Sergio Pascual 4.8.4-3 +- Disable check + * Fri Jan 06 2012 Sergio Pascual 4.8.4-2 - New upstream source (source added) From e308bc148cfcdec8773c5d294bd8c0c11ba3249a Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 27 Jun 2012 16:08:31 +0200 Subject: [PATCH 14/88] New upstream source --- .gitignore | 1 + sources | 2 +- wcslib-perms.patch | 20 ++++---------------- wcslib.spec | 17 +++++++++-------- 4 files changed, 15 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 03f1ece..29e2ad2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.6.3.tar.bz2 /wcslib-4.7.tar.bz2 /wcslib-4.8.4.tar.xz +/wcslib-4.13.4.tar.xz diff --git a/sources b/sources index 701cb76..f6a99ed 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1c80a0c1365bb46ff8f5abfed46edbb4 wcslib-4.8.4.tar.xz +4d088da93f963d66885a2489b4b021aa wcslib-4.13.4.tar.xz diff --git a/wcslib-perms.patch b/wcslib-perms.patch index 85f0827..5f9aa75 100644 --- a/wcslib-perms.patch +++ b/wcslib-perms.patch @@ -1,6 +1,6 @@ -diff -ur wcslib-4.8.4/C/GNUmakefile wcslib-4.8.4.perm/C/GNUmakefile ---- wcslib-4.8.4/C/GNUmakefile 2011-12-05 07:41:10.000000000 +0100 -+++ wcslib-4.8.4.perm/C/GNUmakefile 2012-01-06 16:54:57.473299563 +0100 +diff -ur wcslib-4.13.4/C/GNUmakefile wcslib-4.13.4.new/C/GNUmakefile +--- wcslib-4.13.4/C/GNUmakefile 2012-03-21 03:57:20.000000000 +0100 ++++ wcslib-4.13.4.new/C/GNUmakefile 2012-06-27 15:30:31.795292229 +0200 @@ -253,7 +253,7 @@ fi - $(LN_S) $(WCSLIB) $(LIBDIR)/libwcs.a @@ -15,19 +15,7 @@ diff -ur wcslib-4.8.4/C/GNUmakefile wcslib-4.8.4.perm/C/GNUmakefile fi - if [ ! -d "$(INCDIR)" ] ; then \ - $(INSTALL) -d -m 2775 $(INCDIR) ; \ -+ $(INSTALL) -d -m 0755 $(INCDIR) ; \ ++ $(INSTALL) -d -m 0775 $(INCDIR) ; \ fi $(INSTALL) -m 444 *.h $(INCDIR) $(RM) $(INCLINK) -diff -ur wcslib-4.8.4/utils/GNUmakefile wcslib-4.8.4.perm/utils/GNUmakefile ---- wcslib-4.8.4/utils/GNUmakefile 2011-10-04 09:54:26.000000000 +0200 -+++ wcslib-4.8.4.perm/utils/GNUmakefile 2012-01-06 16:56:05.360754907 +0100 -@@ -114,7 +114,7 @@ - - if [ ! -d "$(MANDIR)" ] ; then \ - $(INSTALL) -d -m 2775 $(MANDIR)/man1 ; \ - fi -- $(INSTALL) -m 755 $(MAN) $(MANDIR)/man1 -+ $(INSTALL) -m 644 $(MAN) $(MANDIR)/man1 - - GNUmakefile : ../makedefs ; - diff --git a/wcslib.spec b/wcslib.spec index 79be5b7..0f40e15 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.8.4 -Release: 3%{?dist} +Version: 4.13.4 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -37,18 +37,16 @@ Utils provided with %{name} %build %configure --disable-fortran --disable-static -# seems to have a race condition -#make %{?_smp_mflags} -make +make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} # fix permissions -rm -rf %{buildroot}//usr/share/doc/wcslib-%{version} +rm -rf %{buildroot}/usr/share/doc/wcslib-%{version} -# %check -# make check +%check +make check %post -p /sbin/ldconfig @@ -72,6 +70,9 @@ rm -rf %{buildroot}//usr/share/doc/wcslib-%{version} %{_mandir}/man1/* %changelog +* Wed Jun 27 2012 Sergio Pascual 4.13.4-1 +- New upstream source + * Sat Jan 07 2012 Sergio Pascual 4.8.4-3 - Disable check From cac0b5456ebd3ba96b77348ad0960bbfca0c2ae9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 22:18:23 -0500 Subject: [PATCH 15/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 0f40e15..3908515 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.13.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 4.13.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Wed Jun 27 2012 Sergio Pascual 4.13.4-1 - New upstream source From 27729633868ffb679a483e79b697f633bbb26664 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:00:24 -0600 Subject: [PATCH 16/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 3908515..0bf2424 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.13.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 4.13.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 4.13.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 3c8bef1dd4ee99104db9530180b1cc2489dd0d1f Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 20 Mar 2013 23:49:24 +0100 Subject: [PATCH 17/88] New upstream source --- .gitignore | 1 + sources | 2 +- wcslib.spec | 10 +++++++--- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 29e2ad2..d72a296 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.7.tar.bz2 /wcslib-4.8.4.tar.xz /wcslib-4.13.4.tar.xz +/wcslib-4.17.tar.bz2 diff --git a/sources b/sources index f6a99ed..54bb847 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4d088da93f963d66885a2489b4b021aa wcslib-4.13.4.tar.xz +81f739c84789b84626db9fe4cd866081 wcslib-4.17.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index 0bf2424..0425bd3 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,13 +1,13 @@ Name: wcslib -Version: 4.13.4 -Release: 3%{?dist} +Version: 4.17 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ -Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.xz +Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 Patch0: wcslib-perms.patch BuildRequires: cfitsio-devel zlib-devel @@ -44,6 +44,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} # fix permissions rm -rf %{buildroot}/usr/share/doc/wcslib-%{version} +chmod 755 %{buildroot}%{_includedir}/wcslib-%{version} %check make check @@ -70,6 +71,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Mar 20 2013 Sergio Pascual 4.17-1 +- New upstream source + * Fri Feb 15 2013 Fedora Release Engineering - 4.13.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From cadf2a04e459644cb3e3d816da8f0ffce94ec11a Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Fri, 22 Mar 2013 23:05:22 +0100 Subject: [PATCH 18/88] Rebuilt for new cfitsio (3.340) --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 0425bd3..2faa283 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -71,6 +71,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Mar 22 2013 Sergio Pascual 4.17-2 +- Rebuilt for new cfitsio (3.340) + * Wed Mar 20 2013 Sergio Pascual 4.17-1 - New upstream source From 3d4bebc9d2bab671710f5687cb330e6e9e7e9c8e Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 16 Jul 2013 11:54:58 +0200 Subject: [PATCH 19/88] New upstream source (4.18) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 8 +++++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index d72a296..e828e34 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.8.4.tar.xz /wcslib-4.13.4.tar.xz /wcslib-4.17.tar.bz2 +/wcslib-4.18.tar.bz2 diff --git a/sources b/sources index 54bb847..b249ef4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -81f739c84789b84626db9fe4cd866081 wcslib-4.17.tar.bz2 +0bac51eb52d560683fda3847fe89cdeb wcslib-4.18.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index 2faa283..d0a83b0 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.17 -Release: 2%{?dist} +Version: 4.18 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -40,7 +40,6 @@ Utils provided with %{name} make %{?_smp_mflags} %install -rm -rf %{buildroot} make install DESTDIR=%{buildroot} # fix permissions rm -rf %{buildroot}/usr/share/doc/wcslib-%{version} @@ -71,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Tue Jul 16 2013 Sergio Pascual 4.18-1 +- New upstream source (4.18) + * Fri Mar 22 2013 Sergio Pascual 4.17-2 - Rebuilt for new cfitsio (3.340) From 1ebc9c68445ca539ad34d217a8341ed4ea5686c3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 01:41:37 -0500 Subject: [PATCH 20/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index d0a83b0..82a87e0 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 4.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue Jul 16 2013 Sergio Pascual 4.18-1 - New upstream source (4.18) From 0c2def1ffc721f1e72c0b4b2584ac4c407babd5b Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sat, 24 Aug 2013 02:12:36 +0200 Subject: [PATCH 21/88] Removed reference to versioned docdir (bz #993888) --- wcslib.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 82a87e0..30c7b82 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -42,7 +42,7 @@ make %{?_smp_mflags} %install make install DESTDIR=%{buildroot} # fix permissions -rm -rf %{buildroot}/usr/share/doc/wcslib-%{version} +rm -rf %{buildroot}/usr/share/doc/wcslib* chmod 755 %{buildroot}%{_includedir}/wcslib-%{version} %check @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Aug 24 2013 Sergio Pascual 4.18-3 +- Removed reference to versioned docdir (bz #993888) + * Sun Aug 04 2013 Fedora Release Engineering - 4.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 88aa6af38659b6ce2fe8ed4ba8dd15cc37ad9c5d Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 23 Oct 2013 00:36:49 +0200 Subject: [PATCH 22/88] New upstream source (4.19) --- .gitignore | 1 + sources | 2 +- wcslib-perms.patch | 9 --------- wcslib.spec | 7 +++++-- 4 files changed, 7 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index e828e34..59de8d2 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.13.4.tar.xz /wcslib-4.17.tar.bz2 /wcslib-4.18.tar.bz2 +/wcslib-4.19.tar.bz2 diff --git a/sources b/sources index b249ef4..b131c52 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0bac51eb52d560683fda3847fe89cdeb wcslib-4.18.tar.bz2 +79d47ab10dfde08d91c0e6184cf73bda wcslib-4.19.tar.bz2 diff --git a/wcslib-perms.patch b/wcslib-perms.patch index 5f9aa75..1628c3f 100644 --- a/wcslib-perms.patch +++ b/wcslib-perms.patch @@ -1,15 +1,6 @@ diff -ur wcslib-4.13.4/C/GNUmakefile wcslib-4.13.4.new/C/GNUmakefile --- wcslib-4.13.4/C/GNUmakefile 2012-03-21 03:57:20.000000000 +0100 +++ wcslib-4.13.4.new/C/GNUmakefile 2012-06-27 15:30:31.795292229 +0200 -@@ -253,7 +253,7 @@ - fi - - $(LN_S) $(WCSLIB) $(LIBDIR)/libwcs.a - - if [ "$(SHRLIB)" != "" ] ; then \ -- $(INSTALL) -m 644 $(SHRLIB) $(LIBDIR) ; \ -+ $(INSTALL) -m 755 $(SHRLIB) $(LIBDIR) ; \ - if [ -h "$(LIBDIR)/$(SONAME)" ] ; then \ - $(RM) $(LIBDIR)/$(SONAME) ; \ - fi ; \ @@ -266,7 +266,7 @@ fi ; \ fi diff --git a/wcslib.spec b/wcslib.spec index 30c7b82..6454c89 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.18 -Release: 3%{?dist} +Version: 4.19 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Oct 23 2013 Sergio Pascual 4.19-1 +- New upstream source (4.19) + * Sat Aug 24 2013 Sergio Pascual 4.18-3 - Removed reference to versioned docdir (bz #993888) From 0b8c519cdb7b1eb6d98b9de6584a2147148fb13f Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 9 Jan 2014 15:42:07 +0100 Subject: [PATCH 23/88] New upstream source (4.20) - Rebuilt for new cfitsio (3.360) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 6 +++++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 59de8d2..c6cad5b 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.17.tar.bz2 /wcslib-4.18.tar.bz2 /wcslib-4.19.tar.bz2 +/wcslib-4.20.tar.bz2 diff --git a/sources b/sources index b131c52..cb36f54 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -79d47ab10dfde08d91c0e6184cf73bda wcslib-4.19.tar.bz2 +3513e20f236274fbc2fa22251fd0726f wcslib-4.20.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index 6454c89..a086219 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,5 +1,5 @@ Name: wcslib -Version: 4.19 +Version: 4.20 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -70,6 +70,10 @@ make check %{_mandir}/man1/* %changelog +* Thu Jan 09 2014 Sergio Pascual 4.20-1 +- New upstream source (4.20) +- Rebuilt for new cfitsio (3.360) + * Wed Oct 23 2013 Sergio Pascual 4.19-1 - New upstream source (4.19) From eaee665c5c9013905013bd110ad31d2c22b4a1a4 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 13 Apr 2014 10:34:29 +0200 Subject: [PATCH 24/88] New upstream source (4.22) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c6cad5b..0677ef7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.18.tar.bz2 /wcslib-4.19.tar.bz2 /wcslib-4.20.tar.bz2 +/wcslib-4.22.tar.bz2 diff --git a/sources b/sources index cb36f54..0835c80 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3513e20f236274fbc2fa22251fd0726f wcslib-4.20.tar.bz2 +dd5b9ca48298a29925c9c7f2d863a9ef wcslib-4.22.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index a086219..4b14d77 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,12 +1,12 @@ Name: wcslib -Version: 4.20 +Version: 4.22 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ -URL: http://www.atnf.csiro.au/people/mcalabre/WCS/ +URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 Patch0: wcslib-perms.patch BuildRequires: cfitsio-devel zlib-devel @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Apr 13 2014 Sergio Pascual 4.22-1 +- New upstream source (4.22) + * Thu Jan 09 2014 Sergio Pascual 4.20-1 - New upstream source (4.20) - Rebuilt for new cfitsio (3.360) From acd25ffcd3d4206379a322ae511b2d7bd9339c60 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 19 May 2014 10:50:30 +0200 Subject: [PATCH 25/88] New upstream source (4.23) --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 4b14d77..d348b4e 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,5 +1,5 @@ Name: wcslib -Version: 4.22 +Version: 4.23 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Mon May 19 2014 Sergio Pascual 4.23-1 +- New upstream source (4.23) + * Sun Apr 13 2014 Sergio Pascual 4.22-1 - New upstream source (4.22) From 773d237cac0202cf193ef379e484bf4623bb79e3 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 25 May 2014 17:47:30 +0200 Subject: [PATCH 26/88] Added sources From 260f2608e234eef4006d1c3bc3738107532b8c57 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 25 May 2014 17:53:49 +0200 Subject: [PATCH 27/88] Really add the sources From 43b687b635a5b414db60e8c0a9bb2a38fdbb0d12 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 25 May 2014 17:57:35 +0200 Subject: [PATCH 28/88] Really really add new source --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0677ef7..8e91ca6 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.19.tar.bz2 /wcslib-4.20.tar.bz2 /wcslib-4.22.tar.bz2 +/wcslib-4.23.tar.bz2 diff --git a/sources b/sources index 0835c80..a503fa5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -dd5b9ca48298a29925c9c7f2d863a9ef wcslib-4.22.tar.bz2 +be5e0dbc93540cb1d163110c7c327919 wcslib-4.23.tar.bz2 From f54aa51791da213a6c3503df7caa3654119252b5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 23:17:12 -0500 Subject: [PATCH 29/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index d348b4e..925ced7 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.23 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 4.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Mon May 19 2014 Sergio Pascual 4.23-1 - New upstream source (4.23) From 5b7a1986db6c3370a31c55a10875017a0fdaf53a Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 08:22:13 +0000 Subject: [PATCH 30/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 925ced7..c0be410 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.23 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 4.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 4.23-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From e418f00b2837f94ef3ec88cfd90ea70703b9ab37 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 27 Jan 2015 15:59:49 +0100 Subject: [PATCH 31/88] New upstream source (4.25.1) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8e91ca6..d11cc5f 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.20.tar.bz2 /wcslib-4.22.tar.bz2 /wcslib-4.23.tar.bz2 +/wcslib-4.25.1.tar.bz2 diff --git a/sources b/sources index a503fa5..bc639c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -be5e0dbc93540cb1d163110c7c327919 wcslib-4.23.tar.bz2 +273743120460aed00fdfe8d5d5eb6c8d wcslib-4.25.1.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index c0be410..cee9556 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.23 -Release: 3%{?dist} +Version: 4.25.1 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Mon Jan 26 2015 Sergio Pascual 4.25.1-1 +- New upstream source (4.25.1) + * Mon Aug 18 2014 Fedora Release Engineering - 4.23-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From afad0555ff1d10e53699316733ef73e75fc11886 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 02:17:36 +0000 Subject: [PATCH 32/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index cee9556..ad7f29a 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.25.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 4.25.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Jan 26 2015 Sergio Pascual 4.25.1-1 - New upstream source (4.25.1) From 7469121ea0345b4ac6fa39cc79479d305ca512b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:55:42 +0000 Subject: [PATCH 33/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index ad7f29a..072797b 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 4.25.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 4.25.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 4.25.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From b9f552794d03b2ceba2ed607204e293bb70bc3d2 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 30 Mar 2016 00:53:13 +0200 Subject: [PATCH 34/88] New upstream source (5.14), soname bump --- .gitignore | 1 + sources | 2 +- wcslib.spec | 15 ++++++++++----- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index d11cc5f..6341dff 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.22.tar.bz2 /wcslib-4.23.tar.bz2 /wcslib-4.25.1.tar.bz2 +/wcslib-5.14.tar.bz2 diff --git a/sources b/sources index bc639c4..5ffe4fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -273743120460aed00fdfe8d5d5eb6c8d wcslib-4.25.1.tar.bz2 +7225a13fe1ca9eb7a6e29432ecaa1ffb wcslib-5.14.tar.bz2 diff --git a/wcslib.spec b/wcslib.spec index 072797b..4d35e9b 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 4.25.1 -Release: 3%{?dist} +Version: 5.14 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -53,11 +53,13 @@ make check %postun -p /sbin/ldconfig %files -%doc COPYING.LESSER README +%license COPYING.LESSER +%doc README %{_libdir}/*.so.* %files devel -%doc COPYING.LESSER html wcslib.pdf +%license COPYING.LESSER +%doc html wcslib.pdf %{_libdir}/*.so %exclude %{_libdir}/*.a %{_libdir}/pkgconfig/wcslib.pc @@ -65,11 +67,14 @@ make check %{_includedir}/wcslib-%{version} %files utils -%doc COPYING +%license COPYING %{_bindir}/* %{_mandir}/man1/* %changelog +* Wed Mar 30 2016 Sergio Pascual 5.14-1 +- New upstream source (5.14), soname bump + * Fri Feb 05 2016 Fedora Release Engineering - 4.25.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 978eb87e141017f3b154c5e08172d62defec9efb Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 17 Jul 2016 01:42:18 +0200 Subject: [PATCH 35/88] New upstream source (5.15) --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 4d35e9b..2fad2ba 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,5 +1,5 @@ Name: wcslib -Version: 5.14 +Version: 5.15 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Jul 15 2016 Sergio Pascual 5.15-1 +- New upstream source (5.15) + * Wed Mar 30 2016 Sergio Pascual 5.14-1 - New upstream source (5.14), soname bump From 65b798f917e7399e7771db4ee750ace1fa012ac6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:17:00 +0000 Subject: [PATCH 36/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 2fad2ba..b4e103d 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 5.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 5.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Jul 15 2016 Sergio Pascual 5.15-1 - New upstream source (5.15) From 4ae622e1125a91fc9ecac251dfb2db22495063df Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 16 May 2017 23:25:55 +0200 Subject: [PATCH 37/88] New upstream source (5.16) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6341dff..5fc6782 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.23.tar.bz2 /wcslib-4.25.1.tar.bz2 /wcslib-5.14.tar.bz2 +/wcslib-5.16.tar.bz2 diff --git a/sources b/sources index 5ffe4fb..e326ef3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7225a13fe1ca9eb7a6e29432ecaa1ffb wcslib-5.14.tar.bz2 +SHA512 (wcslib-5.16.tar.bz2) = bf7ab586995bdade8b96c77dee891c7d7ab6de82a7e2f94a09d89643e93658063f832efdb66e0bba11ad114b6e0ca555cba9308a84f0f22fb833e3a6303cefe6 diff --git a/wcslib.spec b/wcslib.spec index b4e103d..6f86591 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 5.15 -Release: 2%{?dist} +Version: 5.16 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Tue May 16 2017 Sergio Pascual 5.16-1 +- New upstream source (5.16) + * Sat Feb 11 2017 Fedora Release Engineering - 5.15-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From cd6e31a114abb1ec688d35d59f790e4c5f95c516 Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Sat, 20 May 2017 00:21:53 +0200 Subject: [PATCH 38/88] rebuild, to fix #1452893 --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 6f86591..fceb581 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 5.16 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Fri May 19 2017 Christian Dersch - 5.16-2 +- rebuild, to fix #1452893 + * Tue May 16 2017 Sergio Pascual 5.16-1 - New upstream source (5.16) From bc6867ce7b58603ad014b64fef1ae4aba40ae414 Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Thu, 1 Jun 2017 10:50:33 +0200 Subject: [PATCH 39/88] yet another rebuild for build-id conflicts --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index fceb581..7be4d5c 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 5.16 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -72,6 +72,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Jun 01 2017 Christian Dersch - 5.16-3 +- yet another rebuild for build-id conflicts + * Fri May 19 2017 Christian Dersch - 5.16-2 - rebuild, to fix #1452893 From 9ce7dc42a9c413f74521cccece9fb7146c88ad49 Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Thu, 1 Jun 2017 12:01:11 +0200 Subject: [PATCH 40/88] try workaround for #1452893 --- wcslib.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 7be4d5c..9e0124e 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,9 @@ +# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1452893 +%global _build_id_links alldebug + Name: wcslib Version: 5.16 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -72,6 +75,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Jun 01 2017 Christian Dersch - 5.16-4 +- try workaround for #1452893 + * Thu Jun 01 2017 Christian Dersch - 5.16-3 - yet another rebuild for build-id conflicts From 65aba265e7714c23c3a7f0cf633ed0f09928fb83 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:31:26 +0000 Subject: [PATCH 41/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 9e0124e..fa1d877 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -3,7 +3,7 @@ Name: wcslib Version: 5.16 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -75,6 +75,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 5.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Thu Jun 01 2017 Christian Dersch - 5.16-4 - try workaround for #1452893 From 6877936cebc5fa83c17ae39f651b129bd6fe6c3e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:12:45 +0000 Subject: [PATCH 42/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index fa1d877..b2b84d4 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -3,7 +3,7 @@ Name: wcslib Version: 5.16 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -75,6 +75,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 5.16-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 5.16-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 98f224b2ba7ec4ddf754155fe406856647a67a56 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 11 Sep 2017 13:01:19 +0200 Subject: [PATCH 43/88] Patch all problematic 2775 install permissions to 775 --- wcslib-perms.patch | 67 ++++++++++++++++++++++++++++++++++++++++++---- wcslib.spec | 8 +++--- 2 files changed, 67 insertions(+), 8 deletions(-) diff --git a/wcslib-perms.patch b/wcslib-perms.patch index 1628c3f..9a720b3 100644 --- a/wcslib-perms.patch +++ b/wcslib-perms.patch @@ -1,12 +1,69 @@ -diff -ur wcslib-4.13.4/C/GNUmakefile wcslib-4.13.4.new/C/GNUmakefile ---- wcslib-4.13.4/C/GNUmakefile 2012-03-21 03:57:20.000000000 +0100 -+++ wcslib-4.13.4.new/C/GNUmakefile 2012-06-27 15:30:31.795292229 +0200 -@@ -266,7 +266,7 @@ +diff -ur wcslib-5.16/C/GNUmakefile wcslib-5.16.perms/C/GNUmakefile +--- wcslib-5.16/C/GNUmakefile 2017-01-15 05:25:01.000000000 +0100 ++++ wcslib-5.16.perms/C/GNUmakefile 2017-09-11 12:24:44.434026804 +0200 +@@ -252,7 +252,7 @@ + + install : build + - if [ ! -d "$(LIBDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(LIBDIR) ; \ ++ $(INSTALL) -d -m 775 $(LIBDIR) ; \ + fi + $(INSTALL) -m 644 $(WCSLIB) $(LIBDIR) + $(RANLIB) $(LIBDIR)/$(WCSLIB) +@@ -274,7 +274,7 @@ fi ; \ fi - if [ ! -d "$(INCDIR)" ] ; then \ - $(INSTALL) -d -m 2775 $(INCDIR) ; \ -+ $(INSTALL) -d -m 0775 $(INCDIR) ; \ ++ $(INSTALL) -d -m 775 $(INCDIR) ; \ fi $(INSTALL) -m 444 *.h $(INCDIR) $(RM) $(INCLINK) +diff -ur wcslib-5.16/GNUmakefile wcslib-5.16.perms/GNUmakefile +--- wcslib-5.16/GNUmakefile 2017-01-15 05:25:03.000000000 +0100 ++++ wcslib-5.16.perms/GNUmakefile 2017-09-11 12:25:23.739580571 +0200 +@@ -82,7 +82,7 @@ + done + $(INSTALL) -m 444 wcsconfig.h wcsconfig_f77.h $(INCDIR) + - if [ ! -d "$(DOCDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(DOCDIR) ; \ ++ $(INSTALL) -d -m 775 $(DOCDIR) ; \ + fi + $(INSTALL) -m 444 CHANGES COPYING* README $(DOCDIR) + - if [ -h $(DOCLINK) ] ; then \ +@@ -90,15 +90,15 @@ + $(LN_S) $(notdir $(DOCDIR)) $(DOCLINK) ; \ + fi + - if [ ! -d "$(PDFDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(PDFDIR) ; \ ++ $(INSTALL) -d -m 775 $(PDFDIR) ; \ + fi + $(INSTALL) -m 444 wcslib.pdf $(PDFDIR) + - if [ ! -d "$(HTMLDIR)/html" ] ; then \ +- $(INSTALL) -d -m 2775 $(HTMLDIR)/html ; \ ++ $(INSTALL) -d -m 775 $(HTMLDIR)/html ; \ + fi + $(INSTALL) -m 444 html/* $(HTMLDIR)/html + if [ ! -d "$(LIBDIR)/pkgconfig" ] ; then \ +- $(INSTALL) -d -m 2775 $(LIBDIR)/pkgconfig ; \ ++ $(INSTALL) -d -m 775 $(LIBDIR)/pkgconfig ; \ + fi + $(INSTALL) -m 444 wcslib.pc $(LIBDIR)/pkgconfig/wcslib.pc + +diff -ur wcslib-5.16/utils/GNUmakefile wcslib-5.16.perms/utils/GNUmakefile +--- wcslib-5.16/utils/GNUmakefile 2017-01-15 05:25:04.000000000 +0100 ++++ wcslib-5.16.perms/utils/GNUmakefile 2017-09-11 12:23:25.705917622 +0200 +@@ -108,11 +108,11 @@ + + install : build + - if [ ! -d "$(BINDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(BINDIR) ; \ ++ $(INSTALL) -d -m 775 $(BINDIR) ; \ + fi + $(INSTALL) -m 755 $(UTILS) $(BINDIR) + - if [ ! -d "$(MANDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(MANDIR)/man1 ; \ ++ $(INSTALL) -d -m 775 $(MANDIR)/man1 ; \ + fi + $(INSTALL) -m 644 $(MAN) $(MANDIR)/man1 + diff --git a/wcslib.spec b/wcslib.spec index b2b84d4..cc2cbee 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,9 +1,7 @@ -# Workaround for https://bugzilla.redhat.com/show_bug.cgi?id=1452893 -%global _build_id_links alldebug Name: wcslib Version: 5.16 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -11,6 +9,7 @@ Group: Development/Libraries License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 +# Sent upstream 2017-09-11 Patch0: wcslib-perms.patch BuildRequires: cfitsio-devel zlib-devel @@ -75,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Mon Sep 11 2017 Sergio Pascual 5.16-7 +- Patch all problematic 2775 install permissions to 775 + * Thu Aug 03 2017 Fedora Release Engineering - 5.16-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 13ea7ab16c253bfe126ee01b6a0b49bb3d29ffc4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:48:08 +0000 Subject: [PATCH 44/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index cc2cbee..34b85ba 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 5.16 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An implementation of the FITS World Coordinate System standard Group: Development/Libraries @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 5.16-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Sep 11 2017 Sergio Pascual 5.16-7 - Patch all problematic 2775 install permissions to 775 From 0c005b1c20fb8d542db49b2846ee6f42b096777a Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Fri, 23 Feb 2018 15:57:35 +0100 Subject: [PATCH 45/88] new version --- wcslib.spec | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 34b85ba..f125391 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,16 +1,13 @@ Name: wcslib -Version: 5.16 -Release: 8%{?dist} +Version: 5.18 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard -Group: Development/Libraries # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 -# Sent upstream 2017-09-11 -Patch0: wcslib-perms.patch BuildRequires: cfitsio-devel zlib-devel %description @@ -35,7 +32,6 @@ Utils provided with %{name} %prep %setup -q -%patch0 -p1 %build %configure --disable-fortran --disable-static @@ -74,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Feb 23 2018 Christian Dersch - 5.18-1 +- new version + * Fri Feb 09 2018 Fedora Release Engineering - 5.16-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c7d1b94cce2882d243a83237488eca885a5cb973 Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Fri, 23 Feb 2018 17:23:25 +0100 Subject: [PATCH 46/88] updated sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5fc6782..48ee990 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ wcslib-4.3.1.tar.gz /wcslib-4.25.1.tar.bz2 /wcslib-5.14.tar.bz2 /wcslib-5.16.tar.bz2 +/wcslib-5.18.tar.bz2 diff --git a/sources b/sources index e326ef3..bbb85f3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-5.16.tar.bz2) = bf7ab586995bdade8b96c77dee891c7d7ab6de82a7e2f94a09d89643e93658063f832efdb66e0bba11ad114b6e0ca555cba9308a84f0f22fb833e3a6303cefe6 +SHA512 (wcslib-5.18.tar.bz2) = f75f4153d5cec6ec7e140a9c1431dfbf7aae06c0fc9d0c79da2c9cfc9b7c3e0118dd726086fcc35ab29d9cdee45d5f762052b1eb150e12d8806028c145a76750 From 8d6a07ed8ebf80e6cfda5f5252fd844b6b488684 Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Sat, 26 May 2018 10:25:06 +0200 Subject: [PATCH 47/88] rebuilt for cfitsio 3.450 --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index f125391..5fcf922 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 5.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -70,6 +70,9 @@ make check %{_mandir}/man1/* %changelog +* Sat May 26 2018 Christian Dersch - 5.18-2 +- rebuilt for cfitsio 3.450 + * Fri Feb 23 2018 Christian Dersch - 5.18-1 - new version From 3e4ccac20e37024512a093417bf3b553eac705bc Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Sat, 26 May 2018 10:32:26 +0200 Subject: [PATCH 48/88] added BR: flex --- wcslib.spec | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 5fcf922..4a8b6f8 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,14 +1,20 @@ Name: wcslib Version: 5.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 -BuildRequires: cfitsio-devel zlib-devel + +# General stuff +BuildRequires: flex +BuildRequires: gcc +# Development libraries +BuildRequires: cfitsio-devel +BuildRequires: zlib-devel %description WCSLIB is a library that implements the "World Coordinate System" (WCS) @@ -70,6 +76,9 @@ make check %{_mandir}/man1/* %changelog +* Sat May 26 2018 Christian Dersch - 5.18-3 +- added BR: flex + * Sat May 26 2018 Christian Dersch - 5.18-2 - rebuilt for cfitsio 3.450 From b06e82181ed68b56edc28b05606a66d0fd2f65ba Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:45:03 +0000 Subject: [PATCH 49/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 4a8b6f8..d740b1a 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 5.18 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -76,6 +76,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 5.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sat May 26 2018 Christian Dersch - 5.18-3 - added BR: flex From 4ba9927934272e07b1357b5a1652f36fe539cb0c Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Thu, 2 Aug 2018 10:50:38 +0200 Subject: [PATCH 50/88] new version --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 48ee990..56cd11b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ wcslib-4.3.1.tar.gz /wcslib-5.14.tar.bz2 /wcslib-5.16.tar.bz2 /wcslib-5.18.tar.bz2 +/wcslib-5.19.1.tar.bz2 diff --git a/sources b/sources index bbb85f3..dba3b1e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-5.18.tar.bz2) = f75f4153d5cec6ec7e140a9c1431dfbf7aae06c0fc9d0c79da2c9cfc9b7c3e0118dd726086fcc35ab29d9cdee45d5f762052b1eb150e12d8806028c145a76750 +SHA512 (wcslib-5.19.1.tar.bz2) = 9d6949532c3effe7ae5970266057b37fb1191a6e5a0945f01cde96bb27665ec168ed084b32372e446d01e75af882a3743c61ac8a25cb1def406d7a47ee86ca0d diff --git a/wcslib.spec b/wcslib.spec index d740b1a..04447b3 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 5.18 -Release: 4%{?dist} +Version: 5.19.1 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -76,6 +76,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Aug 02 2018 Christian Dersch - 5.19.1-1 +- new version + * Sat Jul 14 2018 Fedora Release Engineering - 5.18-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 92f82e5499e636251c20a5c60aa189a7b90a634a Mon Sep 17 00:00:00 2001 From: Christian Dersch Date: Thu, 2 Aug 2018 16:27:45 +0200 Subject: [PATCH 51/88] Does not like multithread builds... --- wcslib.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 04447b3..fc162ab 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -41,7 +41,8 @@ Utils provided with %{name} %build %configure --disable-fortran --disable-static -make %{?_smp_mflags} +# Does not like multithread builds... +make %install make install DESTDIR=%{buildroot} From 010c3c7488ffb85498ab2d2623bfcbe4182abb54 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:41:18 +0100 Subject: [PATCH 52/88] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- wcslib.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index fc162ab..100b707 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -53,9 +53,7 @@ chmod 755 %{buildroot}%{_includedir}/wcslib-%{version} %check make check -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %license COPYING.LESSER From 0fcf924aef4f80fcc871ad0da2da2942781163dc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:30 +0100 Subject: [PATCH 53/88] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- wcslib.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index 100b707..09669e9 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -22,7 +22,6 @@ convention in FITS (Flexible Image Transport System) %package devel Summary: Libraries, includes, etc. used to develop an application with %{name} -Group: Development/Libraries License: LGPLv3+ Requires: wcslib = %{version}-%{release} %description devel @@ -30,7 +29,6 @@ These are the files needed to develop an application using %{name}. %package utils Summary: Utility programs provided by %{name} -Group: Development/Libraries License: GPLv3+ Requires: wcslib = %{version}-%{release} %description utils From a185ff3a078fe0001665b897d00a721dc378fffd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:34:57 +0000 Subject: [PATCH 54/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 09669e9..23b775f 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 5.19.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 5.19.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Aug 02 2018 Christian Dersch - 5.19.1-1 - new version From b6ed3dd2ec7f4b96370855d42ff9027533951f74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 03:19:51 +0000 Subject: [PATCH 55/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 23b775f..0e3a8b5 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 5.19.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 5.19.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 5.19.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 7f1d90ac8672216ddc8571f92d2846a3627719c2 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 29 Jul 2019 15:04:56 +0200 Subject: [PATCH 56/88] New upstream version (6.3) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 56cd11b..62feadb 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ wcslib-4.3.1.tar.gz /wcslib-5.16.tar.bz2 /wcslib-5.18.tar.bz2 /wcslib-5.19.1.tar.bz2 +/wcslib-6.3.tar.bz2 diff --git a/sources b/sources index dba3b1e..cdf6ed6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-5.19.1.tar.bz2) = 9d6949532c3effe7ae5970266057b37fb1191a6e5a0945f01cde96bb27665ec168ed084b32372e446d01e75af882a3743c61ac8a25cb1def406d7a47ee86ca0d +SHA512 (wcslib-6.3.tar.bz2) = fb438c8f9f7540a4cec8d7468f009f8f185c34524b862b6bd412bb5c9154e12c8e660eed91fb55a4d42f64da143672e7cda58f746749f87f6ff7c7f47b644ef8 diff --git a/wcslib.spec b/wcslib.spec index 0e3a8b5..d7cf35b 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 5.19.1 -Release: 3%{?dist} +Version: 6.3 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Mon Jul 29 2019 Sergio Pascual 6.3-1 +- New upstream version (6.3) + * Sat Jul 27 2019 Fedora Release Engineering - 5.19.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 6987dc7aa0366b0999da99dbe04bde45ad643ec2 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sat, 31 Aug 2019 00:31:53 +0200 Subject: [PATCH 57/88] New upstream version (6.4) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 62feadb..e283a93 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ wcslib-4.3.1.tar.gz /wcslib-5.18.tar.bz2 /wcslib-5.19.1.tar.bz2 /wcslib-6.3.tar.bz2 +/wcslib-6.4.tar.bz2 diff --git a/sources b/sources index cdf6ed6..47c762f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-6.3.tar.bz2) = fb438c8f9f7540a4cec8d7468f009f8f185c34524b862b6bd412bb5c9154e12c8e660eed91fb55a4d42f64da143672e7cda58f746749f87f6ff7c7f47b644ef8 +SHA512 (wcslib-6.4.tar.bz2) = fed47771defb2a93fb50aa2e701c46f8ce35773dd3de91eeaed311b5a0474c096c7f9be6996fe95f82faa30b1d5c0aba892bca5da80bc32b15919dfaf551aeb7 diff --git a/wcslib.spec b/wcslib.spec index d7cf35b..a4aef73 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 6.3 +Version: 6.4 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Aug 31 2019 Sergio Pascual 6.4-1 +- New upstream version (6.4) + * Mon Jul 29 2019 Sergio Pascual 6.3-1 - New upstream version (6.3) From abf257bdc54ad6b758b10c97620d8e8ec4533cb7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 03:32:55 +0000 Subject: [PATCH 58/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index a4aef73..10e85c9 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Aug 31 2019 Sergio Pascual 6.4-1 - New upstream version (6.4) From 8000f3bc241de25e3dbd2a26610ffaffd94b3505 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 10 Mar 2020 11:45:42 +0100 Subject: [PATCH 59/88] New upstream version (7.2) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e283a93..bc17425 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ wcslib-4.3.1.tar.gz /wcslib-5.19.1.tar.bz2 /wcslib-6.3.tar.bz2 /wcslib-6.4.tar.bz2 +/wcslib-7.2.tar.bz2 diff --git a/sources b/sources index 47c762f..b3b33cd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-6.4.tar.bz2) = fed47771defb2a93fb50aa2e701c46f8ce35773dd3de91eeaed311b5a0474c096c7f9be6996fe95f82faa30b1d5c0aba892bca5da80bc32b15919dfaf551aeb7 +SHA512 (wcslib-7.2.tar.bz2) = 31b5800de6530d06788c112abe9581b72980177c19414013314e49a4e8913c5943327c1a8539fef8c585d04ffc598d29490c005a2114d66c82a684bd2226c06d diff --git a/wcslib.spec b/wcslib.spec index 10e85c9..3acd869 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 6.4 -Release: 2%{?dist} +Version: 7.2 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Mon Mar 09 2020 Sergio Pascual 7.2-1 +- New upstream version (7.2) + * Fri Jan 31 2020 Fedora Release Engineering - 6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 657358132b36dc18e9474074566ada6d9587228c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:01:07 +0000 Subject: [PATCH 60/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 3acd869..d3f8b4d 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Mar 09 2020 Sergio Pascual 7.2-1 - New upstream version (7.2) From 9efbbdd15ab31fd31999ea3a5d84e1e77bb44e1b Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 26 Nov 2020 00:55:51 +0100 Subject: [PATCH 61/88] New upstream version (7.3) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bc17425..15cebd2 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ wcslib-4.3.1.tar.gz /wcslib-6.3.tar.bz2 /wcslib-6.4.tar.bz2 /wcslib-7.2.tar.bz2 +/wcslib-7.3.tar.bz2 diff --git a/sources b/sources index b3b33cd..3179869 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.2.tar.bz2) = 31b5800de6530d06788c112abe9581b72980177c19414013314e49a4e8913c5943327c1a8539fef8c585d04ffc598d29490c005a2114d66c82a684bd2226c06d +SHA512 (wcslib-7.3.tar.bz2) = 8c98c4b575056e2d966b77a4bc951256d02ecee3a11847e140fd38d93afd0f76b3e906d590c952dc9fc58ceeb1ba062b19d8e1e676ee0032f5b7ed13a9dfa892 diff --git a/wcslib.spec b/wcslib.spec index d3f8b4d..c013a69 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 7.2 -Release: 2%{?dist} +Version: 7.3 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Nov 25 2020 Sergio Pascual 7.3-1 +- New upstream version (7.3) + * Wed Jul 29 2020 Fedora Release Engineering - 7.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 9414345d9828dddffed67db88ada33da3151a61b Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:51:22 +0000 Subject: [PATCH 62/88] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- wcslib.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/wcslib.spec b/wcslib.spec index c013a69..303dbfd 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -10,6 +10,7 @@ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 # General stuff +BuildRequires: make BuildRequires: flex BuildRequires: gcc # Development libraries From b26af42878a6e3e7edd615a83cbd688b7d1bd7c4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:22:39 +0000 Subject: [PATCH 63/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 303dbfd..0664b02 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Nov 25 2020 Sergio Pascual 7.3-1 - New upstream version (7.3) From 0490e2a4e0a7efffdd81c213ada3e98625f584e9 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 4 Feb 2021 11:40:07 +0100 Subject: [PATCH 64/88] New upstream version (7.4) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 15cebd2..6d2d61e 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ wcslib-4.3.1.tar.gz /wcslib-6.4.tar.bz2 /wcslib-7.2.tar.bz2 /wcslib-7.3.tar.bz2 +/wcslib-7.4.tar.bz2 diff --git a/sources b/sources index 3179869..0e324b1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.3.tar.bz2) = 8c98c4b575056e2d966b77a4bc951256d02ecee3a11847e140fd38d93afd0f76b3e906d590c952dc9fc58ceeb1ba062b19d8e1e676ee0032f5b7ed13a9dfa892 +SHA512 (wcslib-7.4.tar.bz2) = 3696f59bf15f3806faff2441250f8ae38bfbbc1e2e25404c9480c82629472521d89306d9340475ea4691c5e1a8417be3f058b4a01b49c9a45e0e718056a9394c diff --git a/wcslib.spec b/wcslib.spec index 0664b02..ee785b0 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 7.3 -Release: 2%{?dist} +Version: 7.4 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Feb 03 2021 Sergio Pascual 7.4-1 +- New upstream version (7.4) + * Wed Jan 27 2021 Fedora Release Engineering - 7.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 51b29c15fc9b66fe912f0ae7829a213b437ca3db Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Thu, 8 Apr 2021 19:11:21 +0200 Subject: [PATCH 65/88] New upstream version (7.5) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6d2d61e..28b58ff 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.2.tar.bz2 /wcslib-7.3.tar.bz2 /wcslib-7.4.tar.bz2 +/wcslib-7.5.tar.bz2 diff --git a/sources b/sources index 0e324b1..cef7fa1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.4.tar.bz2) = 3696f59bf15f3806faff2441250f8ae38bfbbc1e2e25404c9480c82629472521d89306d9340475ea4691c5e1a8417be3f058b4a01b49c9a45e0e718056a9394c +SHA512 (wcslib-7.5.tar.bz2) = 66b6453dedaea093baa1851c70c1b8c691317cb8b334c6ae9ed2568c4549cbb9871bc9f1e3da8c9a1951f7e3dcbe8e73f1c5c1ca18a91d73fda68bf7cf083302 diff --git a/wcslib.spec b/wcslib.spec index ee785b0..58afff1 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 7.4 +Version: 7.5 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Thu Apr 08 2021 Sergio Pascual 7.5-1 +- New upstream version (7.5) + * Wed Feb 03 2021 Sergio Pascual 7.4-1 - New upstream version (7.4) From e4218bc03380961ef923979dc9d4e4079065c3fc Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Fri, 16 Apr 2021 23:46:48 +0200 Subject: [PATCH 66/88] New upstream version (7.6) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 28b58ff..fa7222e 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.3.tar.bz2 /wcslib-7.4.tar.bz2 /wcslib-7.5.tar.bz2 +/wcslib-7.6.tar.bz2 diff --git a/sources b/sources index cef7fa1..a2c24a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.5.tar.bz2) = 66b6453dedaea093baa1851c70c1b8c691317cb8b334c6ae9ed2568c4549cbb9871bc9f1e3da8c9a1951f7e3dcbe8e73f1c5c1ca18a91d73fda68bf7cf083302 +SHA512 (wcslib-7.6.tar.bz2) = 1e664280c2494892c4da0f5ad124860262e712f0cbd881cbafe7d809cd09ec48e545dc2751e2047bf0e950c94e9336b1978d6042c0c9e766532fc366e70413fc diff --git a/wcslib.spec b/wcslib.spec index 58afff1..396441e 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib -Version: 7.5 +Version: 7.6 Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Apr 16 2021 Sergio Pascual 7.6-1 +- New upstream version (7.6) + * Thu Apr 08 2021 Sergio Pascual 7.5-1 - New upstream version (7.5) From 304ecb4f513b15ed2ee5b2bd9072bfc02d4f4119 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:49:04 +0000 Subject: [PATCH 67/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 396441e..97ac373 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 7.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Apr 16 2021 Sergio Pascual 7.6-1 - New upstream version (7.6) From ca1e9d3b030ace07367ecd2b4938b3a7df99736a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:19:57 +0000 Subject: [PATCH 68/88] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 97ac373..9fdef2a 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 7.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 7.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From b7b17d7823c921166d1bda63ed2f485ec856f011 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Sun, 24 Apr 2022 20:07:50 +0200 Subject: [PATCH 69/88] New upstream version (7.10) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fa7222e..5919842 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.4.tar.bz2 /wcslib-7.5.tar.bz2 /wcslib-7.6.tar.bz2 +/wcslib-7.10.tar.bz2 diff --git a/sources b/sources index a2c24a5..4e2b91e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.6.tar.bz2) = 1e664280c2494892c4da0f5ad124860262e712f0cbd881cbafe7d809cd09ec48e545dc2751e2047bf0e950c94e9336b1978d6042c0c9e766532fc366e70413fc +SHA512 (wcslib-7.10.tar.bz2) = 1e6989b2d6b59a90e2ef615da15b374fdaac9e02f32da65d0f6b89e8bea27598954684dfd05b16b3a7281854b4a3c82fb7a1a653c785654dd17e634fe4b1c3a6 diff --git a/wcslib.spec b/wcslib.spec index 9fdef2a..f38dd92 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 7.6 -Release: 3%{?dist} +Version: 7.10 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Apr 24 2022 Sergio Pascual 7.10-1 +- New upstream version (7.10) + * Sat Jan 22 2022 Fedora Release Engineering - 7.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 5e1b3b78efc0739d84cf9d7b89687777e1c95e94 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:16:21 +0000 Subject: [PATCH 70/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index f38dd92..e3b06d6 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 7.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sun Apr 24 2022 Sergio Pascual 7.10-1 - New upstream version (7.10) From 27f4dd09990f139752fc19a57fa1f631dc8e025b Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 28 Dec 2022 14:51:35 +0100 Subject: [PATCH 71/88] New upstream version (7.12) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5919842..b40ac94 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.5.tar.bz2 /wcslib-7.6.tar.bz2 /wcslib-7.10.tar.bz2 +/wcslib-7.12.tar.bz2 diff --git a/sources b/sources index 4e2b91e..34cdcfe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.10.tar.bz2) = 1e6989b2d6b59a90e2ef615da15b374fdaac9e02f32da65d0f6b89e8bea27598954684dfd05b16b3a7281854b4a3c82fb7a1a653c785654dd17e634fe4b1c3a6 +SHA512 (wcslib-7.12.tar.bz2) = 7f38f725992d3c4bd3c1b908d494ac361c17f6b60f091d987fda596211423bb7396b3a5e2f1f6dd6215835016d302083472a7ad0822f17cdfe230c8f556b3e23 diff --git a/wcslib.spec b/wcslib.spec index e3b06d6..5fbf126 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,13 +1,13 @@ Name: wcslib -Version: 7.10 -Release: 2%{?dist} +Version: 7.12 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ License: LGPLv3+ URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ -Source0: ftp://ftp.atnf.csiro.au/pub/software/wcslib/%{name}-%{version}.tar.bz2 +Source0: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib-%{version}.tar.bz2 # General stuff BuildRequires: make @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Dec 28 2022 Sergio Pascual 7.12-1 +- New upstream version (7.12) + * Sat Jul 23 2022 Fedora Release Engineering - 7.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From a9e6170d672d6ece8731d288f9bd7ef1d32965f0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 06:40:21 +0000 Subject: [PATCH 72/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 5fbf126..9bcd404 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 7.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Dec 28 2022 Sergio Pascual 7.12-1 - New upstream version (7.12) From bfcd4b9b02922b971bd793241bf80c08fd83a235 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:02:35 +0000 Subject: [PATCH 73/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 9bcd404..189f28c 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 7.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 7.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 7.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f5d9e5a85e399f19c48d7942f08aa4c1e344bbde Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Thu, 10 Aug 2023 14:55:25 -0400 Subject: [PATCH 74/88] Fix flatpak build When built for flatpaks, the /app prefix is used. --- wcslib.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 189f28c..ae2b921 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -46,7 +46,7 @@ make %install make install DESTDIR=%{buildroot} # fix permissions -rm -rf %{buildroot}/usr/share/doc/wcslib* +rm -rf %{buildroot}%{_datadir}/doc/wcslib* chmod 755 %{buildroot}%{_includedir}/wcslib-%{version} %check From 36e1f728f2dd7c7cc23df4cdd071b8d3deaa9e0a Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 9 Jan 2024 16:23:10 +0100 Subject: [PATCH 75/88] New upstream version (8.2.2) --- .gitignore | 1 + sources | 2 +- wcslib.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b40ac94..77e17e6 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.6.tar.bz2 /wcslib-7.10.tar.bz2 /wcslib-7.12.tar.bz2 +/wcslib-8.2.2.tar.bz2 diff --git a/sources b/sources index 34cdcfe..93062b3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-7.12.tar.bz2) = 7f38f725992d3c4bd3c1b908d494ac361c17f6b60f091d987fda596211423bb7396b3a5e2f1f6dd6215835016d302083472a7ad0822f17cdfe230c8f556b3e23 +SHA512 (wcslib-8.2.2.tar.bz2) = cf540fdac03d2868902c9d4c2f1cd5919e878e79de635b01006b61f4d95f727659033d0d05172a7bcd00287ecc395609a643cf95a6498fbc3ff2d3fb26c136b4 diff --git a/wcslib.spec b/wcslib.spec index ae2b921..2461944 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib -Version: 7.12 -Release: 3%{?dist} +Version: 8.2.2 +Release: 1%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Tue Jan 09 2024 Sergio Pascual 8.2.2-1 +- New upstream version (8.2.2) + * Sat Jul 22 2023 Fedora Release Engineering - 7.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From c881e8370caf0744848dd770a94276af6e50e03d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 08:29:55 +0000 Subject: [PATCH 76/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 2461944..f13899d 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 8.2.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 8.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Tue Jan 09 2024 Sergio Pascual 8.2.2-1 - New upstream version (8.2.2) From 6d427e925f7310dbd519c2a7ec7df1037bd21718 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 17 Jul 2024 09:49:04 +0200 Subject: [PATCH 77/88] convert LGPLv3+ license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- wcslib.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index f13899d..d30fff1 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,11 +1,11 @@ Name: wcslib Version: 8.2.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ -License: LGPLv3+ +License: LGPL-3.0-or-later URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ Source0: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib-%{version}.tar.bz2 @@ -23,7 +23,7 @@ convention in FITS (Flexible Image Transport System) %package devel Summary: Libraries, includes, etc. used to develop an application with %{name} -License: LGPLv3+ +License: LGPL-3.0-or-later Requires: wcslib = %{version}-%{release} %description devel These are the files needed to develop an application using %{name}. @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Wed Jul 17 2024 Miroslav Suchý - 8.2.2-3 +- convert license to SPDX + * Sat Jan 27 2024 Fedora Release Engineering - 8.2.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 2a14fbba92efaac44baafd44bfbb6e85e10171ee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:11:27 +0000 Subject: [PATCH 78/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index d30fff1..c35102a 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,7 +1,7 @@ Name: wcslib Version: 8.2.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -74,6 +74,9 @@ make check %{_mandir}/man1/* %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 8.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Wed Jul 17 2024 Miroslav Suchý - 8.2.2-3 - convert license to SPDX From 727d060c410f4018aeb77b2cdd6c5d24ffd2a814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Mon, 7 Oct 2024 09:15:41 +0000 Subject: [PATCH 79/88] Migrate to SPDX license This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 If there will be no comments in two weeks, I will merge this. --- wcslib.spec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wcslib.spec b/wcslib.spec index c35102a..9c8af4d 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,4 +1,3 @@ - Name: wcslib Version: 8.2.2 Release: 4%{?dist} @@ -30,7 +29,7 @@ These are the files needed to develop an application using %{name}. %package utils Summary: Utility programs provided by %{name} -License: GPLv3+ +License: GPL-3.0-or-later Requires: wcslib = %{version}-%{release} %description utils Utils provided with %{name} From 13730c0597711fc005dea50a686803ee20d8bdc8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 14:50:07 +0000 Subject: [PATCH 80/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- wcslib.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wcslib.spec b/wcslib.spec index 9c8af4d..cfd74d4 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 8.2.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,6 +73,9 @@ make check %{_mandir}/man1/* %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 8.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 8.2.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 80c4511834d96b78b474441cefa6634ab3431830 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 10 Feb 2025 11:51:58 +0100 Subject: [PATCH 81/88] Convert to %autorelease and %autochangelog [skip changelog] --- changelog | 210 +++++++++++++++++++++++++++++++++++++++++++++++++++ wcslib.spec | 213 +--------------------------------------------------- 2 files changed, 212 insertions(+), 211 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..602e254 --- /dev/null +++ b/changelog @@ -0,0 +1,210 @@ +* Sun Jan 19 2025 Fedora Release Engineering - 8.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + +* Sat Jul 20 2024 Fedora Release Engineering - 8.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Wed Jul 17 2024 Miroslav Suchý - 8.2.2-3 +- convert license to SPDX + +* Sat Jan 27 2024 Fedora Release Engineering - 8.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Tue Jan 09 2024 Sergio Pascual 8.2.2-1 +- New upstream version (8.2.2) + +* Sat Jul 22 2023 Fedora Release Engineering - 7.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sat Jan 21 2023 Fedora Release Engineering - 7.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Wed Dec 28 2022 Sergio Pascual 7.12-1 +- New upstream version (7.12) + +* Sat Jul 23 2022 Fedora Release Engineering - 7.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Sun Apr 24 2022 Sergio Pascual 7.10-1 +- New upstream version (7.10) + +* Sat Jan 22 2022 Fedora Release Engineering - 7.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 7.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Apr 16 2021 Sergio Pascual 7.6-1 +- New upstream version (7.6) + +* Thu Apr 08 2021 Sergio Pascual 7.5-1 +- New upstream version (7.5) + +* Wed Feb 03 2021 Sergio Pascual 7.4-1 +- New upstream version (7.4) + +* Wed Jan 27 2021 Fedora Release Engineering - 7.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Nov 25 2020 Sergio Pascual 7.3-1 +- New upstream version (7.3) + +* Wed Jul 29 2020 Fedora Release Engineering - 7.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Mar 09 2020 Sergio Pascual 7.2-1 +- New upstream version (7.2) + +* Fri Jan 31 2020 Fedora Release Engineering - 6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Aug 31 2019 Sergio Pascual 6.4-1 +- New upstream version (6.4) + +* Mon Jul 29 2019 Sergio Pascual 6.3-1 +- New upstream version (6.3) + +* Sat Jul 27 2019 Fedora Release Engineering - 5.19.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 5.19.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Aug 02 2018 Christian Dersch - 5.19.1-1 +- new version + +* Sat Jul 14 2018 Fedora Release Engineering - 5.18-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sat May 26 2018 Christian Dersch - 5.18-3 +- added BR: flex + +* Sat May 26 2018 Christian Dersch - 5.18-2 +- rebuilt for cfitsio 3.450 + +* Fri Feb 23 2018 Christian Dersch - 5.18-1 +- new version + +* Fri Feb 09 2018 Fedora Release Engineering - 5.16-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Sep 11 2017 Sergio Pascual 5.16-7 +- Patch all problematic 2775 install permissions to 775 + +* Thu Aug 03 2017 Fedora Release Engineering - 5.16-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 5.16-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jun 01 2017 Christian Dersch - 5.16-4 +- try workaround for #1452893 + +* Thu Jun 01 2017 Christian Dersch - 5.16-3 +- yet another rebuild for build-id conflicts + +* Fri May 19 2017 Christian Dersch - 5.16-2 +- rebuild, to fix #1452893 + +* Tue May 16 2017 Sergio Pascual 5.16-1 +- New upstream source (5.16) + +* Sat Feb 11 2017 Fedora Release Engineering - 5.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Jul 15 2016 Sergio Pascual 5.15-1 +- New upstream source (5.15) + +* Wed Mar 30 2016 Sergio Pascual 5.14-1 +- New upstream source (5.14), soname bump + +* Fri Feb 05 2016 Fedora Release Engineering - 4.25.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 4.25.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Jan 26 2015 Sergio Pascual 4.25.1-1 +- New upstream source (4.25.1) + +* Mon Aug 18 2014 Fedora Release Engineering - 4.23-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 4.23-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon May 19 2014 Sergio Pascual 4.23-1 +- New upstream source (4.23) + +* Sun Apr 13 2014 Sergio Pascual 4.22-1 +- New upstream source (4.22) + +* Thu Jan 09 2014 Sergio Pascual 4.20-1 +- New upstream source (4.20) +- Rebuilt for new cfitsio (3.360) + +* Wed Oct 23 2013 Sergio Pascual 4.19-1 +- New upstream source (4.19) + +* Sat Aug 24 2013 Sergio Pascual 4.18-3 +- Removed reference to versioned docdir (bz #993888) + +* Sun Aug 04 2013 Fedora Release Engineering - 4.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Tue Jul 16 2013 Sergio Pascual 4.18-1 +- New upstream source (4.18) + +* Fri Mar 22 2013 Sergio Pascual 4.17-2 +- Rebuilt for new cfitsio (3.340) + +* Wed Mar 20 2013 Sergio Pascual 4.17-1 +- New upstream source + +* Fri Feb 15 2013 Fedora Release Engineering - 4.13.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 4.13.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Jun 27 2012 Sergio Pascual 4.13.4-1 +- New upstream source + +* Sat Jan 07 2012 Sergio Pascual 4.8.4-3 +- Disable check + +* Fri Jan 06 2012 Sergio Pascual 4.8.4-2 +- New upstream source (source added) + +* Fri Jan 06 2012 Sergio Pascual 4.8.4-1 +- New upstream source + +* Mon Feb 21 2011 Sergio Pascual 4.7-2 +- EVR bump for rebuilding + +* Sun Feb 20 2011 Sergio Pascual 4.7-1 +- New upstream source + +* Mon Feb 07 2011 Fedora Release Engineering - 4.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Tue Nov 09 2010 Sergio Pascual 4.6.3-2 +- Race condition with parallel make + +* Tue Nov 09 2010 Sergio Pascual 4.6.3-1 +- New upstream source +- Patch to fix problems compiling i686 in x86_64 + +* Tue Nov 09 2010 Sergio Pascual 4.5.6-1 +- New upstream source +- Added pkgconfig file + +* Mon Jul 27 2009 Fedora Release Engineering - 4.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Mar 16 2009 Sergio Pascual 4.3.1-2 +- Added patch to link explicitly with libmath. +- Removed duplicate licenses. + +* Sat Feb 14 2009 Sergio Pascual 4.3.1-1 +- First version. diff --git a/wcslib.spec b/wcslib.spec index cfd74d4..ca8d00c 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,6 +1,6 @@ Name: wcslib Version: 8.2.2 -Release: 5%{?dist} +Release: %autorelease Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ @@ -73,213 +73,4 @@ make check %{_mandir}/man1/* %changelog -* Sun Jan 19 2025 Fedora Release Engineering - 8.2.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Sat Jul 20 2024 Fedora Release Engineering - 8.2.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Wed Jul 17 2024 Miroslav Suchý - 8.2.2-3 -- convert license to SPDX - -* Sat Jan 27 2024 Fedora Release Engineering - 8.2.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Tue Jan 09 2024 Sergio Pascual 8.2.2-1 -- New upstream version (8.2.2) - -* Sat Jul 22 2023 Fedora Release Engineering - 7.12-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sat Jan 21 2023 Fedora Release Engineering - 7.12-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Dec 28 2022 Sergio Pascual 7.12-1 -- New upstream version (7.12) - -* Sat Jul 23 2022 Fedora Release Engineering - 7.10-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Sun Apr 24 2022 Sergio Pascual 7.10-1 -- New upstream version (7.10) - -* Sat Jan 22 2022 Fedora Release Engineering - 7.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 7.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Fri Apr 16 2021 Sergio Pascual 7.6-1 -- New upstream version (7.6) - -* Thu Apr 08 2021 Sergio Pascual 7.5-1 -- New upstream version (7.5) - -* Wed Feb 03 2021 Sergio Pascual 7.4-1 -- New upstream version (7.4) - -* Wed Jan 27 2021 Fedora Release Engineering - 7.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Nov 25 2020 Sergio Pascual 7.3-1 -- New upstream version (7.3) - -* Wed Jul 29 2020 Fedora Release Engineering - 7.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Mar 09 2020 Sergio Pascual 7.2-1 -- New upstream version (7.2) - -* Fri Jan 31 2020 Fedora Release Engineering - 6.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Sat Aug 31 2019 Sergio Pascual 6.4-1 -- New upstream version (6.4) - -* Mon Jul 29 2019 Sergio Pascual 6.3-1 -- New upstream version (6.3) - -* Sat Jul 27 2019 Fedora Release Engineering - 5.19.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 5.19.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Aug 02 2018 Christian Dersch - 5.19.1-1 -- new version - -* Sat Jul 14 2018 Fedora Release Engineering - 5.18-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Sat May 26 2018 Christian Dersch - 5.18-3 -- added BR: flex - -* Sat May 26 2018 Christian Dersch - 5.18-2 -- rebuilt for cfitsio 3.450 - -* Fri Feb 23 2018 Christian Dersch - 5.18-1 -- new version - -* Fri Feb 09 2018 Fedora Release Engineering - 5.16-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Mon Sep 11 2017 Sergio Pascual 5.16-7 -- Patch all problematic 2775 install permissions to 775 - -* Thu Aug 03 2017 Fedora Release Engineering - 5.16-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 5.16-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Thu Jun 01 2017 Christian Dersch - 5.16-4 -- try workaround for #1452893 - -* Thu Jun 01 2017 Christian Dersch - 5.16-3 -- yet another rebuild for build-id conflicts - -* Fri May 19 2017 Christian Dersch - 5.16-2 -- rebuild, to fix #1452893 - -* Tue May 16 2017 Sergio Pascual 5.16-1 -- New upstream source (5.16) - -* Sat Feb 11 2017 Fedora Release Engineering - 5.15-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Jul 15 2016 Sergio Pascual 5.15-1 -- New upstream source (5.15) - -* Wed Mar 30 2016 Sergio Pascual 5.14-1 -- New upstream source (5.14), soname bump - -* Fri Feb 05 2016 Fedora Release Engineering - 4.25.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 4.25.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Jan 26 2015 Sergio Pascual 4.25.1-1 -- New upstream source (4.25.1) - -* Mon Aug 18 2014 Fedora Release Engineering - 4.23-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 4.23-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Mon May 19 2014 Sergio Pascual 4.23-1 -- New upstream source (4.23) - -* Sun Apr 13 2014 Sergio Pascual 4.22-1 -- New upstream source (4.22) - -* Thu Jan 09 2014 Sergio Pascual 4.20-1 -- New upstream source (4.20) -- Rebuilt for new cfitsio (3.360) - -* Wed Oct 23 2013 Sergio Pascual 4.19-1 -- New upstream source (4.19) - -* Sat Aug 24 2013 Sergio Pascual 4.18-3 -- Removed reference to versioned docdir (bz #993888) - -* Sun Aug 04 2013 Fedora Release Engineering - 4.18-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Tue Jul 16 2013 Sergio Pascual 4.18-1 -- New upstream source (4.18) - -* Fri Mar 22 2013 Sergio Pascual 4.17-2 -- Rebuilt for new cfitsio (3.340) - -* Wed Mar 20 2013 Sergio Pascual 4.17-1 -- New upstream source - -* Fri Feb 15 2013 Fedora Release Engineering - 4.13.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 4.13.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Wed Jun 27 2012 Sergio Pascual 4.13.4-1 -- New upstream source - -* Sat Jan 07 2012 Sergio Pascual 4.8.4-3 -- Disable check - -* Fri Jan 06 2012 Sergio Pascual 4.8.4-2 -- New upstream source (source added) - -* Fri Jan 06 2012 Sergio Pascual 4.8.4-1 -- New upstream source - -* Mon Feb 21 2011 Sergio Pascual 4.7-2 -- EVR bump for rebuilding - -* Sun Feb 20 2011 Sergio Pascual 4.7-1 -- New upstream source - -* Mon Feb 07 2011 Fedora Release Engineering - 4.6.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Tue Nov 09 2010 Sergio Pascual 4.6.3-2 -- Race condition with parallel make - -* Tue Nov 09 2010 Sergio Pascual 4.6.3-1 -- New upstream source -- Patch to fix problems compiling i686 in x86_64 - -* Tue Nov 09 2010 Sergio Pascual 4.5.6-1 -- New upstream source -- Added pkgconfig file - -* Mon Jul 27 2009 Fedora Release Engineering - 4.3.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Mar 16 2009 Sergio Pascual 4.3.1-2 -- Added patch to link explicitly with libmath. -- Removed duplicate licenses. - -* Sat Feb 14 2009 Sergio Pascual 4.3.1-1 -- First version. +%autochangelog From 07c2d3c3d7f0689b056b1d0890612941ad51dfdd Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 10 Feb 2025 11:59:11 +0100 Subject: [PATCH 82/88] New upstream release 8.4 --- .gitignore | 1 + sources | 2 +- wcslib.spec | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 77e17e6..acadee6 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.10.tar.bz2 /wcslib-7.12.tar.bz2 /wcslib-8.2.2.tar.bz2 +/wcslib-8.4.tar.bz2 diff --git a/sources b/sources index 93062b3..d3d20f1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-8.2.2.tar.bz2) = cf540fdac03d2868902c9d4c2f1cd5919e878e79de635b01006b61f4d95f727659033d0d05172a7bcd00287ecc395609a643cf95a6498fbc3ff2d3fb26c136b4 +SHA512 (wcslib-8.4.tar.bz2) = 1989f8f5788fd6d9fa102b771ad7db188b0899f716e11360516c96742f81f50755881279f90fce388451e8857f24003c85751f06aea83377e04bb5230523469f diff --git a/wcslib.spec b/wcslib.spec index ca8d00c..7f07c8f 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,12 +1,12 @@ Name: wcslib -Version: 8.2.2 +Version: 8.4 Release: %autorelease Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ License: LGPL-3.0-or-later -URL: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/ -Source0: http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib-%{version}.tar.bz2 +URL: https://www.atnf.csiro.au/computing/software/wcs/index.html +Source0: https://www.atnf.csiro.au/computing/software/wcs/WCS/wcslib-%{version}.tar.bz2 # General stuff BuildRequires: make From 2ebc6dcb8b21f440539b72c47ee7204a02e83ad8 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 10 Feb 2025 12:44:22 +0100 Subject: [PATCH 83/88] New upstream source 8.4 --- .gitignore | 1 + Makefile | 21 ------------- sources | 1 + wcslib-perms.patch | 69 +++++++++++++++++++++++++++++++++++++++++ wcslib.spec | 76 ++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 147 insertions(+), 21 deletions(-) create mode 100644 .gitignore delete mode 100644 Makefile create mode 100644 wcslib-perms.patch create mode 100644 wcslib.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fde04c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/wcslib-8.4.tar.bz2 diff --git a/Makefile b/Makefile deleted file mode 100644 index 0aeb3e2..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: wcslib -# $Id$ -NAME := wcslib -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/sources b/sources index e69de29..d3d20f1 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (wcslib-8.4.tar.bz2) = 1989f8f5788fd6d9fa102b771ad7db188b0899f716e11360516c96742f81f50755881279f90fce388451e8857f24003c85751f06aea83377e04bb5230523469f diff --git a/wcslib-perms.patch b/wcslib-perms.patch new file mode 100644 index 0000000..9a720b3 --- /dev/null +++ b/wcslib-perms.patch @@ -0,0 +1,69 @@ +diff -ur wcslib-5.16/C/GNUmakefile wcslib-5.16.perms/C/GNUmakefile +--- wcslib-5.16/C/GNUmakefile 2017-01-15 05:25:01.000000000 +0100 ++++ wcslib-5.16.perms/C/GNUmakefile 2017-09-11 12:24:44.434026804 +0200 +@@ -252,7 +252,7 @@ + + install : build + - if [ ! -d "$(LIBDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(LIBDIR) ; \ ++ $(INSTALL) -d -m 775 $(LIBDIR) ; \ + fi + $(INSTALL) -m 644 $(WCSLIB) $(LIBDIR) + $(RANLIB) $(LIBDIR)/$(WCSLIB) +@@ -274,7 +274,7 @@ + fi ; \ + fi + - if [ ! -d "$(INCDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(INCDIR) ; \ ++ $(INSTALL) -d -m 775 $(INCDIR) ; \ + fi + $(INSTALL) -m 444 *.h $(INCDIR) + $(RM) $(INCLINK) +diff -ur wcslib-5.16/GNUmakefile wcslib-5.16.perms/GNUmakefile +--- wcslib-5.16/GNUmakefile 2017-01-15 05:25:03.000000000 +0100 ++++ wcslib-5.16.perms/GNUmakefile 2017-09-11 12:25:23.739580571 +0200 +@@ -82,7 +82,7 @@ + done + $(INSTALL) -m 444 wcsconfig.h wcsconfig_f77.h $(INCDIR) + - if [ ! -d "$(DOCDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(DOCDIR) ; \ ++ $(INSTALL) -d -m 775 $(DOCDIR) ; \ + fi + $(INSTALL) -m 444 CHANGES COPYING* README $(DOCDIR) + - if [ -h $(DOCLINK) ] ; then \ +@@ -90,15 +90,15 @@ + $(LN_S) $(notdir $(DOCDIR)) $(DOCLINK) ; \ + fi + - if [ ! -d "$(PDFDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(PDFDIR) ; \ ++ $(INSTALL) -d -m 775 $(PDFDIR) ; \ + fi + $(INSTALL) -m 444 wcslib.pdf $(PDFDIR) + - if [ ! -d "$(HTMLDIR)/html" ] ; then \ +- $(INSTALL) -d -m 2775 $(HTMLDIR)/html ; \ ++ $(INSTALL) -d -m 775 $(HTMLDIR)/html ; \ + fi + $(INSTALL) -m 444 html/* $(HTMLDIR)/html + if [ ! -d "$(LIBDIR)/pkgconfig" ] ; then \ +- $(INSTALL) -d -m 2775 $(LIBDIR)/pkgconfig ; \ ++ $(INSTALL) -d -m 775 $(LIBDIR)/pkgconfig ; \ + fi + $(INSTALL) -m 444 wcslib.pc $(LIBDIR)/pkgconfig/wcslib.pc + +diff -ur wcslib-5.16/utils/GNUmakefile wcslib-5.16.perms/utils/GNUmakefile +--- wcslib-5.16/utils/GNUmakefile 2017-01-15 05:25:04.000000000 +0100 ++++ wcslib-5.16.perms/utils/GNUmakefile 2017-09-11 12:23:25.705917622 +0200 +@@ -108,11 +108,11 @@ + + install : build + - if [ ! -d "$(BINDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(BINDIR) ; \ ++ $(INSTALL) -d -m 775 $(BINDIR) ; \ + fi + $(INSTALL) -m 755 $(UTILS) $(BINDIR) + - if [ ! -d "$(MANDIR)" ] ; then \ +- $(INSTALL) -d -m 2775 $(MANDIR)/man1 ; \ ++ $(INSTALL) -d -m 775 $(MANDIR)/man1 ; \ + fi + $(INSTALL) -m 644 $(MAN) $(MANDIR)/man1 + diff --git a/wcslib.spec b/wcslib.spec new file mode 100644 index 0000000..7f07c8f --- /dev/null +++ b/wcslib.spec @@ -0,0 +1,76 @@ +Name: wcslib +Version: 8.4 +Release: %autorelease +Summary: An implementation of the FITS World Coordinate System standard + +# Library is under LGPLv3+ utils under GPLv3+ +License: LGPL-3.0-or-later +URL: https://www.atnf.csiro.au/computing/software/wcs/index.html +Source0: https://www.atnf.csiro.au/computing/software/wcs/WCS/wcslib-%{version}.tar.bz2 + +# General stuff +BuildRequires: make +BuildRequires: flex +BuildRequires: gcc +# Development libraries +BuildRequires: cfitsio-devel +BuildRequires: zlib-devel + +%description +WCSLIB is a library that implements the "World Coordinate System" (WCS) +convention in FITS (Flexible Image Transport System) + +%package devel +Summary: Libraries, includes, etc. used to develop an application with %{name} +License: LGPL-3.0-or-later +Requires: wcslib = %{version}-%{release} +%description devel +These are the files needed to develop an application using %{name}. + +%package utils +Summary: Utility programs provided by %{name} +License: GPL-3.0-or-later +Requires: wcslib = %{version}-%{release} +%description utils +Utils provided with %{name} + +%prep +%setup -q + +%build +%configure --disable-fortran --disable-static +# Does not like multithread builds... +make + +%install +make install DESTDIR=%{buildroot} +# fix permissions +rm -rf %{buildroot}%{_datadir}/doc/wcslib* +chmod 755 %{buildroot}%{_includedir}/wcslib-%{version} + +%check +make check + +%ldconfig_scriptlets + +%files +%license COPYING.LESSER +%doc README +%{_libdir}/*.so.* + +%files devel +%license COPYING.LESSER +%doc html wcslib.pdf +%{_libdir}/*.so +%exclude %{_libdir}/*.a +%{_libdir}/pkgconfig/wcslib.pc +%{_includedir}/wcslib +%{_includedir}/wcslib-%{version} + +%files utils +%license COPYING +%{_bindir}/* +%{_mandir}/man1/* + +%changelog +%autochangelog From 1f0b02700b781b9972fb81e7dd50a3ebae9c9122 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:19:46 +0000 Subject: [PATCH 84/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 904ad2bc642469ac88b220fdb359b31e0da8b3fe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:09:19 +0000 Subject: [PATCH 85/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From 0ff8a927daedffd812eebbb219c5c345f8dbd730 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Fri, 19 Jun 2026 10:11:14 +0200 Subject: [PATCH 86/88] New upstream source 8.8 --- .gitignore | 1 + sources | 2 +- wcslib.spec | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index acadee6..5cb6887 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ wcslib-4.3.1.tar.gz /wcslib-7.12.tar.bz2 /wcslib-8.2.2.tar.bz2 /wcslib-8.4.tar.bz2 +/wcslib-8.8.tar.bz2 diff --git a/sources b/sources index d3d20f1..c9edb11 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-8.4.tar.bz2) = 1989f8f5788fd6d9fa102b771ad7db188b0899f716e11360516c96742f81f50755881279f90fce388451e8857f24003c85751f06aea83377e04bb5230523469f +SHA512 (wcslib-8.8.tar.bz2) = 59a8dab8ee8486c5b7d0fb549551010f48f8c46a292c478f17141213df2a14f63b6acf7be8511d0cdf22903df2cfd64a00e4d1d0f78ea1c3640ba39751a80211 diff --git a/wcslib.spec b/wcslib.spec index 7f07c8f..7f61829 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,12 +1,12 @@ Name: wcslib -Version: 8.4 +Version: 8.8 Release: %autorelease Summary: An implementation of the FITS World Coordinate System standard # Library is under LGPLv3+ utils under GPLv3+ License: LGPL-3.0-or-later -URL: https://www.atnf.csiro.au/computing/software/wcs/index.html -Source0: https://www.atnf.csiro.au/computing/software/wcs/WCS/wcslib-%{version}.tar.bz2 +URL: https://www.atnf.csiro.au/computing/software/wcs/ +Source0: https://www.atnf.csiro.au/computing/software/wcs/wcslib-releases/wcslib-%{version}.tar.bz2 # General stuff BuildRequires: make From 9b384043b32480c19dad8323f32f40f779d77668 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Wed, 24 Jun 2026 13:11:36 +0200 Subject: [PATCH 87/88] New upstream source 8.9 --- .gitignore | 1 + sources | 2 +- wcslib.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5cb6887..2aee489 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ wcslib-4.3.1.tar.gz /wcslib-8.2.2.tar.bz2 /wcslib-8.4.tar.bz2 /wcslib-8.8.tar.bz2 +/wcslib-8.9.tar.bz2 diff --git a/sources b/sources index c9edb11..e44c36a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (wcslib-8.8.tar.bz2) = 59a8dab8ee8486c5b7d0fb549551010f48f8c46a292c478f17141213df2a14f63b6acf7be8511d0cdf22903df2cfd64a00e4d1d0f78ea1c3640ba39751a80211 +SHA512 (wcslib-8.9.tar.bz2) = c83097ab8ec57ef67006fa2b26d20528d3f422726c21fdf9444eb3c63a2fbf077dee02632f377164bba5aba849ee6741d0f27b96c8c7b173797eadf0f496a99b diff --git a/wcslib.spec b/wcslib.spec index 7f61829..00eee37 100644 --- a/wcslib.spec +++ b/wcslib.spec @@ -1,5 +1,5 @@ Name: wcslib -Version: 8.8 +Version: 8.9 Release: %autorelease Summary: An implementation of the FITS World Coordinate System standard From a111b1d15db3098635567661539e06398aeaeee4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 08:43:45 +0000 Subject: [PATCH 88/88] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild