From patchwork Fri Feb 24 23:05:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timo Wilken X-Patchwork-Id: 47289 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id 014F71691E; Fri, 24 Feb 2023 23:06:27 +0000 (GMT) X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H2,SPF_HELO_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.6 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTPS id 76CE71688A for ; Fri, 24 Feb 2023 23:06:24 +0000 (GMT) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pVh8i-00068R-JO; Fri, 24 Feb 2023 18:06:08 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVh8g-00066W-5b for guix-patches@gnu.org; Fri, 24 Feb 2023 18:06:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1pVh8c-0005TT-Ql for guix-patches@gnu.org; Fri, 24 Feb 2023 18:06:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1pVh8c-0007Z1-Lz for guix-patches@gnu.org; Fri, 24 Feb 2023 18:06:02 -0500 X-Loop: help-debbugs@gnu.org Subject: [bug#61775] [PATCH 2/2] gnu: Add zsh-completions Resent-From: Timo Wilken Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 24 Feb 2023 23:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 61775 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 61775@debbugs.gnu.org Cc: Timo Wilken Received: via spool by 61775-submit@debbugs.gnu.org id=B61775.167727995329043 (code B ref 61775); Fri, 24 Feb 2023 23:06:02 +0000 Received: (at 61775) by debbugs.gnu.org; 24 Feb 2023 23:05:53 +0000 Received: from localhost ([127.0.0.1]:38544 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVh8S-0007YM-KK for submit@debbugs.gnu.org; Fri, 24 Feb 2023 18:05:52 -0500 Received: from mx2.mythic-beasts.com ([46.235.227.24]:39017) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pVh8O-0007Xr-MP for 61775@debbugs.gnu.org; Fri, 24 Feb 2023 18:05:49 -0500 Received: by mailhub-hex-d.mythic-beasts.com with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1pVh8J-00CBib-13; Fri, 24 Feb 2023 23:05:43 +0000 From: Timo Wilken Date: Sat, 25 Feb 2023 00:05:24 +0100 Message-Id: <20230224230524.31292-2-guix@twilken.net> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230224230524.31292-1-guix@twilken.net> References: <20230224230524.31292-1-guix@twilken.net> MIME-Version: 1.0 X-BlackCat-Spam-Score: 49 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org X-getmail-retrieved-from-mailbox: Patches * gnu/packages/shellutils.scm (zsh-completions): New variable. --- gnu/packages/shellutils.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index 3553eaa4ed..4a2917cfa2 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -222,6 +222,32 @@ (define-public zsh-autosuggestions as you type.") (license license:expat))) +(define-public zsh-completions + (package + (name "zsh-completions") + (version "0.34.0") + (home-page "https://github.com/zsh-users/zsh-completions") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jjgvzj3v31yibjmq50s80s3sqi4d91yin45pvn3fpnihcrinam9")))) + (build-system copy-build-system) + (arguments + '(#:install-plan '(("src/" "share/zsh/site-functions/") + ("README.md" "share/doc/zsh-completions/")))) + (synopsis "Additional completion definitions for Zsh") + (description + "This projects aims at gathering/developing new completion scripts that +are not available in Zsh yet. The scripts may be contributed to the Zsh +project when stable enough.") + (license (license:non-copyleft "file://LICENSE" + "Custom BSD-like, permissive, non-copyleft license.")))) + (define-public zsh-history-substring-search (package (name "zsh-history-substring-search")