pkgsrc-Changes archive

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

CVS commit: pkgsrc/chat/dino



Module Name:    pkgsrc
Committed By:   gdt
Date:           Wed Aug 13 00:13:54 UTC 2025

Modified Files:
        pkgsrc/chat/dino: Makefile distinfo
Added Files:
        pkgsrc/chat/dino/patches: patch-CMakeLists.txt

Log Message:
chat/dino: Hack around cmake deprecations


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 pkgsrc/chat/dino/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/chat/dino/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/chat/dino/patches/patch-CMakeLists.txt

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

Modified files:

Index: pkgsrc/chat/dino/Makefile
diff -u pkgsrc/chat/dino/Makefile:1.47 pkgsrc/chat/dino/Makefile:1.48
--- pkgsrc/chat/dino/Makefile:1.47      Thu Apr 24 14:13:21 2025
+++ pkgsrc/chat/dino/Makefile   Wed Aug 13 00:13:54 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.47 2025/04/24 14:13:21 wiz Exp $
+# $NetBSD: Makefile,v 1.48 2025/08/13 00:13:54 gdt Exp $
 
 DISTNAME=              dino-0.4.3
-PKGREVISION=           11
+PKGREVISION=           12
 CATEGORIES=            chat
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=dino/}
 #GITHUB_RELEASE=       v${PKGVERSION_NOREV}

Index: pkgsrc/chat/dino/distinfo
diff -u pkgsrc/chat/dino/distinfo:1.10 pkgsrc/chat/dino/distinfo:1.11
--- pkgsrc/chat/dino/distinfo:1.10      Wed May 15 13:11:13 2024
+++ pkgsrc/chat/dino/distinfo   Wed Aug 13 00:13:54 2025
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.10 2024/05/15 13:11:13 wiz Exp $
+$NetBSD: distinfo,v 1.11 2025/08/13 00:13:54 gdt Exp $
 
 BLAKE2s (dino-0.4.3-235efcdab9b792a8cc328f466cbe700c102cd48f.tar.gz) = 8b3304ecc63af660fdf26327aa9330aa7e66f6c04c3122edc824684635171079
 SHA512 (dino-0.4.3-235efcdab9b792a8cc328f466cbe700c102cd48f.tar.gz) = bad7ff657f0b4f59913ffce2408651ee37fc761225f10ddbbd179b35944884f562ed9980c8a31f77b808c1a9881e06db1cc948975dd5c1bda965567888b10e4e
 Size (dino-0.4.3-235efcdab9b792a8cc328f466cbe700c102cd48f.tar.gz) = 885546 bytes
+SHA1 (patch-CMakeLists.txt) = 78b6a3f18ca5386943714d30befae70469a6f2a2
 SHA1 (patch-main_CMakeLists.txt) = 9e965d1b271e11fbcaf93965ce18a1ec68079b25

Added files:

Index: pkgsrc/chat/dino/patches/patch-CMakeLists.txt
diff -u /dev/null pkgsrc/chat/dino/patches/patch-CMakeLists.txt:1.1
--- /dev/null   Wed Aug 13 00:13:54 2025
+++ pkgsrc/chat/dino/patches/patch-CMakeLists.txt       Wed Aug 13 00:13:54 2025
@@ -0,0 +1,17 @@
+$NetBSD: patch-CMakeLists.txt,v 1.1 2025/08/13 00:13:54 gdt Exp $
+
+Adjust cmake min version to a value that makes cmake happy, without
+understanding why one needs to specify a min version and what the
+consquences are.
+
+Left to upstream to fix this properly:
+  https://github.com/dino/dino/issues/1747
+
+--- CMakeLists.txt.orig        2025-08-12 23:37:56.782694627 +0000
++++ CMakeLists.txt
+@@ -1,4 +1,4 @@
+-cmake_minimum_required(VERSION 3.3)
++cmake_minimum_required(VERSION 3.22)
+ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
+ include(ComputeVersion)
+ if (NOT VERSION_FOUND)



Home | Main Index | Thread Index | Old Index