summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-31 05:56:07 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-31 05:56:07 +0000
commit5fb8fb9bf3a7fc3ade00e6ddd200926e27fbd38f (patch)
tree2d642a4ea40c332565a27af5f4e44b78190423df
parent04571833fdb856e49ace65e9478bda8dead2b823 (diff)
automatic import of python-liblas
-rw-r--r--.gitignore1
-rw-r--r--python-liblas.spec81
-rw-r--r--sources1
3 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..c534c90 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libLAS-1.8.1.tar.gz
diff --git a/python-liblas.spec b/python-liblas.spec
new file mode 100644
index 0000000..0f72303
--- /dev/null
+++ b/python-liblas.spec
@@ -0,0 +1,81 @@
+%global _empty_manifest_terminate_build 0
+Name: python-libLAS
+Version: 1.8.1
+Release: 1
+Summary: LAS 1.0/1.1/1.2 LiDAR data format translation
+License: BSD
+URL: http://liblas.org
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2f/13/1d233142092b9dcfbfd47ec9f3380361e5a7b9061408a809005abe0e60aa/libLAS-1.8.1.tar.gz
+BuildArch: noarch
+
+
+%description
+The Python bindings require the libLAS base C and C++ libraries be installed.
+Obtain a source copy of the library from http://liblas.org/download.html and
+follow the compilation instructions at http://liblas.org/compilation.html to
+build and install the library.
+
+%package -n python3-libLAS
+Summary: LAS 1.0/1.1/1.2 LiDAR data format translation
+Provides: python-libLAS
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-libLAS
+The Python bindings require the libLAS base C and C++ libraries be installed.
+Obtain a source copy of the library from http://liblas.org/download.html and
+follow the compilation instructions at http://liblas.org/compilation.html to
+build and install the library.
+
+%package help
+Summary: Development documents and examples for libLAS
+Provides: python3-libLAS-doc
+%description help
+The Python bindings require the libLAS base C and C++ libraries be installed.
+Obtain a source copy of the library from http://liblas.org/download.html and
+follow the compilation instructions at http://liblas.org/compilation.html to
+build and install the library.
+
+%prep
+%autosetup -n libLAS-1.8.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-libLAS -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.8.1-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..508e896
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+93921e0c37d47b03eea8529aa31d9073 libLAS-1.8.1.tar.gz