summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Weidenbaum2015-07-03 13:07:20 -0700
committerAndy Weidenbaum2015-07-03 13:07:20 -0700
commit2afb95c49a27cbdfc1dbd0290fa788460aa884b0 (patch)
tree5870a2337fc0ef214e16c97a0a41fa74205ccc39
parentd731edf8ffbc114b0d2800d0baa887132a4ed2c4 (diff)
downloadaur-2afb95c49a27cbdfc1dbd0290fa788460aa884b0.tar.gz
update pkgver to 0.0.6, rm post_upgrade warning
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
-rw-r--r--fzf-extras.install25
3 files changed, 5 insertions, 30 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c3739748e15d..d226bb961da9 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = fzf-extras
pkgdesc = Extra keybindings for fzf
- pkgver = 0.0.5
+ pkgver = 0.0.6
pkgrel = 1
url = https://github.com/atweiden/fzf-extras
install = fzf-extras.install
@@ -13,8 +13,8 @@ pkgbase = fzf-extras
optdepends = vim-fzf: fzf.vim
optdepends = xdg-utils: open files
optdepends = zsh: zsh keybindings
- source = fzf-extras-0.0.5.tar.gz::https://codeload.github.com/atweiden/fzf-extras/tar.gz/0.0.5
- sha256sums = ab46f8cd298460d85fa9402f64d4d62563d98be0bc241fa8bc61632ccb824cd9
+ source = fzf-extras-0.0.6.tar.gz::https://codeload.github.com/atweiden/fzf-extras/tar.gz/0.0.6
+ sha256sums = 46c75689bc4b9501a6bfb88a29b69bcae15eeb529fdf5b04541f84b2087efa6e
pkgname = fzf-extras
diff --git a/PKGBUILD b/PKGBUILD
index 4752d8ac50a7..e7f22786f9ca 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Andy Weidenbaum <archbaum@gmail.com>
pkgname=fzf-extras
-pkgver=0.0.5
+pkgver=0.0.6
pkgrel=1
pkgdesc="Extra keybindings for fzf"
arch=('any')
@@ -15,7 +15,7 @@ optdepends=('ctags: select tags'
url="https://github.com/atweiden/fzf-extras"
license=('MIT')
source=($pkgname-$pkgver.tar.gz::https://codeload.github.com/atweiden/$pkgname/tar.gz/$pkgver)
-sha256sums=('ab46f8cd298460d85fa9402f64d4d62563d98be0bc241fa8bc61632ccb824cd9')
+sha256sums=('46c75689bc4b9501a6bfb88a29b69bcae15eeb529fdf5b04541f84b2087efa6e')
install=fzf-extras.install
package() {
diff --git a/fzf-extras.install b/fzf-extras.install
index 5d132198eb4b..d373f4d196ef 100644
--- a/fzf-extras.install
+++ b/fzf-extras.install
@@ -2,10 +2,6 @@ post_install() {
printf "%b\n" "$fzfin"
}
-post_upgrade() {
- printf "%b\n" "$fzfup"
-}
-
read -d '' fzfin <<'EOF'
fzf-extras
==========
@@ -15,24 +11,3 @@ Add the following to your shell config:
. /etc/profile.d/fzf-extras.bash # when bash
. /etc/profile.d/fzf-extras.zsh # when zsh
EOF
-
-read -d '' fzfup <<'EOF'
-fzf-extras
-==========
-
-Bash Users: Potentially Breaking Update (2015-05-09)
-----------------------------------------------------
-
-To ensure zsh compatibility, Bash keybindings are now
-installed to:
-
- /etc/profile.d/fzf-extras.bash
-
-Formerly, Bash keybindings were installed as:
-
- /etc/profile.d/fzf-extras.sh
-
-Bash users' config may be broken by this update if bashrc sources
-/etc/profile.d/fzf-extra.sh, as that file is now absent. Consult with
-your local config.
-EOF