X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-wm1-f44.google.com (mail-wm1-f44.google.com [209.85.128.44]) by lists.alpinelinux.org (Postfix) with ESMTP id A8283F84EBC for ; Tue, 5 Mar 2019 16:00:50 +0000 (UTC) Received: by mail-wm1-f44.google.com with SMTP id e74so3080909wmg.3 for ; Tue, 05 Mar 2019 08:00:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=o5FeUROD5UpsrzVluyXE6BP9zBly3aqi8DpcTSuTeRY=; b=Qf4JBS2PGyYsKQs61Pbz7yxp3qM7p8mSnPsSeVzm7biwCVKuWMIOVBMOZDN+LKuO2J AzVRelhjn5g90BCyCEmvvh4kbohQ0EbBfHDobECjfwZQGC36HR6nrEuA0BSG+IU9iwQj UhHTJ9WH0KyvF+Fwx+SZSO2yqcGv4dYx8JKzwlZGhUf6GjbMAUKUXVnc0f5zGwvi0SAA tKjkVwGMqTLVa0Feurx8NiD/PceydZiPTb3HSwXjHT1GK6RTOj4u0eTGu4m0gG3hIt5V y11D86FEGEc/JasOJBhfvH5C6DasJflNeUC5gk78wgLeZL+so6H7L9J7QtCmSml1smr0 K+tw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=o5FeUROD5UpsrzVluyXE6BP9zBly3aqi8DpcTSuTeRY=; b=PUca6DfoZayRlMG3TaELN3G9Fk26u0dUEyZfDwpMAjm6lNvL2csnfuw7ddzf2LE57X 3tp7qyqusz7aNaXitgwvBXzlpNejZlpbJc03wHrmAFzQltHjXiYRJJSoSV93txyZ+pJl 2hvy03ejImGM0Y5G3AzEX3vmftltKwXB4i+8QbxGFNPytRfKEnq6m2q4ADBsUapetac7 1MMhYc7oImfZJ+228bpLJxHEYottKGk+ImnYSTFLyGhe7nLeheO9r0bbNAT66Sa88NG6 0Xnj0BA3VTUwj2omdqczN43fnpxsvpwmi3gLPFuA8SzRPYuJdaq3y8bSEvDXo7ftI7OH w/kA== X-Gm-Message-State: APjAAAVPNZ9z6nWfAJwk5go/4hoKR9xBYsOWg3gNLkaijWjD6ob7/IEy 0m20hrB+2+SLiOKYbgeiL27pzEEqNSb4TA== X-Google-Smtp-Source: APXvYqyKR5lKAUGOxRESx2IzrahhGTB3U7CxaQ4N4ie2KulHpFsNc0PMvmfpYmVKddjjHY+Dh4FeBQ== X-Received: by 2002:a1c:4889:: with SMTP id v131mr3145638wma.146.1551801649672; Tue, 05 Mar 2019 08:00:49 -0800 (PST) Received: from alpinesway2vm.my.domain (pubht46.bham.ac.uk. [147.188.137.46]) by smtp.gmail.com with ESMTPSA id j8sm12668258wro.52.2019.03.05.08.00.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 05 Mar 2019 08:00:49 -0800 (PST) From: Matt Hill To: alpine-aports@lists.alpinelinux.org Cc: Matt Hill Subject: [alpine-aports] [PATCH] community/fzf: Add neovim subpackage Date: Tue, 5 Mar 2019 16:00:38 +0000 Message-Id: <20190305160038.8234-1-theothermatt@gmail.com> X-Mailer: git-send-email 2.20.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://github.com/junegunn/fzf/blob/master/README-VIM.md Basic integration for Neovim --- community/fzf/APKBUILD | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/community/fzf/APKBUILD b/community/fzf/APKBUILD index dd7fc77f25..908b1b5eb4 100644 --- a/community/fzf/APKBUILD +++ b/community/fzf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Kevin Daudt pkgname=fzf pkgver=0.17.5 -pkgrel=2 +pkgrel=3 pkgdesc="A command-line fuzzy finder" url="https://github.com/junegunn/fzf" arch="all !s390x !aarch64 !armhf !armv7" @@ -12,6 +12,7 @@ subpackages=" $pkgname-tmux::noarch $pkgname-bash-completion:bashcomp:noarch $pkgname-zsh-completion:zshcomp:noarch + $pkgname-neovim:nvim:noarch " source="$pkgname-$pkgver.tar.gz::https://github.com/junegunn/fzf/archive/$pkgver.tar.gz no-glide-install.patch" @@ -71,5 +72,12 @@ zshcomp() { install -m0644 shell/key-bindings.zsh "$subpkgdir"/usr/share/fzf/ } +nvim() { + pkgdesc="fzf vim plugin" + cd "$builddir" + mkdir -p "$subpkgdir"/usr/share/nvim/runtime/plugin/ + install -Dm0644 plugin/fzf.vim "$subpkgdir"/usr/share/nvim/runtime/plugin/ +} + sha512sums="adb5290317362c32d053294a2dd9a2aa11711521635c1cb1fc11001dea1b06e27856a7c54e7316d211abee3304cc56b8a9ee60773bb99cb4132b533f5464a430 fzf-0.17.5.tar.gz daa16985079e3b55ccf5e74dde356e1e13e43865c9809e432b5d272b053f541f1eacd402f3b04957ee855fb8c0ca1820b507d08e408f55dc80004990a949874c no-glide-install.patch" -- 2.20.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---