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-libs/votca-tools/
Date: Sun, 20 Feb 2022 14:58:32
Message-Id: 1645368874.ab44c2d1c93a2c148ac1a5171005fa76bcbec2a5.junghans@gentoo
1 commit: ab44c2d1c93a2c148ac1a5171005fa76bcbec2a5
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 20 14:54:34 2022 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 20 14:54:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab44c2d1
7
8 sci-libs/votca-tools: 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-libs/votca-tools/votca-tools-9999.ebuild | 45 ----------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/sci-libs/votca-tools/votca-tools-9999.ebuild b/sci-libs/votca-tools/votca-tools-9999.ebuild
17 deleted file mode 100644
18 index 184243331d2d..000000000000
19 --- a/sci-libs/votca-tools/votca-tools-9999.ebuild
20 +++ /dev/null
21 @@ -1,45 +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 cmake
28 -
29 -if [[ ${PV} == *9999 ]]; then
30 - EGIT_REPO_URI="https://github.com/${PN/-//}.git"
31 - inherit git-r3
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 tools library"
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 - dev-libs/boost:=
49 - dev-libs/expat
50 - sci-libs/fftw:3.0=
51 -"
52 -DEPEND="${RDEPEND}"
53 -BDEPEND="
54 - virtual/pkgconfig
55 -"
56 -
57 -DOCS=( NOTICE README.rst CHANGELOG.rst )
58 -
59 -src_configure() {
60 - local mycmakeargs=(
61 - -DINSTALL_RC_FILES=OFF
62 - -DENABLE_TESTING=$(usex test)
63 - -DCMAKE_DISABLE_FIND_PACKAGE_MKL=ON
64 - )
65 - cmake_src_configure
66 -}