python-jsonpointer/python-jsonpointer.spec

111 lines
2.8 KiB
RPMSpec
Raw Normal View History

2013-09-12 18:38:31 +00:00
%global pypi_name jsonpointer
%global github_name python-json-pointer
2014-02-05 10:54:11 +00:00
%if 0%{?fedora} > 12
%global with_python3 1
%endif
2013-09-12 18:38:31 +00:00
Name: python-%{pypi_name}
2015-08-06 16:31:17 +00:00
Version: 1.9
Release: 3%{?dist}
2013-09-12 18:38:31 +00:00
Summary: Resolve JSON Pointers in Python
License: BSD
URL: https://github.com/stefankoegl/%{github_name}
2015-08-06 16:31:17 +00:00
Source0: https://pypi.python.org/packages/source/j/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
2013-09-12 18:38:31 +00:00
BuildArch: noarch
BuildRequires: python2-devel
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
BuildRequires: python3-devel
%endif
2013-09-12 18:38:31 +00:00
%description
Library to resolve JSON Pointers according to RFC 6901.
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
%package -n python3-%{pypi_name}
Summary: Resolve JSON Pointers in Python
%description -n python3-%{pypi_name}
Library to resolve JSON Pointers according to RFC 6901.
%endif
2013-09-12 18:38:31 +00:00
%prep
2015-08-06 16:31:17 +00:00
%setup -q -n %{pypi_name}-%{version}
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
rm -rf %{py3dir}
cp -ar . %{py3dir}
%endif
2013-09-12 18:38:31 +00:00
%build
%{__python} setup.py build
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
LC_ALL=en_US.UTF-8 \
%{__python3} setup.py build
popd
%endif
2013-09-12 18:38:31 +00:00
%install
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
LC_ALL=en_US.UTF-8 \
%{__python3} setup.py install --skip-build --root %{buildroot}
popd
%endif
2013-09-12 18:38:31 +00:00
%{__python} setup.py install --skip-build --root %{buildroot}
%check
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
pushd %{py3dir}
%{__python3} tests.py
popd
%endif
2013-09-12 18:38:31 +00:00
%{__python} tests.py
%files
2014-07-31 15:17:56 +00:00
%doc README.md AUTHORS
%{!?_licensedir:%global license %%doc}
%license COPYING
2015-08-06 16:31:17 +00:00
%{_bindir}/jsonpointer
2013-09-12 18:38:31 +00:00
%{python_sitelib}/%{pypi_name}.py*
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
2014-02-05 10:54:11 +00:00
%if 0%{?with_python3}
%files -n python3-%{pypi_name}
2014-07-31 15:17:56 +00:00
%doc README.md AUTHORS
%{!?_licensedir:%global license %%doc}
%license COPYING
2014-02-05 10:54:11 +00:00
%{python3_sitelib}/__pycache__/*
%{python3_sitelib}/%{pypi_name}.py*
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
%endif
2013-09-12 18:38:31 +00:00
%changelog
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-3
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
2015-08-07 08:42:01 +00:00
* Fri Aug 07 2015 Alan Pevec <apevec@gmail.com> - 1.9-2
- Update to 1.9
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2014-07-31 15:17:56 +00:00
* Thu Jul 31 2014 Tom Callaway <spot@fedoraproject.org> - 1.0-6
- fix license handling
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.0-4
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
2014-02-05 10:54:11 +00:00
* Wed Feb 5 2014 Thomas Spura <tomspur@fedoraproject.org> - 1.0-3
- add python3 subpackage (#1061622)
2013-09-12 18:38:31 +00:00
* Thu Sep 05 2013 Alan Pevec <apevec@gmail.com> - 1.0-2
- add AUTHORS to docs
* Mon Jul 01 2013 Alan Pevec <apevec@gmail.com> - 1.0-1
- Initial package.