summaryrefslogtreecommitdiff
path: root/python-squarify.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 18:29:14 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 18:29:14 +0000
commit91a657e8d5e8a0d612fbb06485ab10667cdd4214 (patch)
tree32c4b11a65edaeeebd7c6f00df40d1972ba2ceb8 /python-squarify.spec
parent64be3d67efc9cd45dc14495cdf4801224247ff45 (diff)
automatic import of python-squarify
Diffstat (limited to 'python-squarify.spec')
-rw-r--r--python-squarify.spec72
1 files changed, 72 insertions, 0 deletions
diff --git a/python-squarify.spec b/python-squarify.spec
new file mode 100644
index 0000000..7afb9a1
--- /dev/null
+++ b/python-squarify.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-squarify
+Version: 0.4.3
+Release: 1
+Summary: Pure Python implementation of the squarify treemap layout algorithm
+License: Apache v2
+URL: https://github.com/laserson/squarify
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/af/02/ac3297735a2af8dc6be48dd0dc2304c892d155dc685f7ad2d33ce2cf76ea/squarify-0.4.3.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-squarify
+Summary: Pure Python implementation of the squarify treemap layout algorithm
+Provides: python-squarify
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-squarify
+
+
+%package help
+Summary: Development documents and examples for squarify
+Provides: python3-squarify-doc
+%description help
+
+
+%prep
+%autosetup -n squarify-0.4.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-squarify -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.3-1
+- Package Spec generated