diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-procname.spec | 84 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 86 insertions, 0 deletions
@@ -0,0 +1 @@ +/procname-0.3.tar.gz diff --git a/python-procname.spec b/python-procname.spec new file mode 100644 index 0000000..093fb8c --- /dev/null +++ b/python-procname.spec @@ -0,0 +1,84 @@ +%global _empty_manifest_terminate_build 0 +Name: python-procname +Version: 0.3 +Release: 1 +Summary: Set process titles in Python programs +License: UNKNOWN +URL: http://github.com/lericson/procname/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5e/d5/3335804d10d8759f0f10e64a53e2da82e5c0af9f31a90a18947f33edf90b/procname-0.3.tar.gz +BuildArch: noarch + + +%description +This module allows you to set the process title of a process under at least +Linux and Mac OS X. Usage:: + + >>> import procname + >>> procname.setprocname("hello world") + +%package -n python3-procname +Summary: Set process titles in Python programs +Provides: python-procname +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-procname +This module allows you to set the process title of a process under at least +Linux and Mac OS X. Usage:: + + >>> import procname + >>> procname.setprocname("hello world") + +%package help +Summary: Development documents and examples for procname +Provides: python3-procname-doc +%description help +This module allows you to set the process title of a process under at least +Linux and Mac OS X. Usage:: + + >>> import procname + >>> procname.setprocname("hello world") + +%prep +%autosetup -n procname-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-procname -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3-1 +- Package Spec generated @@ -0,0 +1 @@ +0c5c652d6be27167a81742e5c3d5f4df procname-0.3.tar.gz |
