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:           Mon May  8 18:28:03 UTC 2023

Modified Files:
        pkgsrc/converters/orcus: distinfo
Added Files:
        pkgsrc/converters/orcus/patches: patch-include_orcus_base64.hpp
            patch-include_orcus_types.hpp

Log Message:
orcus: fix build with GCC 13


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/converters/orcus/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/converters/orcus/patches/patch-include_orcus_base64.hpp \
    pkgsrc/converters/orcus/patches/patch-include_orcus_types.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/distinfo
diff -u pkgsrc/converters/orcus/distinfo:1.20 pkgsrc/converters/orcus/distinfo:1.21
--- pkgsrc/converters/orcus/distinfo:1.20       Sat Feb  5 04:14:31 2022
+++ pkgsrc/converters/orcus/distinfo    Mon May  8 18:28:03 2023
@@ -1,5 +1,7 @@
-$NetBSD: distinfo,v 1.20 2022/02/05 04:14:31 ryoon Exp $
+$NetBSD: distinfo,v 1.21 2023/05/08 18:28:03 tnn Exp $
 
 BLAKE2s (liborcus-0.17.2.tar.xz) = 1c83c1c7300f20c8fbc3d01df57cb93c7afd58a7a0a47bba679a99cf8b74f2bc
 SHA512 (liborcus-0.17.2.tar.xz) = 8ad8db46c23673260057aff555286d95ebfeff0a027bdeae24f11f8aa12456284f7f4446edddb91936b3011eb1227cfe1618ab3c4d909f8356c8c151f5739d79
 Size (liborcus-0.17.2.tar.xz) = 1839188 bytes
+SHA1 (patch-include_orcus_base64.hpp) = 9df6d5bd14d2629e24e2d579798d6e203d2626d7
+SHA1 (patch-include_orcus_types.hpp) = b2dba13543b500792e839a2604343ac7d56f2e11

Added files:

Index: pkgsrc/converters/orcus/patches/patch-include_orcus_base64.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_base64.hpp:1.1
--- /dev/null   Mon May  8 18:28:03 2023
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_base64.hpp      Mon May  8 18:28:03 2023
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_base64.hpp,v 1.1 2023/05/08 18:28:03 tnn Exp $
+
+Complains about missing uint8_t on Fedora 38 (GCC 13)
+
+--- include/orcus/base64.hpp.orig      2021-10-14 02:59:58.000000000 +0000
++++ include/orcus/base64.hpp
+@@ -11,6 +11,7 @@
+ #include "env.hpp"
+ #include <vector>
+ #include <string>
++#include <cstdint>
+ 
+ namespace orcus {
+ 
Index: pkgsrc/converters/orcus/patches/patch-include_orcus_types.hpp
diff -u /dev/null pkgsrc/converters/orcus/patches/patch-include_orcus_types.hpp:1.1
--- /dev/null   Mon May  8 18:28:03 2023
+++ pkgsrc/converters/orcus/patches/patch-include_orcus_types.hpp       Mon May  8 18:28:03 2023
@@ -0,0 +1,14 @@
+$NetBSD: patch-include_orcus_types.hpp,v 1.1 2023/05/08 18:28:03 tnn Exp $
+
+Complains about missing uint8_t on Fedora 38 (GCC 13)
+
+--- include/orcus/types.hpp.orig       2021-11-19 01:48:15.000000000 +0000
++++ include/orcus/types.hpp
+@@ -8,6 +8,7 @@
+ #ifndef INCLUDED_ORCUS_TYPES_HPP
+ #define INCLUDED_ORCUS_TYPES_HPP
+ 
++#include <cstdint>
+ #include <cstdlib>
+ #include <vector>
+ #include <string>



Home | Main Index | Thread Index | Old Index