pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/step



Module Name:    pkgsrc
Committed By:   markd
Date:           Sun Jan 25 00:38:18 UTC 2026

Modified Files:
        pkgsrc/misc/step: distinfo
Added Files:
        pkgsrc/misc/step/patches: patch-stepcore_types.h

Log Message:
step: Fix compile with recent Qt 6
https://github.com/KDE/step/commit/0d41eaae3820d1a7c346f6ce81b940f199229eba


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/misc/step/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/step/patches/patch-stepcore_types.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/step/distinfo
diff -u pkgsrc/misc/step/distinfo:1.19 pkgsrc/misc/step/distinfo:1.20
--- pkgsrc/misc/step/distinfo:1.19      Sun Dec 21 14:47:27 2025
+++ pkgsrc/misc/step/distinfo   Sun Jan 25 00:38:18 2026
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.19 2025/12/21 14:47:27 markd Exp $
+$NetBSD: distinfo,v 1.20 2026/01/25 00:38:18 markd Exp $
 
 BLAKE2s (step-25.08.3.tar.xz) = 05ad24a5c3d901fdf04bae07071d3cc8800bb6a07d47f187803ab1e645c8bd15
 SHA512 (step-25.08.3.tar.xz) = e8c41764cb401c1eb62ae1af8007b37d0952828c2544112f223e4d4f6c87fbf92ce55b481287472c6cfbdafb145df38bbad96937706ddc0a96243819bd835b93
 Size (step-25.08.3.tar.xz) = 1016244 bytes
+SHA1 (patch-stepcore_types.h) = 3384d193695af648bf9b72be7aa70f5aad23f311

Added files:

Index: pkgsrc/misc/step/patches/patch-stepcore_types.h
diff -u /dev/null pkgsrc/misc/step/patches/patch-stepcore_types.h:1.1
--- /dev/null   Sun Jan 25 00:38:18 2026
+++ pkgsrc/misc/step/patches/patch-stepcore_types.h     Sun Jan 25 00:38:18 2026
@@ -0,0 +1,16 @@
+$NetBSD: patch-stepcore_types.h,v 1.1 2026/01/25 00:38:18 markd Exp $
+
+Fix compile with Qt 6.11
+https://github.com/KDE/step/commit/0d41eaae3820d1a7c346f6ce81b940f199229eba
+
+--- stepcore/types.h.orig      2025-10-31 23:35:39.000000000 +0000
++++ stepcore/types.h
+@@ -38,7 +38,7 @@ struct Color
+ 
+ template<> inline QString typeToString(const Color& v)
+ {
+-    return QStringLiteral("#%1").arg(v, 8, 16, QLatin1Char('0'));
++    return QStringLiteral("#%1").arg(v.value, 8, 16, QLatin1Char('0'));
+ }
+ 
+ template<> inline Color stringToType(const QString& s, bool *ok)



Home | Main Index | Thread Index | Old Index