Received: by mail.netbsd.org (Postfix, from userid 605) id 86B0E84D66; Sun, 30 Oct 2022 01:11:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B803B84D28 for ; Sun, 30 Oct 2022 01:11:03 +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 9zqd4LKfdAo0 for ; Sun, 30 Oct 2022 01:11:03 +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 2131484CEA for ; Sun, 30 Oct 2022 01:11:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1EE8FFA90; Sun, 30 Oct 2022 01:11:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667092263151130" MIME-Version: 1.0 Date: Sun, 30 Oct 2022 01:11:03 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/rgb To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221030011103.1EE8FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667092263151130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Oct 30 01:11:03 UTC 2022 Modified Files: pkgsrc/x11/rgb: Makefile distinfo Log Message: rgb: update to 1.1.0. This release adds a new configure option --with-rgb-db-library to allow builders more control over which dbm or ndbm compatible library is used if --with-rgb-db-type is set to one of the non-default database options instead of the default of "text". The --with-rgb-db-library option can allow use of libraries that are not normally searched for (gdbm_compat) or to bypass libraries we do normally search for (like Berkeley db). Alan Coopersmith (12): Update README for gitlab migration Update configure.ac bug URL for gitlab migration gitlab CI: add a basic build test Build xz tarballs instead of bzip2 Remove unnecessary casts from malloc() & memcpy() calls rgb.c: fix -Wdiscarded-qualifiers warning rgb.c: if filename is too long, report error instead of truncating README: provide more information on --with-rgb-db-type configure: Add --with-rgb-db-library option gitlab CI: build all 3 --with-rgb-db-type=(text|dbm|ndbm) options gitlab CI: stop requiring Signed-off-by in commits rgb 1.1.0 Emil Velikov (1): autogen.sh: use quoted string variables Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/x11/rgb/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/x11/rgb/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667092263151130 Content-Disposition: inline Content-Length: 1532 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/rgb/Makefile diff -u pkgsrc/x11/rgb/Makefile:1.10 pkgsrc/x11/rgb/Makefile:1.11 --- pkgsrc/x11/rgb/Makefile:1.10 Sat Jan 18 23:35:55 2020 +++ pkgsrc/x11/rgb/Makefile Sun Oct 30 01:11:02 2022 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.10 2020/01/18 23:35:55 rillig Exp $ +# $NetBSD: Makefile,v 1.11 2022/10/30 01:11:02 wiz Exp $ -DISTNAME= rgb-1.0.6 -PKGREVISION= 1 +DISTNAME= rgb-1.1.0 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=app/} -EXTRACT_SUFX= .tar.bz2 +EXTRACT_SUFX= .tar.xz MAINTAINER= joerg@NetBSD.org HOMEPAGE= https://xorg.freedesktop.org/ Index: pkgsrc/x11/rgb/distinfo diff -u pkgsrc/x11/rgb/distinfo:1.8 pkgsrc/x11/rgb/distinfo:1.9 --- pkgsrc/x11/rgb/distinfo:1.8 Tue Oct 26 11:34:26 2021 +++ pkgsrc/x11/rgb/distinfo Sun Oct 30 01:11:02 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 11:34:26 nia Exp $ +$NetBSD: distinfo,v 1.9 2022/10/30 01:11:02 wiz Exp $ -BLAKE2s (rgb-1.0.6.tar.bz2) = f869ac09a5b854f98e12c56729b69d8dba69f6524674ded8d528995a35fc806b -SHA512 (rgb-1.0.6.tar.bz2) = 92c8885a0e1482065a8b86f7be890859a5eab6b9d57ff219e916cbbd10cd185deec1c5db25dae8c405a343ab0e2ddaba3ddfe0b567d06534405f102e1845654e -Size (rgb-1.0.6.tar.bz2) = 139225 bytes +BLAKE2s (rgb-1.1.0.tar.xz) = 9ff1b543166f527325220907de1db2074eb0072b2d52a6de37cbd6badef4a804 +SHA512 (rgb-1.1.0.tar.xz) = 640888d64b2d328fff4a1652ba1299436e348bc3cbc90710d79c635acfa7f2fce0018adb818123b41ca008197ff1cbf87aab60501de36c163bed2d80d8556008 +Size (rgb-1.1.0.tar.xz) = 132824 bytes --_----------=_1667092263151130--