[arch-commits] Commit in fzf/repos/community-x86_64 (PKGBUILD PKGBUILD)

Morten Linderud foxboron at archlinux.org
Sat Apr 4 14:42:02 UTC 2020


    Date: Saturday, April 4, 2020 @ 14:42:02
  Author: foxboron
Revision: 611631

archrelease: copy trunk to community-x86_64

Added:
  fzf/repos/community-x86_64/PKGBUILD
    (from rev 611630, fzf/trunk/PKGBUILD)
Deleted:
  fzf/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  125 +++++++++++++++++++++++++++++--------------------------------
 1 file changed, 61 insertions(+), 64 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-04-04 14:41:54 UTC (rev 611630)
+++ PKGBUILD	2020-04-04 14:42:02 UTC (rev 611631)
@@ -1,64 +0,0 @@
-# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
-# Maintainer: Morten Linderud <foxboron at archlinux.org>
-# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
-# Contributor: Pierre Neidhardt <ambrevar at gmail.com>
-# Contributor: Hermann Zahnweh (eigengrau)
-# Contributor: Andy Weidenbaum <archbaum at gmail.com>
-# Contributor: foalsrock <foalsrock at gmail dot-com>
-# Contributor: jebaum <jebaum at ucla dot edu>
-
-pkgname=fzf
-pkgver=0.21.0.1
-# Remove after next release
-_pkgver="${pkgver%.*}"
-_patch="${pkgver##*.}"
-pkgrel=1
-pkgdesc='Command-line fuzzy finder'
-arch=('x86_64')
-url='https://github.com/junegunn/fzf'
-license=('MIT')
-depends=('bash')
-makedepends=('git' 'go-pie')
-optdepends=('fish: fish keybindings'
-            'tmux: fzf-tmux script for launching fzf in a tmux pane'
-            'vim: plugin'
-            'zsh: zsh keybindings')
-source=("$pkgname-$pkgver.tar.gz::$url/archive/$_pkgver-$_patch.tar.gz")
-sha512sums=('4cdbeba23ae2434e090504321ba3e475a59a541c60d14132ce43c001deffa03e5ff47029dd7dea9651a0da0b8d2d155095a14d3e16d3125b23f4a8887c3ce828')
-
-build() {
-	cd $pkgname-$_pkgver-$_patch
-	export CGO_LDFLAGS="$LDFLAGS"
-	export GOFLAGS="-buildmode=pie -trimpath"
-	go build -o fzf .
-}
-
-check() {
-	cd $pkgname-$_pkgver-$_patch
-	go test ./...
-}
-
-package() {
-	cd $pkgname-$_pkgver-$_patch
-
-	## Man page
-	install -Dm644 man/man1/fzf.1 "$pkgdir"/usr/share/man/man1/fzf.1
-
-	## License
-	install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/fzf/LICENSE
-
-	## Binaries
-	install -dm755 "$pkgdir"/usr/bin
-	install -m755 fzf bin/fzf-tmux "$pkgdir"/usr/bin/
-
-	## Completion and keybindings
-	install -dm755 "$pkgdir"/usr/share/fzf
-	install -m644 shell/*.bash shell/*.zsh "$pkgdir"/usr/share/fzf
-
-	## Fish keybindings
-	install -Dm644 shell/key-bindings.fish "$pkgdir"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish
-
-	## Vim plugin
-	install -Dm644 plugin/fzf.vim "$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
-}
-

Copied: fzf/repos/community-x86_64/PKGBUILD (from rev 611630, fzf/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-04-04 14:42:02 UTC (rev 611631)
@@ -0,0 +1,61 @@
+# Maintainer: Thore Bödecker <foxxx0 at archlinux.org>
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Pierre Neidhardt <ambrevar at gmail.com>
+# Contributor: Hermann Zahnweh (eigengrau)
+# Contributor: Andy Weidenbaum <archbaum at gmail.com>
+# Contributor: foalsrock <foalsrock at gmail dot-com>
+# Contributor: jebaum <jebaum at ucla dot edu>
+
+pkgname=fzf
+pkgver=0.21.1
+pkgrel=1
+pkgdesc='Command-line fuzzy finder'
+arch=('x86_64')
+url='https://github.com/junegunn/fzf'
+license=('MIT')
+depends=('bash')
+makedepends=('git' 'go-pie')
+optdepends=('fish: fish keybindings'
+            'tmux: fzf-tmux script for launching fzf in a tmux pane'
+            'vim: plugin'
+            'zsh: zsh keybindings')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('db816446a2d562148f7bfe4fc99696e0786d4acfe021ba9bf31344c81219b8a61cae03ec7d4b279ab3dba9ca93fc883e655fc71a750fb6f1905612db071ac831')
+
+build() {
+	cd $pkgname-$pkgver
+	export CGO_LDFLAGS="$LDFLAGS"
+	export GOFLAGS="-buildmode=pie -trimpath"
+	go build -o fzf .
+}
+
+check() {
+	cd $pkgname-$pkgver
+	go test ./...
+}
+
+package() {
+	cd $pkgname-$pkgver
+
+	## Man page
+	install -Dm644 man/man1/fzf.1 "$pkgdir"/usr/share/man/man1/fzf.1
+
+	## License
+	install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/fzf/LICENSE
+
+	## Binaries
+	install -dm755 "$pkgdir"/usr/bin
+	install -m755 fzf bin/fzf-tmux "$pkgdir"/usr/bin/
+
+	## Completion and keybindings
+	install -dm755 "$pkgdir"/usr/share/fzf
+	install -m644 shell/*.bash shell/*.zsh "$pkgdir"/usr/share/fzf
+
+	## Fish keybindings
+	install -Dm644 shell/key-bindings.fish "$pkgdir"/usr/share/fish/vendor_functions.d/fzf_key_bindings.fish
+
+	## Vim plugin
+	install -Dm644 plugin/fzf.vim "$pkgdir"/usr/share/vim/vimfiles/plugin/fzf.vim
+}
+



More information about the arch-commits mailing list