Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-biology/biopython/
Date: Thu, 30 Dec 2021 18:12:29
Message-Id: 1640887931.3ca7e670a753666e8f51fc8f34f038bf18e07a69.soap@gentoo
1 commit: 3ca7e670a753666e8f51fc8f34f038bf18e07a69
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 30 18:12:11 2021 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 30 18:12:11 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca7e670
7
8 sci-biology/biopython: drop 1.77
9
10 Closes: https://bugs.gentoo.org/757867
11 Closes: https://bugs.gentoo.org/780345
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 sci-biology/biopython/Manifest | 1 -
15 sci-biology/biopython/biopython-1.77.ebuild | 61 -----------------------------
16 2 files changed, 62 deletions(-)
17
18 diff --git a/sci-biology/biopython/Manifest b/sci-biology/biopython/Manifest
19 index 9bc0eede97dc..014c48aa8401 100644
20 --- a/sci-biology/biopython/Manifest
21 +++ b/sci-biology/biopython/Manifest
22 @@ -1,2 +1 @@
23 -DIST biopython-1.77.tar.gz 16837021 BLAKE2B b5586f0ea3e476b11801dcc98039d5eea7b191e11d390192c0cf348018ded005fe2ad5dc9ba71c83aebc9cdde20c97244905dcc3aeb5436a97588da9f8c79c3e SHA512 6f4b03d46c591e1f49dd1e76bcc4ac5c9aaa2bf748c9dd37ffc5de5a613fbeed38f89b418c01601dd99c65b13b2e294bc8d81ffafc42a9ff1b309c84f840d0d5
24 DIST biopython-1.79.tar.gz 16738730 BLAKE2B 8c97fc23e458f7bc98b0ed0226bd6fb42f6c6f3ce03d562b13fac66c5061451595cd5bd01cad07bbe1fc6b20f4de21b0f03766b5a20e602545da888047a57185 SHA512 81e2718f4015bb038637b4d1181e6bea48018fec1e769c5f0ab75442a769336899191f1222e82e1b9569c1fac470500d7582420e5cbe9bce0056b41751adeaaa
25
26 diff --git a/sci-biology/biopython/biopython-1.77.ebuild b/sci-biology/biopython/biopython-1.77.ebuild
27 deleted file mode 100644
28 index 1dcbc2101c45..000000000000
29 --- a/sci-biology/biopython/biopython-1.77.ebuild
30 +++ /dev/null
31 @@ -1,61 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7..9} )
38 -
39 -inherit distutils-r1 optfeature
40 -
41 -DESCRIPTION="Python modules for computational molecular biology"
42 -HOMEPAGE="https://www.biopython.org/ https://pypi.org/project/biopython/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="HPND"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
48 -
49 -RDEPEND="
50 - dev-python/matplotlib[${PYTHON_USEDEP}]
51 - dev-python/networkx[${PYTHON_USEDEP}]
52 - dev-python/numpy[${PYTHON_USEDEP}]
53 - dev-python/rdflib[${PYTHON_USEDEP}]
54 - dev-python/pygraphviz[${PYTHON_USEDEP}]
55 - >=dev-python/reportlab-3.5.13-r1[${PYTHON_USEDEP}]
56 - dev-python/pydot[${PYTHON_USEDEP}]"
57 -DEPEND="${RDEPEND}"
58 -BDEPEND="sys-devel/flex"
59 -
60 -DOCS=( {CONTRIB,DEPRECATED,NEWS,README}.rst Doc/. )
61 -
62 -python_test() {
63 - distutils_install_for_testing
64 - cp -r {Doc,Tests} "${TEST_DIR}"/lib/ || die
65 -
66 - # need to create symlinks for doctests
67 - mkdir -p "${TEST_DIR}"/lib/Bio/Align/substitution_matrices || die
68 - ln -r -s "${S}"/Bio/Align/substitution_matrices/data \
69 - "${TEST_DIR}"/lib/Bio/Align/substitution_matrices/data || die
70 -
71 - cd "${TEST_DIR}"/lib/Tests || die
72 - rm test_BioSQL_{psycopg2.py,MySQLdb.py,mysql_connector.py} || die
73 - "${EPYTHON}" run_tests.py --offline --verbose || die
74 -}
75 -
76 -python_install_all() {
77 - # remove files causing ecompressdir to fail
78 - rm Doc/examples/ls_orchid.gbk.{gz,bz2} || die
79 -
80 - distutils-r1_python_install_all
81 -
82 - dodir /usr/share/${PN}
83 - cp -r --preserve=mode Scripts Tests "${ED}"/usr/share/${PN} || die
84 -}
85 -
86 -pkg_postinst() {
87 - optfeature_header "For database support you need to install:"
88 - optfeature "MySQL database support" dev-python/mysql-python
89 - optfeature "PostgreSQL database support" dev-python/psycopg
90 - optfeature_header "Some applications need extra packages:"
91 - optfeature "EMBOSS (The European Molecular Biology Open Software Suite)" sci-biology/emboss
92 -}