summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 15:05:17 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 15:05:17 +0000
commit3fca2653a4378a46e8ddc9ab88d6f500cb13ab92 (patch)
treefe56749f6d19dd8617559331200c97fef5dff70d
parent7750ecf2447450ba6055576c0e51bceb5b34df30 (diff)
automatic import of python-pkgwat-api
-rw-r--r--.gitignore1
-rw-r--r--python-pkgwat-api.spec81
-rw-r--r--sources1
3 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..57589c0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pkgwat.api-0.13.tar.gz
diff --git a/python-pkgwat-api.spec b/python-pkgwat-api.spec
new file mode 100644
index 0000000..280573e
--- /dev/null
+++ b/python-pkgwat-api.spec
@@ -0,0 +1,81 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pkgwat.api
+Version: 0.13
+Release: 1
+Summary: Python API for querying the fedora packages webapp
+License: LGPLv2+
+URL: http://github.com/fedora-infra/pkgwat.api
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a1/e0/a034931593f4c0ab8644acd156604b21679256e9e0ad5d1e7f29fe2f0e2b/pkgwat.api-0.13.tar.gz
+BuildArch: noarch
+
+
+%description
+Make sure you have ``virtualenv`` installed and create a new venv::
+ $ virtualenv env
+ $ source env/bin/activate
+ $ pip install -e .
+
+%package -n python3-pkgwat.api
+Summary: Python API for querying the fedora packages webapp
+Provides: python-pkgwat.api
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pkgwat.api
+Make sure you have ``virtualenv`` installed and create a new venv::
+ $ virtualenv env
+ $ source env/bin/activate
+ $ pip install -e .
+
+%package help
+Summary: Development documents and examples for pkgwat.api
+Provides: python3-pkgwat.api-doc
+%description help
+Make sure you have ``virtualenv`` installed and create a new venv::
+ $ virtualenv env
+ $ source env/bin/activate
+ $ pip install -e .
+
+%prep
+%autosetup -n pkgwat.api-0.13
+
+%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-pkgwat.api -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.13-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..2e613e2
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+d016a6bd2ed5659ec040ab4c76ad12ed pkgwat.api-0.13.tar.gz