summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-05 05:21:40 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-05 05:21:40 +0000
commit5100ce323b90d649a0ac59c3d735ab9d64d575a3 (patch)
treee68ea72713a96584cbd6f2d1d44b1120ba6e50d3
parent2b9a590b4b9e31eff233945eb937909e4a9db85a (diff)
automatic import of python-procnameopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-procname.spec84
-rw-r--r--sources1
3 files changed, 86 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..a85803d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/sources b/sources
new file mode 100644
index 0000000..bcc5103
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+0c5c652d6be27167a81742e5c3d5f4df procname-0.3.tar.gz