diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-08-28 09:13:40 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-08-28 10:25:47 +0300 |
commit | caf834a997374e35385a3a40d410b1f2361c69fe (patch) | |
tree | c7a785df010d37ffc09b165e36c678af2d194090 /dev-vcs | |
parent | dev-ruby/mechanize: remove unused patch(es) (diff) | |
download | gentoo-caf834a997374e35385a3a40d410b1f2361c69fe.tar.gz gentoo-caf834a997374e35385a3a40d410b1f2361c69fe.tar.bz2 gentoo-caf834a997374e35385a3a40d410b1f2361c69fe.zip |
dev-vcs/git-filter-repo: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-vcs')
-rw-r--r-- | dev-vcs/git-filter-repo/files/git-filter-repo-2.38.0-new-git.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-vcs/git-filter-repo/files/git-filter-repo-2.38.0-new-git.patch b/dev-vcs/git-filter-repo/files/git-filter-repo-2.38.0-new-git.patch deleted file mode 100644 index d54c6a7f8223..000000000000 --- a/dev-vcs/git-filter-repo/files/git-filter-repo-2.38.0-new-git.patch +++ /dev/null @@ -1,30 +0,0 @@ -https://github.com/newren/git-filter-repo/issues/523 -https://github.com/newren/git-filter-repo/pull/526 - -From 1db1650e6e14443a5a8163213434aec5e190f193 Mon Sep 17 00:00:00 2001 -From: Vladimir Petko <vladimir.petko@canonical.com> -Date: Fri, 8 Dec 2023 15:05:34 +1300 -Subject: [PATCH] support git 2.43 - -Git 2.43 changes --mark-tags to --[no-]mark-tags and --reencode to --[no-]reencode. Use both options for the detection check. - -Signed-off-by: Vladimir Petko <vladimir.petko@canonical.com> ---- a/git-filter-repo -+++ b/git-filter-repo -@@ -2067,13 +2067,13 @@ EXAMPLES - if b'--anonymize-map' not in output: # pragma: no cover - global date_format_permissive - date_format_permissive = False -- if b'--mark-tags' not in output: # pragma: no cover -+ if not any(x in output for x in [b'--mark-tags',b'--[no-]mark-tags']): # pragma: no cover - global write_marks - write_marks = False - if args.state_branch: - # We need a version of git-fast-export with --mark-tags - raise SystemExit(_("Error: need git >= 2.24.0")) -- if b'--reencode' not in output: # pragma: no cover -+ if not any(x in output for x in [b'--reencode', b'--[no-]reencode']): # pragma: no cover - if args.preserve_commit_encoding: - # We need a version of git-fast-export with --reencode - raise SystemExit(_("Error: need git >= 2.23.0")) - |