pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/converters/orcus
Module Name: pkgsrc
Committed By: tnn
Date: Thu May 1 21:39:20 UTC 2025
Modified Files:
pkgsrc/converters/orcus: Makefile distinfo
Added Files:
pkgsrc/converters/orcus/patches:
patch-include_orcus_json__document__tree.hpp
patch-include_orcus_sax__parser.hpp
patch-include_orcus_yaml__document__tree.hpp
patch-include_orcus_zip__archive.hpp
Log Message:
orcus: add missing includes via upstream patch. Bump.
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/converters/orcus/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/converters/orcus/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/converters/orcus/patches/patch-include_orcus_json__document__tree.hpp \
pkgsrc/converters/orcus/patches/patch-include_orcus_sax__parser.hpp \
pkgsrc/converters/orcus/patches/patch-include_orcus_yaml__document__tree.hpp \
pkgsrc/converters/orcus/patches/patch-include_orcus_zip__archive.hpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/converters/orcus/Makefile
diff -u pkgsrc/converters/orcus/Makefile:1.48 pkgsrc/converters/orcus/Makefile:1.49
--- pkgsrc/converters/orcus/Makefile:1.48 Sun Dec 29 15:09:42 2024
+++ pkgsrc/converters/orcus/Makefile Thu May 1 21:39:20 2025
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.48 2024/12/29 15:09:42 adam Exp $
+# $NetBSD: Makefile,v 1.49 2025/05/01 21:39:20 tnn Exp $
DISTNAME= liborcus-0.19.2
PKGNAME= ${DISTNAME:S/liborcus/orcus/}
-PKGREVISION= 2
+PKGREVISION= 3
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.23 pkgsrc/converters/orcus/distinfo:1.24
--- pkgsrc/converters/orcus/distinfo:1.23 Sat Feb 10 01:00:57 2024
+++ pkgsrc/converters/orcus/distinfo Thu May 1 21:39:20 2025
@@ -1,5 +1,9 @@
-$NetBSD: distinfo,v 1.23 2024/02/10 01:00:57 ryoon Exp $
+$NetBSD: distinfo,v 1.24 2025/05/01 21:39:20 tnn Exp $
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
+SHA1 (patch-include_orcus_json__document__tree.hpp) = 98376bd146dcaab6db21498a6c2941d712150bec
+SHA1 (patch-include_orcus_sax__parser.hpp) = bb8bb188f9a21d31f7886bffd5c29c5283625893
+SHA1 (patch-include_orcus_yaml__document__tree.hpp) = c0ab8f67c3db95260d4a5c63843e5e9a6c5175d0
+SHA1 (patch-include_orcus_zip__archive.hpp) = d7e840f23dfb402ff6a9373f8c1f06ee663ec923
Added files:
Index: pkgsrc/converters/orcus/patches/patch-include_orcus_json__document__tree.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_json__document__tree.hpp:1.1
--- /dev/null Thu May 1 21:39:20 2025
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_json__document__tree.hpp Thu May 1 21:39:20 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_json__document__tree.hpp,v 1.1 2025/05/01 21:39:20 tnn Exp $
+
+https://gitlab.com/orcus/orcus/-/commit/b7932facdf56994b7b1238bafe1e13b4817f69f1.patch
+
+--- include/orcus/json_document_tree.hpp.orig 2022-12-17 15:37:19.000000000 +0000
++++ include/orcus/json_document_tree.hpp
+@@ -14,6 +14,7 @@
+ #include <string>
+ #include <memory>
+ #include <vector>
++#include <cstdint>
+
+ namespace orcus {
+
Index: pkgsrc/converters/orcus/patches/patch-include_orcus_sax__parser.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_sax__parser.hpp:1.1
--- /dev/null Thu May 1 21:39:20 2025
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_sax__parser.hpp Thu May 1 21:39:20 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_sax__parser.hpp,v 1.1 2025/05/01 21:39:20 tnn Exp $
+
+https://gitlab.com/orcus/orcus/-/commit/b7932facdf56994b7b1238bafe1e13b4817f69f1.patch
+
+--- include/orcus/sax_parser.hpp.orig 2023-02-08 00:49:51.000000000 +0000
++++ include/orcus/sax_parser.hpp
+@@ -11,6 +11,7 @@
+ #include "sax_parser_base.hpp"
+
+ #include <string_view>
++#include <cstdint>
+
+ namespace orcus {
+
Index: pkgsrc/converters/orcus/patches/patch-include_orcus_yaml__document__tree.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_yaml__document__tree.hpp:1.1
--- /dev/null Thu May 1 21:39:20 2025
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_yaml__document__tree.hpp Thu May 1 21:39:20 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_yaml__document__tree.hpp,v 1.1 2025/05/01 21:39:20 tnn Exp $
+
+https://gitlab.com/orcus/orcus/-/commit/b7932facdf56994b7b1238bafe1e13b4817f69f1.patch
+
+--- include/orcus/yaml_document_tree.hpp.orig 2022-12-17 15:37:19.000000000 +0000
++++ include/orcus/yaml_document_tree.hpp
+@@ -14,6 +14,7 @@
+ #include <string>
+ #include <memory>
+ #include <vector>
++#include <cstdint>
+
+ namespace orcus {
+
Index: pkgsrc/converters/orcus/patches/patch-include_orcus_zip__archive.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_zip__archive.hpp:1.1
--- /dev/null Thu May 1 21:39:20 2025
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_zip__archive.hpp Thu May 1 21:39:20 2025
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_zip__archive.hpp,v 1.1 2025/05/01 21:39:20 tnn Exp $
+
+https://gitlab.com/orcus/orcus/-/commit/b7932facdf56994b7b1238bafe1e13b4817f69f1.patch
+
+--- include/orcus/zip_archive.hpp.orig 2023-02-09 03:08:15.000000000 +0000
++++ include/orcus/zip_archive.hpp
+@@ -15,6 +15,7 @@
+ #include <vector>
+ #include <memory>
+ #include <ostream>
++#include <cstdint>
+
+ namespace orcus {
+
Home |
Main Index |
Thread Index |
Old Index