Received: by mail.netbsd.org (Postfix, from userid 605) id CA8738500C; Fri, 6 Jan 2023 02:35:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 054A18500A for ; Fri, 6 Jan 2023 02:35:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id x30HocZ-V3j1 for ; Fri, 6 Jan 2023 02:35:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6FBB184C13 for ; Fri, 6 Jan 2023 02:35:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 68D30FA90; Fri, 6 Jan 2023 02:35:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1672972547208970" MIME-Version: 1.0 Date: Fri, 6 Jan 2023 02:35:47 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/x11/lxqt-globalkeys To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20230106023547.68D30FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1672972547208970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Fri Jan 6 02:35:47 UTC 2023 Modified Files: pkgsrc/x11/lxqt-globalkeys: Makefile distinfo Added Files: pkgsrc/x11/lxqt-globalkeys/patches: patch-daemon_core.cpp Log Message: lxqt-globalkeys: SunOS build fix To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/x11/lxqt-globalkeys/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/x11/lxqt-globalkeys/distinfo cvs rdiff -u -r0 -r1.3 \ pkgsrc/x11/lxqt-globalkeys/patches/patch-daemon_core.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1672972547208970 Content-Disposition: inline Content-Length: 2113 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/lxqt-globalkeys/Makefile diff -u pkgsrc/x11/lxqt-globalkeys/Makefile:1.20 pkgsrc/x11/lxqt-globalkeys/Makefile:1.21 --- pkgsrc/x11/lxqt-globalkeys/Makefile:1.20 Wed Nov 23 16:19:10 2022 +++ pkgsrc/x11/lxqt-globalkeys/Makefile Fri Jan 6 02:35:47 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.20 2022/11/23 16:19:10 adam Exp $ +# $NetBSD: Makefile,v 1.21 2023/01/06 02:35:47 gutteridge Exp $ DISTNAME= lxqt-globalkeys-1.2.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_GITHUB:=lxqt/} GITHUB_RELEASE= ${PKGVERSION_NOREV} Index: pkgsrc/x11/lxqt-globalkeys/distinfo diff -u pkgsrc/x11/lxqt-globalkeys/distinfo:1.10 pkgsrc/x11/lxqt-globalkeys/distinfo:1.11 --- pkgsrc/x11/lxqt-globalkeys/distinfo:1.10 Sat Nov 12 05:10:24 2022 +++ pkgsrc/x11/lxqt-globalkeys/distinfo Fri Jan 6 02:35:47 2023 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.10 2022/11/12 05:10:24 gutteridge Exp $ +$NetBSD: distinfo,v 1.11 2023/01/06 02:35:47 gutteridge Exp $ BLAKE2s (lxqt-globalkeys-1.2.0.tar.xz) = 5a8b8e15213f1dcdbf822e47b36d7a8e6291d903c6b7ab19df507369edb01938 SHA512 (lxqt-globalkeys-1.2.0.tar.xz) = c1270ae03fcb2fd8b8e548898c36d57ead6b5bea62f246a1587f4093a937141c6c7339f838d1f4ff0b9bd9b9c8079ba8cf0229b575d323e6d78e8b7ccc2eb624 Size (lxqt-globalkeys-1.2.0.tar.xz) = 73504 bytes SHA1 (patch-autostart_CMakeLists.txt) = e5c4b76a3b116ee9b4781783a6ada3838f8e570c +SHA1 (patch-daemon_core.cpp) = f765304ce23efd0ea2b69f6366453b3410adfc04 Added files: Index: pkgsrc/x11/lxqt-globalkeys/patches/patch-daemon_core.cpp diff -u /dev/null pkgsrc/x11/lxqt-globalkeys/patches/patch-daemon_core.cpp:1.3 --- /dev/null Fri Jan 6 02:35:47 2023 +++ pkgsrc/x11/lxqt-globalkeys/patches/patch-daemon_core.cpp Fri Jan 6 02:35:47 2023 @@ -0,0 +1,17 @@ +$NetBSD: patch-daemon_core.cpp,v 1.3 2023/01/06 02:35:47 gutteridge Exp $ + +Fix SunOS builds. + +--- daemon/core.cpp.orig 2022-11-05 08:17:16.000000000 +0000 ++++ daemon/core.cpp +@@ -59,6 +59,10 @@ + + #include "core.h" + ++#ifndef LOG_MAKEPRI ++#define LOG_MAKEPRI(fac, pri) ((fac) | (pri)) ++#endif ++ + + enum + { --_----------=_1672972547208970--