Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f9edd0d570 | |||
| c41b0ea281 | |||
| ff9d840b3e | |||
| 7d427a6440 | |||
| 7faf039341 | |||
| 2deec007e4 | |||
| 0b7cc7c368 | |||
| 303bb9366c | |||
| cafa66b07d | |||
| 16e02affcb | |||
| c979544b6b | |||
| 3c722e90ff | |||
| 4811217e61 |
+141
-12
@@ -1,8 +1,15 @@
|
|||||||
%global pypi_name Pint
|
%global pypi_name Pint
|
||||||
|
|
||||||
|
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%global with_python3 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%{!?upstream_version: %global upstream_version %{version}%{?milestone}}
|
||||||
|
|
||||||
Name: python-pint
|
Name: python-pint
|
||||||
Version: 0.6
|
Version: 0.6
|
||||||
Release: 2%{?dist}
|
Release: 15%{?dist}
|
||||||
Summary: Physical quantities module
|
Summary: Physical quantities module
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
@@ -10,11 +17,6 @@ URL: https://github.com/hgrecco/pint
|
|||||||
Source0: https://pypi.python.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.zip
|
Source0: https://pypi.python.org/packages/source/P/%{pypi_name}/%{pypi_name}-%{version}.zip
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python-sphinx
|
|
||||||
BuildRequires: python-setuptools
|
|
||||||
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Pint is Python module/package to define, operate and manipulate physical
|
Pint is Python module/package to define, operate and manipulate physical
|
||||||
quantities: the product of a numerical value and a unit of measurement.
|
quantities: the product of a numerical value and a unit of measurement.
|
||||||
@@ -24,12 +26,69 @@ to different units.
|
|||||||
It is distributed with a comprehensive list of physical units, prefixes
|
It is distributed with a comprehensive list of physical units, prefixes
|
||||||
and constants.
|
and constants.
|
||||||
|
|
||||||
|
%package -n python2-pint
|
||||||
|
Summary: Physical quantities module
|
||||||
|
Provides: python-pint = %{version}-%{release}
|
||||||
|
Obsoletes: python-pint < 0.6-4
|
||||||
|
|
||||||
|
BuildRequires: python2-devel
|
||||||
|
BuildRequires: python2-sphinx
|
||||||
|
BuildRequires: python2-setuptools
|
||||||
|
|
||||||
|
# python_provide does not exist in CBS Cloud buildroot
|
||||||
|
%{?python_provide:%python_provide python2-pint}
|
||||||
|
|
||||||
|
%description -n python2-pint
|
||||||
|
Pint is Python module/package to define, operate and manipulate physical
|
||||||
|
quantities: the product of a numerical value and a unit of measurement.
|
||||||
|
It allows arithmetic operations between them and conversions from and
|
||||||
|
to different units.
|
||||||
|
|
||||||
|
It is distributed with a comprehensive list of physical units, prefixes
|
||||||
|
and constants.
|
||||||
|
|
||||||
|
%package -n python2-pint-doc
|
||||||
|
Summary: Documentation for the pint module
|
||||||
|
%{?python_provide:%python_provide python2-pint-doc}
|
||||||
|
# python_provide does not exist in CBS Cloud buildroot
|
||||||
|
Provides: python-pint-doc = %{version}-%{release}
|
||||||
|
Obsoletes: python-pint-doc < 0.6-4
|
||||||
|
|
||||||
|
%description -n python2-pint-doc
|
||||||
|
Documentation for the pint module
|
||||||
|
|
||||||
|
#python3 subpackage
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%package -n python3-pint
|
||||||
|
Summary: Physical quantities module
|
||||||
|
%{?python_provide:%python_provide python3-pint}
|
||||||
|
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
|
BuildRequires: python3-setuptools
|
||||||
|
|
||||||
|
%description -n python3-pint
|
||||||
|
Pint is Python module/package to define, operate and manipulate physical
|
||||||
|
quantities: the product of a numerical value and a unit of measurement.
|
||||||
|
It allows arithmetic operations between them and conversions from and
|
||||||
|
to different units.
|
||||||
|
|
||||||
|
It is distributed with a comprehensive list of physical units, prefixes
|
||||||
|
and constants.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%package -n python3-pint-doc
|
||||||
|
Summary: Documentation for the pint module
|
||||||
|
%{?python_provide:%python_provide python3-pint-doc}
|
||||||
|
BuildRequires: python3-sphinx
|
||||||
|
|
||||||
|
%description -n python3-pint-doc
|
||||||
|
Documentation for the pint module
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pypi_name}-%{version}
|
%setup -q -n %{pypi_name}-%{version}
|
||||||
# Remove bundled egg-info
|
|
||||||
rm -rf %{pypi_name}.egg-info
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__python2} setup.py build
|
%{__python2} setup.py build
|
||||||
@@ -38,24 +97,94 @@ rm -rf %{pypi_name}.egg-info
|
|||||||
|
|
||||||
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
||||||
sphinx-build docs html
|
sphinx-build docs html
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%{__python3} setup.py build
|
||||||
|
export PYTHONPATH="$( pwd ):$PYTHONPATH"
|
||||||
|
sphinx-build-3 docs html
|
||||||
# remove the sphinx-build leftovers
|
# remove the sphinx-build leftovers
|
||||||
rm -rf html/.{doctrees,buildinfo}
|
rm -rf html/.{doctrees,buildinfo}
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python2} setup.py install --skip-build --root %{buildroot}
|
%{__python2} setup.py install --skip-build --root %{buildroot}
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
||||||
|
%endif
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__python2} setup.py test
|
%{__python2} setup.py test
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%{__python3} setup.py test
|
||||||
|
%endif
|
||||||
|
|
||||||
%files
|
%files -n python2-pint
|
||||||
%doc html LICENSE docs/_themes/LICENSE
|
%doc README
|
||||||
|
%license LICENSE
|
||||||
%{python2_sitelib}/pint
|
%{python2_sitelib}/pint
|
||||||
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
||||||
|
|
||||||
|
%files -n python2-pint-doc
|
||||||
|
%doc html
|
||||||
|
%license docs/_themes/LICENSE
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%files -n python3-pint
|
||||||
|
%doc README
|
||||||
|
%license LICENSE
|
||||||
|
%{python3_sitelib}/pint
|
||||||
|
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if 0%{?with_python3}
|
||||||
|
%files -n python3-pint-doc
|
||||||
|
%doc html
|
||||||
|
%license docs/_themes/LICENSE
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-15
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6-14
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-13
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jan 27 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.6-12
|
||||||
|
- Update Python 2 dependency declarations to new packaging standards
|
||||||
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.6-9
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-8
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.6-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
||||||
|
|
||||||
|
* Sun Sep 06 2015 Matthias Runge <mrunge@redhat.com> - 0.6-5
|
||||||
|
- fix uppercase/lowercase naming, fix obsoletes
|
||||||
|
|
||||||
|
* Fri Sep 04 2015 Chandan Kumar <chkumar246@gmail.com> - 0.6-4
|
||||||
|
- Add python2 and python3 subpackages
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
* Mon Dec 15 2014 Matthias Runge <mrunge@redhat.com> - 0.6-2
|
* Mon Dec 15 2014 Matthias Runge <mrunge@redhat.com> - 0.6-2
|
||||||
- change BR python-devel to python2-devel (rhbz#1173109)
|
- change BR python-devel to python2-devel (rhbz#1173109)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user