Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/clhep/
Date: Sun, 29 Jan 2023 21:59:56
Message-Id: 1675029579.49d00329580d667747610f554bb984fc23f0a57d.asturm@gentoo
1 commit: 49d00329580d667747610f554bb984fc23f0a57d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 28 09:17:24 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 21:59:39 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d00329
7
8 sci-physics/clhep: drop 2.4.5.1
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 sci-physics/clhep/Manifest | 1 -
13 sci-physics/clhep/clhep-2.4.5.1.ebuild | 55 ----------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/sci-physics/clhep/Manifest b/sci-physics/clhep/Manifest
17 index d5453180d3dc..ec92ff77ebf2 100644
18 --- a/sci-physics/clhep/Manifest
19 +++ b/sci-physics/clhep/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST clhep-2.4.5.1.tgz 1551358 BLAKE2B e428946163dd525291643e9cdb4921dea64feacf4281aaa4b1466bed021e123ac29fa654e115efa3bb1d154869b4c04196f562850b5e6e162e98001a3d901727 SHA512 68612004a92c6dc036471f440bc00605b611a6f2f9f46ab7343c1f83357498bb7518c4dd2e44d0aef754188d5efbc3ac9187c2371bc6bd46ca076ab4ff13afae
22 DIST clhep-2.4.5.3.tgz 1552597 BLAKE2B a2edcbe133af98c817982f9d9f787fbbc76a1e8a10a29c890cbdd223670ee2e9d6dec872de80880e5d286790ee0168501cd3270bdbed04f9781554ee35f6eb1a SHA512 f677c93bb53047167fe0f22cbf1f5d97f27476b64566817a799240bfce8e9fe7fd658a168c25fad76a35c6eb92e1e42ec7b88960facb6632279367f0606282c8
23 DIST clhep-2.4.6.2.tgz 1550248 BLAKE2B 10da3a7adc295c306d3ad57bff68489852717885eac544fe6858aed3868047cb377565f55a861751a09ea6c88584fe94b685f5dcef84c6e51afdddef8080eeb2 SHA512 cae1295d27b804c3b45c21195d8d45e9403e9449ca12d1e1a031615584f46784a1c6f75fdbc51467b901fa47057aa79077bd224994f0b6261abefc99810c2687
24
25 diff --git a/sci-physics/clhep/clhep-2.4.5.1.ebuild b/sci-physics/clhep/clhep-2.4.5.1.ebuild
26 deleted file mode 100644
27 index bae7df5849e2..000000000000
28 --- a/sci-physics/clhep/clhep-2.4.5.1.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake
37 -
38 -DESCRIPTION="High Energy Physics C++ library"
39 -HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/"
40 -SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/dist1/${P}.tgz"
41 -LICENSE="GPL-3 LGPL-3"
42 -SLOT="2/${PV}"
43 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos"
44 -
45 -IUSE="doc test threads"
46 -RESTRICT="!test? ( test )"
47 -
48 -BDEPEND="
49 - doc? (
50 - app-doc/doxygen
51 - dev-texlive/texlive-bibtexextra
52 - dev-texlive/texlive-fontsextra
53 - dev-texlive/texlive-fontutils
54 - dev-texlive/texlive-latex
55 - dev-texlive/texlive-latexextra
56 - )
57 -"
58 -
59 -S="${WORKDIR}/${PV}/CLHEP"
60 -
61 -src_prepare() {
62 - cmake_src_prepare
63 -
64 - # respect flags
65 - sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die
66 - # dont build test if not asked
67 - if ! use test; then
68 - cmake_comment_add_subdirectory test
69 - fi
70 - # gentoo doc directory
71 - if use doc; then
72 - grep -rl 'share/doc/CLHEP' |
73 - xargs sed -i \
74 - -e "s:share/doc/CLHEP:share/doc/${PF}:" \
75 - {.,*}/CMakeLists.txt || die
76 - fi
77 -}
78 -
79 -src_configure() {
80 - local mycmakeargs=(
81 - -DCLHEP_BUILD_DOCS=$(usex doc)
82 - -DCLHEP_SINGLE_THREAD=$(usex threads no yes)
83 - )
84 - cmake_src_configure
85 -}