Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/biopython: ChangeLog biopython-1.64.ebuild
Date: Tue, 03 Jun 2014 06:54:30
Message-Id: 20140603065427.799E22004E@flycatcher.gentoo.org
1 jlec 14/06/03 06:54:27
2
3 Modified: ChangeLog
4 Added: biopython-1.64.ebuild
5 Log:
6 sci-biology/biopython: Version Bump, thanks Martin Mokrejs <mmokrejs@×××××××××××××××.cz> preparing the ebuild
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.76 sci-biology/biopython/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 7 May 2014 11:00:43 -0000 1.75
24 +++ ChangeLog 3 Jun 2014 06:54:27 -0000 1.76
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-biology/biopython
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.75 2014/05/07 11:00:43 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.76 2014/06/03 06:54:27 jlec Exp $
30 +
31 +*biopython-1.64 (03 Jun 2014)
32 +
33 + 03 Jun 2014; Justin Lecher <jlec@g.o> +biopython-1.64.ebuild:
34 + Version Bump, thanks Martin Mokrejs <mmokrejs@×××××××××××××××.cz> preparing
35 + the ebuild
36
37 *biopython-1.63-r1 (07 May 2014)
38
39
40
41
42 1.1 sci-biology/biopython/biopython-1.64.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/biopython-1.64.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/biopython-1.64.ebuild?rev=1.1&content-type=text/plain
46
47 Index: biopython-1.64.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/biopython-1.64.ebuild,v 1.1 2014/06/03 06:54:27 jlec Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit distutils-r1 eutils
58
59 DESCRIPTION="Python modules for computational molecular biology"
60 HOMEPAGE="http://www.biopython.org/ http://pypi.python.org/pypi/biopython/"
61 SRC_URI="http://www.biopython.org/DIST/${P}.tar.gz"
62
63 LICENSE="HPND"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
66 IUSE="mysql postgres"
67
68 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
69
70 RDEPEND="${PYTHON_DEPS}
71 dev-python/matplotlib[${PYTHON_USEDEP}]
72 dev-python/networkx[${PYTHON_USEDEP}]
73 dev-python/numpy[${PYTHON_USEDEP}]
74 dev-python/rdflib[${PYTHON_USEDEP}]
75 dev-python/pygraphviz[${PYTHON_USEDEP}]
76 dev-python/reportlab[${PYTHON_USEDEP}]
77 media-gfx/pydot[${PYTHON_USEDEP}]
78 mysql? ( dev-python/mysql-python[${PYTHON_USEDEP}] )
79 postgres? ( dev-python/psycopg[${PYTHON_USEDEP}] )"
80 DEPEND="${RDEPEND}
81 sys-devel/flex"
82
83 DOCS=( CONTRIB DEPRECATED NEWS README Doc/. )
84
85 python_test() {
86 cd Tests || die
87 ${PYTHON} run_tests.py || die
88 }
89
90 python_install_all() {
91 distutils-r1_python_install_all
92
93 dodir /usr/share/${PN}
94 cp -r --preserve=mode Scripts Tests "${ED}"/usr/share/${PN} || die
95 }