From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 366C8158041 for ; Tue, 26 Mar 2024 19:10:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54255E2AAA; Tue, 26 Mar 2024 19:10:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 38F75E2AAA for ; Tue, 26 Mar 2024 19:10:08 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6740634300B for ; Tue, 26 Mar 2024 19:10:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2C3DB29 for ; Tue, 26 Mar 2024 19:10:05 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1711480186.4b09eb80c56dc123d456a4bcfe679e3e72a16714.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet-contrib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild X-VCS-Directories: sci-physics/fastjet-contrib/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 4b09eb80c56dc123d456a4bcfe679e3e72a16714 X-VCS-Branch: master Date: Tue, 26 Mar 2024 19:10:05 +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: cf52a5c5-390d-4e4c-ab86-48d9fea92949 X-Archives-Hash: 84d7e2dbda549b95b622ebfbbb15b576 commit: 4b09eb80c56dc123d456a4bcfe679e3e72a16714 Author: Alexander Puck Neuwirth neuwirth-informatik de> AuthorDate: Tue Mar 26 10:00:25 2024 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Mar 26 19:09:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b09eb80 sci-physics/fastjet-contrib: drop 1.049-r1 Closes: https://bugs.gentoo.org/871420 Signed-off-by: Alexander Puck Neuwirth neuwirth-informatik.de> Closes: https://github.com/gentoo/gentoo/pull/35924 Signed-off-by: Andrew Ammerlaan gentoo.org> .../fastjet-contrib-1.049-r1.ebuild | 44 ---------------------- 1 file changed, 44 deletions(-) diff --git a/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild b/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild deleted file mode 100644 index 5327d49c484d..000000000000 --- a/sci-physics/fastjet-contrib/fastjet-contrib-1.049-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -MY_PN=fjcontrib -MY_P=${MY_PN}-${PV} - -DESCRIPTION="3rd party extensions of FastJet." -HOMEPAGE="https://fastjet.hepforge.org/contrib/" -SRC_URI="https://fastjet.hepforge.org/contrib/downloads/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND=">=sci-physics/fastjet-3.4.0" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-soname.patch - "${FILESDIR}"/${P}-ar.patch -) - -src_configure() { - tc-export CXX AR RANLIB - ./configure --prefix=/usr --fastjet-config=/usr/bin/fastjet-config RANLIB="${RANLIB}" AR="${AR}" CXX="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" FFLAGS="${FFLAGS}" LDFLAGS="${LDFLAGS}" || die -} - -src_compile() { - emake - emake fragile-shared -} - -src_install() { - emake install PREFIX="${ED}/usr" - dolib.so libfastjetcontribfragile.so - # The name used for requesting this library varies - dosym libfastjetcontribfragile.so /usr/$(get_libdir)/libfastjetcontribfragile.so.0 - dosym libfastjetcontribfragile.so /usr/$(get_libdir)/fastjetcontribfragile.so.0 -}