Sergio Pascual b6031f4
Name: cfitsio
69e7986
Version: 3.470
32a649f
Release: 3%{?dist}
Sergio Pascual b6031f4
Summary: Library for manipulating FITS data files
ef69e49
Sergio Pascual b6031f4
License: MIT
Sergio Pascual b6031f4
URL: http://heasarc.gsfc.nasa.gov/fitsio/
69e7986
Source0: http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio-3.47.tar.gz
Pasrario 400b474
# Unbundles zlib
c59bad2
Patch0: cfitsio-zlib.patch
f600874
# Remove soname version check
f600874
Patch1: cfitsio-noversioncheck.patch
f600874
# Some rearrangements in pkg-config file
f600874
Patch2: cfitsio-pkgconfig.patch
5d88a08
# Use builder linker flags
5d88a08
Patch3: cfitsio-ldflags.patch
69e7986
# Patch some printf format errors
69e7986
Patch4: cfitsio-sformat.patch
69e7986
# Revert wrong soname increase
69e7986
Patch5: cfitsio-3.47-soname.patch
Sergio Pascual b6031f4
Sergio Pascual b6031f4
BuildRequires:     gcc-gfortran zlib-devel
5cacaf2
BuildRequires:     bzip2-devel
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
%description
Matthew D Truch 988f9f1
CFITSIO is a library of C and FORTRAN subroutines for reading and writing 
Matthew D Truch 988f9f1
data files in FITS (Flexible Image Transport System) data format. CFITSIO 
Matthew D Truch 988f9f1
simplifies the task of writing software that deals with FITS files by 
Matthew D Truch 988f9f1
providing an easy to use set of high-level routines that insulate the 
Matthew D Truch 988f9f1
programmer from the internal complexities of the FITS file format. At the 
Matthew D Truch 988f9f1
same time, CFITSIO provides many advanced features that have made it the 
Matthew D Truch 988f9f1
most widely used FITS file programming interface in the astronomical 
Matthew D Truch 988f9f1
community.
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
%package devel
Matthew D Truch 988f9f1
Summary: Headers required when building programs against cfitsio
Matthew D Truch 988f9f1
Requires: %{name} = %{version}-%{release}
b1da108
Requires: pkgconfig
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
%description devel
Matthew D Truch 988f9f1
Headers required when building a program against the cfitsio library.
Matthew D Truch 988f9f1
Matthew D Truch ea7ded6
%package static
Matthew D Truch ea7ded6
Summary: Static cfitsio library
Matthew D Truch ea7ded6
Matthew D Truch ea7ded6
%description static
Matthew D Truch 952ae3f
Static cfitsio library; avoid use if possible.
Matthew D Truch ea7ded6
Matthew D Truch 11a8c5e
%package docs
Matthew D Truch 11a8c5e
Summary: Documentation for cfitsio
Matthew D Truch 11a8c5e
BuildArch:  noarch
Matthew D Truch 11a8c5e
Matthew D Truch 11a8c5e
%description docs
Matthew D Truch 11a8c5e
Stand-alone documentation for cfitsio.
Matthew D Truch 11a8c5e
Matthew D Truch e468c84
%package -n fpack
Sergio Pascual b6031f4
Summary: FITS image compression and decompression utilities
Matthew D Truch 79ff415
Requires: %{name} = %{version}-%{release}
Matthew D Truch e468c84
Matthew D Truch e468c84
%description -n fpack
Matthew D Truch e468c84
fpack optimally compresses FITS format images and funpack restores them
Matthew D Truch e468c84
to the original state.
Matthew D Truch e468c84
Matthew D Truch e468c84
* Integer format images are losslessly compressed using the Rice
Matthew D Truch e468c84
compression algorithm.
Matthew D Truch e468c84
    * typically 30% better compression than GZIP
Matthew D Truch e468c84
    * about 3 times faster compression speed than GZIP
Matthew D Truch e468c84
    * about the same uncompression speed as GUNZIP 
Matthew D Truch e468c84
Matthew D Truch e468c84
* Floating-point format images are compressed with a lossy algorithm
Matthew D Truch e468c84
    * truncates the image pixel noise by a user-specified amount to
