diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-06-23 14:55:47 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-06-23 14:55:47 +0000 |
commit | ce1d072e3d3f808f84a23655cc55eed7e7ce945c (patch) | |
tree | 7befe7593a5178dc84a20704f3a1c46a113a70bf /sci-biology/biopython | |
parent | Remove old ebuilds. Requested by Arfrever (diff) | |
download | gentoo-2-ce1d072e3d3f808f84a23655cc55eed7e7ce945c.tar.gz gentoo-2-ce1d072e3d3f808f84a23655cc55eed7e7ce945c.tar.bz2 gentoo-2-ce1d072e3d3f808f84a23655cc55eed7e7ce945c.zip |
Remove old ebuilds. Requested by Arfrever
(Portage version: 2.1.9.49/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/biopython')
-rw-r--r-- | sci-biology/biopython/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/biopython/biopython-1.56.ebuild | 55 |
2 files changed, 4 insertions, 56 deletions
diff --git a/sci-biology/biopython/ChangeLog b/sci-biology/biopython/ChangeLog index 24455604e034..d8188ff3ab11 100644 --- a/sci-biology/biopython/ChangeLog +++ b/sci-biology/biopython/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/biopython # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.64 2011/05/28 13:52:36 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/ChangeLog,v 1.65 2011/06/23 14:55:47 hwoarang Exp $ + + 23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -biopython-1.56.ebuild: + Remove old ebuilds. Requested by Arfrever 28 May 2011; Brent Baude <ranger@gentoo.org> biopython-1.57.ebuild: Marking biopython-1.57 ppc for bug 365877 diff --git a/sci-biology/biopython/biopython-1.56.ebuild b/sci-biology/biopython/biopython-1.56.ebuild deleted file mode 100644 index dba68e060fec..000000000000 --- a/sci-biology/biopython/biopython-1.56.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/biopython/biopython-1.56.ebuild,v 1.6 2011/05/06 10:14:58 jlec Exp $ - -EAPI=3 -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit distutils eutils - -DESCRIPTION="Python modules for computational molecular biology" -HOMEPAGE="http://www.biopython.org/ http://pypi.python.org/pypi/biopython/" -SRC_URI="http://www.biopython.org/DIST/${P}.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="mysql postgres" - -RDEPEND=" - dev-python/numpy - dev-python/reportlab - mysql? ( dev-python/mysql-python ) - postgres? ( dev-python/psycopg )" -DEPEND="${RDEPEND} - sys-devel/flex" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES="1" -DOCS="CONTRIB DEPRECATED NEWS README" -PYTHON_MODNAME="Bio BioSQL" - -src_prepare() { - distutils_src_prepare - epatch "${FILESDIR}/${PN}-1.51-flex.patch" -} - -src_test() { - testing() { - cd Tests - PYTHONPATH="$(ls -d ../build/lib.*)" "$(PYTHON)" run_tests.py - } - python_execute_function --nonfatal -s testing -} - -src_install() { - distutils_src_install - - insinto /usr/share/doc/${PF} - doins -r Doc/* || die "Installation of documentation failed" - insinto /usr/share/${PN} - cp -r --preserve=mode Scripts Tests "${ED}usr/share/${PN}" || die "Installation of shared files failed" -} |