diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 11:25:50 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 11:25:50 +0000 |
commit | 3603219271e3d714fd1b03ba4135d064851e3042 (patch) | |
tree | 50c5d635087e99f5bb99b2a49926e1aa57b6c49b | |
parent | 77f55684f8df31951a809df4b57a947eaebdb646 (diff) |
automatic import of python-altgraph
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-altgraph.spec | 72 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 74 insertions, 0 deletions
@@ -0,0 +1 @@ +/altgraph-0.17.3.tar.gz diff --git a/python-altgraph.spec b/python-altgraph.spec new file mode 100644 index 0000000..e8e438f --- /dev/null +++ b/python-altgraph.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-altgraph +Version: 0.17.3 +Release: 1 +Summary: Python graph (network) package +License: MIT +URL: https://altgraph.readthedocs.io +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5a/13/a7cfa43856a7b8e4894848ec8f71cd9e1ac461e51802391a3e2101c60ed6/altgraph-0.17.3.tar.gz +BuildArch: noarch + + +%description + + +%package -n python3-altgraph +Summary: Python graph (network) package +Provides: python-altgraph +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-altgraph + + +%package help +Summary: Development documents and examples for altgraph +Provides: python3-altgraph-doc +%description help + + +%prep +%autosetup -n altgraph-0.17.3 + +%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-altgraph -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.17.3-1 +- Package Spec generated @@ -0,0 +1 @@ +735a8816a1d36f24b0a5c27e424e8412 altgraph-0.17.3.tar.gz |