Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 74165287a6 | |||
| 8a2e13021a | |||
| c43144aaa3 | |||
| b2e833c92c | |||
| f843db505f | |||
| c36b60226e | |||
| b6c95b4e6e | |||
| 2d944a79cf |
@@ -1,2 +1,3 @@
|
||||
/numpydoc-0.4.tar.gz
|
||||
/numpydoc-0.5.tar.gz
|
||||
/numpydoc-0.7.0.tar.gz
|
||||
|
||||
+68
-56
@@ -1,94 +1,106 @@
|
||||
%if 0%{?fedora} > 12
|
||||
%global with_python3 1
|
||||
%endif
|
||||
|
||||
|
||||
Name: python-numpydoc
|
||||
Version: 0.5
|
||||
Version: 0.7.0
|
||||
Release: 2%{?dist}
|
||||
Summary: Sphinx extension to support docstrings in Numpy format
|
||||
Summary: Sphinx extension to support docstrings in NumPy format
|
||||
|
||||
License: BSD
|
||||
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
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: python-sphinx
|
||||
BuildRequires: python-matplotlib
|
||||
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
BuildRequires: python2-nose
|
||||
BuildRequires: python2-sphinx
|
||||
BuildRequires: python2-matplotlib
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-matplotlib
|
||||
BuildRequires: python2-tools
|
||||
%endif
|
||||
|
||||
%description
|
||||
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
|
||||
Summary: Sphinx extension to support docstrings in Numpy format
|
||||
|
||||
%package -n python2-numpydoc
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python2-numpydoc}
|
||||
Requires: python2-sphinx >= 1.2.3
|
||||
Requires: python2-jinja2 >= 2.3
|
||||
%description -n python2-numpydoc
|
||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||
|
||||
|
||||
%package -n python3-numpydoc
|
||||
Summary: %{summary}
|
||||
%{?python_provide:%python_provide python3-numpydoc}
|
||||
Requires: python3-sphinx >= 1.2.3
|
||||
Requires: python3-jinja2 >= 2.3
|
||||
%description -n python3-numpydoc
|
||||
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
|
||||
following the Numpy/Scipy format to a form palatable to Sphinx.
|
||||
%endif
|
||||
following the NumPy/SciPy format to a form palatable to Sphinx.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n numpydoc-%{version}
|
||||
|
||||
%if 0%{?with_python3}
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
2to3 --write --nobackups %{py3dir}
|
||||
%endif
|
||||
|
||||
%autosetup -n numpydoc-%{version}
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py build
|
||||
popd
|
||||
%endif
|
||||
|
||||
%py2_build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||
popd
|
||||
%endif
|
||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||
%py2_install
|
||||
%py3_install
|
||||
|
||||
|
||||
%check
|
||||
nosetests -v
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{_bindir}/nosetests-3* -v || :
|
||||
popd
|
||||
%endif
|
||||
nosetests-3 -v
|
||||
|
||||
|
||||
%files
|
||||
%doc LICENSE.txt README.rst
|
||||
%{python_sitelib}/numpydoc
|
||||
%{python_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python2-numpydoc
|
||||
%license LICENSE.txt
|
||||
%doc README.rst
|
||||
%{python2_sitelib}/numpydoc
|
||||
%{python2_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
||||
|
||||
%files -n python3-numpydoc
|
||||
%doc LICENSE.txt README.rst
|
||||
%license LICENSE.txt
|
||||
%doc README.rst
|
||||
%{python3_sitelib}/numpydoc
|
||||
%{python3_sitelib}/numpydoc-%{version}-py?.?.egg-info
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user