From owner-dev-commits-ports-main@freebsd.org Wed Sep 8 16:49:40 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4AA2167E169; Wed, 8 Sep 2021 16:49:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H4Sm41Qktz4Yk6; Wed, 8 Sep 2021 16:49:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0076516B0; Wed, 8 Sep 2021 16:49:40 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 188Gndk0087091; Wed, 8 Sep 2021 16:49:39 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 188GndN1087090; Wed, 8 Sep 2021 16:49:39 GMT (envelope-from git) Date: Wed, 8 Sep 2021 16:49:39 GMT Message-Id: <202109081649.188GndN1087090@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Kirill Ponomarev Subject: git: 1c5bcfb1241c - main - sysutils/py-salt: add Fish shell completion files. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: krion X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1c5bcfb1241cb5592cca0a1bd0009307d7de78e2 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Sep 2021 16:49:40 -0000 The branch main has been updated by krion: URL: https://cgit.FreeBSD.org/ports/commit/?id=1c5bcfb1241cb5592cca0a1bd0009307d7de78e2 commit 1c5bcfb1241cb5592cca0a1bd0009307d7de78e2 Author: Kirill Ponomarev AuthorDate: 2021-09-08 16:49:14 +0000 Commit: Kirill Ponomarev CommitDate: 2021-09-08 16:49:14 +0000 sysutils/py-salt: add Fish shell completion files. Approved by: maintainer --- sysutils/py-salt/Makefile | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/sysutils/py-salt/Makefile b/sysutils/py-salt/Makefile index b00959cd9fb5..b4238e374f3c 100644 --- a/sysutils/py-salt/Makefile +++ b/sysutils/py-salt/Makefile @@ -2,6 +2,7 @@ PORTNAME= salt PORTVERSION= 3003.3 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -60,8 +61,8 @@ SUB_FILES= pkg-message # Upstream archive contains files with UTF-8 names EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar -OPTIONS_DEFINE= AWS BASH TCP ZEROMQ ZSH -OPTIONS_DEFAULT= BASH ZEROMQ ZSH +OPTIONS_DEFINE= AWS BASH FISH TCP ZEROMQ ZSH +OPTIONS_DEFAULT= BASH FISH ZEROMQ ZSH AWS_DESC= Install dependencies required for Amazon Web Services TCP_DESC= Install dependencies required for TCP transport @@ -79,6 +80,15 @@ ZEROMQ_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyzmq>=2.2.0:net/py-pyzmq@${PY_FLAVOR ${PYTHON_PKGNAMEPREFIX}pycryptodomex>=3.9.7:security/py-pycryptodomex@${PY_FLAVOR} BASH_PLIST_FILES= share/bash-completion/completions/salt +FISH_PLIST_FILES= share/fish/completions/salt-call.fish \ + share/fish/completions/salt-cp.fish \ + share/fish/completions/salt-key.fish \ + share/fish/completions/salt-master.fish \ + share/fish/completions/salt-minion.fish \ + share/fish/completions/salt-run.fish \ + share/fish/completions/salt-syndic.fish \ + share/fish/completions/salt.fish \ + share/fish/completions/salt_common.fish ZSH_PLIST_FILES= share/zsh/site-functions/_salt post-patch: @@ -97,6 +107,11 @@ do-install-BASH-on: ${INSTALL_DATA} ${WRKSRC}/pkg/salt.bash \ ${STAGEDIR}${PREFIX}/share/bash-completion/completions/salt +do-install-FISH-on: + @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions/ + ${INSTALL_DATA} ${WRKSRC}/pkg/fish-completions/*.fish \ + ${STAGEDIR}${PREFIX}/share/fish/completions + do-install-ZSH-on: @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/pkg/zsh_completion.zsh \