[python-jsonpatch/f21] Introduce python3- subpackage.

Alan Pevec apevec at fedoraproject.org
Fri Aug 29 10:00:24 UTC 2014


commit 2f807ca85f480d86079097313e5eb046cbcd380f
Author: Alan Pevec <alan.pevec at redhat.com>
Date:   Fri Aug 29 11:24:43 2014 +0200

    Introduce python3- subpackage.
    
    from Bohuslav Kabrda

 python-jsonpatch.spec |   54 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 52 insertions(+), 2 deletions(-)
---
diff --git a/python-jsonpatch.spec b/python-jsonpatch.spec
index 4171f79..82fd2a4 100644
--- a/python-jsonpatch.spec
+++ b/python-jsonpatch.spec
@@ -2,10 +2,11 @@
 %global github_name python-json-patch
 %global commit f6f3cd235337209fc96b71316215a40d1cd3026c
 %global shortcommit %(c=%{commit}; echo ${c:0:7})
+%global with_python3 1
 
 Name:           python-%{pypi_name}
 Version:        1.2
-Release:        4%{?dist}
+Release:        5%{?dist}
 Summary:        Applying JSON Patches in Python
 
 License:        BSD
@@ -21,20 +22,56 @@ BuildRequires:  python-jsonpointer
 Requires:       python-jsonpointer
 
 %description
-Library to apply JSON Patches according to RFC 6902.
+Library to apply JSON Patches according to RFC 6902 - Python 2 build.
+
+%if 0%{?with_python3}
+%package -n python3-%{pypi_name}
+Summary:        Applying JSON Patches in Python 3
+
+BuildRequires:  python3-devel
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-jsonpointer
+Requires:       python3-jsonpointer
+
+%description -n python3-%{pypi_name}
+Library to apply JSON Patches according to RFC 6902 - Python 3 build.
+%endif
 
 %prep
 %setup -qn %{github_name}-%{commit}
 
+%if 0%{?with_python3}
+rm -rf %{py3dir}
+cp -a . %{py3dir}
+%endif
+
 %build
 %{__python} setup.py build
 
+%if 0%{?with_python3}
+pushd %{py3dir}
+LANG=en_US.utf8 %{__python3} setup.py build
+popd
+%endif
+
 %install
 %{__python} setup.py install --skip-build --root %{buildroot}
 
+%if 0%{?with_python3}
+pushd %{py3dir}
+LANG=en_US.utf8 %{__python3} setup.py install --skip-build --root %{buildroot}
+popd
+%endif
+
 %check
 %{__python} tests.py
 
+%if 0%{?with_python3}
+pushd %{py3dir}
+%{__python3} tests.py
+popd
+%endif
+
 %files
 %doc README.md
 %{!?_licensedir:%global license %%doc}
@@ -42,7 +79,20 @@ Library to apply JSON Patches according to RFC 6902.
 %{python_sitelib}/%{pypi_name}.py*
 %{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
 
+%if 0%{?with_python3}
+%files -n python3-%{pypi_name}
+%doc README.md
+%{!?_licensedir:%global license %%doc}
+%license COPYING
+%{python3_sitelib}/%{pypi_name}.py*
+%{python3_sitelib}/__pycache__/*
+%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
+%endif
+
 %changelog
+* Fri Aug 29 2014 Bohuslav Kabrda <bkabrda at redhat.com> - 1.2-5
+- Introduce python3- subpackage.
+
 * Thu Jul 31 2014 Tom Callaway <spot at fedoraproject.org> - 1.2-4
 - fix license handling
 


More information about the scm-commits mailing list