summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 09:33:43 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 09:33:43 +0000
commit7b525db3af1a896531711e6b57ec72b738b38e26 (patch)
treea55b7b750e1ee997b1d53858c1717a8cefa73928
parent9068df59c790351d752968acdfaaad1cf3556f96 (diff)
automatic import of python-pygerritopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-pygerrit.spec75
-rw-r--r--sources1
3 files changed, 77 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..0326ce8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pygerrit-1.0.0.tar.gz
diff --git a/python-pygerrit.spec b/python-pygerrit.spec
new file mode 100644
index 0000000..19ae086
--- /dev/null
+++ b/python-pygerrit.spec
@@ -0,0 +1,75 @@
+%global _empty_manifest_terminate_build 0
+Name: python-pygerrit
+Version: 1.0.0
+Release: 1
+Summary: Client library for interacting with Gerrit
+License: The MIT License
+URL: https://github.com/sonyxperiadev/pygerrit
+Source0: https://mirrors.aliyun.com/pypi/web/packages/04/9b/fd6b6169c59b2e5d19a5b50b0d9ab18ffd3126726e4a2dd9f0dcfd7ca2e6/pygerrit-1.0.0.tar.gz
+BuildArch: noarch
+
+
+%description
+Pygerrit provides a simple interface for clients to interact with
+`Gerrit Code Review`_ via ssh or the REST API.
+
+%package -n python3-pygerrit
+Summary: Client library for interacting with Gerrit
+Provides: python-pygerrit
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-pygerrit
+Pygerrit provides a simple interface for clients to interact with
+`Gerrit Code Review`_ via ssh or the REST API.
+
+%package help
+Summary: Development documents and examples for pygerrit
+Provides: python3-pygerrit-doc
+%description help
+Pygerrit provides a simple interface for clients to interact with
+`Gerrit Code Review`_ via ssh or the REST API.
+
+%prep
+%autosetup -n pygerrit-1.0.0
+
+%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-pygerrit -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..34d5a06
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+7a1fb8842fcab106e93bf563ccd351fb pygerrit-1.0.0.tar.gz