Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/propka/
Date: Wed, 06 Jul 2022 11:55:22
Message-Id: 1657108473.b221e27e1e3759f47e118fb5342b5c31f9235ed6.andrewammerlaan@gentoo
1 commit: b221e27e1e3759f47e118fb5342b5c31f9235ed6
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 6 11:54:33 2022 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 6 11:54:33 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b221e27e
7
8 sci-chemistry/propka: drop 3.2.0
9
10 Closes: https://bugs.gentoo.org/741376
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 sci-chemistry/propka/Manifest | 1 -
14 sci-chemistry/propka/propka-3.2.0.ebuild | 40 --------------------------------
15 2 files changed, 41 deletions(-)
16
17 diff --git a/sci-chemistry/propka/Manifest b/sci-chemistry/propka/Manifest
18 index 3ed3d129ddbf..a3ae32cc089e 100644
19 --- a/sci-chemistry/propka/Manifest
20 +++ b/sci-chemistry/propka/Manifest
21 @@ -1,2 +1 @@
22 -DIST propka-3.2.0.tar.gz 73746 BLAKE2B f79e493d5a195b81dc5d11cc21b9ab16c8d1fa48f15f7e23e2b2936dfb8634fdb00c7838b8dbdb4a68726dab0f16e54522ad71d71b3273ac93c03a737ae06f04 SHA512 98f2240b28b33bab94cdbe9392062bb7f6b87e75b94c2af91e178f874a74d210601161ebc835c4d751b89d37b32348fdfb096e28cbf8e9237b3f472d3fb6b4fc
23 DIST propka-3.4.0.gh.tar.gz 363641 BLAKE2B 87f495ba69028593cf3ebf98ed33da0944f7a3833f2d08cae4f0a0b5cbe2f3a67e9812685b896a7d89c88ba25653861f135dbac53dc6df7af426a290bacb3d22 SHA512 2ce431c66374d0692acb7504661caa870ab6460ace3a6478f88c1d46a7bfcd82c748bf153a1ce2ea6d1611bc4bbf2351c4f5149f4578e5f8a9f9ec8385298fe9
24
25 diff --git a/sci-chemistry/propka/propka-3.2.0.ebuild b/sci-chemistry/propka/propka-3.2.0.ebuild
26 deleted file mode 100644
27 index b5dadd1825d2..000000000000
28 --- a/sci-chemistry/propka/propka-3.2.0.ebuild
29 +++ /dev/null
30 @@ -1,40 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{7,8} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="pKa-value prediction of ionizable groups in protein and protein-ligand complexes"
41 -HOMEPAGE="https://github.com/jensengroup/propka"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -SLOT="0"
45 -LICENSE="LGPL-2.1"
46 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="test"
48 -
49 -RESTRICT="!test? ( test )"
50 -
51 -RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
52 -BDEPEND="test? (
53 - ${RDEPEND}
54 - dev-python/pandas[${PYTHON_USEDEP}]
55 -)"
56 -
57 -python_prepare_all() {
58 - sed -e "/exclude/s:scripts:\', \'Tests:g" \
59 - -i setup.py || die
60 - distutils-r1_python_prepare_all
61 -}
62 -
63 -python_test() {
64 - cd Tests || die
65 - ${PYTHON} runtest.py || die
66 -}
67 -
68 -python_install_all() {
69 - distutils-r1_python_install_all
70 -}