Received: by mail.netbsd.org (Postfix, from userid 605) id E738C85010; Sun, 4 Dec 2022 15:44:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2220B84FF0 for ; Sun, 4 Dec 2022 15:44:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 0P8iJMxGsXjz for ; Sun, 4 Dec 2022 15:44:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7DDEB84FEE for ; Sun, 4 Dec 2022 15:44:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7B853FA90; Sun, 4 Dec 2022 15:44:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1670168659193210" MIME-Version: 1.0 Date: Sun, 4 Dec 2022 15:44:19 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/xset To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221204154419.7B853FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1670168659193210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Dec 4 15:44:19 UTC 2022 Modified Files: pkgsrc/x11/xset: Makefile distinfo Log Message: xset: update to 1.2.5. This release changes the configure script to default to --without-xf86misc, disabling the build of support for the XFree86-Misc extension and dropping the dependency on libXxf86misc. Support for the XFree86-Misc extension was removed in the xserver-1.6.0 release in 2008, so this code is unusable on most systems now. The gitlab repo for the libXxf86misc client library was archived in 2018, ending the maintenance of that library by X.Org. Anyone who really still wants to build this code can do so by passing --with-xf86misc to the configure script, but you're on your own if you do. Alan Coopersmith (14): Update README for gitlab migration Update configure.ac bug URL for gitlab migration Use the real name of the DPMS extension in messages & man page gitlab CI: add a basic build test Build xz tarballs instead of bzip2 Fix spelling/wording issues gitlab CI: stop requiring Signed-off-by in commits Variable scope reduction as recommended by cppcheck Remove unnecessary casts Remove unnecessary check for NULL pointer before calling free() set_pixels: Mark pixels parameter as const Use C99 designated struct initializers configure: Make xf86misc support disabled by default xset 1.2.5 To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/x11/xset/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/x11/xset/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1670168659193210 Content-Disposition: inline Content-Length: 1561 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xset/Makefile diff -u pkgsrc/x11/xset/Makefile:1.16 pkgsrc/x11/xset/Makefile:1.17 --- pkgsrc/x11/xset/Makefile:1.16 Wed Nov 9 13:14:31 2022 +++ pkgsrc/x11/xset/Makefile Sun Dec 4 15:44:19 2022 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.16 2022/11/09 13:14:31 joerg Exp $ +# $NetBSD: Makefile,v 1.17 2022/12/04 15:44:19 wiz Exp $ -DISTNAME= xset-1.2.4 -PKGREVISION= 1 +DISTNAME= xset-1.2.5 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=app/} -EXTRACT_SUFX= .tar.bz2 +EXTRACT_SUFX= .tar.xz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://xorg.freedesktop.org/ Index: pkgsrc/x11/xset/distinfo diff -u pkgsrc/x11/xset/distinfo:1.11 pkgsrc/x11/xset/distinfo:1.12 --- pkgsrc/x11/xset/distinfo:1.11 Tue Oct 26 11:34:57 2021 +++ pkgsrc/x11/xset/distinfo Sun Dec 4 15:44:19 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2021/10/26 11:34:57 nia Exp $ +$NetBSD: distinfo,v 1.12 2022/12/04 15:44:19 wiz Exp $ -BLAKE2s (xset-1.2.4.tar.bz2) = 68d68cc70fa42585272a9480c6c12f6e6696566f8c6a6773774ffb17c8637c86 -SHA512 (xset-1.2.4.tar.bz2) = f24714c9a82081a09d3054bbad98553de9366992f22eaf3e2bcadbb58fad1d3dad2547fef6fa9898d8a9df064573c29df9d82a5c801fa92248604c95f65dc83d -Size (xset-1.2.4.tar.bz2) = 145546 bytes +BLAKE2s (xset-1.2.5.tar.xz) = 3fe8649660218cffc9a1a7fc4f0c4f06bfb7fb21237c14d887e215f090f86e00 +SHA512 (xset-1.2.5.tar.xz) = 12b53d7cd6b7ccf6515c03f68151490fce6b2629e99b8d85ac5d760f4ed93394a457213c3947533809fbbb04acd1ed260aeea1256099a10397660eef3088150d +Size (xset-1.2.5.tar.xz) = 138776 bytes --_----------=_1670168659193210--