diff options
Diffstat (limited to 'python-git-review.spec')
| -rw-r--r-- | python-git-review.spec | 91 |
1 files changed, 91 insertions, 0 deletions
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 |
