Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/weblogo/
Date: Sat, 10 Oct 2020 13:45:54
Message-Id: 1602337523.fc5c07038aa37eb1444eeac10b2c546944013e1f.epsilon-0@gentoo
1 commit: fc5c07038aa37eb1444eeac10b2c546944013e1f
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sat Oct 10 13:45:23 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Sat Oct 10 13:45:23 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fc5c0703
7
8 sci-biology/weblogo: version bump to 3.7.5
9
10 really cool package, can't do bio without this
11
12 Package-Manager: Portage-3.0.8, Repoman-3.0.1
13 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
14
15 sci-biology/weblogo/weblogo-3.7.5.ebuild | 33 ++++++++++++++++++++++++++++++++
16 1 file changed, 33 insertions(+)
17
18 diff --git a/sci-biology/weblogo/weblogo-3.7.5.ebuild b/sci-biology/weblogo/weblogo-3.7.5.ebuild
19 new file mode 100644
20 index 000000000..ea07941ff
21 --- /dev/null
22 +++ b/sci-biology/weblogo/weblogo-3.7.5.ebuild
23 @@ -0,0 +1,33 @@
24 +# Copyright 1999-2020 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +PYTHON_COMPAT=( python3_{6..9} )
30 +DISTUTILS_USE_SETUPTOOLS=rdepend
31 +inherit distutils-r1
32 +
33 +DESCRIPTION="generate consensus sequence logo figures"
34 +HOMEPAGE="http://weblogo.threeplusone.com/"
35 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 +
37 +LICENSE="MIT"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +
41 +RDEPEND="
42 + dev-python/scipy
43 +"
44 +BDEPEND="
45 + test? (
46 + app-text/ghostscript-gpl
47 + dev-python/mypy
48 + )
49 +"
50 +
51 +distutils_enable_tests pytest
52 +
53 +python_test() {
54 + distutils_install_for_testing
55 + pytest -vv || die "tests failed with ${EPYTHON}"
56 +}