Received: by mail.netbsd.org (Postfix, from userid 605) id E4A1F84E90; Sat, 27 Jan 2024 15:32:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1343984E8F for ; Sat, 27 Jan 2024 15:32: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 yJm3eUw6h9Sz for ; Sat, 27 Jan 2024 15:32:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8184B84E8C for ; Sat, 27 Jan 2024 15:32:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 78C85FA42; Sat, 27 Jan 2024 15:32:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170636953988780" MIME-Version: 1.0 Date: Sat, 27 Jan 2024 15:32:19 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/raptor2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240127153219.78C85FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170636953988780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jan 27 15:32:19 UTC 2024 Modified Files: pkgsrc/textproc/raptor2: distinfo Added Files: pkgsrc/textproc/raptor2/patches: patch-src_raptor__libxml.c Log Message: raptor2: fix build with libxml2 2.12 To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/raptor2/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/textproc/raptor2/patches/patch-src_raptor__libxml.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170636953988780 Content-Disposition: inline Content-Length: 1790 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/raptor2/distinfo diff -u pkgsrc/textproc/raptor2/distinfo:1.16 pkgsrc/textproc/raptor2/distinfo:1.17 --- pkgsrc/textproc/raptor2/distinfo:1.16 Tue Mar 7 10:45:28 2023 +++ pkgsrc/textproc/raptor2/distinfo Sat Jan 27 15:32:19 2024 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.16 2023/03/07 10:45:28 wiz Exp $ +$NetBSD: distinfo,v 1.17 2024/01/27 15:32:19 wiz Exp $ BLAKE2s (raptor2-2.0.16.tar.gz) = 7c1b8ff3e0e4cba0bbb23e16b910227edb3913022417ae91b9344379755d44bc SHA512 (raptor2-2.0.16.tar.gz) = 9bd5cff36390e1e0ef15ac56e5413ecfceb4018cb531a4da8850d3623615f12a93690a78be61f9d9ae7a24e16f6446e356bc2b7f34051ddc077761d85a9b7c44 Size (raptor2-2.0.16.tar.gz) = 1750726 bytes +SHA1 (patch-src_raptor__libxml.c) = 8f2d859aab1616106aa620b5389e065cdd943eb2 SHA1 (patch-src_sort__r.h) = d58b6e4b0d083e3a554cec40a104f164dc6a5521 Added files: Index: pkgsrc/textproc/raptor2/patches/patch-src_raptor__libxml.c diff -u /dev/null pkgsrc/textproc/raptor2/patches/patch-src_raptor__libxml.c:1.1 --- /dev/null Sat Jan 27 15:32:19 2024 +++ pkgsrc/textproc/raptor2/patches/patch-src_raptor__libxml.c Sat Jan 27 15:32:19 2024 @@ -0,0 +1,16 @@ +$NetBSD: patch-src_raptor__libxml.c,v 1.1 2024/01/27 15:32:19 wiz Exp $ + +Fix build with libxml 2.12. +https://github.com/dajobe/raptor/commit/4dbc4c1da2a033c497d84a1291c46f416a9cac51 + +--- src/raptor_libxml.c.orig 2024-01-27 15:31:31.774167018 +0000 ++++ src/raptor_libxml.c +@@ -246,7 +246,7 @@ raptor_libxml_getEntity(void* user_data, + + ret->owner = 1; + +-#if LIBXML_VERSION >= 20627 ++#if LIBXML_VERSION >= 20627 && LIBXML_VERSION < 21100 + /* Checked field was released in 2.6.27 on 2006-10-25 + * http://git.gnome.org/browse/libxml2/commit/?id=a37a6ad91a61d168ecc4b29263def3363fff4da6 + * --_----------=_170636953988780--