diff options
author | Cem Keylan <cem@ckyln.com> | 2020-02-23 03:01:41 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-02-23 03:01:41 +0300 |
commit | ecec1dc396b18267c3f76d59865ff94a47b3cac4 (patch) | |
tree | 3ac624b822bb1448fc781c68ca6fa701c0d720fc /core/kiss-utils/patches | |
parent | 64046c9fae34bdf9e4b03c93a57a98e73a3b1bd0 (diff) | |
download | repository-ecec1dc396b18267c3f76d59865ff94a47b3cac4.tar.gz |
kiss-utils: bump to 1.7.0
Diffstat (limited to 'core/kiss-utils/patches')
-rw-r--r-- | core/kiss-utils/patches/carbs-chbuild.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/core/kiss-utils/patches/carbs-chbuild.patch b/core/kiss-utils/patches/carbs-chbuild.patch deleted file mode 100644 index 5b25233b..00000000 --- a/core/kiss-utils/patches/carbs-chbuild.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- a/contrib/kiss-chbuild -+++ b/contrib/kiss-chbuild -@@ -15,18 +15,19 @@ - - cd "${cac_dir:=$KISS_ROOT${XDG_CACHE_HOME:-$HOME/.cache}/kiss}" - --[ -f kiss-chroot.tar.xz ] || { -+[ -f carbs-rootfs.tar.xz ] || { - log "Downloading chroot tarball" -- wget https://dl.getkiss.org/kiss-chroot.tar.xz -+ wget https://dl.carbslinux.org/releases/carbs-rootfs.tar.xz - } - --[ -d kiss-chroot ] || { -+[ -d carbs-chroot ] || { - log "Extracting chroot" -- tar xvf kiss-chroot.tar.xz -+ mkdir -p carbs-chroot -+ tar xvf carbs-rootfs.tar.xz -C carbs-chroot - } - - log "Creating temporary chroot" --cp -a kiss-chroot "chroot-$pid" -+cp -a carbs-chroot "chroot-$pid" - - trap clean EXIT INT - |