71 lines
2.2 KiB
RPMSpec
71 lines
2.2 KiB
RPMSpec
|
#
|
||
|
# 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
|