diff --git a/.gitignore b/.gitignore index e69de29..f0aff8e 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,32 @@ +/astropy-0.3.tar.gz +/astropy-0.3.1.tar.gz +/astropy-0.3.2.tar.gz +/astropy-0.4.1.tar.gz +/astropy-0.4.2.tar.gz +/astropy-0.4.3.tar.gz +/astropy-0.4.4.tar.gz +/astropy-1.0.tar.gz +/astropy-1.0.2.tar.gz +/astropy-1.0.3.tar.gz +/astropy-1.0.4.tar.gz +/astropy-1.0.5.tar.gz +/astropy-1.0.6.tar.gz +/astropy-1.1.1.tar.gz +/astropy-1.1.2.tar.gz +/astropy-1.2.1.tar.gz +/astropy-1.3rc1.tar.gz +/astropy-1.3.tar.gz +/astropy-1.3.2.tar.gz +/astropy-1.3.3.tar.gz +/astropy-2.0.2.tar.gz +/astropy-2.0.4.tar.gz +/astropy-2.0.5.tar.gz +/astropy-3.0.1.tar.gz +/astropy-3.0.2.tar.gz +/astropy-3.0.3.tar.gz +/astropy-3.0.4.tar.gz +/astropy-3.0.5.tar.gz +/astropy-3.1.2.tar.gz +/astropy-3.2.1.tar.gz +/astropy-3.2.2.tar.gz +/astropy-3.2.3.tar.gz diff --git a/astropy-README.dist b/astropy-README.dist new file mode 100644 index 0000000..b37e9b0 --- /dev/null +++ b/astropy-README.dist @@ -0,0 +1,12 @@ + +Differences between upstream astropy and the current version python-astropy + +Bundled python packages +======================= +Upstream astropy bundles several python packages under `astropy.extern`. +The following packages have been unbundled and the code patched so that astropy +uses the system package: + + * configobj + * six + * ply diff --git a/astropy-ply.py b/astropy-ply.py new file mode 100644 index 0000000..4aa0077 --- /dev/null +++ b/astropy-ply.py @@ -0,0 +1,58 @@ +# Licensed under a 3-clause BSD style license - see LICENSE.rst + +""" +Handle loading ply package from system or from the bundled copy +""" + +import imp +from distutils.version import StrictVersion + + +def _find_module(name, path=None): + """ + Alternative to `imp.find_module` that can also search in subpackages. + """ + + parts = name.split('.') + + for part in parts: + if path is not None: + path = [path] + + fh, path, descr = imp.find_module(part, path) + + return fh, path, descr + +_PLY_MIN_VERSION = StrictVersion('3.9') + +# Update this to prevent Astropy from using its bundled copy of ply +# (but only if some other version of at least _PLY_MIN_VERSION can +# be provided) +_PLY_SEARCH_PATH = ['ply'] + + +for mod_name in _PLY_SEARCH_PATH: + try: + mod_info = _find_module(mod_name) + #mod_lex_info = _find_module(mod_name + '.lex') + except ImportError: + continue + + mod = imp.load_module(__name__, *mod_info) + #mod_lex = imp.load_module(__name__ + '.lex', *mod_lex_info) + + try: + # if StrictVersion(mod_lex.__version__) >= _PLY_MIN_VERSION: + # break + break + except (AttributeError, ValueError): + # Attribute error if the ply module isn't what it should be and doesn't + # have a .__version__; ValueError if the version string exists but is + # somehow bogus/unparseable + continue +else: + raise ImportError( + "Astropy requires the 'ply' module of minimum version {0}; " + "normally this is bundled with the astropy package so if you get " + "this warning consult the packager of your Astropy " + "distribution.".format(_PLY_MIN_VERSION)) diff --git a/python-astropy-system-configobj.patch b/python-astropy-system-configobj.patch new file mode 100644 index 0000000..9a5f083 --- /dev/null +++ b/python-astropy-system-configobj.patch @@ -0,0 +1,12 @@ +diff -ur astropy-3.1.1/astropy/config/configuration.py astropy-3.1.1.configobj/astropy/config/configuration.py +--- astropy-3.1.1/astropy/config/configuration.py 2019-01-01 00:54:51.000000000 +0100 ++++ astropy-3.1.1.configobj/astropy/config/configuration.py 2019-02-17 18:48:51.688306288 +0100 +@@ -16,7 +16,7 @@ + import re + from warnings import warn + +-from astropy.extern.configobj import configobj, validate ++import configobj, validate + from astropy.utils.exceptions import AstropyWarning, AstropyDeprecationWarning + from astropy.utils import find_current_module + from astropy.utils.introspection import resolve_name diff --git a/python-astropy-system-six.patch b/python-astropy-system-six.patch new file mode 100644 index 0000000..8bfab98 --- /dev/null +++ b/python-astropy-system-six.patch @@ -0,0 +1,12 @@ +diff -ur astropy-0.4.1/astropy/extern/six.py astropy-0.4.1.six/astropy/extern/six.py +--- astropy-0.4.1/astropy/extern/six.py 2014-09-01 21:57:56.663393218 +0200 ++++ astropy-0.4.1.six/astropy/extern/six.py 2014-09-01 21:59:02.940933294 +0200 +@@ -13,7 +13,7 @@ + # Update this to prevent Astropy from using its bundled copy of six + # (but only if some other version of at least _SIX_MIN_VERSION can + # be provided) +-_SIX_SEARCH_PATH = ['astropy.extern.bundled.six', 'six'] ++_SIX_SEARCH_PATH = ['six', 'astropy.extern.bundled.six'] + + + def _find_module(name, path=None): diff --git a/python-astropy.spec b/python-astropy.spec new file mode 100644 index 0000000..86fec7c --- /dev/null +++ b/python-astropy.spec @@ -0,0 +1,502 @@ +# Works with system erfa +%bcond_without system_erfa + +# EPEL has older wcslib +%if 0%{?fedora} +%bcond_without system_wcslib +%else +%bcond_with system_wcslib +%endif + +%global srcname astropy + +Name: python-astropy +Version: 3.2.3 +Release: 1%{?dist} +Summary: A Community Python Library for Astronomy +License: BSD + +URL: http://astropy.org +Source0: %{pypi_source} +Source1: astropy-README.dist +Source2: astropy-ply.py +Patch0: python-astropy-system-configobj.patch +Patch1: python-astropy-system-six.patch + +BuildRequires: gcc +BuildRequires: git +BuildRequires: cfitsio-devel >= 3.45 +BuildRequires: expat-devel +%if %{with system_erfa} +BuildRequires: erfa-devel >= 1.4.0 +%else +Provides: bundled(erfa) = 1.4.0 +%endif +%if %{with system_wcslib} +BuildRequires: wcslib-devel >= 6.2 +%else +Provides: bundled(wcslib) = 6.2 +%endif +BuildRequires: texlive-ucs +BuildRequires: graphviz + +%global _description %{expand: +The Astropy project is a common effort to develop a single core package +for Astronomy. Major packages such as PyFITS, PyWCS, vo, and asciitable +already merged in, and many more components being worked on. In +particular, we are developing imaging, photometric, and spectroscopic +functionality, as well as frameworks for cosmology, unit handling, and +coordinate transformations.} + +%description %_description + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: A Community Python Library for Astronomy +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-setuptools +BuildRequires: python%{python3_pkgversion}-numpy +BuildRequires: python%{python3_pkgversion}-Cython +BuildRequires: python%{python3_pkgversion}-pytest +BuildRequires: python%{python3_pkgversion}-pytest-astropy +BuildRequires: python%{python3_pkgversion}-six +BuildRequires: python%{python3_pkgversion}-ply +BuildRequires: python%{python3_pkgversion}-scipy +BuildRequires: python%{python3_pkgversion}-h5py +BuildRequires: python%{python3_pkgversion}-sphinx +BuildRequires: python%{python3_pkgversion}-matplotlib +BuildRequires: python%{python3_pkgversion}-configobj +BuildRequires: python%{python3_pkgversion}-pandas +BuildRequires: python%{python3_pkgversion}-PyYAML + +Requires: python%{python3_pkgversion}-numpy +Requires: python%{python3_pkgversion}-configobj +Requires: python%{python3_pkgversion}-pytest +Requires: python%{python3_pkgversion}-six +Requires: python%{python3_pkgversion}-ply +# Optionals +Requires: python%{python3_pkgversion}-scipy +Requires: python%{python3_pkgversion}-h5py +Requires: python%{python3_pkgversion}-PyYAML +Requires: /usr/bin/xmllint + +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} +Provides: bundled(jquery) = 3.11 + +# wcsaxes has been merged into astropy, therefore we obsolete and provide +# the old python3-wcsaxes package here +Provides: python%{python3_pkgversion}-wcsaxes = %{version}-%{release} +Obsoletes: python%{python3_pkgversion}-wcsaxes < 0.9-9 + +%description -n python%{python3_pkgversion}-%{srcname} %_description + +%package -n python%{python3_pkgversion}-%{srcname}-doc +Summary: Documentation for %{name}, includes full API docs +# Disabled for the moment to avoid name collision +# of generated names between arches +# BuildArch: noarch +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}-doc} + +# wcsaxes has been merged into astropy, therefore we obsolete and provide +# the old python3-wcsaxes-doc package here +Provides: python%{python3_pkgversion}-wcsaxes-doc = %{version}-%{release} +Obsoletes: python%{python3_pkgversion}-wcsaxes-doc < 0.9-9 + +%description -n python%{python3_pkgversion}-%{srcname}-doc +This package contains the full API documentation for %{name}. + + +%package -n %{srcname}-tools +Summary: Astropy utility tools +BuildArch: noarch +%if 0%{?fedora} +Requires: python%{python3_pkgversion}-%{srcname} = %{version}-%{release} +Obsoletes: pyfits-tools < 3.3-6 +Provides: pyfits-tools = %{version}-%{release} +%else +Requires: python-%{srcname} = %{version}-%{release} +%endif + + +%description -n %{srcname}-tools +Utilities provided by Astropy. + +%prep +%setup -qn %{srcname}-%{version} +cp %{SOURCE1} README.dist +# Required to support wcslib 4.5 +find -name wcsconfig.h -delete +rm -rf astropy*egg-info +# Use system configobj +%patch0 -p1 +# Use system six +%patch1 -p1 +# Use system ply +cp %{SOURCE2} astropy/extern/ply.py + +# Force Cython re-run +echo "cython_version = 'unknown'" > astropy/cython_version.py + +# Remove expat, erfa, cfitsio and wcslib +rm -rf cextern/cfitsio +%if %{with system_erfa} +rm -rf cextern/erfa +%endif +rm -rf cextern/expat +%if %{with system_wcslib} +rm -rf cextern/wcslib +%endif + +echo "[build]" >> setup.cfg +#echo "use_system_libraries=1" >> setup.cfg +echo "use_system_cfitsio=1" >> setup.cfg +%if %{with system_erfa} +echo "use_system_erfa=1" >> setup.cfg +%endif +echo "use_system_expat=1" >> setup.cfg +%if %{with system_wcslib} +echo "use_system_wcslib=1" >> setup.cfg +%endif + + +%build +%global py_setup_args --offline +# Use cairo backend due to https://bugzilla.redhat.com/show_bug.cgi?id=1394975 +export MPLBACKEND=cairo +%{py3_build} +# Requires sphinx-astropy +#%{__python3} setup.py build_docs --offline +rm -f docs/_build/html/.buildinfo + +%install +%{py3_install} + +find %{buildroot} -name "*.so" | xargs chmod 755 + +%check +# Avoid writing bad pyc files during testing +export PYTHONDONTWRITEBYTECODE=1 +export PYTEST_ADDOPTS='-p no:cacheprovider' + +# Disable test test_scale_back_with_blanks until we have a fix +# +# Tests on s390x tend to stuck (already for scipy used by astropy) +%ifnarch s390x + pushd %{buildroot}/%{python3_sitearch} + #py.test-%{python3_version} -k "not test_scale_back_with_blanks" astropy + py.test-%{python3_version} astropy +popd +%endif + +%files -n %{srcname}-tools +%{_bindir}/* + +%files -n python%{python3_pkgversion}-%{srcname} +%doc README.rst README.dist +%license LICENSE.rst +%{python3_sitearch}/* + +%files -n python%{python3_pkgversion}-%{srcname}-doc +##%doc README.rst README.dist docs/_build/html +%doc README.rst README.dist +%license LICENSE.rst + + +%changelog +* Thu Nov 07 2019 Sergio Pascual - 3.2.3-1 +- New upstream version (3.2.3), fixes problem with IERS data download + +* Wed Oct 09 2019 Sergio Pascual - 3.2.2-1 +- New upstream version (3.2.2) + +* Thu Oct 03 2019 Miro Hrončok - 3.2.1-3 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 3.2.1-2 +- Rebuilt for Python 3.8 + +* Thu Aug 01 2019 Sergio Pascual - 3.2.1-1 +- New upstream version (3.2.1) +- Remove patches included upsteam + +* Fri Jul 26 2019 Fedora Release Engineering - 3.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Mar 29 2019 Christian Dersch - 3.1.2-2 +- Imported upstream fix for PyYAML 5.x + +* Mon Mar 04 2019 Sergio Pascual - 3.1.2-1 +- New version (3.1.2) + +* Sat Feb 02 2019 Fedora Release Engineering - 3.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Oct 21 2018 Christian Dersch - 3.0.5-1 +- new version + +* Mon Aug 13 2018 Miro Hrončok - 3.0.4-2 +- Enable s390x (#1610996) + +* Fri Aug 03 2018 Christian Dersch - 3.0.4-1 +- new version (3.0.4) +- reenable tests +- ExcludeArch s390x until #1610996 is fixed + +* Sun Jul 15 2018 Christian Dersch - 3.0.3-5 +- BuildRequires: gcc + +* Fri Jul 13 2018 Fedora Release Engineering - 3.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Thu Jun 28 2018 Christian Dersch - 3.0.3-3 +- Disable tests until we have the pyyaml fix + https://github.com/yaml/pyyaml/pull/181 + +* Tue Jun 19 2018 Miro Hrončok - 3.0.3-2 +- Rebuilt for Python 3.7 + +* Tue Jun 05 2018 Sergio Pascual - 3.0.3-1 +- New release (3.0.3) + +* Sat May 26 2018 Christian Dersch - 3.0.2-1 +- new version + +* Sat Mar 17 2018 Christian Dersch - 3.0.1-1 +- new version +- cleaned up excluded tests, adapted patch from Debian for known failures +- removed Python 2 bits (in new package python2-astropy), astropy moved to + Python 3 only + +* Wed Mar 14 2018 Christian Dersch - 2.0.5-1 +- new version +- enabled fixed tests + +* Fri Feb 23 2018 Christian Dersch - 2.0.4-3 +- rebuilt for cfitsio 3.420 (so version bump) + +* Wed Feb 14 2018 Christian Dersch - 2.0.4-2 +- Provide and Obsolete python-wcsaxes, which has been merged into astropy + +* Tue Feb 13 2018 Christian Dersch - 2.0.4-1 +- update to bugfix release 2.0.4 +- fixes FTBFS on rawhide (due to fixes for newer numpy etc.) +- disabled tests on s390x as they hang sometimes (same as with scipy) +- removed python-astropy-fix-hdf5-test.patch (applied upstream) + +* Fri Feb 09 2018 Fedora Release Engineering - 2.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Mon Oct 09 2017 Sergio Pascual - 2.0.2-2 +- Use system erfa + +* Sun Oct 08 2017 Christian Dersch - 2.0.2-1 +- new version + +* Thu Aug 03 2017 Fedora Release Engineering - 1.3.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 1.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Jun 01 2017 Christian Dersch - 1.3.3-1 +- new version + +* Sun Apr 02 2017 Christian Dersch - 1.3.2-1 +- new version + +* Sat Feb 11 2017 Fedora Release Engineering - 1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jan 5 2017 Orion Poplawski - 1.3-1 +- Update to 1.3 + +* Wed Dec 21 2016 Orion Poplawski - 1.3-0.1.rc1 +- Update to 1.3rc1 + +* Mon Dec 19 2016 Miro Hrončok - 1.2.1-6 +- Rebuild for Python 3.6 + +* Mon Nov 21 2016 Orion Poplawski - 1.2.1-5 +- Use bundled erfa and wcslib where necessary (bug #1396601) +- Specify scipy version requirements +- Use cairo matplotlib backend due to ppc64 segfault +- Add BR on pandas for tests + +* Sun Nov 06 2016 Björn Esser - 1.2.1-4 +- Rebuilt for ppc64 + +* Fri Sep 30 2016 Sergio Pascual - 1.2.1-3 +- Fix wrong provides of python3-astropy in python2-astropy (bz #1380135) + +* Tue Jul 19 2016 Fedora Release Engineering - 1.2.1-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Fri Jul 15 2016 Sergio Pascual - 1.2.1-1 +- New upstream (1.2.1) + +* Thu Apr 14 2016 Sergio Pascual - 1.1.2-1 +- New upstream (1.1.2) +- Uses wcslib 5 + +* Thu Feb 04 2016 Fedora Release Engineering - 1.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Jan 11 2016 Orion Poplawski - 1.1.1-2 +- Modernize spec +- Prepare for python3 in EPEL + +* Sun Jan 10 2016 Sergio Pascual - 1.1.1-1 +- New upstream (1.1.1) + +* Wed Jan 06 2016 Sergio Pascual - 1.1-1.post2 +- New upstream (1.1.post2) + +* Tue Nov 10 2015 Fedora Release Engineering - 1.0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Nov 06 2015 Sergio Pascual - 1.0.6-2 +- Enabled again tests that failed with numpy 1.10 + +* Wed Oct 28 2015 Sergio Pascual - 1.0.6-1 +- New upstream (1.0.6), with better support of numpy 1.10 + +* Fri Oct 09 2015 Sergio Pascual - 1.0.5-2 +- Fixes test problem https://github.com/astropy/astropy/issues/4226 + +* Tue Oct 06 2015 Sergio Pascual - 1.0.5-1 +- New upstream (1.0.5) + +* Mon Sep 14 2015 Sergio Pascual - 1.0.4-2 +- Disable some tests that fail with numpy 1.10 + +* Thu Sep 03 2015 Sergio Pascual - 1.0.4-1 +- New upstream (1.0.4) + +* Tue Jun 30 2015 Sergio Pascual - 1.0.3-4 +- Reenable tests +- Handle changes regarding python3 and pyfits-tools in fedora >= 22 + +* Mon Jun 29 2015 Sergio Pascual - 1.0.3-3 +- Obsolete pyfits-tools (fixes bz #1236562) +- astropy-tools requires python3 + +* Tue Jun 16 2015 Sergio Pascual - 1.0.3-1 +- New upstream (1.0.3), with 2015-06-30 leap second + +* Tue Apr 21 2015 Sergio Pascual - 1.0.2-1 +- New upstream (1.0.2) + +* Thu Feb 19 2015 Sergio Pascual - 1.0-1 +- New upstream (1.0) + +* Thu Jan 22 2015 Sergio Pascual - 0.4.4-1 +- New upstream (0.4.4) + +* Fri Jan 16 2015 Sergio Pascual - 0.4.3-1 +- New upstream (0.4.3) + +* Tue Dec 09 2014 Sergio Pascual - 0.4.2-5 +- Disable tests for the moment + +* Tue Dec 09 2014 Sergio Pascual - 0.4.2-4 +- Update patch for bug 2516 + +* Mon Dec 08 2014 Sergio Pascual - 0.4.2-3 +- Mark problematic tests as xfail via patch + +* Fri Dec 05 2014 Sergio Pascual - 0.4.2-2 +- Fix to use configobj 5 +- Patches reorganized + +* Thu Sep 25 2014 Sergio Pascual - 0.4.2-1 +- New upstream (0.4.2) + +* Mon Sep 01 2014 Sergio Pascual - 0.4.1-1 +- New upstream (0.4.1) +- Unbundling patches modified +- No checks for the moment + +* Sun Aug 17 2014 Fedora Release Engineering - 0.3.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.3.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Tue May 27 2014 Orion Poplawski - 0.3.2-5 +- Rebuild for Python 3.4 + +* Thu May 22 2014 Sergio Pascual - 0.3.2-4 +- Build with wcslib 4.23 +- Skip test, bug 2171 + +* Thu May 22 2014 Sergio Pascual - 0.3.2-3 +- Astropy bundles jquery +- Unbundle plpy + +* Thu May 22 2014 Sergio Pascual - 0.3.2-2 +- Add missing patches + +* Mon May 19 2014 Sergio Pascual - 0.3.2-1 +- New upstream (0.3.2) +- Enable checks +- Patch to fix upstream bug 2171 +- Disable problematic test (upstream 2516) + +* Wed May 14 2014 Bohuslav Kabrda - 0.3.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Tue Mar 25 2014 Sergio Pascual - 0.3.1-2 +- Disable checks until https://github.com/astropy/astropy/issues/2171 is fixed +- Patch to fix https://github.com/astropy/astropy/pull/2223 + +* Wed Mar 05 2014 Sergio Pascual - 0.3.1-1 +- New upstream version (0.3.1) +- Remove require python(3)-matplotlib-qt4 (bug #1030396 fixed) +- Run the tests on the installed files +- Add patch to run with six 1.5.x + +* Mon Jan 27 2014 Sergio Pascual - 0.3-7 +- Add missing requires python3-six + +* Sat Jan 18 2014 Sergio Pascual - 0.3-6 +- Do not exclude hidden file, it breaks tests + +* Thu Jan 16 2014 Sergio Pascual - 0.3-5 +- Remove split -devel subpackage, it does not make much sense + +* Fri Jan 10 2014 Sergio Pascual - 0.3-4 +- Disable noarch for doc subpackages to avoid name colision + +* Fri Jan 10 2014 Sergio Pascual - 0.3-3 +- Enable HDF5 version check (fixed in h5py) +- Patch for failing test with wcslib 4.20 +- Require python(3)-matplotlib-qt4 due to bug #1030396 + +* Sun Jan 05 2014 Sergio Pascual - 0.3-2 +- Disable HDF5 version check + +* Mon Nov 25 2013 Sergio Pascual - 0.3-1 +- New upstream (0.3) + +* Tue Nov 19 2013 Sergio Pascual - 0.3-0.3.rc1 +- New upstream, first release candidate Testing 0.3rc1 + +* Wed Nov 06 2013 Sergio Pascual - 0.3-0.2.b1 +- Split utility scripts in subpackage + +* Tue Nov 05 2013 Sergio Pascual - 0.3-0.1.b1 +- Testing 0.3 (0.3b1) + +* Mon Oct 28 2013 Sergio Pascual - 0.2.5-1 +- New upstream version (0.2.5) + +* Tue Oct 22 2013 Sergio Pascual - 0.2.4-4 +- Split header files into devel subpackages + +* Mon Oct 21 2013 Sergio Pascual - 0.2.4-3 +- Disable tests in Rawhide + +* Thu Oct 10 2013 Sergio Pascual - 0.2.4-3 +- Add a patch to build with cfitsio 3.35 + +* Wed Oct 02 2013 Sergio Pascual - 0.2.4-1 +- Initial spec diff --git a/sources b/sources index e69de29..703f167 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (astropy-3.2.3.tar.gz) = ace205af1e5ffdd0ae49678e218359bead1493e5f7f34401881017ba6e8191ccc00fbeaccb8ca43f250e388e7d178ab47c355f97b8af9df21498b91257b078bc