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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A9AF1382C5 for ; Sat, 13 Feb 2021 22:52:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC5C0E0869; Sat, 13 Feb 2021 22:52:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B18F9E0869 for ; Sat, 13 Feb 2021 22:52:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A63C1340AB3 for ; Sat, 13 Feb 2021 22:52:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4F4D4C8 for ; Sat, 13 Feb 2021 22:52:38 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1613256677.bf7323b2222424d615014da70734c3e38b0c8e89.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/siscone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/siscone/Manifest sci-physics/siscone/siscone-3.0.5.ebuild X-VCS-Directories: sci-physics/siscone/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bf7323b2222424d615014da70734c3e38b0c8e89 X-VCS-Branch: master Date: Sat, 13 Feb 2021 22:52:38 +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: 110a015f-6b68-42dc-aba4-93d6ac30d8c0 X-Archives-Hash: a0ae5c56f7d0d765aac3f95c2235dc14 commit: bf7323b2222424d615014da70734c3e38b0c8e89 Author: Jakov Smolic sartura hr> AuthorDate: Sat Feb 13 22:51:17 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 13 22:51:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7323b2 sci-physics/siscone: Bump to 3.0.5 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> sci-physics/siscone/Manifest | 1 + sci-physics/siscone/siscone-3.0.5.ebuild | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/sci-physics/siscone/Manifest b/sci-physics/siscone/Manifest index 299805c4650..9b5face978c 100644 --- a/sci-physics/siscone/Manifest +++ b/sci-physics/siscone/Manifest @@ -1 +1,2 @@ DIST siscone-3.0.3.tar.gz 540939 BLAKE2B dfb9c9fab91f4faf8d8aa8a44fca505a83cdd02d2a9b659bacf6487e505159ef61bf2ed8db08a304328effdd6aac8c4a593b630954898aceb985a3a270a5aeb6 SHA512 dccbb872c897b8c0c28dff593d7f015b396923a0bd885182930d74e5115b901875a89565244a33fad0329fdfb5a83d6cc570152d0085c45c24bc427de075e559 +DIST siscone-3.0.5.tar.gz 544738 BLAKE2B 7136acfc46d9414831d4e07cc428ad3858c1da02bdcd66817eb6406b9ae1d9d582800412dfcfae5477a720b7893ba070c9ef84816a517992be1762d356840bf8 SHA512 fb9f5e6b6677968e77eb9476abe8345711c69213209c153932adacd69b3c1219abe79655238fec1c0ca4e8ca91795c7693c68e2a48ec41a6afff1f046a781a61 diff --git a/sci-physics/siscone/siscone-3.0.5.ebuild b/sci-physics/siscone/siscone-3.0.5.ebuild new file mode 100644 index 00000000000..d66ff818074 --- /dev/null +++ b/sci-physics/siscone/siscone-3.0.5.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Hadron Seedless Infrared-Safe Cone jet algorithm" +HOMEPAGE="https://siscone.hepforge.org/" +SRC_URI="https://siscone.hepforge.org/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +src_configure() { + econf --disable-static +} + +src_install() { + default + if use examples; then + docinto examples + dodoc examples/*.{cpp,h} + docinto examples/events + dodoc examples/events/*.dat + docompress -x /usr/share/doc/${PF}/examples + fi + + find "${ED}" -name '*.la' -delete || die +}