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 472E55C4458 for ; Tue, 22 Nov 2016 22:01:26 +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=CJV+vqw9YTxz0emYfbNtvB9iQRyfP7LnWaHHP8GMsg29A6XyyZfT6E3C0zW/eIdrYpAcdlhnVTEM b+67TDbpNUPS+z+qPP3XkqaYPuYX3aGj76uK/t2o9S5dIoZkVVMC Received: from localhost (89-74-198-11.dynamic.chello.pl [89.74.198.11]) by mx.zohomail.com with SMTPS id 1479852077246429.76428556832525; Tue, 22 Nov 2016 14:01:17 -0800 (PST) From: Przemyslaw Pawelczyk To: ncopa@alpinelinux.org Cc: alpine-aports@lists.alpinelinux.org, timo.teras@iki.fi Subject: [alpine-aports] [PATCH] main/binutils: Enable deterministic archives. Date: Tue, 22 Nov 2016 23:01:02 +0100 Message-Id: <20161122220102.22287-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: "GNU ar and other tools from binutils have a deterministic mode which will use zero for UIDs, GIDs, timestamps, and use consistent file modes for all files. It can be made the default by passing the --enable-deterministic-archives option to ./configure." Quoted from: https://reproducible-builds.org/docs/archives/ --- main/binutils/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/binutils/APKBUILD b/main/binutils/APKBUILD index cda0c35442f0..8bacc931c21f 100644 --- a/main/binutils/APKBUILD +++ b/main/binutils/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=binutils pkgver=2.27 -pkgrel=0 +pkgrel=1 pkgdesc="Tools necessary to build programs" url="http://www.gnu.org/software/binutils/" depends="" @@ -51,6 +51,7 @@ build() { --enable-64-bit-bfd \ --enable-plugins \ --enable-relro \ + --enable-deterministic-archives \ $_cross_configure \ --disable-werror \ --disable-nls \ -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---