Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-filter-repo/
Date: Fri, 29 Oct 2021 12:19:39
Message-Id: 1635509969.15f3b2fa09267bbf18a43c76f6b8f65e6dfa213e.mgorny@gentoo
1 commit: 15f3b2fa09267bbf18a43c76f6b8f65e6dfa213e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 29 12:11:14 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 29 12:19:29 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15f3b2fa
7
8 dev-vcs/git-filter-repo: Bump to 2.33.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-vcs/git-filter-repo/Manifest | 1 +
13 .../git-filter-repo/git-filter-repo-2.33.0.ebuild | 35 ++++++++++++++++++++++
14 dev-vcs/git-filter-repo/metadata.xml | 11 +++++++
15 3 files changed, 47 insertions(+)
16
17 diff --git a/dev-vcs/git-filter-repo/Manifest b/dev-vcs/git-filter-repo/Manifest
18 new file mode 100644
19 index 00000000000..d85268c82e9
20 --- /dev/null
21 +++ b/dev-vcs/git-filter-repo/Manifest
22 @@ -0,0 +1 @@
23 +DIST git-filter-repo-2.33.0.tar.xz 148024 BLAKE2B d23b47575cad60db2c42fe794d6b648ee14b0c126cc832b267030e6c8b4edb0acd6fe7e2666da086b3c79184a7e4362b585dfab8966102552f8317e3027d5d32 SHA512 9a4fc3e95c9b6bd399925bb8554acf93711a015756cc826a9f9ed06e91538addb78b3120876c46af4245892adfca7428d915a33d6d2890d9c0196cef5d4faa0f
24
25 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
26 new file mode 100644
27 index 00000000000..dfc0b43cc28
28 --- /dev/null
29 +++ b/dev-vcs/git-filter-repo/git-filter-repo-2.33.0.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{9..10} )
37 +inherit python-single-r1
38 +
39 +DESCRIPTION="Quickly rewrite git repository history (filter-branch replacement)"
40 +HOMEPAGE="https://github.com/newren/git-filter-repo/"
41 +SRC_URI="
42 + https://github.com/newren/git-filter-repo/releases/download/v${PV}/${P}.tar.xz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +REQUIRED_USE=${PYTHON_REQUIRED_USE}
48 +
49 +RDEPEND="
50 + ${PYTHON_DEPS}
51 + >=dev-vcs/git-2.24.0"
52 +
53 +src_compile() {
54 + :
55 +}
56 +
57 +src_test() {
58 + bash t/run_tests || die
59 +}
60 +
61 +src_install() {
62 + python_fix_shebang git-filter-repo
63 + dobin git-filter-repo
64 + doman Documentation/man1/git-filter-repo.1
65 +}
66
67 diff --git a/dev-vcs/git-filter-repo/metadata.xml b/dev-vcs/git-filter-repo/metadata.xml
68 new file mode 100644
69 index 00000000000..8cb46cff61f
70 --- /dev/null
71 +++ b/dev-vcs/git-filter-repo/metadata.xml
72 @@ -0,0 +1,11 @@
73 +<?xml version="1.0" encoding="UTF-8"?>
74 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
75 +<pkgmetadata>
76 + <maintainer type="person">
77 + <email>mgorny@g.o</email>
78 + <name>Michał Górny</name>
79 + </maintainer>
80 + <upstream>
81 + <remote-id type="github">newren/git-filter-repo</remote-id>
82 + </upstream>
83 +</pkgmetadata>