Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/prody/
Date: Mon, 15 Apr 2019 07:30:55
Message-Id: 1555313441.5dc46b76582be6bd8aa9190878f00a05db90773b.zlogene@gentoo
1 commit: 5dc46b76582be6bd8aa9190878f00a05db90773b
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 15 07:30:41 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 15 07:30:41 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dc46b76
7
8 sci-chemistry/prody: remove last rited package
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 sci-chemistry/prody/Manifest | 1 -
13 sci-chemistry/prody/metadata.xml | 11 ---------
14 sci-chemistry/prody/prody-1.6.ebuild | 43 ------------------------------------
15 3 files changed, 55 deletions(-)
16
17 diff --git a/sci-chemistry/prody/Manifest b/sci-chemistry/prody/Manifest
18 deleted file mode 100644
19 index 58a19662227..00000000000
20 --- a/sci-chemistry/prody/Manifest
21 +++ /dev/null
22 @@ -1 +0,0 @@
23 -DIST prody-1.6.tar.gz 5333629 BLAKE2B 73d268d0e717ff1e53be73da31e313aca8d4ccb2633f5bc8a43124b68f4945685c3edafc885998f58d7114363485e0b7a1e4882d35be134babc081cd4e1e1f86 SHA512 d913ad45b034f1b0e7e36428a6f8f199b365b94bd85bee5ade8eb9eb2b04a18c93d894a2abd18b3a1342597725ffbf96f8ce8a49191fc27e5608f3d2c9a3c49a
24
25 diff --git a/sci-chemistry/prody/metadata.xml b/sci-chemistry/prody/metadata.xml
26 deleted file mode 100644
27 index d798ea1d6cd..00000000000
28 --- a/sci-chemistry/prody/metadata.xml
29 +++ /dev/null
30 @@ -1,11 +0,0 @@
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 - <upstream>
39 - <remote-id type="github">prody/ProDy</remote-id>
40 - </upstream>
41 -</pkgmetadata>
42
43 diff --git a/sci-chemistry/prody/prody-1.6.ebuild b/sci-chemistry/prody/prody-1.6.ebuild
44 deleted file mode 100644
45 index abab32d7927..00000000000
46 --- a/sci-chemistry/prody/prody-1.6.ebuild
47 +++ /dev/null
48 @@ -1,43 +0,0 @@
49 -# Copyright 1999-2015 Gentoo Foundation
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=5
53 -
54 -PYTHON_COMPAT=( python2_7 )
55 -
56 -inherit distutils-r1
57 -
58 -DESCRIPTION="Protein Dynamics Analysis"
59 -HOMEPAGE="http://prody.csb.pitt.edu/ https://github.com/prody/ProDy"
60 -SRC_URI="https://github.com/prody/ProDy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
61 -
62 -SLOT="0"
63 -LICENSE="MIT"
64 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65 -IUSE="test"
66 -
67 -RDEPEND="
68 - dev-python/ipython[${PYTHON_USEDEP}]
69 - dev-python/matplotlib[${PYTHON_USEDEP}]
70 - >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
71 - dev-python/pyparsing[${PYTHON_USEDEP}]
72 - sci-biology/biopython[${PYTHON_USEDEP}]
73 - sci-libs/scipy[${PYTHON_USEDEP}]
74 -"
75 -DEPEND="${RDEPEND}
76 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
77 -
78 -S="${WORKDIR}"/ProDy-${PV}
79 -
80 -DISTUTILS_IN_SOURCE_BUILD=true
81 -
82 -python_prepare_all() {
83 - emake remove
84 - distutils-r1_python_prepare_all
85 -}
86 -
87 -python_test() {
88 - cd "${BUILD_DIR}" || die
89 - PATH="${S}"/scripts:${PATH} \
90 - nosetests --verbose || die
91 -}