diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-05 04:17:52 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 04:17:52 +0000 |
commit | 508411a8c6d3268b36c8d9cde8a4f98238f2887a (patch) | |
tree | ac20cd4f0a16711852165890a35adc50e63820b2 | |
parent | e61610422a1ac322f065c57b448f1b14398e8cba (diff) |
automatic import of python-pygitopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-pygit.spec | 78 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 80 insertions, 0 deletions
@@ -0,0 +1 @@ +/pygit-0.1.tar.gz diff --git a/python-pygit.spec b/python-pygit.spec new file mode 100644 index 0000000..ef61928 --- /dev/null +++ b/python-pygit.spec @@ -0,0 +1,78 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pygit +Version: 0.1 +Release: 1 +Summary: Pythonic bindings for git +License: LGPL +URL: http://code.istique.net +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/cd/e8/839dacf13a5de30eff7e0815a3cfc051bd80532f83d862e0c14433b03286/pygit-0.1.tar.gz +BuildArch: noarch + + +%description +Pythonic bindings for git.
+Those bindings map the object representation of git in a rather low level, and
+allows editing a repository. + +%package -n python3-pygit +Summary: Pythonic bindings for git +Provides: python-pygit +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pygit +Pythonic bindings for git.
+Those bindings map the object representation of git in a rather low level, and
+allows editing a repository. + +%package help +Summary: Development documents and examples for pygit +Provides: python3-pygit-doc +%description help +Pythonic bindings for git.
+Those bindings map the object representation of git in a rather low level, and
+allows editing a repository. + +%prep +%autosetup -n pygit-0.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-pygit -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1-1 +- Package Spec generated @@ -0,0 +1 @@ +8ccaa2a30c9224366362c9c29bc50d93 pygit-0.1.tar.gz |