Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id E2B771A921F for ; Sun, 27 Mar 2022 14:08:35 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3006D84E88; Sun, 27 Mar 2022 14:08:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6650D84E80 for ; Sun, 27 Mar 2022 14:08:34 +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 dnBkm6LUSArj for ; Sun, 27 Mar 2022 14:08:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DEFFB84D1D for ; Sun, 27 Mar 2022 14:08:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D7964FB24; Sun, 27 Mar 2022 14:08:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648390113159940" MIME-Version: 1.0 Date: Sun, 27 Mar 2022 14:08:33 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/archivers/par2 To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20220327140833.D7964FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648390113159940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sun Mar 27 14:08:33 UTC 2022 Modified Files: pkgsrc/archivers/par2: distinfo Added Files: pkgsrc/archivers/par2/patches: patch-src_commandline.cpp Log Message: par2: include for sysconf(3) To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/archivers/par2/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/archivers/par2/patches/patch-src_commandline.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648390113159940 Content-Disposition: inline Content-Length: 1496 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/par2/distinfo diff -u pkgsrc/archivers/par2/distinfo:1.24 pkgsrc/archivers/par2/distinfo:1.25 --- pkgsrc/archivers/par2/distinfo:1.24 Tue Oct 26 09:57:12 2021 +++ pkgsrc/archivers/par2/distinfo Sun Mar 27 14:08:33 2022 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.24 2021/10/26 09:57:12 nia Exp $ +$NetBSD: distinfo,v 1.25 2022/03/27 14:08:33 tnn Exp $ BLAKE2s (par2cmdline-0.8.1.tar.gz) = 8e15aa6653864e799aab404cabfb9af091bf41756a26ae6750802212b94bb4f6 SHA512 (par2cmdline-0.8.1.tar.gz) = b0032639353d869ffa449c8b5f27fe1deec0e5e4326ba90aae5c8a03f82441c69ba40f2032c4cbda98f415c3d100136beed8285d099ffbf32329451e719478d9 Size (par2cmdline-0.8.1.tar.gz) = 3654317 bytes +SHA1 (patch-src_commandline.cpp) = 1b44178599dbc9b8e6321063bbf23c5c14ce25cd Added files: Index: pkgsrc/archivers/par2/patches/patch-src_commandline.cpp diff -u /dev/null pkgsrc/archivers/par2/patches/patch-src_commandline.cpp:1.1 --- /dev/null Sun Mar 27 14:08:33 2022 +++ pkgsrc/archivers/par2/patches/patch-src_commandline.cpp Sun Mar 27 14:08:33 2022 @@ -0,0 +1,14 @@ +$NetBSD: patch-src_commandline.cpp,v 1.1 2022/03/27 14:08:33 tnn Exp $ + +include for sysconf(3) + +--- src/commandline.cpp.orig 2020-02-09 14:29:09.000000000 +0000 ++++ src/commandline.cpp +@@ -21,6 +21,7 @@ + // This is included here, so that cout and cerr are not used elsewhere. + #include + #include ++#include + #include "commandline.h" + using namespace std; + --_----------=_1648390113159940--