diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-05-07 06:59:03 -0300 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-09 20:20:11 +0000 |
commit | aff3750e3ebe69036f01e708e4ec07827f9348b1 (patch) | |
tree | 11b69c831ac28fe77f16fe03fa914b08b8ad7ad2 /testing/direnv | |
parent | 0c4d087005efaa8f999cdec22b09ab3f60ad00a4 (diff) | |
download | aports-aff3750e3ebe69036f01e708e4ec07827f9348b1.tar.bz2 aports-aff3750e3ebe69036f01e708e4ec07827f9348b1.tar.xz |
testing/direnv: upgrade to 2.20.1
Diffstat (limited to 'testing/direnv')
-rw-r--r-- | testing/direnv/APKBUILD | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/testing/direnv/APKBUILD b/testing/direnv/APKBUILD index 28396f4522..0f6cf590c2 100644 --- a/testing/direnv/APKBUILD +++ b/testing/direnv/APKBUILD @@ -1,9 +1,9 @@ # Maintainer: pkgname=direnv -pkgver=2.15.2 +pkgver=2.20.1 pkgrel=0 pkgdesc="Environment variable switcher for the shell" -url="http://direnv.net" +url="https://direnv.net" arch="all" license="MIT" checkdepends="bash" @@ -20,18 +20,17 @@ prepare() { } build() { - cd "$builddir" make GOPATH="$srcdir" } check() { - cd "$builddir" - make test GOPATH="$srcdir" + # Also has tests for tcsh and elvish, this manual call is done instead of + # tests to avoid unwanted tests like 'shellcheck' and 'go-fmt' + GOPATH="$srcdir" make test-go test-bash } package() { - cd "$builddir" make DESTDIR="$pkgdir/usr" install } -sha512sums="f973ce55844fce97ad5a93832d53a8a0f4544080022f869c1a83dc3cf07ee86c1ea1a1cb31ddc20c4f5d205825e70405539bf866889c0aaafc7baf75b98d2fbe direnv-2.15.2.tar.gz" +sha512sums="f438e0b41c3f1ef41841c08eff4fefb8684f40b23a1d54c03b8d4ab2c81143bd3314fda83dc334dcd6233cdecf50764f6d61afae0ae6c450a6b8f4f181c5a931 direnv-2.20.1.tar.gz" |