Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/votca/
Date: Sun, 20 Feb 2022 14:58:32
Message-Id: 1645368962.55dfd0a05bc6cda092e969ba5c80ae88d9ca2bf8.junghans@gentoo
1 commit: 55dfd0a05bc6cda092e969ba5c80ae88d9ca2bf8
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 14:56:02 2022 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 14:56:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55dfd0a0
7
8 sci-chemistry/votca: remove old
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Christoph Junghans <junghans <AT> gentoo.org>
12
13 sci-chemistry/votca/Manifest | 1 -
14 sci-chemistry/votca/votca-2022_rc2.ebuild | 70 -------------------------------
15 2 files changed, 71 deletions(-)
16
17 diff --git a/sci-chemistry/votca/Manifest b/sci-chemistry/votca/Manifest
18 index 21dca30b58dd..84be7c9f6881 100644
19 --- a/sci-chemistry/votca/Manifest
20 +++ b/sci-chemistry/votca/Manifest
21 @@ -1,2 +1 @@
22 DIST votca-2022.tar.gz 61688862 BLAKE2B a6a8d1c34e2cd992d032730b2669c9ac5489b988fc334f730eaf1a40b275cc2fad8b24f03419510fe9fee7b0ad0bedf43f9b22b44ca1ae0178b16c9b255da53c SHA512 ea5b7405872a2c0c8d6b4b86148a605b5e83207f1953f0b7393dabbb106ac785c50b45462f6271fbfad04c0246704a92199943acc65eb30d7f1a0a6d6ee4ab83
23 -DIST votca-2022_rc2.tar.gz 61692061 BLAKE2B 9fdf016267ff6657bfbbd51c79c2c38cb7064635d26e80b905eeeb8326ca1780f7a9c711802491f3ec7a216dbd53b86fe08da2c969a6a10db110168a02ac0d0f SHA512 3bfd108df7499c21ad290955672ab042b9a11b7a868f0eb49fdbd94365e35ed7ffc8b8b44c9b7dd74b7504b8fd30cc6bacfed443068f2bb3702e272aad26c961
24
25 diff --git a/sci-chemistry/votca/votca-2022_rc2.ebuild b/sci-chemistry/votca/votca-2022_rc2.ebuild
26 deleted file mode 100644
27 index 6a1ae090460b..000000000000
28 --- a/sci-chemistry/votca/votca-2022_rc2.ebuild
29 +++ /dev/null
30 @@ -1,70 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit bash-completion-r1 cmake
37 -
38 -if [[ ${PV} == *9999 ]]; then
39 - inherit git-r3
40 - EGIT_REPO_URI="https://github.com/votca/votca.git"
41 -else
42 - if [[ ${PV} = *_rc[1-9] ]]; then
43 - MY_PV="${PV%%_rc*}-rc.${PV##*_rc}"
44 - else
45 - MY_PV="${PV}"
46 - fi
47 - SRC_URI="https://github.com/votca/votca/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
48 - KEYWORDS="~amd64 ~x86 ~amd64-linux"
49 - S="${WORKDIR}/votca-${MY_PV}"
50 -fi
51 -
52 -DESCRIPTION="Versatile Object-oriented Toolkit for Coarse-graining Applications"
53 -HOMEPAGE="https://www.votca.org/"
54 -
55 -LICENSE="Apache-2.0"
56 -SLOT="0"
57 -IUSE="+gromacs test"
58 -RESTRICT="!test? ( test )"
59 -
60 -RDEPEND="
61 - !sci-libs/votca-tools
62 - !sci-chemistry/votca-csg
63 - !sci-chemistry/votca-xtp
64 - app-shells/bash:*
65 - >=dev-cpp/eigen-3.3
66 - dev-libs/boost:=
67 - dev-libs/expat
68 - sci-libs/fftw:3.0=
69 - dev-lang/perl
70 - gromacs? ( sci-chemistry/gromacs:= )
71 - sci-libs/hdf5[cxx]
72 - sci-libs/libxc
73 - sci-libs/libint:2
74 -"
75 -DEPEND="${RDEPEND}"
76 -BDEPEND="virtual/pkgconfig"
77 -
78 -DOCS=( README.rst NOTICE.rst CHANGELOG.rst )
79 -
80 -src_configure() {
81 - local mycmakeargs=(
82 - -DENABLE_TESTING=$(usex test)
83 - -DCMAKE_DISABLE_FIND_PACKAGE_GROMACS=$(usex !gromacs)
84 - -DBUILD_CSGAPPS=ON
85 - -DINSTALL_RC_FILES=OFF
86 - -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
87 - )
88 - cmake_src_configure
89 -}
90 -
91 -pkg_postinst() {
92 - einfo
93 - einfo "Please read and cite:"
94 - einfo "VOTCA-XTP, J. Chem. Theo. Comp. 14, 6353 (2018)"
95 - einfo "https://doi.org/10.1021/acs.jctc.8b00617"
96 - einfo
97 - einfo "VOTCA, J. Chem. Theory Comput. 5, 3211 (2009). "
98 - einfo "https://dx.doi.org/10.1021/ct900369w"
99 - einfo
100 -}