summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSefa Eyeoglu2021-03-26 08:42:21 +0100
committerSefa Eyeoglu2021-03-26 08:42:21 +0100
commitafcfc680b90a6e1c606d672a67a99ee5663c28cd (patch)
tree3db6759d1c599d62e50603d03ce0fbc40fa4aee2
parent58c02224117bf288174b1a30375200ceb3d454f0 (diff)
downloadaur-fisher-git.tar.gz
upgpkg: fisher-git 4.3.0.r0.g247b58e0d97c785e-1
upstream release Fix path of fisher.fish
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD5
-rw-r--r--fisher-git.install16
3 files changed, 3 insertions, 21 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f8c94d61958b..1b78a08c30c2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = fisher-git
pkgdesc = A package manager for the fish shell
- pkgver = 4.0.0.r4.g4f2bc7b
+ pkgver = 4.3.0.r0.g247b58e0d97c785e
pkgrel = 1
url = https://github.com/jorgebucaran/fisher
- install = fisher-git.install
arch = any
license = MIT
depends = fish>=2.3.0
diff --git a/PKGBUILD b/PKGBUILD
index 2c8b364893d9..e99ec4db61cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgname=fisher
pkgname=${_pkgname}-git
-pkgver=4.0.0.r4.g4f2bc7b
+pkgver=4.3.0.r0.g247b58e0d97c785e
pkgrel=1
pkgdesc="A package manager for the fish shell"
arch=(any)
@@ -12,7 +12,6 @@ license=("MIT")
depends=("fish>=2.3.0" "curl" "git")
provides=("$_pkgname")
conflicts=("$_pkgname")
-install=${pkgname}.install
source=("${_pkgname}::git+https://github.com/jorgebucaran/fisher.git")
sha512sums=('SKIP')
@@ -27,7 +26,7 @@ package() {
cd "$_pkgname"
# install fisher into the global fish directory
- install -Dm 644 fisher.fish "${pkgdir}/usr/share/fish/vendor_functions.d/fisher.fish"
+ install -Dm 644 functions/fisher.fish "${pkgdir}/usr/share/fish/vendor_functions.d/fisher.fish"
install -Dm 644 completions/fisher.fish "${pkgdir}/usr/share/fish/vendor_completions.d/fisher.fish"
# README and LICENSE
install -Dm 644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
diff --git a/fisher-git.install b/fisher-git.install
deleted file mode 100644
index 1f609d7fea7e..000000000000
--- a/fisher-git.install
+++ /dev/null
@@ -1,16 +0,0 @@
-function post_install {
- echo "
-If you upgraded from fisherman see the migration guide -> https://github.com/jorgebucaran/fisher/issues/450
-"
-}
-
-function post_upgrade {
- post_install
-}
-
-function post_remove {
- echo "
-Remember that your plugins and fisher config still reside in your home directory,
-usually ~/.config/fish/.
-"
-}