Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52609a52cb | ||
|
|
5287bcde25 | ||
|
|
80f24a5d5c | ||
|
|
c0418e8752 | ||
|
|
007105faba | ||
|
|
c2719d6680 | ||
|
|
02723af547 | ||
|
|
cb7ef5c476 | ||
|
|
c1bf4a9e62 | ||
|
|
c72a899ad8 | ||
|
|
0e2b210feb | ||
|
|
680cb109e5 | ||
|
|
d3140f4c58 | ||
|
|
c05de8fbba | ||
|
|
33ce2adaea | ||
|
|
13d75e3e14 | ||
|
|
4e58d8eb6c | ||
|
|
e362e5f3d0 | ||
|
|
6a6b00e36a | ||
|
|
e223be063c | ||
|
|
5ee584c0d1 | ||
|
|
9432bbeb4e | ||
|
|
98d3d2ccb4 | ||
|
|
7d392569fb | ||
|
|
6be7e5c97d | ||
|
|
2be86be6d0 | ||
|
|
74165287a6 | ||
|
|
8a2e13021a | ||
|
|
c43144aaa3 | ||
|
|
b2e833c92c | ||
|
|
f843db505f | ||
|
|
c36b60226e | ||
|
|
b6c95b4e6e | ||
|
|
2d944a79cf | ||
|
|
d4743f7f7e | ||
|
|
1ff0cf7a70 | ||
|
|
541fc8b953 |
@@ -1,2 +1,9 @@
|
|||||||
/numpydoc-0.4.tar.gz
|
/numpydoc-0.4.tar.gz
|
||||||
/numpydoc-0.5.tar.gz
|
/numpydoc-0.5.tar.gz
|
||||||
|
/numpydoc-0.7.0.tar.gz
|
||||||
|
/python-numpydoc-0.8.0-1.fc27.src.rpm
|
||||||
|
/numpydoc-0.8.0.tar.gz
|
||||||
|
/numpydoc-0.9.1.tar.gz
|
||||||
|
/numpydoc-0.9.2.tar.gz
|
||||||
|
/numpydoc-1.1.0.tar.gz
|
||||||
|
/numpydoc-1.4.0.tar.gz
|
||||||
|
|||||||
+122
-62
@@ -1,94 +1,154 @@
|
|||||||
%if 0%{?fedora} > 12
|
|
||||||
%global with_python3 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
Name: python-numpydoc
|
Name: python-numpydoc
|
||||||
Version: 0.5
|
Version: 1.4.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Sphinx extension to support docstrings in Numpy format
|
Summary: Sphinx extension to support docstrings in NumPy format
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: https://pypi.python.org/pypi/numpydoc
|
URL: https://pypi.python.org/pypi/numpydoc
|
||||||
Source0: https://pypi.python.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python-nose
|
|
||||||
BuildRequires: python-sphinx
|
|
||||||
BuildRequires: python-matplotlib
|
|
||||||
|
|
||||||
%if 0%{with_python3}
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-nose
|
BuildRequires: pyproject-rpm-macros
|
||||||
BuildRequires: python3-sphinx
|
|
||||||
BuildRequires: python3-matplotlib
|
|
||||||
BuildRequires: python2-tools
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||||
following the Numpy/Scipy format to a form palatable to Sphinx.
|
following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||||
|
|
||||||
|
|
||||||
%if 0%{with_python3}
|
|
||||||
%package -n python3-numpydoc
|
%package -n python3-numpydoc
|
||||||
Summary: Sphinx extension to support docstrings in Numpy format
|
Summary: %{summary}
|
||||||
|
%{?python_provide:%python_provide python3-numpydoc}
|
||||||
%description -n python3-numpydoc
|
%description -n python3-numpydoc
|
||||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||||
following the Numpy/Scipy format to a form palatable to Sphinx.
|
following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n numpydoc-%{version}
|
%autosetup -p1 -n numpydoc-%{version}
|
||||||
|
# let's not measure coverage:
|
||||||
%if %{?with_python3}
|
sed -i '/pytest-cov/d' requirements/test.txt
|
||||||
rm -rf %{py3dir}
|
sed -Ei 's/\s+--cov\S+//g' setup.cfg
|
||||||
cp -a . %{py3dir}
|
|
||||||
2to3 --write --nobackups %{py3dir}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
%generate_buildrequires
|
||||||
|
%pyproject_buildrequires -x testing
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python} setup.py build
|
%pyproject_wheel
|
||||||
%if %{?with_python3}
|
|
||||||
pushd %{py3dir}
|
|
||||||
%{__python3} setup.py build
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if %{?with_python3}
|
%pyproject_install
|
||||||
pushd %{py3dir}
|
%pyproject_save_files numpydoc
|
||||||
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
nosetests -v
|
# Deselected tests need to download an inventory from docs.python.org
|
||||||
%if 0%{with_python3}
|
%pytest -k "not test_MyClass and not test_my_function"
|
||||||
pushd %{py3dir}
|
|
||||||
%{_bindir}/nosetests-3* -v || :
|
|
||||||
popd
|
|
||||||
%endif
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files -n python3-numpydoc -f %pyproject_files
|
||||||
%doc LICENSE.txt README.rst
|
%license LICENSE.txt
|
||||||
%{python_sitelib}/numpydoc
|
%doc README.rst
|
||||||
%{python_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
|
||||||
|
|
||||||
%if 0%{with_python3}
|
|
||||||
%files -n python3-numpydoc
|
|
||||||
%doc LICENSE.txt README.rst
|
|
||||||
%{python3_sitelib}/numpydoc
|
|
||||||
%{python3_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 15 2022 Lumír Balhar <lbalhar@redhat.com> - 1.4.0-1
|
||||||
|
- Update to 1.4.0
|
||||||
|
Resolves: rhbz#2043324 rhbz#2113637
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 15 2022 Python Maint <python-maint@redhat.com> - 1.1.0-7
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 1.1.0-4
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 13 2020 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
|
||||||
|
- Don't BR pytest-cov
|
||||||
|
|
||||||
|
* Wed Sep 09 2020 Lumír Balhar <lbalhar@redhat.com> - 1.1.0-1
|
||||||
|
- Update to 1.1.0 (#1701764)
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.9.2-4
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Fri May 08 2020 Orion Poplawski <orion@nwra.com> - 0.9.2-3
|
||||||
|
- Add upstream patch for python 3.9 compatibility
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Dec 28 2019 Orion Poplawski <orion@nwra.com> - 0.9.2-1
|
||||||
|
- Update to 0.9.2
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-4
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9.1-3
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 7 2019 Orion Poplawski <orion@nwra.com> - 0.9.1-1
|
||||||
|
- Update to 0.9.1
|
||||||
|
|
||||||
|
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-5
|
||||||
|
- Subpackage python2-numpydoc has been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Sphinx2
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-2
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Tue May 29 2018 Thomas Spura <tomspur@fedoraproject.org> - 0.8.0-1
|
||||||
|
- update to 0.8.0 (#1562463)
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 15 2017 Miro Hrončok <mhroncok@redhat.com> - 0.7.0-1
|
||||||
|
- Updated to 0.7.0 (#1481761)
|
||||||
|
- Rewrote the spec completely
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.5-6
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-5
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.5-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Aug 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.5-1
|
* Wed Aug 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.5-1
|
||||||
- update to 0.5 (#1134171)
|
- update to 0.5 (#1134171)
|
||||||
- enable python3 subpackage
|
- enable python3 subpackage
|
||||||
|
|||||||
Reference in New Issue
Block a user