From 121fad3a871a3138467e07422d08dab1f5303b49 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 09:01:57 +0000 Subject: automatic import of python-pause --- .gitignore | 1 + python-pause.spec | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 80 insertions(+) create mode 100644 python-pause.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..6344d55 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/pause-0.3.tar.gz diff --git a/python-pause.spec b/python-pause.spec new file mode 100644 index 0000000..e9f2fd5 --- /dev/null +++ b/python-pause.spec @@ -0,0 +1,78 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pause +Version: 0.3 +Release: 1 +Summary: A timestamp-based sleep function for Python. +License: LICENSE.txt +URL: https://github.com/jgillick/python-pause +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/9f/7f/e48f80883c7a74a3303d0a62f1d48b3f6a097420ad9eda23e8fc6e07be2b/pause-0.3.tar.gz +BuildArch: noarch + + +%description +Suspend the execution of your program for a given amount of time. This works similarly to ``time.sleep``, but uses your computers timestamp to track time, versus a counter. +For example, traditionally using ``time.sleep(3600)``, will pause the program for 60 minutes. If your computer goes into standby mode during minute one, and wakes up several hours later, your program will continue to be paused for 59 minutes. +On the other hand, with ``pause.seconds(3600)``, if your computer goes into standby mode for several hours, the program will continue immediately after the machine wakes back up since the minimum amount of time has passed since the pause was started. + +%package -n python3-pause +Summary: A timestamp-based sleep function for Python. +Provides: python-pause +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pause +Suspend the execution of your program for a given amount of time. This works similarly to ``time.sleep``, but uses your computers timestamp to track time, versus a counter. +For example, traditionally using ``time.sleep(3600)``, will pause the program for 60 minutes. If your computer goes into standby mode during minute one, and wakes up several hours later, your program will continue to be paused for 59 minutes. +On the other hand, with ``pause.seconds(3600)``, if your computer goes into standby mode for several hours, the program will continue immediately after the machine wakes back up since the minimum amount of time has passed since the pause was started. + +%package help +Summary: Development documents and examples for pause +Provides: python3-pause-doc +%description help +Suspend the execution of your program for a given amount of time. This works similarly to ``time.sleep``, but uses your computers timestamp to track time, versus a counter. +For example, traditionally using ``time.sleep(3600)``, will pause the program for 60 minutes. If your computer goes into standby mode during minute one, and wakes up several hours later, your program will continue to be paused for 59 minutes. +On the other hand, with ``pause.seconds(3600)``, if your computer goes into standby mode for several hours, the program will continue immediately after the machine wakes back up since the minimum amount of time has passed since the pause was started. + +%prep +%autosetup -n pause-0.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-pause -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 0.3-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..c9c5167 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +c4e90d6273818d2db5bf2f58dd9e1d04 pause-0.3.tar.gz -- cgit v1.2.3