summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-03-25 19:04:26 +0100
committerMatthew Smith <matthew@gentoo.org>2024-04-14 18:36:45 +0000
commit1f68a0d28e2ff6784086820066990a325364b815 (patch)
tree8c079f5b39dfcb1871975e33533a19fa6507e525 /dev-util
parentdev-java/tomcat-native: Stabilize 1.3.0 amd64, #930005 (diff)
downloadgentoo-1f68a0d28e2ff6784086820066990a325364b815.tar.gz
gentoo-1f68a0d28e2ff6784086820066990a325364b815.tar.bz2
gentoo-1f68a0d28e2ff6784086820066990a325364b815.zip
dev-util/rebar: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/rebar/files/rebar-3.18.0-bootstrap-vendored.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-util/rebar/files/rebar-3.18.0-bootstrap-vendored.patch b/dev-util/rebar/files/rebar-3.18.0-bootstrap-vendored.patch
deleted file mode 100644
index 633a74e174d4..000000000000
--- a/dev-util/rebar/files/rebar-3.18.0-bootstrap-vendored.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 4c4b0d39dba07911a707f8b8f17711900d2ee786 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Viktor=20S=C3=B6derqvist?= <viktor.soderqvist@est.tech>
-Date: Fri, 5 Nov 2021 09:46:29 +0100
-Subject: [PATCH] Make bootstrap use _checkouts
-
-This makes it possible to run the bootstrap offline by placing the deps
-in the using the already documented _checkouts directory in advance.
----
- bootstrap | 14 +++++++++++++-
- 1 file changed, 13 insertions(+), 1 deletion(-)
-
-diff --git a/bootstrap b/bootstrap
-index 9632b6c77..18cc46216 100755
---- a/bootstrap
-+++ b/bootstrap
-@@ -92,7 +92,19 @@ fetch_and_compile({Name, ErlFirstFiles}, Deps) ->
-
- compile(Name, ErlFirstFiles).
-
--fetch({pkg, Name, Vsn}, App) ->
-+fetch(Source, App) ->
-+ Dir = filename:join([filename:absname("_checkouts"), App]),
-+ case filelib:is_dir(Dir) of
-+ false ->
-+ fetch_from_hex(Source, App);
-+ true ->
-+ io:format("Using ~p from ~p~n", [App, Dir]),
-+ Dest = filename:absname("_build/default/lib"),
-+ ok = filelib:ensure_dir(filename:join([Dest, "dummy"])),
-+ cp_r([Dir], Dest)
-+ end.
-+
-+fetch_from_hex({pkg, Name, Vsn}, App) ->
- Dir = filename:join([filename:absname("_build/default/lib/"), App]),
- case filelib:is_dir(Dir) of
- false ->