summaryrefslogtreecommitdiff
path: root/app-shells/bash/bash-9999.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-06-02 19:38:57 +0100
committerSam James <sam@gentoo.org>2025-06-02 19:38:57 +0100
commitb66b0b8864b90e3eb54aa631925c6015237510c3 (patch)
tree60c963645fe5b6f018b394be54c9a9d7782310d4 /app-shells/bash/bash-9999.ebuild
parenta33eaac861f50949faf82b7fda34130da2a2cc19 (diff)
downloadgentoo-b66b0b8864b90e3eb54aa631925c6015237510c3.tar.gz
gentoo-b66b0b8864b90e3eb54aa631925c6015237510c3.tar.bz2
gentoo-b66b0b8864b90e3eb54aa631925c6015237510c3.zip
app-shells/bash: drop ftp from SRC_URI
It shouldn't be needed these days, as e.g. alphas and such appear on the GNU mirrors too. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-shells/bash/bash-9999.ebuild')
-rw-r--r--app-shells/bash/bash-9999.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/app-shells/bash/bash-9999.ebuild b/app-shells/bash/bash-9999.ebuild
index de539bc422a0..3d5c11da478c 100644
--- a/app-shells/bash/bash-9999.ebuild
+++ b/app-shells/bash/bash-9999.ebuild
@@ -50,14 +50,14 @@ elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
SRC_URI="https://git.savannah.gnu.org/cgit/bash.git/snapshot/bash-${BASH_COMMIT}.tar.gz -> ${P}-${BASH_COMMIT}.tar.gz"
S=${WORKDIR}/${PN}-${BASH_COMMIT}
else
- my_urls=( {'mirror://gnu/bash','ftp://ftp.cwru.edu/pub/bash'}/"${MY_P}.tar.gz" )
+ my_urls=( "mirror://gnu/bash/${MY_P}.tar.gz" )
# bash-5.1 -> bash51
my_p=${PN}$(ver_cut 1-2) my_p=${my_p/.}
for (( my_patch_idx = 1; my_patch_idx <= PLEVEL; my_patch_idx++ )); do
printf -v my_patch_ver %s-%03d "${my_p}" "${my_patch_idx}"
- my_urls+=( {'mirror://gnu/bash','ftp://ftp.cwru.edu/pub/bash'}/"${MY_P}-patches/${my_patch_ver}" )
+ my_urls+=( "mirror://gnu/bash/${MY_P}-patches/${my_patch_ver}" )
MY_PATCHES+=( "${DISTDIR}/${my_patch_ver}" )
done