summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 08:09:32 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 08:09:32 +0000
commit53897234b09705917ce50b8aaa0bb293b6a231df (patch)
tree4f3f0d4d3443995f72ce2b913ac3f91104cd1565
parentf93ee3e80c5fbcb8f174e7c00de66f8513c255db (diff)
automatic import of python-tzdata
-rw-r--r--.gitignore1
-rw-r--r--python-tzdata.spec90
-rw-r--r--sources1
3 files changed, 92 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..dd45d3a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/tzdata-2023.3.tar.gz
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
diff --git a/sources b/sources
new file mode 100644
index 0000000..39d985a
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+3c8f05d031770659a7d80de5159af202 tzdata-2023.3.tar.gz