Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/genfit/
Date: Sun, 03 Jan 2021 06:18:42
Message-Id: 1609654619.1f55f85dcb465ea7267a5362ac4ab3b5fc319c63.chymera@gentoo
1 commit: 1f55f85dcb465ea7267a5362ac4ab3b5fc319c63
2 Author: Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
3 AuthorDate: Sat Jan 2 22:46:35 2021 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Sun Jan 3 06:16:59 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1f55f85d
7
8 sci-physics/genfit: Drop old tagged 02.00.00 version.
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
12 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
13
14 sci-physics/genfit/genfit-02.00.00.ebuild | 58 -------------------------------
15 1 file changed, 58 deletions(-)
16
17 diff --git a/sci-physics/genfit/genfit-02.00.00.ebuild b/sci-physics/genfit/genfit-02.00.00.ebuild
18 deleted file mode 100644
19 index c2e29cc03..000000000
20 --- a/sci-physics/genfit/genfit-02.00.00.ebuild
21 +++ /dev/null
22 @@ -1,58 +0,0 @@
23 -# Copyright 1999-2021 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=7
27 -
28 -inherit cmake
29 -
30 -if [[ ${PV} == *9999* ]]; then
31 - inherit git-r3
32 - EGIT_REPO_URI="https://github.com/GenFit/GenFit.git"
33 - KEYWORDS=""
34 -else
35 - TAG_VER=${PN}-code-1688-tags-v${PV//./-}
36 - SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip"
37 - KEYWORDS="~amd64 ~x86"
38 - S=${WORKDIR}/${TAG_VER}
39 -fi
40 -
41 -DESCRIPTION="Generic toolkit for track reconstruction in physics experiments"
42 -HOMEPAGE="https://github.com/GenFit/GenFit"
43 -
44 -LICENSE="LGPL-3"
45 -SLOT="0"
46 -
47 -IUSE="doc examples"
48 -
49 -RDEPEND="
50 - sci-physics/root:=
51 - dev-libs/boost:=
52 -"
53 -DEPEND="${RDEPEND}"
54 -
55 -src_compile() {
56 - cmake_src_compile
57 - use doc && cmake_src_compile doc
58 - use examples && cmake_src_compile tests
59 -}
60 -
61 -src_install() {
62 - cmake_src_install
63 - if use doc; then
64 - docinto html
65 - dodoc -r doc/html/.
66 - fi
67 - if use examples; then
68 - insinto /usr/share/doc/${PF}/examples
69 - doins -r "${BUILD_DIR}/bin"
70 - doins test/makeGeom.C
71 - doins test/README
72 - fi
73 - echo
74 - elog "Note that there is no support in this ebuild for RAVE yet,"
75 - elog "which is also not in portage."
76 - elog "It should be possible to use a local installation of RAVE"
77 - elog "and set:"
78 - elog " export RAVEPATH=<yourRaveDirectory>"
79 - echo
80 -}