X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-qk1-f175.google.com (mail-qk1-f175.google.com [209.85.222.175]) by lists.alpinelinux.org (Postfix) with ESMTP id 7FFB2F83176 for ; Mon, 11 Feb 2019 01:55:49 +0000 (UTC) Received: by mail-qk1-f175.google.com with SMTP id y78so5532458qka.12 for ; Sun, 10 Feb 2019 17:55:49 -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=CNPUe7aYC/ITxejsMKnFGteszJe3JL6BCXV2lPyzOHk=; b=WLK2/uHO5c2Zye8E+kltThMwjp4Mj0WnLLOWImM3wRa57W0AVFrSnOYwuMh/dk/K7i 32ap3trhsm7nvsw2cBQmoNYhonNsCkUcPfZGU+Nz+cQdvRQwU1er0VJbMndomN6Y27c7 IaKlSBuNUvhi65y4eDQ3VTzs4MCtEFqMEI9cwH3ajdTLAtfhZa3HoShxHooRXcwtaI0e KpJ4/h1k96r7G0mRM4DU3Jt9GtLcl3hF9fvyyRl+nccmmiCTVG8wMwUPqovhj4wnrScT fibwg6B0ifd4nVYSia4IzSktBhpxrfKT3YPnHcqEJiRfibwus1dho5VNq84wDeG+sK3w 3mHQ== 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=CNPUe7aYC/ITxejsMKnFGteszJe3JL6BCXV2lPyzOHk=; b=SijRPojtz+teDGNdAnyvTodFIPYeuE5fpHV3hrAlMU5ggAKus3tfjJjo3D+3s6MTO6 nb2KLJ+dLnt7Mt+qRRRgJmtzLD0euHlc/VsqHR2FyXMQq1Y6STCGXSCAm5EI58YooSKS vd4pc95bSmduDuJIX/8EkuYPXGzg02WhIXfkxzBT93mdS8e9bVPe4C3gapJvR7l6GMqv GkQkDqHH1Av/EDyRAjl9gtdqSgByhB9ypY4ytZqTVVKX05BwxWgZ091+5dKpJXw12GzX P1j25YMciKreWnTnYTmN6AVWxx6F7UedU6VyE/mkuTKvLR8pgRkgnxKm3qg0LAyXyMqt bqkQ== X-Gm-Message-State: AHQUAuZ6UzbKe5++3pwLS4/v0XG4xkluCxCvdTPsiG80MGcLWUwFSdCM GsA8kJ0fkHYwDmJG0K9kQXBBYEK7UsY= X-Google-Smtp-Source: AHgI3Ib0QAFeGMvyV/R21lI1mmGfzPxGem7msUBFr4ec7JSJPjQ4v2oXU2tpEa+lNsFhZPzQErMMJg== X-Received: by 2002:a37:6a44:: with SMTP id f65mr24855315qkc.244.1549850148455; Sun, 10 Feb 2019 17:55:48 -0800 (PST) Received: from localhost ([186.211.80.178]) by smtp.gmail.com with ESMTPSA id u190sm9577232qkf.39.2019.02.10.17.55.47 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sun, 10 Feb 2019 17:55:47 -0800 (PST) From: Daniel Santana To: alpine-aports@lists.alpinelinux.org Cc: Daniel Santana Subject: [alpine-aports] [PATCH] main/talloc: include libtalloc.a on talloc-dev Date: Sun, 10 Feb 2019 23:55:43 -0200 Message-Id: <20190211015543.32694-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..db54a16635 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 shared 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 ---