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: biopython-1.63.ebuild ChangeLog
Date: Thu, 30 Jan 2014 15:15:30
Message-Id: 20140130151524.9EB662004C@flycatcher.gentoo.org
1 jlec 14/01/30 15:15:24
2
3 Modified: ChangeLog
4 Added: biopython-1.63.ebuild
5 Log:
6 Version BUmp
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.74 sci-biology/biopython/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?rev=1.74&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?rev=1.74&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/ChangeLog?r1=1.73&r2=1.74
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v
20 retrieving revision 1.73
21 retrieving revision 1.74
22 diff -u -r1.73 -r1.74
23 --- ChangeLog 29 Dec 2013 00:56:58 -0000 1.73
24 +++ ChangeLog 30 Jan 2014 15:15:24 -0000 1.74
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-biology/biopython
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.73 2013/12/29 00:56:58 jlec Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.74 2014/01/30 15:15:24 jlec Exp $
31 +
32 +*biopython-1.63 (30 Jan 2014)
33 +
34 + 30 Jan 2014; Justin Lecher <jlec@g.o> +biopython-1.63.ebuild:
35 + Version BUmp
36
37 *biopython-1.62-r1 (29 Dec 2013)
38
39
40
41
42 1.1 sci-biology/biopython/biopython-1.63.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/biopython-1.63.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/biopython/biopython-1.63.ebuild?rev=1.1&content-type=text/plain
46
47 Index: biopython-1.63.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.63.ebuild,v 1.1 2014/01/30 15:15:24 jlec Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_6,2_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 }