summaryrefslogtreecommitdiff
path: root/app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-09-13 11:40:31 +0200
committerKarel Kočí <cynerd@email.cz>2020-09-13 11:40:31 +0200
commitb8bc839419cc88f46d3ec95f3c3dc8171cfdde84 (patch)
tree00269c4f130ea88f63dc1eda3f39ab183b99863c /app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch
parentf7fcdddf3de4c7406de3b6f95bbd909473a494da (diff)
downloadgentoo-personal-overlay-b8bc839419cc88f46d3ec95f3c3dc8171cfdde84.tar.gz
gentoo-personal-overlay-b8bc839419cc88f46d3ec95f3c3dc8171cfdde84.tar.bz2
gentoo-personal-overlay-b8bc839419cc88f46d3ec95f3c3dc8171cfdde84.zip
app-shells/lxd-zsh-completions: update to latest commit
Diffstat (limited to 'app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch')
-rw-r--r--app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch b/app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch
deleted file mode 100644
index 1884e68..0000000
--- a/app-shells/lxd-zsh-completions/files/lxd-zsh-completions-20190522-fix-awk-syntax-error.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From d33f60339259e5e8a345b8b1091e3e4158758b27 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= <karel.koci@nic.cz>
-Date: Wed, 18 Sep 2019 09:53:10 +0200
-Subject: [PATCH] Fix awk script syntax error
-
-Space does not have to be escaped and awk is annoyingly producing
-warning about it to terminal.
-This just removes unnecessary escape of spaces in regexp.
----
- _lxc | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/_lxc b/_lxc
-index e9ef9f1..420be6d 100644
---- a/_lxc
-+++ b/_lxc
-@@ -837,12 +837,12 @@ __lxc_containers_all () {
-
- __lxc_images_as_fingerprint () {
- local -a _l
-- _l=(${(@f)"$(_call_program images lxc image list | tail -n +4 | egrep -e '^\|' | awk '{split($0,a,"|"); for(i in a){ sub(/^[\ \t]+/,"",a[i]);sub(/[\ \t]+$/,"",a[i]);}; (a[2]=="") ? b=" (not aliased)" : b=" (aliased as " a[2] ")" ; print a[3] ":" a[5] b }' )"})
-+ _l=(${(@f)"$(_call_program images lxc image list | tail -n +4 | egrep -e '^\|' | awk '{split($0,a,"|"); for(i in a){ sub(/^[ \t]+/,"",a[i]);sub(/[ \t]+$/,"",a[i]);}; (a[2]=="") ? b=" (not aliased)" : b=" (aliased as " a[2] ")" ; print a[3] ":" a[5] b }' )"})
- _describe -t images_as_fingerprint 'Images as fingerprint' _l
- }
-
- __lxc_images_as_alias () {
-- _l=(${(@f)"$(_call_program images lxc image alias list | tail -n +4 | egrep -e '^\|' | awk '{split($0,a,"|"); for(i in a){ sub(/^[\ \t]+/,"",a[i]);sub(/[\ \t]+$/,"",a[i]);}; (a[4]=="") ? b="" : b=" - " a[4] ;print a[2] ":" a[3] b }' )"})
-+ _l=(${(@f)"$(_call_program images lxc image alias list | tail -n +4 | egrep -e '^\|' | awk '{split($0,a,"|"); for(i in a){ sub(/^[ \t]+/,"",a[i]);sub(/[ \t]+$/,"",a[i]);}; (a[4]=="") ? b="" : b=" - " a[4] ;print a[2] ":" a[3] b }' )"})
- _describe -t images_as_alias 'Images as alias' _l
- }
-
---
-2.27.0
-