From c2e34584538334605f58264beb3e4f5150749999 Mon Sep 17 00:00:00 2001 From: Ryan Fox Date: Tue, 3 Nov 2020 20:30:35 +0000 Subject: [PATCH] sci-geosciences/osmapy: New package Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Ryan Fox --- sci-geosciences/osmapy/Manifest | 3 ++ sci-geosciences/osmapy/metadata.xml | 8 +++++ sci-geosciences/osmapy/osmapy-0.0.18.ebuild | 38 +++++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 sci-geosciences/osmapy/Manifest create mode 100644 sci-geosciences/osmapy/metadata.xml create mode 100644 sci-geosciences/osmapy/osmapy-0.0.18.ebuild diff --git a/sci-geosciences/osmapy/Manifest b/sci-geosciences/osmapy/Manifest new file mode 100644 index 0000000..6a8370f --- /dev/null +++ b/sci-geosciences/osmapy/Manifest @@ -0,0 +1,3 @@ +DIST osmapy-0.0.18.tar.gz 309948 BLAKE2B d1dca60c70dead99415d9d5af7b527c59fcd3b777774161f9392d5a4807f3d8015ad10923800a8e01876bfe26b3e7333710c745029d305624bf83fd87afc91a3 SHA512 9404ae0f034b57dcd2085a84bfc2ddf21d691ff9288d0b625f8e19bd9f07b2eac85a16a55226472e2476de859a8f51ea3ebc00fb09685ed72a12738f8f0b771c +EBUILD osmapy-0.0.18.ebuild 870 BLAKE2B 6c2cadca0e02b613e6e6039cfb61548612239ac40c3e460b6f1221726c3a110a0b7b570f496bbb9541f62847323a1b85ac201f02c620681654e4bc1c5d84a076 SHA512 e27317a97d63958e9900004047781443682108ea2480937ad2de90e9ecb86006486947236935bdd2ae5bb063d273c14390bd22c4611f30b8edd496f1f5f95c44 +MISC metadata.xml 236 BLAKE2B fdb34c66e3059efc0efb2328ffedb24c495be95dfeb68b7adcdf5ab1a88eee6788294d07ec032238de7d9127cffd50a1598b42aa8f99d3d11f54a761c79a9482 SHA512 43add4c2db3d06110521dea982cfcbddc98d63bb1e1b89952511654d54f09746e0d76ac1e0f0e70d2832357f44fe11fc4653500b856c7b29d05a55bb70535e80 diff --git a/sci-geosciences/osmapy/metadata.xml b/sci-geosciences/osmapy/metadata.xml new file mode 100644 index 0000000..b27c0d9 --- /dev/null +++ b/sci-geosciences/osmapy/metadata.xml @@ -0,0 +1,8 @@ + + + + +flewkey@2a03.party +Ryan Fox + + diff --git a/sci-geosciences/osmapy/osmapy-0.0.18.ebuild b/sci-geosciences/osmapy/osmapy-0.0.18.ebuild new file mode 100644 index 0000000..68d3446 --- /dev/null +++ b/sci-geosciences/osmapy/osmapy-0.0.18.ebuild @@ -0,0 +1,38 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +if [[ ${PV} != *9999* ]]; then + SRC_URI="https://github.com/PhilippRigoll/osmapy/archive/${PV}.tar.gz -> ${P}.tar.gz" + #KEYWORDS="~amd64" Won't run from command line +else + inherit git-r3 + EGIT_REPO_URI="https://github.com/PhilippRigoll/osmapy.git" +fi + +DESCRIPTION="Python Editor for OpenStreetMap" +HOMEPAGE="https://wiki.openstreetmap.org/wiki/Osmapy" +LICENSE="GPL-3" +SLOT="0" + +DEPEND=" + dev-python/cerberus + python_targets_python3_6? ( dev-python/dataclasses ) + dev-python/easydict + dev-python/gpxpy + dev-python/lxml + dev-python/numpy + dev-python/pillow + dev-python/pyside2 + dev-python/pyyaml + dev-python/requests + dev-python/setuptools +" +RDEPEND="${DEPEND}" +BDEPEND=""