sci-geosciences/pymap3d: add 3.0.1

Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2024-05-26 19:59:11 +02:00
parent f41f8139b0
commit 9df8aa35ba
2 changed files with 29 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pymap3d-2.9.1.tar.gz 47889 BLAKE2B 5f070a8155719215f6a2b7a8a2585fdf855b47ff610ea86511e4e270eecd3d1c866aadf125f2f2a847f059678fe10e75c61e7c6edeaca78f62dfac43beacaa54 SHA512 ea294d5d9f9ae2b949f281c64023cd2bf4b3667ad9c76e794ac242ae833d70ed45a5a422561aede1d734108c3accbf5fda2aaadb00d27885754a8244e4fc4cb3
DIST pymap3d-3.0.1.tar.gz 50752 BLAKE2B 98e522d92e8f4e42e59822e31340600c5f59f01576e7459425da2f38bdd74016b514ec2dbec56c39e960c1ee17b7b7271672824435f6ef5b3b96a239dce9722e SHA512 841fccae3c88f699ae19f5f4bd7d755c2065fd6e5b76f6aceb4933b6a093d34bc7b16ca88178c94f571c1a0248ca18265cdb5e580bf420314609768c871aea50

View File

@@ -0,0 +1,28 @@
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python 3-D coordinate conversions"
HOMEPAGE="https://github.com/geospace-code/pymap3d"
SRC_URI="https://github.com/geospace-code/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="test? (
dev-python/xarray
dev-python/pyproj
)"
distutils_enable_tests pytest
src_prepare() {
rm src/pymap3d/tests/test_eci.py || die
default
}