commit 1446848fa0dcb05bd2550fde8e61964341582db5fc780dc28b022b9779c36274 Author: Matej Cepl Date: Mon Jun 24 16:54:48 2019 +0000 Accepting request 711685 from home:sebix can also maintain it OBS-URL: https://build.opensuse.org/request/show/711685 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-geolib?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/geolib-1.0.7.tar.gz b/geolib-1.0.7.tar.gz new file mode 100644 index 0000000..98b0aca --- /dev/null +++ b/geolib-1.0.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4637ca9bf6d97a8b1ad22a95d67afd38bc30c2c9a701787347e380c4618cb19 +size 15458 diff --git a/python-geolib.changes b/python-geolib.changes new file mode 100644 index 0000000..871b771 --- /dev/null +++ b/python-geolib.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Jun 24 11:28:51 UTC 2019 - Sebastian Wagner + +- initial package diff --git a/python-geolib.spec b/python-geolib.spec new file mode 100644 index 0000000..a62a84b --- /dev/null +++ b/python-geolib.spec @@ -0,0 +1,70 @@ +# +# spec file for package python-geolib +# +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-geolib +Version: 1.0.7 +Release: 0 +License: MIT +Summary: A library for geohash encoding, decoding and associated functions +Url: https://geolib.readthedocs.io/en/latest/ +Group: Development/Languages/Python +# does not include license, docs, tests: https://github.com/joyanujoy/geolib/issues/1 +#Source: https://files.pythonhosted.org/packages/source/g/geolib/geolib-%{version}.tar.gz +Source: https://github.com/joyanujoy/geolib/archive/%{version}.tar.gz#/geolib-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +# SECTION test requirements +BuildRequires: %{python_module future} +BuildRequires: %{python_module pytest} +# /SECTION +# SECTION docs requirements +BuildRequires: python3-Sphinx +# /SECTION +BuildRequires: fdupes +Requires: python-future +BuildArch: noarch + +%python_subpackages + +%description +A python library for geohash encoding, decoding and finding neighbour cells. This is a python port of [Chris Veness' javascript implementation](https://www.movable-type.co.uk/scripts/geohash.html). + +%prep +%setup -q -n geolib-%{version} + +%build +%python_build +pushd docs +make html +rm _build/html/.buildinfo +rm _build/html/.nojekyll +popd + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib}a + +%check +%pytest + +%files %{python_files} +%doc README.md docs/_build/ +%license LICENSE +%{python_sitelib}/* + +%changelog