Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: Gentoo is special
- X-seq: zsh-workers 33948
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: PATCH: Gentoo is special
- Date: Wed, 10 Dec 2014 15:18:00 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=sv0VoswA+Io5AiEVd/OwCqVw+e5W9rbOwd9Bb1wmMGw=; b=Sv0taeE8jTInBkwuommpIk0Itibkj6r0BFkrdj5jT+b0d6zP1UEoSQqDbBtkPue/E5 rB2VhXapEB500lwruL5Hi7UPxi8Y1SDXj+QGizZ4jTs+yvdQJyksQPaESHK7VVgpwhlz 5Ewl17da3mPAQdIKfv41Rg7bHnpWNNhWF+w4Og1e6QBNXaIaUqPROW+bdtxunkPgpqhL Ieod+uTBzo1w3LEc1lScRHdS7oDRBQNp4if75x6lKF5rmYjfB9arND0gaOX4lUTRnEzU UVq+ZHfw37Fj7yw3Ytus1lEUC34BHaKHDgv5BnLoNtPRNsKKLI5OF6DIq7ipbR/m5VLa KB/Q==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
I don't know what this does on BSD/Gentoo if that's still active, but
they get to keep the pieces.
% getent --version
getent (Gentoo 2.19-r1 p3) 2.19
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Thorsten Kukuk.
% iconv --version
iconv (Gentoo 2.19-r1 p3) 2.19
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Ulrich Drepper.
% ldd --version
ldd (Gentoo 2.19-r1 p3) 2.19
Copyright (C) 2014 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.
---
Completion/Unix/Command/_getent | 2 +-
Completion/Unix/Command/_iconv | 2 +-
Completion/Unix/Command/_ldd | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Completion/Unix/Command/_getent b/Completion/Unix/Command/_getent
index 3ea148b..b9aff66 100755
--- a/Completion/Unix/Command/_getent
+++ b/Completion/Unix/Command/_getent
@@ -5,7 +5,7 @@ local services databases keys
local -a args
typeset -A opt_args
-if _pick_variant -r is_gnu gnu='(GNU|EGLIBC)' unix --version; then
+if _pick_variant -r is_gnu gnu='(GNU|EGLIBC|Gentoo)' unix --version; then
args+=(
'(- 1 *)'{-\?,--help}'[display help information]'
'(- 1 *)--usage[display a short usage message]'
diff --git a/Completion/Unix/Command/_iconv b/Completion/Unix/Command/_iconv
index 82c2d32..4bf29d4 100644
--- a/Completion/Unix/Command/_iconv
+++ b/Completion/Unix/Command/_iconv
@@ -2,7 +2,7 @@
local expl curcontext="$curcontext" state line ret=1
-if _pick_variant libiconv='GNU*libiconv' glibc='(GNU*libc|EGLIBC)' unix --version; then
+if _pick_variant libiconv='GNU*libiconv' glibc='(GNU*libc|EGLIBC|Gentoo)' unix --version; then
local -a args
local exargs="-l --list -? --help --usage --version -V"
diff --git a/Completion/Unix/Command/_ldd b/Completion/Unix/Command/_ldd
index 0980bc0..381d127 100644
--- a/Completion/Unix/Command/_ldd
+++ b/Completion/Unix/Command/_ldd
@@ -1,6 +1,6 @@
#compdef ldd
-if _pick_variant gnu='(GNU|EGLIBC)' solaris --version; then
+if _pick_variant gnu='(GNU|EGLIBC|Gentoo)' solaris --version; then
args=(
'(- *)--version[display version information]'
'(- *)--help[display help information]'
--
2.2.0.GIT
Messages sorted by:
Reverse Date,
Date,
Thread,
Author