Bump to python3-six 1.16.0 61/278261/1 accepted/tizen_7.0_base accepted/tizen_7.0_base_hotfix accepted/tizen_8.0_base accepted/tizen_base_dev sandbox/dh0128.kwak/python3-six-1.16.0-20220718 tizen_7.0_base tizen_7.0_base_hotfix tizen_8.0_base accepted/tizen/7.0/base/20221116.030041 accepted/tizen/7.0/base/hotfix/20221116.055451 accepted/tizen/8.0/base/20231005.045209 accepted/tizen/base/20220725.042917 accepted/tizen/base/20221115.103914 accepted/tizen/base/dev/20230602.081007 submit/tizen_base/20220719.051857 tizen_7.0_m2_release tizen_8.0_m2_release
authorDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 07:29:08 +0000 (16:29 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Mon, 18 Jul 2022 07:29:08 +0000 (16:29 +0900)
Change-Id: Id6e4eaad61c793de7263938e5bfd5908145279e4

packaging/python3-six.manifest [new file with mode: 0644]
packaging/python3-six.spec [new file with mode: 0644]

diff --git a/packaging/python3-six.manifest b/packaging/python3-six.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/python3-six.spec b/packaging/python3-six.spec
new file mode 100644 (file)
index 0000000..d5f0004
--- /dev/null
@@ -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.*