Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/mdtraj/
Date: Fri, 01 Jan 2021 01:50:50
Message-Id: 1609465842.f2aba2b456b54511128bb4427fdd492500ca360b.mgorny@gentoo
1 commit: f2aba2b456b54511128bb4427fdd492500ca360b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 01:47:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 01:50:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2aba2b4
7
8 sci-chemistry/mdtraj: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sci-chemistry/mdtraj/Manifest | 1 -
13 sci-chemistry/mdtraj/mdtraj-1.9.1.ebuild | 34 --------------------------------
14 2 files changed, 35 deletions(-)
15
16 diff --git a/sci-chemistry/mdtraj/Manifest b/sci-chemistry/mdtraj/Manifest
17 index 8e63d1026da..369fb48765a 100644
18 --- a/sci-chemistry/mdtraj/Manifest
19 +++ b/sci-chemistry/mdtraj/Manifest
20 @@ -1,2 +1 @@
21 -DIST mdtraj-1.9.1.tar.gz 1985711 BLAKE2B 625b7c1da998bd46732604dcc93c76f970f3c79f10e81aa9f4b3051ee45101efea8afd803d539ba1831dac3e7ed208d7c3773f74189a3887063cbff2b4d79df6 SHA512 015d9d1e258a7a207ac3b7e7a81b87c308e8684ee0a173ae9b722a90910e95e7f2ee18158c163212fae39d093b0cf397293d6e713538acb1fd20a7b70f2adc76
22 DIST mdtraj-1.9.4.tar.gz 2133297 BLAKE2B c1507246bf0c8d7f6753f3d505f940e6f2f001361e42f10c9775647a7e6b58edf2d3953a8e48932f6bf9ad90b27e1baf30df6a7c1a590e49a860175822a25360 SHA512 55f67546db20ce63da3af2231df459e9983e15a65da960784613f746dcce820fe6b0deffbb21b528e93fc6cf674dc7a25ee11110894d2a89e5504e20d200ca38
23
24 diff --git a/sci-chemistry/mdtraj/mdtraj-1.9.1.ebuild b/sci-chemistry/mdtraj/mdtraj-1.9.1.ebuild
25 deleted file mode 100644
26 index cdf5b949625..00000000000
27 --- a/sci-chemistry/mdtraj/mdtraj-1.9.1.ebuild
28 +++ /dev/null
29 @@ -1,34 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Read, write and analyze MD trajectories with only a few lines of Python code"
39 -HOMEPAGE="http://mdtraj.org"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -SLOT="0"
43 -LICENSE="GPL-2"
44 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="
49 - dev-python/setuptools[${PYTHON_USEDEP}]
50 - dev-python/numpy[${PYTHON_USEDEP}]
51 - dev-python/scipy[${PYTHON_USEDEP}]
52 - dev-python/pandas[${PYTHON_USEDEP}]
53 - dev-python/pytables[${PYTHON_USEDEP}]
54 - dev-python/networkx[${PYTHON_USEDEP}]
55 -"
56 -DEPEND="${RDEPEND}
57 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
58 -
59 -python_prepare() {
60 - sed -e "s:re.match('build.*(mdtraj.*)', output_dir).group(1):'.':g" \
61 - -i basesetup.py || die
62 - distutils-r1_python_prepare_all
63 -}