!1 python-tzlocal package init
Merge pull request !1 from tomtao/master
This commit is contained in:
commit
e6c65d37e6
105
python-tzlocal.spec
Normal file
105
python-tzlocal.spec
Normal file
@ -0,0 +1,105 @@
|
||||
%global _empty_manifest_terminate_build 0
|
||||
Name: python-tzlocal
|
||||
Version: 2.1
|
||||
Release: 1
|
||||
Summary: tzinfo object for the local timezone
|
||||
License: MIT
|
||||
URL: https://github.com/regebro/tzlocal
|
||||
Source0: https://files.pythonhosted.org/packages/ce/73/99e4cc30db6b21cba6c3b3b80cffc472cc5a0feaf79c290f01f1ac460710/tzlocal-2.1.tar.gz
|
||||
BuildArch: noarch
|
||||
|
||||
Requires: python3-pytz
|
||||
|
||||
%description
|
||||
This Python module returns a ``tzinfo`` object with the local timezone information under Unix and Win-32.
|
||||
It requires ``pytz``, and returns ``pytz`` ``tzinfo`` objects.
|
||||
This module attempts to fix a glaring hole in ``pytz``, that there is no way to
|
||||
get the local timezone information, unless you know the zoneinfo name, and
|
||||
under several Linux distros that's hard or impossible to figure out.
|
||||
Also, with Windows different timezone system using pytz isn't of much use
|
||||
unless you separately configure the zoneinfo timezone name.
|
||||
With ``tzlocal`` you only need to call ``get_localzone()`` and you will get a
|
||||
``tzinfo`` object with the local time zone info. On some Unices you will still
|
||||
not get to know what the timezone name is, but you don't need that when you
|
||||
have the tzinfo file. However, if the timezone name is readily available it
|
||||
will be used.
|
||||
|
||||
%package -n python3-tzlocal
|
||||
Summary: tzinfo object for the local timezone
|
||||
Provides: python-tzlocal
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
%description -n python3-tzlocal
|
||||
This Python module returns a ``tzinfo`` object with the local timezone information under Unix and Win-32.
|
||||
It requires ``pytz``, and returns ``pytz`` ``tzinfo`` objects.
|
||||
This module attempts to fix a glaring hole in ``pytz``, that there is no way to
|
||||
get the local timezone information, unless you know the zoneinfo name, and
|
||||
under several Linux distros that's hard or impossible to figure out.
|
||||
Also, with Windows different timezone system using pytz isn't of much use
|
||||
unless you separately configure the zoneinfo timezone name.
|
||||
With ``tzlocal`` you only need to call ``get_localzone()`` and you will get a
|
||||
``tzinfo`` object with the local time zone info. On some Unices you will still
|
||||
not get to know what the timezone name is, but you don't need that when you
|
||||
have the tzinfo file. However, if the timezone name is readily available it
|
||||
will be used.
|
||||
|
||||
%package help
|
||||
Summary: Development documents and examples for tzlocal
|
||||
Provides: python3-tzlocal-doc
|
||||
%description help
|
||||
This Python module returns a ``tzinfo`` object with the local timezone information under Unix and Win-32.
|
||||
It requires ``pytz``, and returns ``pytz`` ``tzinfo`` objects.
|
||||
This module attempts to fix a glaring hole in ``pytz``, that there is no way to
|
||||
get the local timezone information, unless you know the zoneinfo name, and
|
||||
under several Linux distros that's hard or impossible to figure out.
|
||||
Also, with Windows different timezone system using pytz isn't of much use
|
||||
unless you separately configure the zoneinfo timezone name.
|
||||
With ``tzlocal`` you only need to call ``get_localzone()`` and you will get a
|
||||
``tzinfo`` object with the local time zone info. On some Unices you will still
|
||||
not get to know what the timezone name is, but you don't need that when you
|
||||
have the tzinfo file. However, if the timezone name is readily available it
|
||||
will be used.
|
||||
|
||||
%prep
|
||||
%autosetup -n tzlocal-2.1
|
||||
|
||||
%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-tzlocal -f filelist.lst
|
||||
%dir %{python3_sitelib}/*
|
||||
|
||||
%files help -f doclist.lst
|
||||
%{_docdir}/*
|
||||
|
||||
%changelog
|
||||
* Tue Aug 18 2020 Python_Bot <Python_Bot@openeuler.org>
|
||||
- Package Spec generated
|
||||
BIN
tzlocal-2.1.tar.gz
Normal file
BIN
tzlocal-2.1.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user