summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-18 05:37:10 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-18 05:37:10 +0000
commit64e96718048d89ad9fb128ccca1bfb306f318f93 (patch)
tree4a9de328b7de67cfe885d5978c5eea5316ed26b8
parent77de707ae9de7da7dcf415147babb0f2db6d59e0 (diff)
automatic import of python-kitchensink
-rw-r--r--.gitignore1
-rw-r--r--python-kitchensink.spec72
-rw-r--r--sources1
3 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..f484cc1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/KitchenSink-0.1.0.tar.gz
diff --git a/python-kitchensink.spec b/python-kitchensink.spec
new file mode 100644
index 0000000..734ce48
--- /dev/null
+++ b/python-kitchensink.spec
@@ -0,0 +1,72 @@
+%global _empty_manifest_terminate_build 0
+Name: python-KitchenSink
+Version: 0.1.0
+Release: 1
+Summary: a smarter pager
+License: MIT
+URL: http://github.com/okayzed/kk
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/5e/ef/bc1eb987e04fdbc8893d90f14e503e2d79b546d46f7afb0b88c7cead5079/KitchenSink-0.1.0.tar.gz
+BuildArch: noarch
+
+
+%description
+
+
+%package -n python3-KitchenSink
+Summary: a smarter pager
+Provides: python-KitchenSink
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-KitchenSink
+
+
+%package help
+Summary: Development documents and examples for KitchenSink
+Provides: python3-KitchenSink-doc
+%description help
+
+
+%prep
+%autosetup -n KitchenSink-0.1.0
+
+%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-KitchenSink -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu May 18 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..dfb7fd7
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+5dee8d471e681789d6ac7d909ad00104 KitchenSink-0.1.0.tar.gz