add google_travel_time

This commit is contained in:
Andreas Billmeier 2019-06-02 13:12:55 +02:00
parent d4d157f8d2
commit ee6e164d5d
4 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,5 @@
DIST googlemaps-2.5.1.tar.gz 26434 BLAKE2B 1d46c1613e589254b08fb63f2e2e028aa0475ef74471d39c57fdcb3e2f998c31a8ea4d0efce27aafd9f95d9fb3271e7b8cf3da7c98d46982641268c11e9a561c SHA512 7580af07fcf6f08447a7a40f84cf2350ec0c07ea80e60154ea827b3d6848afd11e913d0f87cdc5c39ef586be5235986d4ead77ed77f3a45a3c4f0736902277f6
DIST googlemaps-3.0.2.tar.gz 24705 BLAKE2B 3cd94e71e1f045755bdb6d5dbae29669d31ee83247192ddab9abe1ba085b4a94c9c34a50d8dd3d059fd48b9b1d1f115d7ceff3317d4828ebe0b7ed56e31dc1d4 SHA512 71ef70b1499243d7f1087b99919e687b831b3410235a8d9237c6defbb648632aba6353dbea059f0621cbc73a56374ac79aa4996c1ccdad99b0899d199d2731cb
EBUILD googlemaps-2.5.1.ebuild 755 BLAKE2B 21a9df04245ac87066b134e07ed59bc33a9d7b05dc88aca5284e170592b518216b57dabcb9f3f42493e0707cca64ca09a4c8a0ca6f9f0357b8da58f4ec649bd2 SHA512 183e0025ce3a216396d0255d46831b2a729304dc8ed5ad5cc9944ec01692b990531f922f74cf5e5b03e028571e7512d8b11badff817bb6beaa2040331e29d4a8
EBUILD googlemaps-3.0.2.ebuild 755 BLAKE2B 21a9df04245ac87066b134e07ed59bc33a9d7b05dc88aca5284e170592b518216b57dabcb9f3f42493e0707cca64ca09a4c8a0ca6f9f0357b8da58f4ec649bd2 SHA512 183e0025ce3a216396d0255d46831b2a729304dc8ed5ad5cc9944ec01692b990531f922f74cf5e5b03e028571e7512d8b11badff817bb6beaa2040331e29d4a8
MISC metadata.xml 336 BLAKE2B bdf3e9c0e53d083fecef6be8c6ec1ecf533b2320187bcfec3f8016b63eb02d0819d2aa000a4f785d47bd0761951bd03d150da31879dd2a24ae5050402749e9da SHA512 d2fe8d851a28700071a62cc5ec4b37e9cd149bfd39420aabe8af38486a6aa8c1cd7076fecafb6e00b5a8d47e85ea838cf7e28f51f0290ff0865e7ae7cfd3067f

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python client library for Google Maps API Web Services"
HOMEPAGE="https://github.com/googlemaps/google-maps-services-python https://pypi.org/project/googlemaps/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python client library for Google Maps API Web Services"
HOMEPAGE="https://github.com/googlemaps/google-maps-services-python https://pypi.org/project/googlemaps/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache 2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<herd>python</herd>
<upstream>
<remote-id type="pypi">googlemaps</remote-id>
</upstream>
</pkgmetadata>