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-xtp/
Date: Sun, 20 Feb 2022 14:58:31
Message-Id: 1645368841.4ec4269fd8666e1059f8c6c86ae1a76d89a311e5.junghans@gentoo
1 commit: 4ec4269fd8666e1059f8c6c86ae1a76d89a311e5
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 14:54:01 2022 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 14:54:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec4269f
7
8 sci-chemistry/votca-xtp: git version moved to sci-chemistry/votca
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-xtp/votca-xtp-9999.ebuild | 52 ---------------------------
14 1 file changed, 52 deletions(-)
15
16 diff --git a/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild b/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild
17 deleted file mode 100644
18 index ff2782e4b99a..000000000000
19 --- a/sci-chemistry/votca-xtp/votca-xtp-9999.ebuild
20 +++ /dev/null
21 @@ -1,52 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit bash-completion-r1 cmake
28 -
29 -if [[ ${PV} == *9999 ]]; then
30 - inherit git-r3
31 - EGIT_REPO_URI="https://github.com/${PN/-//}.git"
32 -else
33 - SRC_URI="https://github.com/${PN/-//}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 - KEYWORDS="~amd64 ~x86 ~amd64-linux"
35 - S="${WORKDIR}/${P#votca-}"
36 -fi
37 -
38 -DESCRIPTION="Votca excitation and charge properties module"
39 -HOMEPAGE="https://www.votca.org/"
40 -
41 -LICENSE="Apache-2.0"
42 -SLOT="0"
43 -IUSE="test"
44 -RESTRICT="!test? ( test )"
45 -
46 -RDEPEND="
47 - >=dev-cpp/eigen-3.3
48 - ~sci-chemistry/votca-csg-${PV}
49 - sci-libs/hdf5[cxx]
50 - sci-libs/libecpint
51 - sci-libs/libxc
52 - sci-libs/libint:2
53 - ~sci-libs/votca-tools-${PV}
54 -"
55 -DEPEND="${RDEPEND}"
56 -BDEPEND="virtual/pkgconfig"
57 -
58 -DOCS=( README.rst NOTICE.rst CHANGELOG.rst )
59 -
60 -src_configure() {
61 - local mycmakeargs=(
62 - -DENABLE_TESTING=$(usex test)
63 - )
64 - cmake_src_configure
65 -}
66 -
67 -pkg_postinst() {
68 - einfo
69 - einfo "Please read and cite:"
70 - einfo "VOTCA-XTP, J. Chem. Theo. Comp. 14, 6353 (2018)"
71 - einfo "https://doi.org/10.1021/acs.jctc.8b00617"
72 - einfo
73 -}