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 97AC2158086 for ; Fri, 29 Oct 2021 12:19:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3D98E085E; Fri, 29 Oct 2021 12:19:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CC4DDE085E for ; Fri, 29 Oct 2021 12:19:38 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C5DA7343127 for ; Fri, 29 Oct 2021 12:19:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69589186 for ; Fri, 29 Oct 2021 12:19:36 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1635509969.15f3b2fa09267bbf18a43c76f6b8f65e6dfa213e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-filter-repo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/git-filter-repo/Manifest dev-vcs/git-filter-repo/git-filter-repo-2.33.0.ebuild dev-vcs/git-filter-repo/metadata.xml X-VCS-Directories: dev-vcs/git-filter-repo/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 15f3b2fa09267bbf18a43c76f6b8f65e6dfa213e X-VCS-Branch: master Date: Fri, 29 Oct 2021 12:19:36 +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: 781ff477-192c-4b2a-bae4-d8efb7f9c1ff X-Archives-Hash: 9a3b6eba6c59c8b762493bb6650af4ae commit: 15f3b2fa09267bbf18a43c76f6b8f65e6dfa213e Author: Michał Górny gentoo org> AuthorDate: Fri Oct 29 12:11:14 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Oct 29 12:19:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f3b2fa dev-vcs/git-filter-repo: Bump to 2.33.0 Signed-off-by: Michał Górny gentoo.org> dev-vcs/git-filter-repo/Manifest | 1 + .../git-filter-repo/git-filter-repo-2.33.0.ebuild | 35 ++++++++++++++++++++++ dev-vcs/git-filter-repo/metadata.xml | 11 +++++++ 3 files changed, 47 insertions(+) diff --git a/dev-vcs/git-filter-repo/Manifest b/dev-vcs/git-filter-repo/Manifest new file mode 100644 index 00000000000..d85268c82e9 --- /dev/null +++ b/dev-vcs/git-filter-repo/Manifest @@ -0,0 +1 @@ +DIST git-filter-repo-2.33.0.tar.xz 148024 BLAKE2B d23b47575cad60db2c42fe794d6b648ee14b0c126cc832b267030e6c8b4edb0acd6fe7e2666da086b3c79184a7e4362b585dfab8966102552f8317e3027d5d32 SHA512 9a4fc3e95c9b6bd399925bb8554acf93711a015756cc826a9f9ed06e91538addb78b3120876c46af4245892adfca7428d915a33d6d2890d9c0196cef5d4faa0f diff --git a/dev-vcs/git-filter-repo/git-filter-repo-2.33.0.ebuild b/dev-vcs/git-filter-repo/git-filter-repo-2.33.0.ebuild new file mode 100644 index 00000000000..dfc0b43cc28 --- /dev/null +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.33.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..10} ) +inherit python-single-r1 + +DESCRIPTION="Quickly rewrite git repository history (filter-branch replacement)" +HOMEPAGE="https://github.com/newren/git-filter-repo/" +SRC_URI=" + https://github.com/newren/git-filter-repo/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +RDEPEND=" + ${PYTHON_DEPS} + >=dev-vcs/git-2.24.0" + +src_compile() { + : +} + +src_test() { + bash t/run_tests || die +} + +src_install() { + python_fix_shebang git-filter-repo + dobin git-filter-repo + doman Documentation/man1/git-filter-repo.1 +} diff --git a/dev-vcs/git-filter-repo/metadata.xml b/dev-vcs/git-filter-repo/metadata.xml new file mode 100644 index 00000000000..8cb46cff61f --- /dev/null +++ b/dev-vcs/git-filter-repo/metadata.xml @@ -0,0 +1,11 @@ + + + + + mgorny@gentoo.org + Michał Górny + + + newren/git-filter-repo + +