summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-09-05 15:20:54 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-09-05 15:38:26 +0200
commit07cf358333186bc7c3e72968da0e53bb9d599bb6 (patch)
tree86b4516fb8997972f774bc8ee45a41045890fbe4
parent41a69fc8e38d3ee6c2352d454f013c6f5ac412a0 (diff)
downloadmanifest-07cf358333186bc7c3e72968da0e53bb9d599bb6.tar.gz
manifest-07cf358333186bc7c3e72968da0e53bb9d599bb6.tar.bz2
manifest-07cf358333186bc7c3e72968da0e53bb9d599bb6.zip
replicant: Add wget implementation from LineageOS
While wget is not strictly required, LineageOS already implemented wget as a shell script, and it seems to be maintained accross different LineageOS versions. So it enables people familiar with wget to download files more easily and it also increase the compatibility of shell scripts and other software that use wget. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--replicant/repositories.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/replicant/repositories.xml b/replicant/repositories.xml
index 9f15b15..067c242 100644
--- a/replicant/repositories.xml
+++ b/replicant/repositories.xml
@@ -28,10 +28,20 @@
<project path="vendor/f-droid" name="replicant-next/vendor_f-droid" remote="replicant" revision="master" />
<project path="vendor/replicant" name="replicant-next/vendor_lineage" remote="replicant" />
- <!-- Port of GNU/Linux userspace -->
+ <!--
+ +=============================+
+ | Port of GNU/Linux userspace |
+ +=============================+
+ -->
+
+ <!-- Bash port to Android -->
<project path="external/bash" name="LineageOS/android_external_bash"
revision="lineage-18.1" remote="replicant-mirrors"/>
<project path="external/libncurses" name="LineageOS/android_external_libncurses"
revision="lineage-18.1" remote="replicant-mirrors"/>
+ <!-- Wget implementation -->
+ <project path="external/wget" name="replicant-next/external_wget"
+ remote="replicant"/>
+
</manifest>