Received: by mail.netbsd.org (Postfix, from userid 605) id A786984D8B; Sun, 12 Apr 2020 08:41:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 30DF784D2C for ; Sun, 12 Apr 2020 08:41:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 3i5A_TjWZBit for ; Sun, 12 Apr 2020 08:41:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AC05584CDB for ; Sun, 12 Apr 2020 08:41:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A914DFB27; Sun, 12 Apr 2020 08:41:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158668086298160" MIME-Version: 1.0 Date: Sun, 12 Apr 2020 08:41:02 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics/guetzli To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200412084102.A914DFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158668086298160 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Apr 12 08:41:02 UTC 2020 Modified Files: pkgsrc/graphics/guetzli: distinfo Added Files: pkgsrc/graphics/guetzli/patches: patch-guetzli.make Log Message: guetzli: now the correct patch comes in To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/guetzli/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/guetzli/patches/patch-guetzli.make Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158668086298160 Content-Disposition: inline Content-Length: 1946 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/guetzli/distinfo diff -u pkgsrc/graphics/guetzli/distinfo:1.5 pkgsrc/graphics/guetzli/distinfo:1.6 --- pkgsrc/graphics/guetzli/distinfo:1.5 Sun Apr 12 06:51:09 2020 +++ pkgsrc/graphics/guetzli/distinfo Sun Apr 12 08:41:02 2020 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.5 2020/04/12 06:51:09 adam Exp $ +$NetBSD: distinfo,v 1.6 2020/04/12 08:41:02 adam Exp $ SHA1 (guetzli-1.0.1.tar.gz) = afead6c93028521e3f336097f3547d20c17cefa5 RMD160 (guetzli-1.0.1.tar.gz) = 1203667b1a4871d7034b9e4d1224fa6141aabb2a SHA512 (guetzli-1.0.1.tar.gz) = 0aba6c7490699fa123d78e2c3b61c5a6ab2660ab4a3d5126f592a667e86f4ca69384e952c9bd20a9527919dae2b412972d9b3e51fc6a6302d4e0cafe81895ef3 Size (guetzli-1.0.1.tar.gz) = 97251 bytes -SHA1 (patch-guetzli.make) = 39a3ac5a7dfda1679e122be0296f4a59360c5a18 +SHA1 (patch-guetzli.make) = 5536ed80fb3c6f2597b96f5730f34af0e0e90d7b Added files: Index: pkgsrc/graphics/guetzli/patches/patch-guetzli.make diff -u /dev/null pkgsrc/graphics/guetzli/patches/patch-guetzli.make:1.1 --- /dev/null Sun Apr 12 08:41:02 2020 +++ pkgsrc/graphics/guetzli/patches/patch-guetzli.make Sun Apr 12 08:41:02 2020 @@ -0,0 +1,17 @@ +$NetBSD: patch-guetzli.make,v 1.1 2020/04/12 08:41:02 adam Exp $ + +Don't override optimization flags. + +--- guetzli.make.orig 2018-01-13 22:54:20.000000000 +0000 ++++ guetzli.make +@@ -19,8 +19,8 @@ ifeq ($(config),release) + INCLUDES += -I. -Ithird_party/butteraugli + FORCE_INCLUDE += + ALL_CPPFLAGS += $(CPPFLAGS) -MMD -MP $(DEFINES) $(INCLUDES) +- ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) -O3 -g `pkg-config --cflags libpng` +- ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -O3 -g -std=c++11 `pkg-config --cflags libpng` ++ ALL_CFLAGS += $(CFLAGS) $(ALL_CPPFLAGS) `pkg-config --cflags libpng` ++ ALL_CXXFLAGS += $(CXXFLAGS) $(ALL_CPPFLAGS) -std=c++11 `pkg-config --cflags libpng` + ALL_RESFLAGS += $(RESFLAGS) $(DEFINES) $(INCLUDES) + LIBS += + LDDEPS += --_----------=_158668086298160--