diff options
author | CoprDistGit <infra@openeuler.org> | 2023-05-05 11:37:55 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 11:37:55 +0000 |
commit | a7a8e81cd12b0f6209f9c1583706b7662f62b2b9 (patch) | |
tree | ce38bcde7dae9cc5c3b5f9b4354ea8801ad267ab | |
parent | 60b21110276168e98ff81d36d4d8a3431cdb2e82 (diff) |
automatic import of python-vaex-arrowopeneuler20.03
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-vaex-arrow.spec | 76 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 78 insertions, 0 deletions
@@ -0,0 +1 @@ +/vaex-arrow-0.5.1.tar.gz diff --git a/python-vaex-arrow.spec b/python-vaex-arrow.spec new file mode 100644 index 0000000..f483657 --- /dev/null +++ b/python-vaex-arrow.spec @@ -0,0 +1,76 @@ +%global _empty_manifest_terminate_build 0 +Name: python-vaex-arrow +Version: 0.5.1 +Release: 1 +Summary: Arrow support for vaex +License: MIT +URL: https://www.github.com/maartenbreddels/vaex +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e1/57/0dd179815680276d167b224cd88694717c69dd9ae466ca15a289cbed67a0/vaex-arrow-0.5.1.tar.gz +BuildArch: noarch + +Requires: python3-vaex-core +Requires: python3-matplotlib +Requires: python3-pillow +Requires: python3-pyarrow + +%description + + +%package -n python3-vaex-arrow +Summary: Arrow support for vaex +Provides: python-vaex-arrow +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-vaex-arrow + + +%package help +Summary: Development documents and examples for vaex-arrow +Provides: python3-vaex-arrow-doc +%description help + + +%prep +%autosetup -n vaex-arrow-0.5.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-vaex-arrow -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.1-1 +- Package Spec generated @@ -0,0 +1 @@ +7d5bd840a8021b6837e8a67124d5844a vaex-arrow-0.5.1.tar.gz |