summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-threading2.spec159
-rw-r--r--sources1
3 files changed, 161 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..7153502 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/threading2-0.3.1.tar.gz
diff --git a/python-threading2.spec b/python-threading2.spec
new file mode 100644
index 0000000..a043584
--- /dev/null
+++ b/python-threading2.spec
@@ -0,0 +1,159 @@
+%global _empty_manifest_terminate_build 0
+Name: python-threading2
+Version: 0.3.1
+Release: 1
+Summary: like the standard threading module, but awesomer
+License: MIT
+URL: http://github.com/rfk/threading2
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b5/3a/283e51fa979d372139dc724d34ece957fbfc709b1ae7006b82ceb459fd4d/threading2-0.3.1.tar.gz
+BuildArch: noarch
+
+
+%description
+threading2: like the standard threading module, but awesomer.
+
+This module is designed as a drop-in replacement and extension for the default
+"threading" module. It has two main objectives:
+
+ * implement primitives using native platform functionality where possible
+ * expose more sophisticated functionality where it can be done uniformly
+
+The following extensions are currently implemented:
+
+ * ability to set (advisory) thread priority
+ * ability to set (advisory) CPU affinity at thread and process level
+ * thread groups for simultaneous management of multiple threads
+ * SHLock class for shared/exclusive (also known as read/write) locks
+
+The following API niceties are also included:
+
+ * all blocking methods take a "timeout" argument and return a success code
+ * all exposed objects are actual classes and can be safely subclassed
+
+This has currently only been tested on WinXP and Ubuntu Karmic; similar
+platforms *should* work OK, and other platforms *should* fall back to using
+sensible default behaviour, but I'm not making any guarantees at this stage.
+
+Additional planned extensions include:
+
+ * make stack_size a kwarg when creating a thread
+ * native events, semaphores and timed waits on win32
+ * native conditions and timed waits on pthreads platforms
+ * native SHLock implementations (SRW on Win Vista+, pthread_rwlock)
+
+%package -n python3-threading2
+Summary: like the standard threading module, but awesomer
+Provides: python-threading2
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-threading2
+threading2: like the standard threading module, but awesomer.
+
+This module is designed as a drop-in replacement and extension for the default
+"threading" module. It has two main objectives:
+
+ * implement primitives using native platform functionality where possible
+ * expose more sophisticated functionality where it can be done uniformly
+
+The following extensions are currently implemented:
+
+ * ability to set (advisory) thread priority
+ * ability to set (advisory) CPU affinity at thread and process level
+ * thread groups for simultaneous management of multiple threads
+ * SHLock class for shared/exclusive (also known as read/write) locks
+
+The following API niceties are also included:
+
+ * all blocking methods take a "timeout" argument and return a success code
+ * all exposed objects are actual classes and can be safely subclassed
+
+This has currently only been tested on WinXP and Ubuntu Karmic; similar
+platforms *should* work OK, and other platforms *should* fall back to using
+sensible default behaviour, but I'm not making any guarantees at this stage.
+
+Additional planned extensions include:
+
+ * make stack_size a kwarg when creating a thread
+ * native events, semaphores and timed waits on win32
+ * native conditions and timed waits on pthreads platforms
+ * native SHLock implementations (SRW on Win Vista+, pthread_rwlock)
+
+%package help
+Summary: Development documents and examples for threading2
+Provides: python3-threading2-doc
+%description help
+threading2: like the standard threading module, but awesomer.
+
+This module is designed as a drop-in replacement and extension for the default
+"threading" module. It has two main objectives:
+
+ * implement primitives using native platform functionality where possible
+ * expose more sophisticated functionality where it can be done uniformly
+
+The following extensions are currently implemented:
+
+ * ability to set (advisory) thread priority
+ * ability to set (advisory) CPU affinity at thread and process level
+ * thread groups for simultaneous management of multiple threads
+ * SHLock class for shared/exclusive (also known as read/write) locks
+
+The following API niceties are also included:
+
+ * all blocking methods take a "timeout" argument and return a success code
+ * all exposed objects are actual classes and can be safely subclassed
+
+This has currently only been tested on WinXP and Ubuntu Karmic; similar
+platforms *should* work OK, and other platforms *should* fall back to using
+sensible default behaviour, but I'm not making any guarantees at this stage.
+
+Additional planned extensions include:
+
+ * make stack_size a kwarg when creating a thread
+ * native events, semaphores and timed waits on win32
+ * native conditions and timed waits on pthreads platforms
+ * native SHLock implementations (SRW on Win Vista+, pthread_rwlock)
+
+%prep
+%autosetup -n threading2-0.3.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-threading2 -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..923f945
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d663fbe399c440b2882b568642fa5d11 threading2-0.3.1.tar.gz