From 1105b99fc47aab9d935ceb16ad7d55a281f5f56b Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Thu, 26 Jul 2018 21:38:16 +0200 Subject: community/pacman-contrib: fix rankmirror.sh (FS32#47) --- community/pacman-contrib/PKGBUILD | 7 +++++++ community/pacman-contrib/rankmirror.sh.diff | 16 ++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 community/pacman-contrib/PKGBUILD create mode 100644 community/pacman-contrib/rankmirror.sh.diff diff --git a/community/pacman-contrib/PKGBUILD b/community/pacman-contrib/PKGBUILD new file mode 100644 index 00000000..3b82e161 --- /dev/null +++ b/community/pacman-contrib/PKGBUILD @@ -0,0 +1,7 @@ +source+=('rankmirror.sh.diff') +sha256sums+=('7a0fe662825d70decaa613a6d6104c39b3046f4ac710dc0c974316c671af35da') + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i "${srcdir}/rankmirror.sh.diff" +} diff --git a/community/pacman-contrib/rankmirror.sh.diff b/community/pacman-contrib/rankmirror.sh.diff new file mode 100644 index 00000000..c7ea00a1 --- /dev/null +++ b/community/pacman-contrib/rankmirror.sh.diff @@ -0,0 +1,16 @@ +diff --git a/src/rankmirrors.sh.in b/src/rankmirrors.sh.in +index 08f7e28..8f9143f 100644 +--- a/src/rankmirrors.sh.in ++++ b/src/rankmirrors.sh.in +@@ -79,10 +79,8 @@ getfetchurl() { + local replacedurl="${strippedurl//'$arch'/$ARCH}" + if [[ ! $TARGETREPO ]]; then + replacedurl="${replacedurl//'$repo'/core}" +- local tmp="${replacedurl%/*}" +- tmp="${tmp%/*}" + +- local reponame="${tmp##*/}" ++ local reponame="${replacedurl##*/}" + else + replacedurl="${replacedurl//'$repo'/$TARGETREPO}" + local reponame="$TARGETREPO" -- cgit v1.2.3-54-g00ecf