diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:09:32 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 08:09:32 +0000 |
commit | 53897234b09705917ce50b8aaa0bb293b6a231df (patch) | |
tree | 4f3f0d4d3443995f72ce2b913ac3f91104cd1565 /python-tzdata.spec | |
parent | f93ee3e80c5fbcb8f174e7c00de66f8513c255db (diff) |
automatic import of python-tzdata
Diffstat (limited to 'python-tzdata.spec')
-rw-r--r-- | python-tzdata.spec | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/python-tzdata.spec b/python-tzdata.spec new file mode 100644 index 0000000..d181077 --- /dev/null +++ b/python-tzdata.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-tzdata +Version: 2023.3 +Release: 1 +Summary: Provider of IANA time zone data +License: Apache-2.0 +URL: https://github.com/python/tzdata +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/70/e5/81f99b9fced59624562ab62a33df639a11b26c582be78864b339dafa420d/tzdata-2023.3.tar.gz +BuildArch: noarch + + +%description +This is a Python package containing ``zic``-compiled binaries for the IANA time +zone database. It is intended to be a fallback for systems that do not have +system time zone data installed (or don't have it installed in a standard +location), as a part of `PEP 615 <https://www.python.org/dev/peps/pep-0615/>`_ +This repository generates a ``pip``-installable package, published on PyPI as +`tzdata <https://pypi.org/project/tzdata>`_. +For more information, see `the documentation <https://tzdata.readthedocs.io>`_. + +%package -n python3-tzdata +Summary: Provider of IANA time zone data +Provides: python-tzdata +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-tzdata +This is a Python package containing ``zic``-compiled binaries for the IANA time +zone database. It is intended to be a fallback for systems that do not have +system time zone data installed (or don't have it installed in a standard +location), as a part of `PEP 615 <https://www.python.org/dev/peps/pep-0615/>`_ +This repository generates a ``pip``-installable package, published on PyPI as +`tzdata <https://pypi.org/project/tzdata>`_. +For more information, see `the documentation <https://tzdata.readthedocs.io>`_. + +%package help +Summary: Development documents and examples for tzdata +Provides: python3-tzdata-doc +%description help +This is a Python package containing ``zic``-compiled binaries for the IANA time +zone database. It is intended to be a fallback for systems that do not have +system time zone data installed (or don't have it installed in a standard +location), as a part of `PEP 615 <https://www.python.org/dev/peps/pep-0615/>`_ +This repository generates a ``pip``-installable package, published on PyPI as +`tzdata <https://pypi.org/project/tzdata>`_. +For more information, see `the documentation <https://tzdata.readthedocs.io>`_. + +%prep +%autosetup -n tzdata-2023.3 + +%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-tzdata -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2023.3-1 +- Package Spec generated |