pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/olm



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Apr 18 11:22:59 UTC 2025

Modified Files:
        pkgsrc/security/olm: distinfo
Added Files:
        pkgsrc/security/olm/patches: patch-include_olm_list.hh

Log Message:
old: fix build


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/olm/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/security/olm/patches/patch-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/olm/distinfo
diff -u pkgsrc/security/olm/distinfo:1.7 pkgsrc/security/olm/distinfo:1.8
--- pkgsrc/security/olm/distinfo:1.7    Thu Nov 30 06:08:51 2023
+++ pkgsrc/security/olm/distinfo        Fri Apr 18 11:22:59 2025
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.7 2023/11/30 06:08:51 adam Exp $
+$NetBSD: distinfo,v 1.8 2025/04/18 11:22:59 adam Exp $
 
 BLAKE2s (olm-3.2.16.tar.bz2) = 137b52fb94d123d1fcc89408b8da1d58e701df76018bdc47b267130405eedcc3
 SHA512 (olm-3.2.16.tar.bz2) = 504ddc91297e7aef99e9b25f73b33bac29716ca33eb333bf1217b719d8862438e2cdaadd88cef3dc84e9f618bcc9eeeaf7e513f2d6909cc4a3d98a5dd79b0581
 Size (olm-3.2.16.tar.bz2) = 2744360 bytes
 SHA1 (patch-CMakeLists.txt) = 6fb95f572476546346ce3e3739185840ffb51dd2
+SHA1 (patch-include_olm_list.hh) = 77eb8f37911621075c40db9447109bd67f3aebf9
 SHA1 (patch-tests_include_doctest.h) = d0da2f52ce14c454bc644e37fae238fab79e1c10

Added files:

Index: pkgsrc/security/olm/patches/patch-include_olm_list.hh
diff -u /dev/null pkgsrc/security/olm/patches/patch-include_olm_list.hh:1.1
--- /dev/null   Fri Apr 18 11:22:59 2025
+++ pkgsrc/security/olm/patches/patch-include_olm_list.hh       Fri Apr 18 11:22:59 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-include_olm_list.hh,v 1.1 2025/04/18 11:22:59 adam Exp $
+
+Fix for error: cannot assign to variable 'other_pos' with const-qualified type 'T *const'
+
+--- include/olm/list.hh.orig   2025-04-18 11:20:41.096897667 +0000
++++ 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