X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qt1-f175.google.com (mail-qt1-f175.google.com [209.85.160.175]) by lists.alpinelinux.org (Postfix) with ESMTP id C52EDF816F1 for ; Mon, 11 Feb 2019 02:00:13 +0000 (UTC) Received: by mail-qt1-f175.google.com with SMTP id y20so10448349qtm.13 for ; Sun, 10 Feb 2019 18:00:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=santana-tech.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=KjGk08zoqszssF5T2FbIEYnMQAmBQ3fHdQ68Mscezko=; b=mrei0B85ls/eUpWz7tnrUoY0LIHtFEVw6Awultpd3yqf6AQ8VfGJNkvoR5W1j+xzxQ uZh0DKqN2QGlOFeo4jz6cbJhDa/Xg3Cxlg2zr8oOvMv4WTOOpYtytqLKuh4Q3dCA4enK dvTG4SWLy7Rj3jlpUNufjrJ+yUsjTzB933VsCS+/iWb/EMgbbTEvPcb5QTYFV7ZRuBz2 tDhwJ1nQ0BHmAlb0X9X/3Y8bZDDCCWdmn0Ao2R/I000JpLypkB+RyKmyvB82r7bUVAxo nP40rsHCJXEpDqaYY9zyuxamxGSdYMITj8f1pT6yQ+uugSJ6v8NrIe0hdzFAlbblneK4 oRZQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=KjGk08zoqszssF5T2FbIEYnMQAmBQ3fHdQ68Mscezko=; b=diNkzM3//Rw0InwUmTYdGg5w82ZeP4ocqNFvNoWyFScb9xSYwxOQL9RiaGuIll9TXD +23eJ3zp8j2Y9PlJ4NhmCqKg41cfkxk3ft1c+1YZ9dOVmQvrFAzryTJ5evjYQkdO2F2i 6yMyQsrqWG0+IMSM41cGVfYG0AWDnU2YBg/9S2j8Eh/UPExqun42n9HjFvk+9NJLE5Hl 2E0ffPkOV84HTaF23gJVRBy2bt1PwRSX6eVoJ1R4uzkaoiN7bVvvyReZyPOjxWC9+3IQ lsAConc2yb4UEQBP/Apw/Gi9lI9YWTpkgKRuIgjL0VpdJcKyZyBYMVNv1P5oGsTYS1uB rqWw== X-Gm-Message-State: AHQUAubM6K9rXDrlNX7ELm5HCWNhAcp8L1WMR+0iQPH4gSCE42J7yZEj E+tbjBJ+7p1DkX155wT47v61CjtuvXk= X-Google-Smtp-Source: AHgI3IbBr5ZsQQSlTNXP5G0ZIbqNUmXQlM3xn06iUBQt+AndbgTFTxDP0bhFZv7WNOV7SLnG5l0ICA== X-Received: by 2002:ac8:1209:: with SMTP id x9mr11417986qti.199.1549850413100; Sun, 10 Feb 2019 18:00:13 -0800 (PST) Received: from localhost ([186.211.80.178]) by smtp.gmail.com with ESMTPSA id j68sm9839370qkf.84.2019.02.10.18.00.11 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 10 Feb 2019 18:00:12 -0800 (PST) From: Daniel Santana To: alpine-aports@lists.alpinelinux.org Cc: Daniel Santana Subject: [alpine-aports] [PATCH v2] main/talloc: include libtalloc.a on talloc-dev Date: Mon, 11 Feb 2019 00:00:07 -0200 Message-Id: <20190211020007.9671-1-daniel@santana.tech> X-Mailer: git-send-email 2.20.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Current talloc's Waf build setup doesn't include stlib feature, so we need to build the static library manually. This library is required to properly build the statically-linked PRoot binary on Alpine Linux. --- main/talloc/APKBUILD | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main/talloc/APKBUILD b/main/talloc/APKBUILD index 9c90711880..fd0c3ad2d9 100644 --- a/main/talloc/APKBUILD +++ b/main/talloc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: William Pitcock pkgname=talloc pkgver=2.1.14 -pkgrel=0 +pkgrel=1 pkgdesc="Memory pool management library" url="https://talloc.samba.org" arch="all" @@ -32,6 +32,9 @@ build() { --without-gettext \ --extra-python=/usr/bin/python3 make + + # talloc's Waf setup doesn't build static libraries, so we do it manually + ar qf libtalloc.a bin/default/talloc_*.o } check() { @@ -42,6 +45,7 @@ check() { package() { cd "$builddir" make DESTDIR="$pkgdir" install + install -Dm644 libtalloc.a "$pkgdir"/usr/lib/libtalloc.a } _py2() { -- 2.20.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---