1st export of non-private Ebuilds

This commit is contained in:
2021-06-20 10:09:01 +02:00
parent 0479f0e293
commit ff477cc6c5
76 changed files with 2289 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
DIST vcfpy-0.13.3.tar.gz 1005744 BLAKE2B ab66fe2a5380822088b9148c5392a6178e9896e095c7a02203713be90ba8bb979a2450f3f7bd01a19384e1dca9afa210a7caa78075801f838f1c247754b133fe SHA512 7ab2e875cd643b1130b9abb6f5a3bd0428153b3b87c6e6d1b54575f259937e2433c674cb94169f06dd41ac9163337584aed781f2eb1f308c3a2e248d98f46807
EBUILD vcfpy-0.13.3.ebuild 759 BLAKE2B 98731ce2600985c4968b623c015f91dedee1508686cba0dafec05eecf07cb5d859738088ead0731de97615d8e10a29fbcc1d8df9dbdbbf0f2242d9a83572559a SHA512 e1ac8b3d0c0adb746652d9b7825df9e00439a3bb6d0f57559f17bccc128a915d1e3e2ab02e9f17b82ccc4b9acb21355ad3942fe7fd529e3dc8e8724c225f2b5f
MISC metadata.xml 462 BLAKE2B 9bcff6663ecae70cf051abf273b0e4b935995568382195687431b78d6b6a5ae321e38caf646030ef7d1e9b6260222d8da3bf3fb8f83e3a15577600cd1ccdab04 SHA512 4dc9e140187561282cf94c640c17933678c3cc1ab8d27ea6d4abc2e2a24985f43800851726677e22be075e0379be8f8cf2a07e26dcb5e85152e50431d09ea934
+15
View File
@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">vcfpy</remote-id>
<maintainer status="unknown">
<email>manuel.holtgrewe@bihealth.de</email>
<name>Manuel Holtgrewe</name>
</maintainer>
</upstream>
</pkgmetadata>
+32
View File
@@ -0,0 +1,32 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
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"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=sci-biology/pysam-0.10.0[${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
}