From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9BB1D1581B9 for ; Fri, 26 Sep 2025 14:06:50 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 847D5340FEC for ; Fri, 26 Sep 2025 14:06:50 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id DAD76110575; Fri, 26 Sep 2025 14:06:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id D0BDD110575 for ; Fri, 26 Sep 2025 14:06:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87411340D1F for ; Fri, 26 Sep 2025 14:06:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 280493334 for ; Fri, 26 Sep 2025 14:06:44 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1758895578.20fab9465b8e95f2dcd80f1c1ef4d8054a9afcb2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/clhep/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/clhep/clhep-2.4.7.1.ebuild X-VCS-Directories: sci-physics/clhep/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 20fab9465b8e95f2dcd80f1c1ef4d8054a9afcb2 X-VCS-Branch: master Date: Fri, 26 Sep 2025 14:06:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0c658854-daf5-422d-bdcb-9e86f1a7779a X-Archives-Hash: 12fbfb837592617697e28604ea4b6058 commit: 20fab9465b8e95f2dcd80f1c1ef4d8054a9afcb2 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Sep 26 12:28:13 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 26 14:06:18 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20fab946 sci-physics/clhep: drop 2.4.7.1 Closes: https://bugs.gentoo.org/963461 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-physics/clhep/clhep-2.4.7.1.ebuild | 56 ---------------------------------- 1 file changed, 56 deletions(-) diff --git a/sci-physics/clhep/clhep-2.4.7.1.ebuild b/sci-physics/clhep/clhep-2.4.7.1.ebuild deleted file mode 100644 index 112f6512dddc..000000000000 --- a/sci-physics/clhep/clhep-2.4.7.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="High Energy Physics C++ library" -HOMEPAGE="http://proj-clhep.web.cern.ch/proj-clhep/" -SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/dist1/${P}.tgz" - -S="${WORKDIR}/${PV}/CLHEP" - -LICENSE="GPL-3 LGPL-3" -SLOT="2/${PV}" -KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos" - -IUSE="doc test threads" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( - app-text/doxygen - dev-texlive/texlive-bibtexextra - dev-texlive/texlive-fontsextra - dev-texlive/texlive-fontutils - dev-texlive/texlive-latex - dev-texlive/texlive-latexextra - ) -" - -src_prepare() { - cmake_src_prepare - - # respect flags - sed -i -e 's:-O::g' cmake/Modules/ClhepVariables.cmake || die - # dont build test if not asked - if ! use test; then - cmake_comment_add_subdirectory test - fi - # gentoo doc directory - if use doc; then - grep -rl 'share/doc/CLHEP' | - xargs sed -i \ - -e "s:share/doc/CLHEP:share/doc/${PF}:" \ - {.,*}/CMakeLists.txt || die - fi -} - -src_configure() { - local mycmakeargs=( - -DCLHEP_BUILD_DOCS=$(usex doc) - -DCLHEP_SINGLE_THREAD=$(usex threads no yes) - ) - cmake_src_configure -}