summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-12 03:21:35 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-12 03:21:35 +0000
commite448d644ca44aa570da010285d785463932058b5 (patch)
tree1792461fda79f65ecbb5444036ca0a08bcffd37c
parent68a2720820651c2411cc4d631b58abc2c5a6880e (diff)
automatic import of python-git-review
-rw-r--r--.gitignore1
-rw-r--r--python-git-review.spec91
-rw-r--r--sources1
3 files changed, 93 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..9e4baff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/git-review-2.3.1.tar.gz
diff --git a/python-git-review.spec b/python-git-review.spec
new file mode 100644
index 0000000..099a297
--- /dev/null
+++ b/python-git-review.spec
@@ -0,0 +1,91 @@
+%global _empty_manifest_terminate_build 0
+Name: python-git-review
+Version: 2.3.1
+Release: 1
+Summary: Tool to submit code to Gerrit
+License: Apache License, Version 2.0
+URL: http://docs.opendev.org/opendev/git-review
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/8e/5c/18f534e16b193be36d140939b79a8046e07f343b426054c084b12d59cf0b/git-review-2.3.1.tar.gz
+BuildArch: noarch
+
+Requires: python3-requests
+
+%description
+A git command for submitting branches to Gerrit
+git-review is a tool that helps submitting Git branches to Gerrit for
+review.
+* Free software: Apache license
+* Documentation: http://docs.opendev.org/opendev/git-review
+* Source: https://opendev.org/opendev/git-review
+* Bugs: https://storyboard.openstack.org/#!/project/opendev/git-review
+
+%package -n python3-git-review
+Summary: Tool to submit code to Gerrit
+Provides: python-git-review
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-git-review
+A git command for submitting branches to Gerrit
+git-review is a tool that helps submitting Git branches to Gerrit for
+review.
+* Free software: Apache license
+* Documentation: http://docs.opendev.org/opendev/git-review
+* Source: https://opendev.org/opendev/git-review
+* Bugs: https://storyboard.openstack.org/#!/project/opendev/git-review
+
+%package help
+Summary: Development documents and examples for git-review
+Provides: python3-git-review-doc
+%description help
+A git command for submitting branches to Gerrit
+git-review is a tool that helps submitting Git branches to Gerrit for
+review.
+* Free software: Apache license
+* Documentation: http://docs.opendev.org/opendev/git-review
+* Source: https://opendev.org/opendev/git-review
+* Bugs: https://storyboard.openstack.org/#!/project/opendev/git-review
+
+%prep
+%autosetup -n git-review-2.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-git-review -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed Apr 12 2023 Python_Bot <Python_Bot@openeuler.org> - 2.3.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8a08d54
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+3f9f3fea078d5efcef9eeea2b8fab25c git-review-2.3.1.tar.gz