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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5BBB915812D for ; Tue, 07 Jan 2025 10:44:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CCD3E079C; Tue, 07 Jan 2025 10:44:48 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 539F1E0798 for ; Tue, 07 Jan 2025 10:44:48 +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 6D6B0340C53 for ; Tue, 07 Jan 2025 10:44:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C338E1BA2 for ; Tue, 07 Jan 2025 10:44:45 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1736246673.8f746abe0cbafa4712d9b50b47f45af742b8156d.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/bfg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/bfg/Manifest dev-vcs/bfg/bfg-1.14.0.ebuild X-VCS-Directories: dev-vcs/bfg/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 8f746abe0cbafa4712d9b50b47f45af742b8156d X-VCS-Branch: master Date: Tue, 07 Jan 2025 10:44:45 +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: 3088bdc9-8e77-437d-9425-5382995a6ba5 X-Archives-Hash: 0634be3cff7b6bb7d96e1df9322cdb53 commit: 8f746abe0cbafa4712d9b50b47f45af742b8156d Author: Florian Schmaus gentoo org> AuthorDate: Tue Jan 7 10:43:14 2025 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Tue Jan 7 10:44:33 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f746abe dev-vcs/bfg: add 1.14.0 Signed-off-by: Florian Schmaus gentoo.org> dev-vcs/bfg/Manifest | 1 + dev-vcs/bfg/bfg-1.14.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-vcs/bfg/Manifest b/dev-vcs/bfg/Manifest index ea18407007ce..e219567480a4 100644 --- a/dev-vcs/bfg/Manifest +++ b/dev-vcs/bfg/Manifest @@ -1 +1,2 @@ DIST bfg-1.13.0.jar 13465496 BLAKE2B 1f9eaa44f032c182a8d50dfebaee668a2d7de2361ea48336932e5168a6a3b6970bbca742943917d4ecc392586f03d19add1d1cd9772e023389b9711874871c53 SHA512 e037be1dd52bd122a57fed18ebc4923238666e9985ad2d40174344a1ca45a05abd9a59f1c2ea743be49d094fd76a5794a0e3160a9d3be04a7986c3a444df4fa8 +DIST bfg-1.14.0.jar 14483456 BLAKE2B b4cf4b893937c83c1ce3bff7901d8522a77e1c5b988938b93deefe0099dc09de7da4cef0f6ff7f55c5621629d40072ce57d039d57b836664d83440258fd5a164 SHA512 086f5dcbb39ba769802a28c2f698236aae27b5a67aa6c25fe9206ce37ac410810a03c1068ca75f5ba3d7d9500f5cb6300653e26e30c2f75c8d9e9a12993476f2 diff --git a/dev-vcs/bfg/bfg-1.14.0.ebuild b/dev-vcs/bfg/bfg-1.14.0.ebuild new file mode 100644 index 000000000000..f0d12847f2f8 --- /dev/null +++ b/dev-vcs/bfg/bfg-1.14.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit java-pkg-2 + +DESCRIPTION="A faster alternative to git-filter-branch for removing bad data from git repos" +HOMEPAGE="https://rtyley.github.io/bfg-repo-cleaner/" +SRC_URI="https://repo1.maven.org/maven2/com/madgag/${PN}/${PV}/${P}.jar" + +S="${WORKDIR}" +LICENSE="GPL-3+" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jre-1.8:*" +BDEPEND="app-arch/unzip" + +src_install() { + java-pkg_newjar "${DISTDIR}"/${P}.jar + java-pkg_dolauncher ${PN} +}