X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mailauth3.nine.ch (mailauth3.nine.ch [94.230.211.187]) by lists.alpinelinux.org (Postfix) with ESMTP id 9CC295C4411 for ; Tue, 7 Mar 2017 14:14:25 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by mailauth3.nine.ch (Postfix) with ESMTP id B626711F8A8; Tue, 7 Mar 2017 15:14:23 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mailauth3.nine.ch X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-999 required=5.6 tests=[ALL_TRUSTED=-1, HEADER_FROM_DIFFERENT_DOMAINS=0.001] autolearn=disabled Received: from mailauth3.nine.ch ([127.0.0.1]) by localhost (mailauth3.nine.ch [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GsDSN1sk5SVH; Tue, 7 Mar 2017 15:14:22 +0100 (CET) Received: from vimes (174.180.4.85.dynamic.wline.res.cust.swisscom.ch [85.4.180.174]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: pf@1042.ch) by mailauth3.nine.ch (Postfix) with ESMTPSA; Tue, 7 Mar 2017 15:14:22 +0100 (CET) Received: by vimes (Postfix, from userid 1000) id 992C12010E; Tue, 7 Mar 2017 15:14:22 +0100 (CET) From: Jean-Louis Fuchs To: alpine-aports@lists.alpinelinux.org Cc: Jean-Louis Fuchs Subject: [alpine-aports] [PATCH] main/libuv: Enable check and debug package Date: Tue, 7 Mar 2017 15:14:09 +0100 Message-Id: <20170307141409.16863-1-ganwell@fangorn.ch> X-Mailer: git-send-email 2.11.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/libuv/APKBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/main/libuv/APKBUILD b/main/libuv/APKBUILD index 844e334823..a99fb66324 100644 --- a/main/libuv/APKBUILD +++ b/main/libuv/APKBUILD @@ -3,13 +3,13 @@ # Maintainer: Natanael Copa pkgname=libuv pkgver=1.11.0 -pkgrel=0 +pkgrel=1 pkgdesc="Cross-platform asychronous I/O" url="http://libuv.org" arch="all" license="MIT BSD ISC" makedepends="automake autoconf libtool linux-headers" -subpackages="$pkgname-dev" +subpackages="$pkgname-dev $pkgname-dbg" source="http://dist.libuv.org/dist/v$pkgver/$pkgname-v$pkgver.tar.gz" builddir="$srcdir/$pkgname-v$pkgver" @@ -40,4 +40,9 @@ package() { "$pkgdir"/usr/share/licenses/$pkgname/LICENSE } +check() { + cd "$builddir" + make check || return 1 +} + sha512sums="5b56e4c337093c6ddc12f8353b011fba9e57fd84565e279bfc13a7d16d3b6dc01f02fee52a32f38ef630a0f5200fc63f3cc04137af21942422c3dcf535212f02 libuv-v1.11.0.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---