Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
24bbedd084 |
8 changed files with 333 additions and 215 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -10,4 +10,3 @@
|
|||
/APLpy-1.1.1.tar.gz
|
||||
/APLpy-2.0.tar.gz
|
||||
/APLpy-2.0.3.tar.gz
|
||||
/aplpy-2.2.0.tar.gz
|
||||
|
|
|
|||
235
APLpy.spec
235
APLpy.spec
|
|
@ -1,14 +1,25 @@
|
|||
%global srcname aplpy
|
||||
%global srcname APLpy
|
||||
|
||||
# Disable automatic dependency generators until we fixed (optional) deps
|
||||
%{?python_disable_dependency_generator}
|
||||
|
||||
Name: APLpy
|
||||
Version: 2.2.0
|
||||
Release: %autorelease
|
||||
Version: 2.0.3
|
||||
Release: 20%{?dist}
|
||||
Summary: The Astronomical Plotting Library in Python
|
||||
|
||||
# SPDX license is MIT
|
||||
License: MIT
|
||||
URL: http://aplpy.github.com
|
||||
Source0: %{pypi_source}
|
||||
Patch0: aplpy-moved-function.patch
|
||||
# https://github.com/aplpy/aplpy/pull/469
|
||||
Patch1: aplpy-wraps-from-functools.patch
|
||||
# Workaround for python 3.12 change of imp module removal
|
||||
Patch2: astropy_helpers-py312-imp-deprecation.patch
|
||||
# related:
|
||||
# https://github.com/astropy/astropy/pull/12633
|
||||
# astropy 5.1 removes astropy.tests.plugins.display and so on
|
||||
Patch3: aplpy-astropy-5.1-tests-plugins-removal.patch
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python3-devel
|
||||
|
|
@ -23,7 +34,20 @@ PDF, PS, PNG, and SVG.
|
|||
%package -n python3-APLpy
|
||||
Summary: The Astronomical Plotting Library in Python
|
||||
%{?python_provide:%python_provide python3-%{srcname}}
|
||||
BuildRequires: python3dist(setuptools)
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-numpy
|
||||
BuildRequires: python3-matplotlib
|
||||
BuildRequires: python3-astropy
|
||||
BuildRequires: python3-pytest-astropy-header
|
||||
# Testing
|
||||
BuildRequires: python3-pytest
|
||||
BuildRequires: python3-pillow
|
||||
BuildRequires: python3-reproject
|
||||
|
||||
Requires: python3-numpy
|
||||
Requires: python3-matplotlib
|
||||
Requires: python3-astropy
|
||||
Recommends: python3-pillow
|
||||
|
||||
%description -n python3-APLpy
|
||||
APLpy (the Astronomical Plotting Library in Python) is a Python module aimed at
|
||||
|
|
@ -35,22 +59,201 @@ PDF, PS, PNG, and SVG.
|
|||
%prep
|
||||
%autosetup -n %{srcname}-%{version} -p1
|
||||
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires -x test
|
||||
|
||||
%build
|
||||
%pyproject_wheel
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
|
||||
%pyproject_save_files -l aplpy
|
||||
%py3_install
|
||||
|
||||
%check
|
||||
%pyproject_check_import -t
|
||||
# Empty matplotlibrc
|
||||
mkdir matplotlib
|
||||
touch matplotlib/matplotlibrc
|
||||
export XDG_CONFIG_HOME=`pwd`
|
||||
export PYTHONDONTWRITEBYTECODE=1
|
||||
export PYTEST_ADDOPTS='-p no:cacheprovider'
|
||||
pushd %{buildroot}/%{python3_sitelib}
|
||||
pytest-%{python3_version} aplpy || :
|
||||
# This file is created by the tests
|
||||
rm %{buildroot}/%{python3_sitelib}/test_label_format.png
|
||||
popd
|
||||
|
||||
%files -n python3-APLpy -f %{pyproject_files}
|
||||
%doc CHANGES.md CITATION README.rst
|
||||
%files -n python3-APLpy
|
||||
%doc CHANGES.rst README.rst
|
||||
%license LICENSE.md
|
||||
%{python3_sitelib}/%{name}-%{version}-py%{python3_version}.egg-info
|
||||
%{python3_sitelib}/aplpy/
|
||||
|
||||
%changelog
|
||||
%autochangelog
|
||||
* Sun Jul 23 2023 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-20
|
||||
- Backport patches from f39
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sun Jul 3 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.3-17
|
||||
- Backport upstream patch for test failure w.r.t compatibility with astropy 5.0.1
|
||||
|
||||
* Fri Jun 17 2022 Python Maint <python-maint@redhat.com> - 2.0.3-16
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Thu Feb 17 2022 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-15
|
||||
- Fix astropy 5 function incompatibility
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.0.3-12
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jul 02 2020 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-9
|
||||
- Add BR python3-setuptools
|
||||
- Add BR python3-reproject
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-8
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-6
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-5
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-4
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Mar 04 2019 Christian Dersch <lupinix@mailbox.org> - 2.0.3-2
|
||||
- Disable automatic dependency generators until we fixed (optional) deps
|
||||
|
||||
* Mon Feb 25 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-1
|
||||
- New upstream version (2.0.3)
|
||||
|
||||
* Sun Feb 17 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0-1
|
||||
- New upstream version (2.0)
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Oct 05 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1.1-2
|
||||
- Drop python2 subpackage
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Jul 08 2018 Christian Dersch <lupinix@mailbox.org> - 1.1.1-6
|
||||
- Failing tests are only deprecation warnings... Ignore them and report upstream
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-5
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Jan 27 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1.1-1
|
||||
- New upstream version (1.1.1)
|
||||
- Include license file
|
||||
- Do not write pyc files when running tests
|
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1-3
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Sun Oct 02 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1-2
|
||||
- EVR bump
|
||||
|
||||
* Sun Sep 25 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1-1
|
||||
- New upstream version (1.1)
|
||||
- Updated spec
|
||||
- Fixes bz #1380134
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Nov 17 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 1.0-4
|
||||
- Disable some failing tests (https://github.com/aplpy/aplpy/issues/278)
|
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Mar 02 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 1.0-1
|
||||
- New upstream version (1.0)
|
||||
- Use license macro
|
||||
|
||||
* Thu Dec 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.14-2
|
||||
- Disable python3 tests
|
||||
|
||||
* Thu Dec 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.14-1
|
||||
- New upstream source (0.9.14), several bug fixes
|
||||
|
||||
* Tue Oct 07 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.13-1
|
||||
- New upstream source (0.9.13), fixes bug in 0.9.11 and 0.9.12
|
||||
|
||||
* Thu Sep 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.12-2
|
||||
- Provide python3 subpackage
|
||||
- Unbundle decorator
|
||||
|
||||
* Thu Sep 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.12-1
|
||||
- New upstream source (0.9.12)
|
||||
- Tests enabled
|
||||
|
||||
* Wed Sep 10 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.11-2
|
||||
- Disable tests for the moment
|
||||
|
||||
* Tue Jul 08 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.11-1
|
||||
- Updated to new version
|
||||
- Run tests on installed version
|
||||
- Use python2 macros
|
||||
|
||||
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu May 03 2012 Germán A. Racca <skytux@fedoraproject.org> - 0.9.8-1
|
||||
- Updated to new version
|
||||
- Included tests in %%check and corresponding BRs
|
||||
- Packaged tests in %%doc section
|
||||
|
||||
* Mon Feb 06 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-3
|
||||
- Minor changes to spec file after approval
|
||||
- Removed INSTALL file
|
||||
|
||||
* Mon Jan 30 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-2
|
||||
- Changed name of spec file to match the project name
|
||||
|
||||
* Mon Jan 23 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-1
|
||||
- Initial release of RPM package
|
||||
|
||||
|
|
|
|||
36
aplpy-astropy-5.1-tests-plugins-removal.patch
Normal file
36
aplpy-astropy-5.1-tests-plugins-removal.patch
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
--- APLpy-2.0.3/aplpy/conftest.py.old 2019-02-19 20:20:49.000000000 +0900
|
||||
+++ APLpy-2.0.3/aplpy/conftest.py 2023-07-13 00:18:27.256633975 +0900
|
||||
@@ -13,14 +13,19 @@
|
||||
# With older versions of Astropy, we actually need to import the pytest
|
||||
# plugins themselves in order to make them discoverable by pytest.
|
||||
from astropy.tests.pytest_plugins import * # noqa
|
||||
-else:
|
||||
+elif astropy_version < '5.1':
|
||||
# As of Astropy 3.0, the pytest plugins provided by Astropy are
|
||||
# automatically made available when Astropy is installed. This means it's
|
||||
# not necessary to import them here, but we still need to import global
|
||||
# variables that are used for configuration.
|
||||
from astropy.tests.plugins.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
|
||||
+else:
|
||||
+ from pytest_astropy_header.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS
|
||||
|
||||
-from astropy.tests.helper import enable_deprecations_as_exceptions
|
||||
+try:
|
||||
+ from astropy.tests.helper import enable_deprecations_as_exceptions
|
||||
+except:
|
||||
+ pass
|
||||
|
||||
# Uncomment the following line to treat all DeprecationWarnings as
|
||||
# exceptions. For Astropy v2.0 or later, there are 2 additional keywords,
|
||||
@@ -32,7 +37,10 @@
|
||||
# To ignore some specific deprecation warning messages for Python version
|
||||
# MAJOR.MINOR or later, add:
|
||||
# warnings_to_ignore_by_pyver={(MAJOR, MINOR): ['Message to ignore']}
|
||||
-enable_deprecations_as_exceptions()
|
||||
+try:
|
||||
+ enable_deprecations_as_exceptions()
|
||||
+except:
|
||||
+ pass
|
||||
|
||||
# Uncomment and customize the following lines to add/remove entries from
|
||||
# the list of packages for which version numbers are displayed when running
|
||||
12
aplpy-moved-function.patch
Normal file
12
aplpy-moved-function.patch
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
diff -ur APLpy-2.0.3/aplpy/core.py APLpy-2.0.3.astr/aplpy/core.py
|
||||
--- APLpy-2.0.3/aplpy/core.py 2019-02-19 12:42:15.000000000 +0100
|
||||
+++ APLpy-2.0.3.astr/aplpy/core.py 2022-02-17 01:26:12.893457814 +0100
|
||||
@@ -17,7 +17,7 @@
|
||||
from astropy.wcs import WCS
|
||||
from astropy.wcs.utils import proj_plane_pixel_scales
|
||||
from astropy.io import fits
|
||||
-from astropy.nddata.utils import block_reduce
|
||||
+from astropy.nddata import block_reduce
|
||||
from astropy.visualization import AsymmetricPercentileInterval
|
||||
from astropy.visualization.wcsaxes import WCSAxes, WCSAxesSubplot
|
||||
from astropy.coordinates import ICRS
|
||||
23
aplpy-wraps-from-functools.patch
Normal file
23
aplpy-wraps-from-functools.patch
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
From b31b4f32d01b7f38d417fd42be5f5d52b18be575 Mon Sep 17 00:00:00 2001
|
||||
From: Ole Streicher <olebole@debian.org>
|
||||
Date: Sat, 29 Jan 2022 20:14:56 +0100
|
||||
Subject: [PATCH] Get wraps from functools instead of astropy
|
||||
|
||||
This fixes compatibility with astropy 5.0.1
|
||||
---
|
||||
aplpy/decorators.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/aplpy/decorators.py b/aplpy/decorators.py
|
||||
index f29056db..3c22f87b 100644
|
||||
--- a/aplpy/decorators.py
|
||||
+++ b/aplpy/decorators.py
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import threading
|
||||
|
||||
-from astropy.utils.decorators import wraps
|
||||
+from functools import wraps
|
||||
|
||||
mydata = threading.local()
|
||||
|
||||
42
astropy_helpers-py312-imp-deprecation.patch
Normal file
42
astropy_helpers-py312-imp-deprecation.patch
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
--- APLpy-2.0.3/astropy_helpers/astropy_helpers/utils.py.orig 2018-12-12 20:36:12.000000000 +0900
|
||||
+++ APLpy-2.0.3/astropy_helpers/astropy_helpers/utils.py 2023-07-12 23:41:04.228876992 +0900
|
||||
@@ -3,7 +3,6 @@
|
||||
|
||||
import contextlib
|
||||
import functools
|
||||
-import imp
|
||||
import inspect
|
||||
import os
|
||||
import sys
|
||||
@@ -60,9 +59,9 @@
|
||||
import builtins
|
||||
if hasattr(builtins, '__NUMPY_SETUP__'):
|
||||
del builtins.__NUMPY_SETUP__
|
||||
- import imp
|
||||
+ import importlib
|
||||
import numpy
|
||||
- imp.reload(numpy)
|
||||
+ importlib.reload(numpy)
|
||||
|
||||
try:
|
||||
numpy_include = numpy.get_include()
|
||||
--- APLpy-2.0.3/astropy_helpers/astropy_helpers/version_helpers.py.orig 2023-07-12 23:43:28.923036099 +0900
|
||||
+++ APLpy-2.0.3/astropy_helpers/astropy_helpers/version_helpers.py 2023-07-12 23:43:41.692050140 +0900
|
||||
@@ -21,7 +21,7 @@
|
||||
from __future__ import division
|
||||
|
||||
import datetime
|
||||
-import imp
|
||||
+import importlib
|
||||
import os
|
||||
import pkgutil
|
||||
import sys
|
||||
@@ -278,7 +278,7 @@
|
||||
invalidate_caches()
|
||||
|
||||
if version_module:
|
||||
- imp.reload(version_module)
|
||||
+ importlib.reload(version_module)
|
||||
|
||||
|
||||
def get_pkg_version_module(packagename, fromlist=None):
|
||||
197
changelog
197
changelog
|
|
@ -1,197 +0,0 @@
|
|||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jun 22 2024 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-27
|
||||
- Fix FTBS with python 3.13
|
||||
- Update packaging macros
|
||||
|
||||
* Tue Jun 18 2024 Python Maint <python-maint@redhat.com> - 2.0.3-26
|
||||
- Rebuilt for Python 3.13
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jul 12 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.3-21
|
||||
- Workaround for python 3.12 change of imp module removal
|
||||
- Workaround for astropy 5.1 astropy.tests.plugins.display removal and so on
|
||||
|
||||
* Wed Jul 12 2023 Python Maint <python-maint@redhat.com> - 2.0.3-20
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Sun Jul 3 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 2.0.3-17
|
||||
- Backport upstream patch for test failure w.r.t compatibility with astropy 5.0.1
|
||||
|
||||
* Fri Jun 17 2022 Python Maint <python-maint@redhat.com> - 2.0.3-16
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Thu Feb 17 2022 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-15
|
||||
- Fix astropy 5 function incompatibility
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.0.3-12
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Thu Jul 02 2020 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-9
|
||||
- Add BR python3-setuptools
|
||||
- Add BR python3-reproject
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-8
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-6
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-5
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.3-4
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Mar 04 2019 Christian Dersch <lupinix@mailbox.org> - 2.0.3-2
|
||||
- Disable automatic dependency generators until we fixed (optional) deps
|
||||
|
||||
* Mon Feb 25 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0.3-1
|
||||
- New upstream version (2.0.3)
|
||||
|
||||
* Sun Feb 17 2019 Sergio Pascual <sergiopr@fedoraproject.org> - 2.0-1
|
||||
- New upstream version (2.0)
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Oct 05 2018 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1.1-2
|
||||
- Drop python2 subpackage
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Sun Jul 08 2018 Christian Dersch <lupinix@mailbox.org> - 1.1.1-6
|
||||
- Failing tests are only deprecation warnings... Ignore them and report upstream
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-5
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Jan 27 2017 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1.1-1
|
||||
- New upstream version (1.1.1)
|
||||
- Include license file
|
||||
- Do not write pyc files when running tests
|
||||
|
||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1-3
|
||||
- Rebuild for Python 3.6
|
||||
|
||||
* Sun Oct 02 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1-2
|
||||
- EVR bump
|
||||
|
||||
* Sun Sep 25 2016 Sergio Pascual <sergiopr@fedoraproject.org> - 1.1-1
|
||||
- New upstream version (1.1)
|
||||
- Updated spec
|
||||
- Fixes bz #1380134
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Nov 17 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 1.0-4
|
||||
- Disable some failing tests (https://github.com/aplpy/aplpy/issues/278)
|
||||
|
||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Mon Mar 02 2015 Sergio Pascual <sergiopr@fedoraproject.org> - 1.0-1
|
||||
- New upstream version (1.0)
|
||||
- Use license macro
|
||||
|
||||
* Thu Dec 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.14-2
|
||||
- Disable python3 tests
|
||||
|
||||
* Thu Dec 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.14-1
|
||||
- New upstream source (0.9.14), several bug fixes
|
||||
|
||||
* Tue Oct 07 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.13-1
|
||||
- New upstream source (0.9.13), fixes bug in 0.9.11 and 0.9.12
|
||||
|
||||
* Thu Sep 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.12-2
|
||||
- Provide python3 subpackage
|
||||
- Unbundle decorator
|
||||
|
||||
* Thu Sep 11 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.12-1
|
||||
- New upstream source (0.9.12)
|
||||
- Tests enabled
|
||||
|
||||
* Wed Sep 10 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.11-2
|
||||
- Disable tests for the moment
|
||||
|
||||
* Tue Jul 08 2014 Sergio Pascual <sergiopr@fedoraproject.org> - 0.9.11-1
|
||||
- Updated to new version
|
||||
- Run tests on installed version
|
||||
- Use python2 macros
|
||||
|
||||
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Aug 02 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu May 03 2012 Germán A. Racca <skytux@fedoraproject.org> - 0.9.8-1
|
||||
- Updated to new version
|
||||
- Included tests in %%check and corresponding BRs
|
||||
- Packaged tests in %%doc section
|
||||
|
||||
* Mon Feb 06 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-3
|
||||
- Minor changes to spec file after approval
|
||||
- Removed INSTALL file
|
||||
|
||||
* Mon Jan 30 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-2
|
||||
- Changed name of spec file to match the project name
|
||||
|
||||
* Mon Jan 23 2012 Germán A. Racca <skytux@fedoraproject.org> 0.9.6-1
|
||||
- Initial release of RPM package
|
||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (aplpy-2.2.0.tar.gz) = efb5af12da698861c596d3935580ca5dbe168779382702064ed8c728f9a56e82c06eb6ee101a0c66afaf35e7e55c7a9f53fa07aba379b91e13f2fa4ddce0ec98
|
||||
SHA512 (APLpy-2.0.3.tar.gz) = ad9e2079bc5cc3d60c88b49d11ef452d674a2223753d3c4b39db55bdb7b0ec598cff1edcd27d0539c3a3127b4c3bc7e0d57a3723841850fd49ed2206db5893d2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue