diff options
author | Keith Maxwell <keith.maxwell@gmail.com> | 2019-04-08 13:39:19 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-04-08 14:44:51 +0000 |
commit | c3352161dc9c6d50d62071ae69e6cd02aaabb1d1 (patch) | |
tree | 433beb524d05f4ccafd353cab0eae67f0084d37e /testing/mynewt-newt | |
parent | ecf3646cffa789e9665e82909791da305873b378 (diff) | |
download | aports-c3352161dc9c6d50d62071ae69e6cd02aaabb1d1.tar.bz2 aports-c3352161dc9c6d50d62071ae69e6cd02aaabb1d1.tar.xz |
testing/mynewt-newt: upgrade to 1.6.0
Diffstat (limited to 'testing/mynewt-newt')
-rw-r--r-- | testing/mynewt-newt/APKBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testing/mynewt-newt/APKBUILD b/testing/mynewt-newt/APKBUILD index d69cc29c60..b44b2d534c 100644 --- a/testing/mynewt-newt/APKBUILD +++ b/testing/mynewt-newt/APKBUILD @@ -1,14 +1,14 @@ # Contributor: Oleg Titov <oleg.titov@gmail.com> # Maintainer: Oleg Titov <oleg.titov@gmail.com> pkgname=mynewt-newt -pkgver=1.5.0 +pkgver=1.6.0 _ver=${pkgver//./_}_tag pkgrel=0 pkgdesc="Apache Newt is a smart build and package management tool for Apache Mynewt Operating System" url="https://mynewt.apache.org" arch="x86_64 x86" license="Apache-2.0" -options="!check" # No test suit +options="!check" # unreleased test suite in separate repository depends="git" makedepends="go" subpackages="$pkgname-doc" @@ -22,10 +22,10 @@ build() { package() { cd "$builddir" - install -Dm 755 newt/newt ${pkgdir}/usr/bin/newt + install -Dm 755 newt/newt "${pkgdir}/usr/bin/newt" - install -Dm 644 -t ${pkgdir}/usr/share/licenses/${pkgname}/ LICENSE - install -Dm 644 -t ${pkgdir}/usr/share/doc/${pkgname}/ README.md + install -Dm 644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE + install -Dm 644 -t "${pkgdir}/usr/share/doc/${pkgname}/" README.md } -sha512sums="1e32db93946f75cc22f35d65c15bb4e505e4eed72e929e0864d13604c4f91da1b301ca5cf91650b4fedf47c2328bacc501fdc16b845b2f244d610aa9c710beee mynewt-newt-1.5.0.tar.gz" +sha512sums="37dd56b3aa7706931da6c858a757a8c5dc3058fec61b2bd394d411d3906c37706ce1df3daa124af388b725ead9478b9bd14143b881abd6ed1f0e0d0a16e2aba0 mynewt-newt-1.6.0.tar.gz" |