summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-11 03:00:15 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-11 03:00:15 +0000
commit42880eeb63141ab8c2b74f14943a49b4b83ef6ff (patch)
treefce05b2ca413ce469cd41f4e03e302599897563b
parent7df786f46e8b7dba1b7b535b853387e837a2dbb6 (diff)
automatic import of python-vincenty
-rw-r--r--.gitignore1
-rw-r--r--python-vincenty.spec93
-rw-r--r--sources1
3 files changed, 95 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..e64052b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/vincenty-0.1.4.tar.gz
diff --git a/python-vincenty.spec b/python-vincenty.spec
new file mode 100644
index 0000000..8e524cd
--- /dev/null
+++ b/python-vincenty.spec
@@ -0,0 +1,93 @@
+%global _empty_manifest_terminate_build 0
+Name: python-vincenty
+Version: 0.1.4
+Release: 1
+Summary: Calculate the geographical distance between 2 points with extreme accuracy.
+License: Unlicense
+URL: https://github.com/maurycyp/vincenty
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c4/de/296372fde237fdda627fb6127a34689a3c1b25b6531a180060bf8e11457f/vincenty-0.1.4.tar.gz
+BuildArch: noarch
+
+
+%description
+Calculate the geographical distance (in kilometers or miles) between 2 points
+with extreme accuracy.
+This library implements Vincenty's solution to the inverse geodetic problem. It
+is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or
+better.
+This formula is widely used in geographic information systems (GIS) and is much
+more accurate than methods for computing the great-circle distance (which assume
+a spherical Earth).
+
+%package -n python3-vincenty
+Summary: Calculate the geographical distance between 2 points with extreme accuracy.
+Provides: python-vincenty
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-vincenty
+Calculate the geographical distance (in kilometers or miles) between 2 points
+with extreme accuracy.
+This library implements Vincenty's solution to the inverse geodetic problem. It
+is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or
+better.
+This formula is widely used in geographic information systems (GIS) and is much
+more accurate than methods for computing the great-circle distance (which assume
+a spherical Earth).
+
+%package help
+Summary: Development documents and examples for vincenty
+Provides: python3-vincenty-doc
+%description help
+Calculate the geographical distance (in kilometers or miles) between 2 points
+with extreme accuracy.
+This library implements Vincenty's solution to the inverse geodetic problem. It
+is based on the WGS 84 reference ellipsoid and is accurate to within 1 mm (!) or
+better.
+This formula is widely used in geographic information systems (GIS) and is much
+more accurate than methods for computing the great-circle distance (which assume
+a spherical Earth).
+
+%prep
+%autosetup -n vincenty-0.1.4
+
+%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-vincenty -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.4-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8221668
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+cc7f93eab24ffa5594a6f2a4fc65fb9b vincenty-0.1.4.tar.gz