Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geopy/
Date: Sun, 01 Aug 2021 13:08:31
Message-Id: 1627823282.0f81a83cc3011f51ff66d1a7ee416f40f1b05ecb.tupone@gentoo
1 commit: 0f81a83cc3011f51ff66d1a7ee416f40f1b05ecb
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 1 13:08:02 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 1 13:08:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f81a83c
7
8 sci-geosciences/geopy: geocoding library for python
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
12
13 sci-geosciences/geopy/Manifest | 1 +
14 sci-geosciences/geopy/geopy-2.2.0.ebuild | 21 +++++++++++++++++++++
15 sci-geosciences/geopy/metadata.xml | 17 +++++++++++++++++
16 3 files changed, 39 insertions(+)
17
18 diff --git a/sci-geosciences/geopy/Manifest b/sci-geosciences/geopy/Manifest
19 new file mode 100644
20 index 00000000000..a67caaea0ae
21 --- /dev/null
22 +++ b/sci-geosciences/geopy/Manifest
23 @@ -0,0 +1 @@
24 +DIST geopy-2.2.0.tar.gz 289811 BLAKE2B f876a867a19e5178eba1fa6b7389159e820fc6a9c9a6ac4beb807e2b1b121612a526b5f7290d5fd6db3e259cbd03a86695775d4cad39662126d5f5b7194b19bd SHA512 78b6c2e4726dd50ad97e3425a0459b4611eed54c06c16a2b397db9c3fd9878d76f9eba26ce353908315fea469a76b4044401f5ba37aab3752e9649fd35db16cd
25
26 diff --git a/sci-geosciences/geopy/geopy-2.2.0.ebuild b/sci-geosciences/geopy/geopy-2.2.0.ebuild
27 new file mode 100644
28 index 00000000000..f06c131bf15
29 --- /dev/null
30 +++ b/sci-geosciences/geopy/geopy-2.2.0.ebuild
31 @@ -0,0 +1,21 @@
32 +# Copyright 2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{8,9} )
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python client for several popular geocoding web services"
41 +HOMEPAGE="https://github.com/geopy/geopy"
42 +SRC_URI="${HOMEPAGE}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +# Need geocoding service to test
48 +RESTRICT="test"
49 +
50 +RDEPEND="sci-geosciences/GeographicLib[python,${PYTHON_USEDEP}]"
51 +DEPEND="${RDEPEND}"
52 +BDEPEND=""
53
54 diff --git a/sci-geosciences/geopy/metadata.xml b/sci-geosciences/geopy/metadata.xml
55 new file mode 100644
56 index 00000000000..17a8d5bb106
57 --- /dev/null
58 +++ b/sci-geosciences/geopy/metadata.xml
59 @@ -0,0 +1,17 @@
60 +<?xml version="1.0" encoding="UTF-8"?>
61 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
62 +<pkgmetadata>
63 + <maintainer type="person">
64 + <email>tupone@g.o</email>
65 + <name>Tupone Alfredo</name>
66 + </maintainer>
67 + <longdescription lang="en">
68 + geopy is a Python client for several popular geocoding web services.
69 + geopy makes it easy for Python developers to locate the coordinates
70 + of addresses, cities, countries, and landmarks across the globe using
71 + third-party geocoders and other data sources.
72 + </longdescription>
73 + <upstream>
74 + <remote-id type="github">geopy/geopy</remote-id>
75 + </upstream>
76 +</pkgmetadata>