dev-python/vcfpy: update SRC_URI

This commit is contained in:
Andreas Billmeier 2023-06-11 09:16:41 +02:00 committed by Andreas Billmeier
parent 7155c1e329
commit 339ca29f87
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 15 additions and 18 deletions

View File

@ -1,3 +1,3 @@
DIST vcfpy-0.13.4.tar.gz 1009085 BLAKE2B 1de68bda2cd1ff3537e3179967e55286ac854606e93d0a12b1a4057d52cfdf11a474020cf511148015639a563594083591126eecb4e8e156694645c3a9a334c8 SHA512 1b0b430d6e48f4084c3ac55efeac801f72a7f68ad4a5a989b7a51b895e0a31488189c28978fdd0cf79f43c47e7a81422364f7da350f038b2a0aaba36b5e97c13
EBUILD vcfpy-0.13.4.ebuild 747 BLAKE2B 6a12e9f245ac0478568ec4947a0b1286752e5c6525e5841f0c1cb8b56cd278e151b998620c9076c7f9f4dadc3e6bee3f9a6eadea5f3f13a41db8dbd78780f15d SHA512 0fcf5e3f56bb71410a3dd895e7704217b4d76c994816d1548e19af9c9726bb061d7835bec5d731fc58c573b6e4d35dc41ae59a55cde319b3ced905d710b7b463
MISC metadata.xml 462 BLAKE2B 9bcff6663ecae70cf051abf273b0e4b935995568382195687431b78d6b6a5ae321e38caf646030ef7d1e9b6260222d8da3bf3fb8f83e3a15577600cd1ccdab04 SHA512 4dc9e140187561282cf94c640c17933678c3cc1ab8d27ea6d4abc2e2a24985f43800851726677e22be075e0379be8f8cf2a07e26dcb5e85152e50431d09ea934
EBUILD vcfpy-0.13.4.ebuild 628 BLAKE2B 7d589c1e4a0eabe379602f49cd8bb0ebd17b471a180d6947ed841972788e9a8e8ec4388cf358d4f4ef2ac25415daa6913751fc98500340f3f94e1af17799547e SHA512 8bc9e628d41acae8148e5c0facde1b472c563ada071457c788fd5e0592dca14874c34ec149acdc7dd80dc675685e6b5f40db4ce79fb1ab31fc198133e064f0d1
MISC metadata.xml 518 BLAKE2B ca1afb98579c5ee85ed53b5d04fda8b61fde3c7237bffee50a662e7c7823654bfeee4b3c6732a0654723a5eb16a4f0f4709d8c9263bdfc300aebeb792aa1a00e SHA512 445f5ddab5aa1c5349cd672b16a74179a355044649c3f6d0ce0a8de166ec305ea213620a1d211a4b4d7bda1a7947d227f669d00211b9599b2eae3f4c28e5b38f

View File

@ -7,6 +7,7 @@
</maintainer>
<upstream>
<remote-id type="pypi">vcfpy</remote-id>
<remote-id type="github">bihealth/vcfpy</remote-id>
<maintainer status="unknown">
<email>manuel.holtgrewe@bihealth.de</email>
<name>Manuel Holtgrewe</name>

View File

@ -1,15 +1,14 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python 3 VCF library with good support for both reading and writing"
HOMEPAGE="https://github.com/bihealth/vcfpy https://pypi.org/project/vcfpy/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
@ -21,13 +20,10 @@ DOCS="README.rst"
RDEPEND="sci-biology/pysam[${PYTHON_USEDEP}]"
BDEPEND="
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

@ -1,16 +1,16 @@
BDEPEND=dev-python/setuptools[python_targets_python3_10(-)?,python_targets_python3_11(-)?] test? ( dev-python/nose[python_targets_python3_10(-)?,python_targets_python3_11(-)?] dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) >=dev-python/setuptools-65.7.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?]
BDEPEND=test? ( dev-python/pytest[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] ) python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 ) >=dev-python/gpep517-13[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/setuptools-67.7.2[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] >=dev-python/wheel-0.40.0[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=Python 3 VCF library with good support for both reading and writing
EAPI=8
HOMEPAGE=https://github.com/bihealth/vcfpy https://pypi.org/project/vcfpy/
INHERIT=distutils-r1
IUSE=test python_targets_python3_10 python_targets_python3_11
INHERIT=distutils-r1 pypi
IUSE=test python_targets_python3_10 python_targets_python3_11 python_targets_python3_12
KEYWORDS=amd64 arm arm64 x86
LICENSE=MIT
RDEPEND=sci-biology/pysam[python_targets_python3_10(-)?,python_targets_python3_11(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 )
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 )
RDEPEND=sci-biology/pysam[python_targets_python3_10(-)?,python_targets_python3_11(-)?,python_targets_python3_12(-)?] python_targets_python3_10? ( >=dev-lang/python-3.10.11:3.10 ) python_targets_python3_11? ( >=dev-lang/python-3.11.3:3.11 ) python_targets_python3_12? ( >=dev-lang/python-3.12.0_beta1:3.12 )
REQUIRED_USE=|| ( python_targets_python3_10 python_targets_python3_11 python_targets_python3_12 )
RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/v/vcfpy/vcfpy-0.13.4.tar.gz
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666
_md5_=191b0c421c4b80cc5a31ca96aaea6a4b
SRC_URI=https://files.pythonhosted.org/packages/source/v/vcfpy/vcfpy-0.13.4.tar.gz
_eclasses_=out-of-source-utils 1a9007554652a6e627edbccb3c25a439 multibuild bddcb51b74f4a76724ff7cf8e7388869 multilib c19072c3cd7ac5cb21de013f7e9832e0 toolchain-funcs 513c31b3346458ed1f3878b57da6d61c multiprocessing b4e253ab22cef7b1085e9b67c7a3b730 ninja-utils 76050953ad5b70d7e09a6ca55558db92 python-utils-r1 ba15b8b81f30ca448294d759a9f7902c python-r1 3c6cd0f418ba702c186a9865b85e704d distutils-r1 2d32e797ee29a8ffdd452f4a85860666 pypi 3b6a844fbf71f1581992b44c78b549b7
_md5_=998c774c5f18df1eb1cb4e3a67d04d32