Compare commits

...

14 Commits

Author SHA1 Message Date
Fedora Release Engineering 74165287a6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2018-02-09 09:16:52 +00:00
Miro Hrončok 8a2e13021a Updated to 0.7.0 (#1481761) 2017-08-15 18:39:23 +02:00
Fedora Release Engineering c43144aaa3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild 2017-07-27 11:05:36 +00:00
Fedora Release Engineering b2e833c92c - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild 2017-02-11 09:46:07 +00:00
Miro Hrončok f843db505f Rebuild for Python 3.6 2016-12-19 18:20:37 +01:00
Fedora Release Engineering c36b60226e - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages 2016-07-19 10:42:39 +00:00
Fedora Release Engineering b6c95b4e6e - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild 2016-02-04 20:18:41 +00:00
Peter Robinson 2d944a79cf - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 2015-11-10 16:30:32 +00:00
Dennis Gilmore d4743f7f7e - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild 2015-06-18 20:05:24 +00:00
Orion Poplawski 1ff0cf7a70 Really fix conditionals for non-python3 case 2015-04-01 11:14:41 -06:00
Orion Poplawski 541fc8b953 Fix conditionals for non-python3 case 2015-04-01 11:13:21 -06:00
Thomas Spura c782b7cb0e update to 0.5 and enable python3 subpackage (#1134171) 2014-08-27 08:45:28 +02:00
Dennis Gilmore d2b704435e - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild 2014-06-07 16:44:14 -05:00
Thomas Spura 5b379d4e9e Initial commit (#991370) 2013-08-06 15:51:46 +02:00
3 changed files with 124 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
/numpydoc-0.4.tar.gz
/numpydoc-0.5.tar.gz
/numpydoc-0.7.0.tar.gz
+120
View File
@@ -0,0 +1,120 @@
Name: python-numpydoc
Version: 0.7.0
Release: 2%{?dist}
Summary: Sphinx extension to support docstrings in NumPy format
License: BSD
URL: https://pypi.python.org/pypi/numpydoc
Source0: https://files.pythonhosted.org/packages/source/n/numpydoc/numpydoc-%{version}.tar.gz
BuildArch: noarch
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
%description
Numpydoc inserts a hook into Sphinx's autodoc that converts docstrings
following the NumPy/SciPy format to a form palatable to Sphinx.
%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.
%prep
%autosetup -n numpydoc-%{version}
%build
%py2_build
%py3_build
%install
%py2_install
%py3_install
%check
nosetests -v
nosetests-3 -v
%files -n python2-numpydoc
%license LICENSE.txt
%doc README.rst
%{python2_sitelib}/numpydoc
%{python2_sitelib}/numpydoc-%{version}-py?.?.egg-info
%files -n python3-numpydoc
%license LICENSE.txt
%doc README.rst
%{python3_sitelib}/numpydoc
%{python3_sitelib}/numpydoc-%{version}-py?.?.egg-info
%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
* Wed Aug 27 2014 Thomas Spura <tomspur@fedoraproject.org> - 0.5-1
- update to 0.5 (#1134171)
- enable python3 subpackage
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Mon Aug 5 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.4-2
- BR python2-devel, python-sphinx, python-nose
- use macro in URL
- disable python3 package for now
* Fri Aug 2 2013 Thomas Spura <tomspur@fedoraproject.org> - 0.4-1
- initial package
+1
View File
@@ -0,0 +1 @@
SHA512 (numpydoc-0.7.0.tar.gz) = 1a9bedaa6fe8bcd626b739b458a1647e550ac4489f8ccec2d4b11f93ee5c2a58e5d0e6692330d478a9ba91956da88eabdf020aa04f534e1e445c020903dcf14a