From: DongHun Kwak Date: Mon, 18 Jul 2022 07:29:08 +0000 (+0900) Subject: Bump to python3-six 1.16.0 X-Git-Tag: submit/tizen_base/20220719.051857^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=221d0dce0f0245918347d703cdc5935c34600612;p=platform%2Fupstream%2Fpython3-six.git Bump to python3-six 1.16.0 Change-Id: Id6e4eaad61c793de7263938e5bfd5908145279e4 --- diff --git a/packaging/python3-six.manifest b/packaging/python3-six.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/python3-six.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/python3-six.spec b/packaging/python3-six.spec new file mode 100644 index 0000000..d5f0004 --- /dev/null +++ b/packaging/python3-six.spec @@ -0,0 +1,40 @@ +Name: python3-six +Version: 1.16.0 +Release: 0 +Summary: Python 2 and 3 compatibility utilities +License: MIT +Group: Development/Libraries/Python +Url: http://pypi.python.org/pypi/six/ +Source: %{name}-%{version}.tar.gz +Source1001: %{name}.manifest + +BuildRequires: pkgconfig(python3) + +BuildArch: noarch + +%description +Six is a Python 2 and 3 compatibility library. It provides utility +functions for smoothing over the differences between the Python +versions with the goal of writing Python code that is compatible on +both Python versions. See the documentation for more information on +what is provided. + +%prep +%setup -q -n six-%{version} +cp %{SOURCE1001} . + +%build +%{_bindir}/python3 setup.py build + +%install +%{_bindir}/python3 setup.py install --prefix=%{_prefix} --root=%{buildroot} + +# %check +# python test_six.py + +%files +%manifest %{name}.manifest +%license LICENSE +%{python3_sitelib}/six.py* +%{python3_sitelib}/six-%{version}-py*.egg-info +%{python3_sitelib}/__pycache__/six.*