Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/propka/
Date: Tue, 30 Jun 2020 23:16:09
Message-Id: 1593557016.35c53b263ca449cfa6602fc548d89f839eaae5ee.alexxy@gentoo
1 commit: 35c53b263ca449cfa6602fc548d89f839eaae5ee
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 30 22:29:39 2020 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 30 22:43:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35c53b26
7
8 sci-chemistry/propka: Version bump
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>
12
13 sci-chemistry/propka/Manifest | 2 +-
14 sci-chemistry/propka/metadata.xml | 12 +++++++----
15 ...opka-3.1_p140511.ebuild => propka-3.2.0.ebuild} | 23 ++++++++++++----------
16 3 files changed, 22 insertions(+), 15 deletions(-)
17
18 diff --git a/sci-chemistry/propka/Manifest b/sci-chemistry/propka/Manifest
19 index 7e3748e1a98..4141de90904 100644
20 --- a/sci-chemistry/propka/Manifest
21 +++ b/sci-chemistry/propka/Manifest
22 @@ -1 +1 @@
23 -DIST propka-3.1_p140511.tar.xz 151284 BLAKE2B 16b3528fb9ac224632f99c665c98b2349e49af92479a0b1ec411a08196724c14ba35199c69280d9f1c7e6126a347eede70e229ebd76392d887fe8bef7aad9283 SHA512 c2938af41ed386e267cd045b14e34779889b3c206016d747b68c400f2c8b37bd50cc3b74d055d931476065ac6817a2dd2cb87d68de9911adfff1c8e34a667fc3
24 +DIST propka-3.2.0.tar.gz 73746 BLAKE2B f79e493d5a195b81dc5d11cc21b9ab16c8d1fa48f15f7e23e2b2936dfb8634fdb00c7838b8dbdb4a68726dab0f16e54522ad71d71b3273ac93c03a737ae06f04 SHA512 98f2240b28b33bab94cdbe9392062bb7f6b87e75b94c2af91e178f874a74d210601161ebc835c4d751b89d37b32348fdfb096e28cbf8e9237b3f472d3fb6b4fc
25
26 diff --git a/sci-chemistry/propka/metadata.xml b/sci-chemistry/propka/metadata.xml
27 index 8937bad0b17..6bfad85b400 100644
28 --- a/sci-chemistry/propka/metadata.xml
29 +++ b/sci-chemistry/propka/metadata.xml
30 @@ -1,8 +1,12 @@
31 <?xml version="1.0" encoding="UTF-8"?>
32 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 <pkgmetadata>
34 - <maintainer type="project">
35 - <email>sci-chemistry@g.o</email>
36 - <name>Gentoo Chemistry Project</name>
37 - </maintainer>
38 + <maintainer type="project">
39 + <email>sci-chemistry@g.o</email>
40 + <name>Gentoo Chemistry Project</name>
41 + </maintainer>
42 + <upstream>
43 + <remote-id type="pypi">propka</remote-id>
44 + <remote-id type="github">jensengroup/propka</remote-id>
45 + </upstream>
46 </pkgmetadata>
47
48 diff --git a/sci-chemistry/propka/propka-3.1_p140511.ebuild b/sci-chemistry/propka/propka-3.2.0.ebuild
49 similarity index 58%
50 rename from sci-chemistry/propka/propka-3.1_p140511.ebuild
51 rename to sci-chemistry/propka/propka-3.2.0.ebuild
52 index 4b90e9aeab9..b5dadd1825d 100644
53 --- a/sci-chemistry/propka/propka-3.1_p140511.ebuild
54 +++ b/sci-chemistry/propka/propka-3.2.0.ebuild
55 @@ -1,24 +1,28 @@
56 -# Copyright 1999-2015 Gentoo Foundation
57 +# Copyright 1999-2020 Gentoo Authors
58 # Distributed under the terms of the GNU General Public License v2
59
60 -EAPI=5
61 +EAPI=7
62
63 -PYTHON_COMPAT=( python2_7 )
64 +PYTHON_COMPAT=( python3_{7,8} )
65
66 inherit distutils-r1
67
68 DESCRIPTION="pKa-value prediction of ionizable groups in protein and protein-ligand complexes"
69 -HOMEPAGE="http://propka.ki.ku.dk/"
70 -SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz"
71 +HOMEPAGE="https://github.com/jensengroup/propka"
72 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
73
74 SLOT="0"
75 -LICENSE="all-rights-reserved"
76 +LICENSE="LGPL-2.1"
77 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
78 -IUSE=""
79 +IUSE="test"
80
81 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
82 +RESTRICT="!test? ( test )"
83
84 -RESTRICT="mirror bindist"
85 +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
86 +BDEPEND="test? (
87 + ${RDEPEND}
88 + dev-python/pandas[${PYTHON_USEDEP}]
89 +)"
90
91 python_prepare_all() {
92 sed -e "/exclude/s:scripts:\', \'Tests:g" \
93 @@ -32,6 +36,5 @@ python_test() {
94 }
95
96 python_install_all() {
97 - dosym ${PN}31 /usr/bin/${PN}
98 distutils-r1_python_install_all
99 }