Received: by mail.netbsd.org (Postfix, from userid 605) id 092DF84F66; Sat, 10 Feb 2024 01:00:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707526859; bh=8Tx0vtA6qsp8R7vZdLc7mjMslTfMYBsjsxWMUPwwU1o=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=SftOnUmJYsx2bjwLRXeiiTI83DaPO9C2ihczHgDRAsNQ/avojHFjj9ufQggAwnr73 Uc/1ubJwBAWEzgclO0Y/rfMYeZ0beZDQC2mYnSon7hOAtDW7FhqWMHPIer1IuU4xQE of4oNlT4miyE8FAQZjCU0J00XEQMhXITcMr8zepA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF8CB84E80 for ; Sat, 10 Feb 2024 01:00:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 KsS_UeMRMM4H for ; Sat, 10 Feb 2024 01:00:57 +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 45EEE84CCC for ; Sat, 10 Feb 2024 01:00:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1707526857; bh=8Tx0vtA6qsp8R7vZdLc7mjMslTfMYBsjsxWMUPwwU1o=; h=Date:From:Subject:To:Reply-To; b=in4LNFxEgd+jWb9gLM9JcTtUSU380l/TQlC7l10L0IPYC0toZodIUs3GXuM85xwWl zZHUFbQQJWcvbK48OZnsg33MUiQ3XpMoLJIwcXvTb33mZI1YdOSf8fr18TGqgeu6h4 qlEhijiDae5QaizMOvLezeGsz0Gdaua8qCmVjmIU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3BE2EFA42; Sat, 10 Feb 2024 01:00:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_17075268579000" MIME-Version: 1.0 Date: Sat, 10 Feb 2024 01:00:57 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/converters/orcus To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20240210010057.3BE2EFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_17075268579000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Feb 10 01:00:57 UTC 2024 Modified Files: pkgsrc/converters/orcus: Makefile distinfo Log Message: orcus: Update to 0.19.2 Changelog: 0.19.2: general fixed a build issue with gcc 14 due to a missing include for std::find_if and std::for_each. fixed a segmentation fault with the orcus-test-xml-mapped test which manifested on hppa hardware, as originally reported on https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054376. xls-xml fixed a crash when loading a document that includes a style record referencing an unnamed style record as its parent. In Excel-generated documents, styles only reference named styles as their parents. But in 3rd-party generated documents, styles referencing unnamed styles as their parents can occur. gnumeric fixed a crash when the document model returned a null pointer when a reference resolver interface was requested. 0.19.1: general implemented orcus::create_filter() which instantiates a filter object of specified type. The returned object is of type orcus::iface::import_filter. moved test cases for format detection to the respective filter test files. gnumeric fixed a bug where the import filter did not set the formula grammer prior to importing. 0.19.0: general added support for allowing use of std::filesystem, std::experimental::filesystem or boost::filesystem per build configuration. xlsx refactored styles import to use style indices returned by the document model implementer rather than using the indices stored in the file. This allows the implementer to aggregate some style records and re-use the same index for records that are stored as different records in the original file. xls-xml fixed a bug where column styles were not applied to the correct columns when the starting column index was not 0. gnumeric overhauled the Gnumeric import filter to fix many bugs and support many missing features relative to the other filters included in orcus. Most notable mentions are: cell styles rich-text strings named ranges row heights and column widths merged cells parquet added partial support for Apache Parquet import filter. This is still heavily experimental. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 pkgsrc/converters/orcus/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/converters/orcus/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_17075268579000 Content-Disposition: inline Content-Length: 1626 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/orcus/Makefile diff -u pkgsrc/converters/orcus/Makefile:1.45 pkgsrc/converters/orcus/Makefile:1.46 --- pkgsrc/converters/orcus/Makefile:1.45 Fri Dec 29 18:24:39 2023 +++ pkgsrc/converters/orcus/Makefile Sat Feb 10 01:00:57 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.45 2023/12/29 18:24:39 adam Exp $ +# $NetBSD: Makefile,v 1.46 2024/02/10 01:00:57 ryoon Exp $ -DISTNAME= liborcus-0.18.1 +DISTNAME= liborcus-0.19.2 PKGNAME= ${DISTNAME:S/liborcus/orcus/} -PKGREVISION= 1 CATEGORIES= converters MASTER_SITES= https://kohei.us/files/orcus/src/ EXTRACT_SUFX= .tar.xz Index: pkgsrc/converters/orcus/distinfo diff -u pkgsrc/converters/orcus/distinfo:1.22 pkgsrc/converters/orcus/distinfo:1.23 --- pkgsrc/converters/orcus/distinfo:1.22 Sun Oct 15 07:09:50 2023 +++ pkgsrc/converters/orcus/distinfo Sat Feb 10 01:00:57 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.22 2023/10/15 07:09:50 ryoon Exp $ +$NetBSD: distinfo,v 1.23 2024/02/10 01:00:57 ryoon Exp $ -BLAKE2s (liborcus-0.18.1.tar.xz) = e12b791cb9ec4cf064ef731003da4a0332aea2d2b1148a5971794cf743fe285e -SHA512 (liborcus-0.18.1.tar.xz) = 73cbfe64e607165b9311f7330505dfcd0d16de42212e5ace55b588d6ef869221de51d22fc069553ac08e847fad1330cc3915f7e3769dc04c17b11914abb4acdd -Size (liborcus-0.18.1.tar.xz) = 2070352 bytes +BLAKE2s (liborcus-0.19.2.tar.xz) = 4a876a4ac0665254d84e8803967eebbba32020e1eb3875748ee184a4f78f7c9b +SHA512 (liborcus-0.19.2.tar.xz) = c955490f57e91615278a83bb48726025cd5f8059b97ed5532f770199e134ca511c7ee6b0cd0a9d3a2d54208a5fdd19117054e95e818162ea568052fa11b21d4e +Size (liborcus-0.19.2.tar.xz) = 2211268 bytes --_----------=_17075268579000--