X-Original-To: alpine-aports@lists.alpinelinux.org Received: from sender153-mail.zoho.com (sender153-mail.zoho.com [74.201.84.153]) by lists.alpinelinux.org (Postfix) with ESMTP id 026B35C3708 for ; Sun, 11 Dec 2016 21:46:41 +0000 (GMT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=zapps768; d=zoho.com; h=from:to:cc:subject:date:message-id; b=Sco/0eXBwgj9Ep27Guc1XaJ8Ig1ImuMdKs0XT2CehJpGQQYkP9TysjQsu/FLIxWYS6Z1Z1KIYrtb 9Z4hdW4jCxRj+NHgRV4twaRijrHlwj1F8TWzkrEhdkCIo4DfCTK7 Received: from localhost (89-76-125-170.dynamic.chello.pl [89.76.125.170]) by mx.zohomail.com with SMTPS id 148149279959375.75061247550639; Sun, 11 Dec 2016 13:46:39 -0800 (PST) From: Przemyslaw Pawelczyk To: ncopa@alpinelinux.org Cc: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/coreutils: Upgrade to 8.26. Modernize APKBUILD. Date: Sun, 11 Dec 2016 22:46:32 +0100 Message-Id: <20161211214632.22639-1-przemoc@zoho.com> X-Mailer: git-send-email 2.8.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Many bugfixes and new tool: b2sum for BLAKE2 digest algorithm. http://git.savannah.gnu.org/cgit/coreutils.git/plain/NEWS?h=v8.26 --- main/coreutils/APKBUILD | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/main/coreutils/APKBUILD b/main/coreutils/APKBUILD index 6d1ac36f8692..13273999f066 100644 --- a/main/coreutils/APKBUILD +++ b/main/coreutils/APKBUILD @@ -2,22 +2,21 @@ # Contributor: Michael Mason # Maintainer: Natanael Copa pkgname=coreutils -pkgver=8.25 +pkgver=8.26 pkgrel=0 pkgdesc="The basic file, shell and text manipulation utilities" url="http://www.gnu.org/software/coreutils/" arch="all" license="GPL3+" -depends= makedepends="bash acl-dev perl" -install= subpackages="$pkgname-doc" install="$pkgname.post-deinstall" source="http://ftp.gnu.org/gnu/coreutils/$pkgname-$pkgver.tar.xz" -_builddir="$srcdir"/$pkgname-$pkgver +builddir="$srcdir"/$pkgname-$pkgver + build() { - cd "$_builddir" + cd "$builddir" LIBS="-lrt" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -33,7 +32,7 @@ build() { } package() { - cd "$_builddir" + cd "$builddir" make DESTDIR="$pkgdir" install || return 1 rm -rf "$pkgdir"/usr/lib/charset.alias @@ -51,6 +50,6 @@ package() { mv chroot "$pkgdir"/usr/sbin/ } -md5sums="070e43ba7f618d747414ef56ab248a48 coreutils-8.25.tar.xz" -sha256sums="31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87 coreutils-8.25.tar.xz" -sha512sums="571f95d44987d373081ed4c6ac82155ad3dcd95621d7b1a7163597e80ecbbafef2cd74b2ef594587a443a1a4355083879f898a286bb0230c48112d43d076ccd6 coreutils-8.25.tar.xz" +md5sums="d5aa2072f662d4118b9f4c63b94601a6 coreutils-8.26.tar.xz" +sha256sums="155e94d748f8e2bc327c66e0cbebdb8d6ab265d2f37c3c928f7bf6c3beba9a8e coreutils-8.26.tar.xz" +sha512sums="1ca7b32a1564855e672f64cb815f858619dd4308af1c9763959d06fab1ecd51385c4c61d987ceec7ff6baaaac699f2db10be4be7e40b2c6a6d4ffc3911180b03 coreutils-8.26.tar.xz" -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---