Matthew D Truch e468c84
      produce much higher compression than by lossless techniques
Matthew D Truch e468c84
    * the precision of scientific measurements in the compressed image
Matthew D Truch e468c84
      (relative to those in the original image) depends on the selected
Matthew D Truch e468c84
       amount of compression
Matthew D Truch e468c84
Matthew D Truch e468c84
Matthew D Truch 988f9f1
%prep
69e7986
%setup -q -n cfitsio-3.47
Matthew D Truch b357867
%patch0 -p1
f600874
%patch1 -p1
f600874
%patch2 -p1
5d88a08
%patch3 -p1
69e7986
%patch4 -p1
69e7986
%patch5 -p1
Matthew D Truch 988f9f1
Sergio Pascual c2d0e05
# remove bundled zlib
3cd4a2a
# not all the files inside zlib belong to zlib
3cd4a2a
pushd zlib
69e7986
 rm adler32.c crc32.c deflate.c infback.c inffast.c inflate.c inflate.h \
69e7986
 inftrees.c inftrees.h zlib.h deflate.h trees.c trees.h uncompr.c zconf.h \
69e7986
 zutil.c zutil.h crc32.h  inffast.h  inffixed.h 
3cd4a2a
popd
Sergio Pascual b6031f4
Matthew D Truch 988f9f1
%build
5cacaf2
%configure --enable-reentrant --with-bzip2
f600874
make shared %{?_smp_mflags} 
Matthew D Truch e468c84
make fpack %{?_smp_mflags}
Matthew D Truch e468c84
make funpack %{?_smp_mflags}
Matthew D Truch 988f9f1
Matthew D Truch c68a303
%check
Matthew D Truch c68a303
make testprog
Matthew D Truch c68a303
LD_LIBRARY_PATH=. ./testprog > testprog.lis
Matthew D Truch 4ae7f8a
cmp -s testprog.lis testprog.out
Matthew D Truch c68a303
cmp -s testprog.fit testprog.std
Matthew D Truch c68a303
Matthew D Truch 988f9f1
%install
f600874
mkdir -p %{buildroot}%{_bindir}
Matthew D Truch f43a4fc
mkdir -p %{buildroot}%{_libdir}
3528d91
mkdir -p %{buildroot}%{_includedir}/%{name}
3528d91
make LIBDIR=%{_libdir} INCLUDEDIR=%{_includedir}/%{name} \
366c06d
 CFITSIO_LIB=%{buildroot}%{_libdir} \
3528d91
 CFITSIO_INCLUDE=%{buildroot}%{_includedir}/%{name} \
