pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/security/py-olm
Module Name: pkgsrc
Committed By: adam
Date: Fri Apr 18 11:25:57 UTC 2025
Modified Files:
pkgsrc/security/py-olm: distinfo
Added Files:
pkgsrc/security/py-olm/patches: patch-libolm_include_olm_list.hh
Log Message:
py-olm: fix build
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/py-olm/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/security/py-olm/patches/patch-libolm_include_olm_list.hh
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/security/py-olm/distinfo
diff -u pkgsrc/security/py-olm/distinfo:1.4 pkgsrc/security/py-olm/distinfo:1.5
--- pkgsrc/security/py-olm/distinfo:1.4 Sat Jun 1 17:34:00 2024
+++ pkgsrc/security/py-olm/distinfo Fri Apr 18 11:25:57 2025
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2024/06/01 17:34:00 tm Exp $
+$NetBSD: distinfo,v 1.5 2025/04/18 11:25:57 adam Exp $
BLAKE2s (python-olm-3.2.16.tar.gz) = 58792cb971a7c886bc267e9349cad60c8352210a4c38b22f17a241f411a1b8b9
SHA512 (python-olm-3.2.16.tar.gz) = e8c763577fe87387e1c3559b35db17766fe3c20acd8ff59ec118c33f040f980f7a6afde40a9adf4d9626782c904644a577c60d16f31cf05f0fb698e4b6cbffcf
Size (python-olm-3.2.16.tar.gz) = 2705522 bytes
+SHA1 (patch-libolm_include_olm_list.hh) = 493ba58d2c792c0403b6e8a6ea99fba299ebbdde
SHA1 (patch-libolm_tests_include_doctest.h) = c2855771dcf9139ad3923257f75129508ad95ae9
Added files:
Index: pkgsrc/security/py-olm/patches/patch-libolm_include_olm_list.hh
diff -u /dev/null pkgsrc/security/py-olm/patches/patch-libolm_include_olm_list.hh:1.1
--- /dev/null Fri Apr 18 11:25:57 2025
+++ pkgsrc/security/py-olm/patches/patch-libolm_include_olm_list.hh Fri Apr 18 11:25:57 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-libolm_include_olm_list.hh,v 1.1 2025/04/18 11:25:57 adam Exp $
+
+Fix for error: cannot assign to variable 'other_pos' with const-qualified type 'T *const'
+
+--- libolm/include/olm/list.hh.orig 2025-04-18 11:24:07.279277025 +0000
++++ libolm/include/olm/list.hh
+@@ -99,7 +99,7 @@ public:
+ return *this;
+ }
+ T * this_pos = _data;
+- T * const other_pos = other._data;
++ T * other_pos = other._data;
+ while (other_pos != other._end) {
+ *this_pos = *other;
+ ++this_pos;
Home |
Main Index |
Thread Index |
Old Index