diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 21:48:54 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 21:48:54 +0000 |
| commit | 1298e4a40cb64757392cc58eaa54cdb682253b8d (patch) | |
| tree | d25e94c2b2235f7299ad2eb9ad3b22fafb129c51 | |
| parent | a770a29a0d0d95259621a6dd2d365d67d3a0e370 (diff) | |
automatic import of python-unicodedata2
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-unicodedata2.spec | 90 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 92 insertions, 0 deletions
@@ -0,0 +1 @@ +/unicodedata2-15.0.0.tar.gz diff --git a/python-unicodedata2.spec b/python-unicodedata2.spec new file mode 100644 index 0000000..f53c3e0 --- /dev/null +++ b/python-unicodedata2.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-unicodedata2 +Version: 15.0.0 +Release: 1 +Summary: Unicodedata backport updated to the latest Unicode version. +License: Apache License 2.0 +URL: http://github.com/fonttools/unicodedata2 +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b9/d6/d533700679436625415094a95415db1e7357c48bdeb1b90653f3b903174e/unicodedata2-15.0.0.tar.gz + +Requires: python3-pytest +Requires: python3-coverage +Requires: python3-pytest-xdist +Requires: python3-pytest-randomly + +%description +[unicodedata] backport/updates. +The versions of this package match Unicode versions, so unicodedata2==13.0.0 is data from Unicode 13.0.0. +Pre-compiled wheel packages are available on [PyPI] and can be installed via pip. +[unicodedata]: https://docs.python.org/3/library/unicodedata.html +[PyPI]: https://pypi.org/project/unicodedata2/ + +%package -n python3-unicodedata2 +Summary: Unicodedata backport updated to the latest Unicode version. +Provides: python-unicodedata2 +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-unicodedata2 +[unicodedata] backport/updates. +The versions of this package match Unicode versions, so unicodedata2==13.0.0 is data from Unicode 13.0.0. +Pre-compiled wheel packages are available on [PyPI] and can be installed via pip. +[unicodedata]: https://docs.python.org/3/library/unicodedata.html +[PyPI]: https://pypi.org/project/unicodedata2/ + +%package help +Summary: Development documents and examples for unicodedata2 +Provides: python3-unicodedata2-doc +%description help +[unicodedata] backport/updates. +The versions of this package match Unicode versions, so unicodedata2==13.0.0 is data from Unicode 13.0.0. +Pre-compiled wheel packages are available on [PyPI] and can be installed via pip. +[unicodedata]: https://docs.python.org/3/library/unicodedata.html +[PyPI]: https://pypi.org/project/unicodedata2/ + +%prep +%autosetup -n unicodedata2-15.0.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-unicodedata2 -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 15.0.0-1 +- Package Spec generated @@ -0,0 +1 @@ +1a29cc9f482f6724b8674a7836834789 unicodedata2-15.0.0.tar.gz |