366c06d
install
f600874
cp -p f{,un}pack %{buildroot}%{_bindir}
3cd4a2a
3cd4a2a
chmod 755 %{buildroot}%{_libdir}/libcfitsio.so.*
ed5c49b
chmod 755 %{buildroot}%{_bindir}/f{,un}pack
Matthew D Truch 988f9f1
3cd4a2a
b70c7bc
%ldconfig_scriptlets
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
%files
3cd4a2a
%doc README License.txt docs/changes.txt
efa7cd5
%{_libdir}/libcfitsio.so.7*
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
%files devel
Orion Poplawski 294178c
%doc cookbook.*
3528d91
%{_includedir}/%{name}
Matthew D Truch 9f3ec05
%{_libdir}/libcfitsio.so
Matthew D Truch f43a4fc
%{_libdir}/pkgconfig/cfitsio.pc
Matthew D Truch 988f9f1
Matthew D Truch ea7ded6
%files static
Matthew D Truch 69be18a
%doc License.txt
Matthew D Truch ea7ded6
%{_libdir}/libcfitsio.a
Matthew D Truch ea7ded6
Matthew D Truch 11a8c5e
%files docs
6af3627
%doc docs/fitsio.doc docs/fitsio.pdf docs/cfitsio.pdf License.txt
Matthew D Truch 11a8c5e
Matthew D Truch e468c84
%files -n fpack
3cd4a2a
%doc docs/fpackguide.pdf License.txt
Matthew D Truch e468c84
%{_bindir}/fpack
Matthew D Truch e468c84
%{_bindir}/funpack
Matthew D Truch e468c84
Matthew D Truch 988f9f1
%changelog
32a649f
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.470-3
32a649f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
32a649f
e0c5aaa
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.470-2
e0c5aaa
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
e0c5aaa
69e7986
* Thu Aug 01 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 3.470-1
69e7986
- Update to 3.470
69e7986
- Patch to revert bogus soname increase
69e7986
- Patch to fix fprintf format errors
69e7986
65eb1ee
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.450-4
65eb1ee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
65eb1ee
ac4dd76
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.450-3
ac4dd76
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
ac4dd76
14fa5f2
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.450-2
14fa5f2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
14fa5f2
5d88a08
* Wed May 23 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 3.450-1
5d88a08
- Update to 3.450 (fixes bz #1570484)
5d88a08
- Patch to use LDFLAGS (fixes bz #1547590)
5d88a08
2d1745f
* Mon Mar 12 2018 Christian Dersch <lupinix@fedoraproject.org> - 3.430-1
2d1745f
- new version
2d1745f
ef69e49
* Fri Feb 23 2018 Christian Dersch <lupinix@mailbox.org> - 3.420-1
ef69e49
- new version
ef69e49
8181f73
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.370-11
8181f73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
8181f73
fe2d612
* Mon Oct 02 2017 Christian Dersch <lupinix@mailbox.org> - 3.370-10
fe2d612
- Fix hcompress
fe2d612
300682b
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.370-9
300682b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
300682b
52ecb87
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.370-8
52ecb87
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
52ecb87
db93def
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.370-7
db93def
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
db93def
5aa694d
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.370-6
5aa694d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
5aa694d
d7d2661
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.370-5
d7d2661
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d7d2661
b1da108
* Thu Jun 11 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 3.370-4
b1da108
- Remove glibc-headers from devel requires (fixes bz #1230471)
b1da108
Orion Poplawski eacd196
* Thu Sep 18 2014 Orion Poplawski <orion@cora.nwra.com> - 3.370-3
Orion Poplawski 294178c
- Ship cookbook example in -devel docs
Orion Poplawski 294178c
4f5f9c3
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.370-2
4f5f9c3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
4f5f9c3
5cacaf2
* Thu Jun 12 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 3.370-1
5cacaf2
- New upstream (3.370)
5cacaf2
- Patches for ppc64le and aarch64 added upstream
5cacaf2
cff8b13
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.360-4
cff8b13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cff8b13
ffa7ad1
* Thu May 15 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 3.360-3
ffa7ad1
- Add ppc64le support (bz #1097248).
ffa7ad1
d7b88ba
* Tue Apr 15 2014 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 3.360-2
d7b88ba
- Add AArch64 support.
d7b88ba
3cd4a2a
* Mon Dec 09 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.360-1
3cd4a2a
- New upstream (3.360)
3cd4a2a
4571220
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.350-2
4571220
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4571220
f600874
* Wed Jul 03 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.350-1
f600874
- New upstream source (3.350)
f600874
- Upstream provides soname
f600874
- pkgconfig file rearrangement now a patch instead of using sed
f600874
385ba79
* Thu Mar 21 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.340-1
385ba79
- New upstream source
385ba79
366c06d
* Tue Mar 19 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.330-4
366c06d
- Using libcfitsio-version.so.0 as soname
366c06d
ed5c49b
* Tue Mar 19 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.330-3
ed5c49b
- Fixed permissions of libcfitsio and fpack, funpack
ed5c49b
c59bad2
* Sun Mar 17 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.330-2
c59bad2
- Soname contains full package version (upstream doesn't track API changes)
c59bad2
a6419bf
* Sun Mar 10 2013 Sergio Pascual <sergiopr@fedoraproject.org> - 3.330-1
a6419bf
- New upstream version
a6419bf
- Reverted the patch removing run time check
a6419bf
013ae6f
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.310-3
013ae6f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
013ae6f
Pasrario 2c14e2a
* Wed Aug 29 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.310-2
Pasrario 400b474
- Removed check at runtime of the version of the library
Pasrario 2c14e2a
Pasrario b4ad256
* Wed Aug 29 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.310-1
Pasrario b4ad256
- New upstream version
Pasrario 400b474
- Modified cfitsio.patch for new version
Pasrario b4ad256
2a32e62
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.300-2
2a32e62
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2a32e62
Sergio Pascual c2d0e05
* Tue Apr 24 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.300-1
Sergio Pascual c2d0e05
- Updated to 3.300
Sergio Pascual c2d0e05
- Reorganized patches (zlib patch was lost somehow)
Sergio Pascual c2d0e05
Orion Poplawski 7701fb5
* Fri Apr 13 2012 Orion Poplawski <orion@cora.nwra.com> - 3.300-0.1.beta
Orion Poplawski 7701fb5
- Update to 3.300 beta
Orion Poplawski 7701fb5
- Drop s390 patch applied upstream
Orion Poplawski 7701fb5
- Rebase makefile and zlib patches
Orion Poplawski 7701fb5
Orion Poplawski 300302b
* Mon Jan 16 2012 Orion Poplawski <orion@cora.nwra.com> - 3.290-4
Orion Poplawski 300302b
- Drop incluedir mod in package config file (bug #782213)
Orion Poplawski 300302b
Sergio Pascual db14bd0
* Fri Jan 06 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.290-3
Sergio Pascual db14bd0
- Adding the libz patch
Sergio Pascual db14bd0
Sergio Pascual b6031f4
* Fri Jan 06 2012 Sergio Pascual <sergiopr@fedoraproject.org> - 3.290-2
Sergio Pascual b6031f4
- Using system libz
Sergio Pascual b6031f4
Sergio Pascual b21c903
* Mon Dec 05 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.290-1
Sergio Pascual b21c903
- New upstream version
Sergio Pascual b21c903
- Reorganizing patches
Sergio Pascual b21c903
29bdddb
* Sat Oct 29 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.280-2
29bdddb
- Enable multithreading support
29bdddb
Sergio Pascual da57ecc
* Thu Jun 09 2011 Sergio Pascual <sergiopr@fedoraproject.org> - 3.280-1
Sergio Pascual da57ecc
- New upstream version, with improved image compression floating-point FITS
Sergio Pascual da57ecc
Matthew D Truch a8598dd
* Mon Apr 11 2011 Matthew Truch <matt at truch.net> - 3.270-1
Matthew D Truch a8598dd
- Upstream 3.270 release.
Matthew D Truch a8598dd
-   Several bugfixes.
Matthew D Truch a8598dd
-   A few new library functions.
Matthew D Truch a8598dd
-   License change (no longer uses GPL code).
Matthew D Truch a8598dd
6410bb7
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.250-6
6410bb7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6410bb7
Matthew D Truch 79ff415
* Tue Aug 31 2010 Matthew Truch <matt at truch.net> - 3.250-5
Matthew D Truch 79ff415
- Require fully versioned cfitsio for fpack as cfitsio doesn't properly soname itself.
Matthew D Truch 79ff415
Matthew D Truch 081f8c4
* Mon Jul 26 2010 Matthew Truch <matt at truch.net> - 3.250-4
Matthew D Truch 081f8c4
- Re-fix cfitsio.pc file (BZ 618291)
Matthew D Truch 081f8c4
- Fix typo in date of previous changelog entry.
Matthew D Truch 081f8c4
Matthew D Truch 081f8c4
* Thu Jul 22 2010 Orion Poplawski <orion@cora.nwra.com> - 3.250-3
Matthew D Truch e468c84
- Build and ship fpack/funpack in fpack package
Matthew D Truch e468c84
Matthew D Truch 69be18a
* Wed Jul 7 2010 Matthew Truch <matt at truch.net> - 3.250-2
Matthew D Truch 69be18a
- Include license as %%doc in -static and -docs subpackages.
Matthew D Truch 69be18a
Matthew D Truch 517f314
* Sun Jul 4 2010 Matthew Truch <matt at truch.net> - 3.250-1
Matthew D Truch 517f314
- Upstream 2.250 release.
Matthew D Truch 517f314
621f28d
* Wed Jun 30 2010 Karsten Hopp <karsten@redhat.com> 3.240-4
621f28d
- add s390(x) as bigendian machines
621f28d
Matthew D Truch 11f37b0
* Sun Feb 21 2010 Matthew Truch <matt at truch.net> - 3.240-3
Matthew D Truch 11f37b0
- Fix pkgconfig file which contains the wrong version number.
Matthew D Truch 11f37b0
Matthew D Truch 69d5d82
* Sat Feb 20 2010 Matthew Truch <matt at truch.net> - 3.240-2
Matthew D Truch 69d5d82
- Bump for rebuild.
Matthew D Truch 69d5d82
Matthew D Truch 43221d5
* Wed Jan 27 2010 Matthew Truch <matt at truch.net> - 3.240-1
Matthew D Truch 43221d5
- Update to upstream 3.240 release.
Matthew D Truch 43221d5
Matthew D Truch b357867
* Mon Nov 2 2009 Matthew Truch <matt at truch.net> - 3.210-2
Matthew D Truch b357867
- Re-introduce library soname patch (accidentally removed it).  
Matthew D Truch b357867
Matthew D Truch 0f95a40
* Tue Oct 20 2009 Matthew Truch <matt at truch.net> - 3.210-1
Matthew D Truch 0f95a40
- Update to upstream 3.210 release.
Matthew D Truch 0f95a40
Matthew D Truch d8bfd24
* Fri Jul 24 2009 Matthew Truch <matt at truch.net> - 3.140-2
Matthew D Truch d8bfd24
- Bump to include proper tarball.
Matthew D Truch d8bfd24
Matthew D Truch ac9f8d8
* Tue Jul 21 2009 Matthew Truch <matt at truch.net> - 3.140-1
Matthew D Truch ac9f8d8
- Update to upstream 3.140 release.
Matthew D Truch ac9f8d8
- Bump for mass rebuild.
Matthew D Truch ac9f8d8
Matthew D Truch 11a8c5e
* Wed Jun 17 2009 Matthew Truch <matt at truch.net> - 3.130-5
Matthew D Truch 11a8c5e
- Separate -docs noarch subpackage as per BZ 492438.
Matthew D Truch 11a8c5e
- Explicitly set file attributes correctly.  
Matthew D Truch 11a8c5e
Matthew D Truch 34e4fcc
* Tue Mar 10 2009 Matthew Truch <matt at truch.net> - 3.130-4
Matthew D Truch 34e4fcc
- Set correct version in pkgconfig .pc file.  
Matthew D Truch 34e4fcc
Matthew D Truch 4ae7f8a
* Sun Feb 22 2009 Matthew Truch <matt at truch.net> - 3.130-3
Matthew D Truch 4ae7f8a
- Re-check testprogram output.
Matthew D Truch 4ae7f8a
- Build for koji, rpm, gcc upgrade.  
Matthew D Truch 4ae7f8a
Matthew D Truch 302c630
* Thu Feb 5 2009 Matthew Truch <matt at truch.net> - 3.130-2
Matthew D Truch 302c630
- Fix source file naming typo.
Matthew D Truch 302c630
Matthew D Truch 302c630
* Wed Feb 4 2009 Matthew Truch <matt at truch.net> - 3.130-1
Matthew D Truch fcf9eef
- Update to 3.130 upstream.
Matthew D Truch fcf9eef
Matthew D Truch c68a303
* Sat Sep 20 2008 Matthew Truch <matt at truch.net> - 3.100-2
Matthew D Truch c68a303
- Test library with included test-suite.  
Matthew D Truch c68a303
Matthew D Truch 42a592b
* Fri Sep 19 2008 Matthew Truch <matt at truch.net> - 3.100-1
Matthew D Truch 42a592b
- Update to 3.100 upstream.
Matthew D Truch 42a592b
  Includes bugfixes and new compression scheme.
Matthew D Truch 42a592b
Matthew D Truch 952ae3f
* Fri Mar 7 2008 Matthew Truch <matt at truch.net> - 3.060-3
Matthew D Truch 952ae3f
- Properly indicated include and lib directories in .pc file
Matthew D Truch 952ae3f
  (BZ 436539)
Matthew D Truch 952ae3f
- Fix typo in -static descrition.
Matthew D Truch 952ae3f
Matthew D Truch 50d76f2
* Mon Feb 11 2008 Matthew Truch <matt at truch.net> - 3.060-2
Matthew D Truch 50d76f2
- Bump release for rebuild.
Matthew D Truch 50d76f2
Matthew D Truch ea7ded6
* Fri Nov 9 2007 Matthew Truch <matt at truch.net> - 3.060-1
Matthew D Truch ea7ded6
- Update to 3.060 bugfix release.
Matthew D Truch ea7ded6
- Add static package (BZ 372801)
Matthew D Truch ea7ded6
Matthew D Truch 6dcef8d
* Tue Aug 21 2007 Matthew Truch <matt at truch.net> - 3.040-3
Matthew D Truch 6dcef8d
- Bump release for rebuild (build-id etc.)
Matthew D Truch 6dcef8d
Matthew D Truch 69d4900
* Thu Aug 2 2007 Matthew Truch <matt at truch.net> - 3.040-2
Matthew D Truch 69d4900
- Update License tag
Matthew D Truch 69d4900
Matthew D Truch 7526875
* Mon Jul 9 2007 Matthew Truch <matt at truch.net> - 3.040-1
Matthew D Truch 7526875
- Upgrade to version 3.040 of cfitsio.
Matthew D Truch 7526875
Matthew D Truch 6e2d661
* Fri Feb 16 2007 Matthew Truch <matt at truch.net> - 3.030-2
Matthew D Truch 6e2d661
- Require pkgconfig for -devel.
Matthew D Truch 6e2d661
- export CC=gcc so we don't clobber $RPM_OPT_FLAGS, thereby 
Matthew D Truch 6e2d661
  ruining any -debuginfo packages.  
Matthew D Truch 6e2d661
  See RedHat Bugzilla 229041.
Matthew D Truch 6e2d661
Matthew D Truch 40ae4f4
* Fri Jan 5 2007 Matthew Truch <matt at truch.net> - 3.030-1
Matthew D Truch 40ae4f4
- Upgrade to version 3.020 of cfitsio.
Matthew D Truch 40ae4f4
Matthew D Truch 4b40cfa
* Fri Dec 8 2006 Matthew Truch <matt at truch.net> - 3.020-3
Matthew D Truch 4b40cfa
- Commit correct patch to configure and Makefiles.
Matthew D Truch 4b40cfa
Matthew D Truch f43a4fc
* Fri Dec 8 2006 Matthew Truch <matt at truch.net> - 3.020-2
Matthew D Truch f43a4fc
- Modify spec file to install to correct directories.
Matthew D Truch f43a4fc
- Package cfitsio.pc file in -devel package.
Matthew D Truch f43a4fc
Matthew D Truch 60877d0
* Wed Dec 6 2006 Matthew Truch <matt at truch.net> - 3.020-1
Matthew D Truch 60877d0
- Upgrade to revision 3.020 of cfitsio.
Matthew D Truch 60877d0
Matthew D Truch 7dc69f7
* Mon Aug 28 2006 Matthew Truch <matt at truch.net> - 3.006-6
Matthew D Truch 7dc69f7
- Bump release for rebuild in prep. for FC6.
Matthew D Truch 7dc69f7
Matthew D Truch 249a33a
* Thu Mar 30 2006 Matthew Truch <matt at truch.net> - 3.006-5
Matthew D Truch 249a33a
- Include defattr() for devel package as well - bug 187366
Matthew D Truch 249a33a
Matthew D Truch 51acc5d
* Sun Mar 19 2006 Matthew Truch <matt at truch.net> - 3.006-4
Matthew D Truch 87bb9e0
- Don't use macro {buildroot} in build, only in install as per 
Matthew D Truch 51acc5d
  appended comments to Bugzilla bug 172042
Matthew D Truch 51acc5d
  
Matthew D Truch 632dd62
* Fri Mar 10 2006 Matthew Truch <matt at truch.net> - 3.006-3
Matthew D Truch 632dd62
- Point to f95 instead of g95 as per bugzilla bug 185107
Matthew D Truch 632dd62
Matthew D Truch 9a8deea
* Tue Feb 28 2006 Matthew Truch <matt at truch.net> - 3.006-2
Matthew D Truch 9a8deea
- Fix spelling typo in name of License.txt file.
Matthew D Truch 9a8deea
Matthew D Truch 5131c51
* Tue Feb 28 2006 Matthew Truch <matt at truch.net> - 3.006-1
Matthew D Truch 5131c51
- Use new 3.006 fully official stable (non-beta) upstream package.
Matthew D Truch 5131c51
Matthew D Truch 1862ab6
* Tue Feb 28 2006 Matthew Truch <matt at truch.net> - 3.005-0.2.beta
Matthew D Truch 1862ab6
- Bump release for FC5 extras rebuild.
Matthew D Truch 1862ab6
Matthew D Truch 4a996a0
* Fri Dec 23 2005 Matthew Truch <matt at truch.net> - 3.005-0.1.beta
Matthew D Truch 4a996a0
- Update to 3.005beta release.
Matthew D Truch 4a996a0
Matthew D Truch d9aca5a
* Mon Nov 14 2005 Matthew Truch <matt at truch.net> - 3.004-0.12.b
Matthew D Truch d9aca5a
- Put in proper URL and Source addresses.
Matthew D Truch d9aca5a
- Sync up spec files.
Matthew D Truch d9aca5a
Matthew D Truch 634d611
* Sun Nov 13 2005 Matthew Truch <matt at truch.net> - 3.004-0.11.b
Matthew D Truch 634d611
- Clean up unused code in spec file.
Matthew D Truch 634d611
Matthew D Truch 9f3ec05
* Sun Nov 13 2005 Matthew Truch <matt at truch.net> - 3.004-0.10.b
Matthew D Truch 9f3ec05
- Set environment variables correctly.
Matthew D Truch 9f3ec05
- Include patch so Makefile will put things where they belong.
Matthew D Truch 9f3ec05
Matthew D Truch 9f3ec05
* Sun Nov 13 2005 Matthew Truch <matt at truch.net> - 3.004-0.9.b
Matthew D Truch 9302152
- Set libdir and includedir correctly for build process.
Matthew D Truch 9302152
Matthew D Truch d74f867
* Sat Nov 12 2005 Matthew Truch <matt at truch.net> - 3.004-0.8.b
Matthew D Truch d74f867
- unset FC once we are done with the build
Matthew D Truch d74f867
Matthew D Truch d74f867
* Sat Nov 12 2005 Ed Hill <ed@eh3.com> - 3.004-0.7.b
Matthew D Truch d74f867
- shared libs and small cleanups
Matthew D Truch d74f867
Matthew D Truch 988f9f1
* Sun Nov 06 2005 Matthew Truch <matt at truch.net> - 3.004-0.6.b
Matthew D Truch 988f9f1
- Own include directory created by the devel package.
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
* Sun Nov 06 2005 Matthew Truch <matt at truch.net> - 3.004-0.5.b
Matthew D Truch 988f9f1
- Shorten summary.
Matthew D Truch 988f9f1
- Improve specfile post and postun syntax.
Matthew D Truch 988f9f1
- Install headers in cfitsio include subdir.
Matthew D Truch 988f9f1
- Include more documentation provided in tarball.
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
* Sun Nov 06 2005 Matthew Truch <matt at truch.net> - 3.004-0.4.b
Matthew D Truch 988f9f1
- Require cfitsio for cfitsio-devel
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
* Sat Nov 05 2005 Matthew Truch <matt at truch.net> - 3.004-0.3.b
Matthew D Truch 988f9f1
- Use proper virgin tarball from upstream.
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
* Sun Oct 30 2005 Matthew Truch <matt at truch.net> - 3.004-0.2.b
Matthew D Truch 988f9f1
- Include gcc-gfortran build requirment and make sure it gets used.
Matthew D Truch 988f9f1
- Use macros instead of hard coded paths.
Matthew D Truch 988f9f1
- Include home page in description
Matthew D Truch 988f9f1
Matthew D Truch 988f9f1
* Sat Oct 29 2005 Matthew Truch <matt at truch.net> - 3.004-0.1.b
Matthew D Truch 988f9f1
- Initial spec file for Fedora Extras.
Matthew D Truch 988f9f1