Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/yoda/
Date: Sun, 19 Sep 2021 16:48:22
Message-Id: 1632070082.14c85cf310e124ba086cfc54626293f49e502d1b.dilfridge@gentoo
1 commit: 14c85cf310e124ba086cfc54626293f49e502d1b
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 19 16:46:43 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 19 16:48:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14c85cf3
7
8 sci-physics/yoda: Remove old
9
10 Bug: https://bugs.gentoo.org/786909
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>
13
14 sci-physics/yoda/Manifest | 1 -
15 sci-physics/yoda/yoda-1.8.5.ebuild | 39 --------------------------------------
16 2 files changed, 40 deletions(-)
17
18 diff --git a/sci-physics/yoda/Manifest b/sci-physics/yoda/Manifest
19 index 9ec1a49f33a..3b97f8db607 100644
20 --- a/sci-physics/yoda/Manifest
21 +++ b/sci-physics/yoda/Manifest
22 @@ -1,2 +1 @@
23 -DIST YODA-1.8.5.tar.bz2 1057576 BLAKE2B 3c6abb680afcfb8250c3ae340a1b1307cb5498b726199ecf9afe593fc49c4099fd2b4ac881568c303abd10c22fcf91ffae4283021443fc6230456376617f0de1 SHA512 d1fffa55af069f894b3c88bcd105f77a3105095281febf9c06c0cea2fadea6c63d69df5bde4aa96646d2d560bd83cade6802d9ed19d5a30553cd003ace19dfc8
24 DIST YODA-1.9.0.tar.bz2 1061105 BLAKE2B 70d68d31456747fcb14e27585aae245930061b5135b8a96c8ff3fe0375175d00a1c2d24a6c1ca3f18fc8464e610ef6287184f3990e12ff3fb108def600e34189 SHA512 eb82f1df832c2124dd81e07c06f165ddf13c4c4b70fcd0113f85045e22085d82751325bc57bfbd167649580980d98a15b666de56dada639160f24682b58b2f71
25
26 diff --git a/sci-physics/yoda/yoda-1.8.5.ebuild b/sci-physics/yoda/yoda-1.8.5.ebuild
27 deleted file mode 100644
28 index 5e364620967..00000000000
29 --- a/sci-physics/yoda/yoda-1.8.5.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit bash-completion-r1
38 -
39 -DESCRIPTION="Yet more Objects for (High Energy Physics) Data Analysis"
40 -HOMEPAGE="https://yoda.hepforge.org/"
41 -SRC_URI="https://www.hepforge.org/archive/${PN}/${P^^}.tar.bz2"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0/${PV}"
45 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 -IUSE="root"
47 -
48 -RDEPEND="root? ( sci-physics/root:= )"
49 -DEPEND="${RDEPEND}"
50 -
51 -S="${WORKDIR}/${P^^}"
52 -
53 -src_configure() {
54 - econf \
55 - --disable-pyext \
56 - --disable-static \
57 - $(use_enable root)
58 -}
59 -
60 -src_test() {
61 - # PYTESTS and SHTESTS both require python tools
62 - emake check PYTESTS= SHTESTS=
63 -}
64 -
65 -src_install() {
66 - default
67 - newbashcomp "${ED}"/usr/share/YODA/yoda-completion yoda
68 - rm "${ED}"/usr/share/YODA/yoda-completion || die
69 - rm -r "${ED}"/usr/etc || die
70 -}