Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3B4D37A20D for ; Mon, 19 Sep 2016 15:10:05 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C423285F12; Mon, 19 Sep 2016 15:09:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F12C386075 for ; Mon, 19 Sep 2016 15:02:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id gqQTu3kLawQS for ; Mon, 19 Sep 2016 15:02:20 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 164FE8613F for ; Mon, 19 Sep 2016 09:17:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13972FBD1; Mon, 19 Sep 2016 09:17:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1474276678203180" MIME-Version: 1.0 Date: Mon, 19 Sep 2016 09:17:58 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/archivers/pigz To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20160919091758.13972FBD1@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1474276678203180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Mon Sep 19 09:17:58 UTC 2016 Modified Files: pkgsrc/archivers/pigz: distinfo Added Files: pkgsrc/archivers/pigz/patches: patch-Makefile Log Message: Do not overwrite LDFLAGS, fixes build on at least SunOS. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/archivers/pigz/distinfo cvs rdiff -u -r0 -r1.4 pkgsrc/archivers/pigz/patches/patch-Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1474276678203180 Content-Disposition: inline Content-Length: 1367 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/pigz/distinfo diff -u pkgsrc/archivers/pigz/distinfo:1.8 pkgsrc/archivers/pigz/distinfo:1.9 --- pkgsrc/archivers/pigz/distinfo:1.8 Tue Nov 3 00:56:25 2015 +++ pkgsrc/archivers/pigz/distinfo Mon Sep 19 09:17:57 2016 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.8 2015/11/03 00:56:25 agc Exp $ +$NetBSD: distinfo,v 1.9 2016/09/19 09:17:57 fhajny Exp $ SHA1 (pigz-2.3.3.tar.gz) = 11252d38fe2a7b8d7a712dff22bbb7630287d00b RMD160 (pigz-2.3.3.tar.gz) = 053a9f2309982ba21a7041288ace4408ffbcbe5e SHA512 (pigz-2.3.3.tar.gz) = 6fa5ee1c03b4a8dc4b191acaa337b6f30132503ff413300214e1e6b27dd70590b53334be3fa880916f6ea4498beb8cf7c411a5954fdf188475882c44618c663c Size (pigz-2.3.3.tar.gz) = 92787 bytes +SHA1 (patch-Makefile) = bb2a30acfa656852cd36361a0ac80a3322c920c0 Added files: Index: pkgsrc/archivers/pigz/patches/patch-Makefile diff -u /dev/null pkgsrc/archivers/pigz/patches/patch-Makefile:1.4 --- /dev/null Mon Sep 19 09:17:58 2016 +++ pkgsrc/archivers/pigz/patches/patch-Makefile Mon Sep 19 09:17:57 2016 @@ -0,0 +1,14 @@ +$NetBSD: patch-Makefile,v 1.4 2016/09/19 09:17:57 fhajny Exp $ + +Do not overwrite LDFLAGS. + +--- Makefile.orig 2015-01-20 04:12:31.000000000 +0000 ++++ Makefile +@@ -1,6 +1,6 @@ + CC=cc + CFLAGS=-O3 -Wall -Wextra +-LDFLAGS=-lz ++LDFLAGS+=-lz + ZOPFLI=zopfli/src/zopfli/ + # use gcc and gmake on Solaris + --_----------=_1474276678203180--