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 561D17A33C for ; Sun, 27 Nov 2016 09:04:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0AE3985587; Sun, 27 Nov 2016 09:04:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8AEE7855A2 for ; Sun, 27 Nov 2016 09:04:28 +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 jK57IO5QJ5OL for ; Sun, 27 Nov 2016 09:04:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0DAC28556D for ; Sun, 27 Nov 2016 09:04:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 04EEDFBA6; Sun, 27 Nov 2016 09:04:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480237467146520" MIME-Version: 1.0 Date: Sun, 27 Nov 2016 09:04:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/libcfg+ To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161127090428.04EEDFBA6@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. --_----------=_1480237467146520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 27 09:04:27 UTC 2016 Modified Files: pkgsrc/devel/libcfg+: distinfo pkgsrc/devel/libcfg+/patches: patch-ab Log Message: Reduce context to avoid 8-bit character. Hopefully fixes PR 51662. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/libcfg+/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/libcfg+/patches/patch-ab Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480237467146520 Content-Disposition: inline Content-Length: 1913 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=utf-8 Modified files: Index: pkgsrc/devel/libcfg+/distinfo diff -u pkgsrc/devel/libcfg+/distinfo:1.5 pkgsrc/devel/libcfg+/distinfo:1.6 --- pkgsrc/devel/libcfg+/distinfo:1.5 Tue Nov 3 03:27:39 2015 +++ pkgsrc/devel/libcfg+/distinfo Sun Nov 27 09:04:27 2016 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.5 2015/11/03 03:27:39 agc Exp $ +$NetBSD: distinfo,v 1.6 2016/11/27 09:04:27 wiz Exp $ SHA1 (libcfg+-0.7.0.tar.gz) = ebcba4033b3c5451a1e485ce129488298aa19a9f RMD160 (libcfg+-0.7.0.tar.gz) = 51f632cb9578e67eaf968bb1c27f625ff90b1224 SHA512 (libcfg+-0.7.0.tar.gz) = 73444c89aab9e835ecc630b8fee5e83717fccc3d78736b1e9055b2404cbac7caf9b9fb84709b48800e2409bd40a8727e74db77eeb796079cd435aec8e3bdcc2b Size (libcfg+-0.7.0.tar.gz) = 248406 bytes SHA1 (patch-aa) = ba63ccc5c031a893b111caac1ba9ddf13c18b4fc -SHA1 (patch-ab) = 6de1bbf8c5eefcfb07bc6bfa087c3c89d42d3a06 +SHA1 (patch-ab) = dd2afd5a7491bb195c0e688a6c5b7a2ac610fbe1 Index: pkgsrc/devel/libcfg+/patches/patch-ab diff -u pkgsrc/devel/libcfg+/patches/patch-ab:1.1 pkgsrc/devel/libcfg+/patches/patch-ab:1.2 --- pkgsrc/devel/libcfg+/patches/patch-ab:1.1 Wed Oct 6 10:17:06 2004 +++ pkgsrc/devel/libcfg+/patches/patch-ab Sun Nov 27 09:04:27 2016 @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.1 2004/10/06 10:17:06 grant Exp $ +$NetBSD: patch-ab,v 1.2 2016/11/27 09:04:27 wiz Exp $ --- src/Makefile.in.orig 2004-02-18 01:37:47.000000000 +0900 +++ src/Makefile.in 2004-09-29 00:32:45.000000000 +0900 -@@ -60,16 +60,16 @@ +@@ -60,14 +60,14 @@ $(srcdir)/platon/str/strdyn.c \ $(srcdir)/platon/str/dynfgets.c @@ -27,8 +27,6 @@ $NetBSD: patch-ab,v 1.1 2004/10/06 10:17 + $(top_builddir)/src/platon/str/strdyn.lo \ + $(top_builddir)/src/platon/str/dynfgets.lo - # SunOS 4 make does not allow multiple makefiles to be specified in one ­include directive. - DEP_FILES = $(top_builddir)/src/.deps/cfg+.P \ @@ -97,8 +97,7 @@ platon/str/strplus.h --_----------=_1480237467146520--