summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 21:56:50 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 21:56:50 +0000
commit7a4e1b24597c1a1b6601570cdbbf9ad25b415c8c (patch)
treeaac4e963a0419907edda9f7516391444cb35ced3
parentac121f3973bd34e897ce4a1b6d5af2f79979db74 (diff)
automatic import of python-canvas
-rw-r--r--.gitignore1
-rw-r--r--python-canvas.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..d6a83ae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/canvas-0.3.tar.gz
diff --git a/python-canvas.spec b/python-canvas.spec
new file mode 100644
index 0000000..bcb15c8
--- /dev/null
+++ b/python-canvas.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-canvas
+Version: 0.3
+Release: 1
+Summary: a minimallist abstraction layer on top of matplotlib
+License: BSD
+URL: https://github.com/mdipierro/canvas
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a1/67/1f1533a8b86068f4b49e539270c48d1f1295355547dad6c6ff7679812323/canvas-0.3.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-canvas
+Summary: a minimallist abstraction layer on top of matplotlib
+Provides: python-canvas
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-canvas
+
+
+%package help
+Summary: Development documents and examples for canvas
+Provides: python3-canvas-doc
+%description help
+
+
+%prep
+%autosetup -n canvas-0.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-canvas -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.3-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..83b8b00
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+0bda0eaf8a050d8204275c6c4720013c canvas-0.3.tar.gz