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/ParmEd/
Date: Mon, 03 Sep 2018 21:36:19
Message-Id: 1536010555.8a1cece78a3c0fc73419b30e8e7e69cd6af28bea.alexxy@gentoo
1 commit: 8a1cece78a3c0fc73419b30e8e7e69cd6af28bea
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 3 21:35:28 2018 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 3 21:35:55 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1cece7
7
8 sci-chemistry/ParmEd: Version bump
9
10 Package-Manager: Portage-2.3.47, Repoman-2.3.10
11
12 sci-chemistry/ParmEd/Manifest | 1 +
13 sci-chemistry/ParmEd/ParmEd-3.0.3.ebuild | 41 ++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/sci-chemistry/ParmEd/Manifest b/sci-chemistry/ParmEd/Manifest
17 index aae813414d8..54276dd03b0 100644
18 --- a/sci-chemistry/ParmEd/Manifest
19 +++ b/sci-chemistry/ParmEd/Manifest
20 @@ -1 +1,2 @@
21 DIST ParmEd-2.7.3.tar.gz 34494858 BLAKE2B 8e3ac8776f30ac73b06fd2241e5d73ba54517805ffcef7cb2f71281248df4f8afdaa05c2186ff50ba0df45df313ebdecd69a4482c8339d41baf804c37069affe SHA512 a3444f915e188bcc924f28b6b4235246e2c063ae98881c48f6e13ebc685d085d6a1bcb61b29509a343cbe58369bc6233acc20ee620c6f1d42da2033772a12e07
22 +DIST ParmEd-3.0.3.tar.gz 35159355 BLAKE2B 76b4655905276fe498f38c6a3bd483e89e95d3a339fbcd9ceb90d16f68d417b62e0aacaf18143d0b57167ee7acdc726c44324c844462af4d2385872210daef2a SHA512 60b8ee100a301fbddec8323a3dba550c96ffa09624f41e457d4b3941a4e4a15e903c3da6de24a5183731406f19f9e6436a2111d654bc902c0f06ac8b643acf09
23
24 diff --git a/sci-chemistry/ParmEd/ParmEd-3.0.3.ebuild b/sci-chemistry/ParmEd/ParmEd-3.0.3.ebuild
25 new file mode 100644
26 index 00000000000..6ea7bdee606
27 --- /dev/null
28 +++ b/sci-chemistry/ParmEd/ParmEd-3.0.3.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 +
37 +if [[ $PV = *9999* ]]; then
38 + scm_eclass=git-r3
39 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
40 + SRC_URI=""
41 + KEYWORDS=""
42 +else
43 + scm_eclass=vcs-snapshot
44 + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 + KEYWORDS="~amd64 ~x86"
46 +fi
47 +
48 +inherit eutils distutils-r1 ${scm_eclass}
49 +
50 +DESCRIPTION="Parameter/topology editor and molecular simulator"
51 +HOMEPAGE="https://parmed.github.io/ParmEd/html/index.html"
52 +
53 +LICENSE="LGPL-2"
54 +SLOT="0"
55 +IUSE=""
56 +
57 +DEPEND="
58 + dev-python/numpy[${PYTHON_USEDEP}]
59 + sci-libs/scipy[${PYTHON_USEDEP}]
60 +"
61 +
62 +RDEPEND="${DEPEND}"
63 +
64 +src_prepare() {
65 + sed \
66 + -e "/delfile/d" \
67 + -e "/deldir/d" \
68 + -i setup.py || die
69 + distutils-r1_src_prepare
70 +}