Received: by mail.netbsd.org (Postfix, from userid 605) id 54E7284D81; Fri, 16 Aug 2019 10:54:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D197284D7A for ; Fri, 16 Aug 2019 10:54:52 +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 OiBnP43HVGjv for ; Fri, 16 Aug 2019 10:54:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0501A84CDA for ; Fri, 16 Aug 2019 10:54:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F2FDDFBF4; Fri, 16 Aug 2019 10:54:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565952891208940" MIME-Version: 1.0 Date: Fri, 16 Aug 2019 10:54:51 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/dconf To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20190816105451.F2FDDFBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1565952891208940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Fri Aug 16 10:54:51 UTC 2019 Modified Files: pkgsrc/devel/dconf: Makefile database.mk distinfo Log Message: dconf: update to 0.32.0. Changes in dconf 0.32.0 ======================= - No changes since 0.31.92 Changes in dconf 0.31.92 ======================== - bin: Add an option to ignore changes to locked keys during load (Tomasz Miąsko; #1; !43) - tests: Use more concise key and value (Tomasz Miąsko; #1; !43) - tests: shm: fix pwrite wrapper with -D_FILE_OFFSET_BITS=64 (Ben Wolsieffer; !37) - tests: replace usage of dlsym with separate modules containing functions that need to be mocked out (Daniel Playfair Cal; !37) - tests: Avoid using real system bus during tests (Tomasz Miąsko; #51; !45) Changes in dconf 0.31.2 ======================= - Bin: rewrite dconf utility in C. Updates are no longer conditional on the mtime of the database directory and files. Help information is shown on erroneous usage, but not otherwise. (Tomasz Miąsko; !39) - build: Make dconf client vapi file installation optional, and thus the Vala dependency optional (still built by default) (Tomasz Miąsko; !40) - bin: Add a new database directory argument for the update command (Tomasz Miąsko, Takao Fujiwara; !39, !41) Changes in dconf 0.31.1 ======================= - Engine: Fix memory leak when subscribing to a path. (Guido Günther; !25) - CI: Always store test artifacts so we always get code coverage results. (Philip Withnall; !32) - Sort output of list and dump commands. (Tomasz Miąsko; !31) - Tests: Add integration tests for dconf and dconf-service running within a separate D-Bus session and clean XDG_RUNTIME_DIR and XDG_CONFIG_HOME. (Tomasz Miąsko; !31) - Engine: Coalesce pending writes into a single changeset. (Tomasz Miąsko; !30) - Consistently validate the number of arguments. Add optional directory argument for update command. (Tomasz Miąsko; !33) - Tests: Add further integration tests (Tomasz Miąsko; !33) - Check mtimes of files when updating databases. (Marek Kasik; !27; #11) - Indicate update failure with non-zero exit code. Consistently handle invalid configuration in update. (Tomasz Miąsko; !34; #42) - Replace Bugzilla by Gitlab URL in DOAP file. (Andre Klapper) - Tests: Add test for key paths locked in system databases (Tomasz Miąsko; !35) To generate a diff of this commit: cvs rdiff -u -r1.50 -r1.51 pkgsrc/devel/dconf/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/dconf/database.mk cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/dconf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565952891208940 Content-Disposition: inline Content-Length: 2623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/dconf/Makefile diff -u pkgsrc/devel/dconf/Makefile:1.50 pkgsrc/devel/dconf/Makefile:1.51 --- pkgsrc/devel/dconf/Makefile:1.50 Wed Jul 10 10:51:29 2019 +++ pkgsrc/devel/dconf/Makefile Fri Aug 16 10:54:51 2019 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.50 2019/07/10 10:51:29 markd Exp $ +# $NetBSD: Makefile,v 1.51 2019/08/16 10:54:51 wiz Exp $ -DISTNAME= dconf-0.30.1 -PKGREVISION= 3 +DISTNAME= dconf-0.32.0 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/dconf/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz Index: pkgsrc/devel/dconf/database.mk diff -u pkgsrc/devel/dconf/database.mk:1.2 pkgsrc/devel/dconf/database.mk:1.3 --- pkgsrc/devel/dconf/database.mk:1.2 Wed Nov 25 12:49:46 2015 +++ pkgsrc/devel/dconf/database.mk Fri Aug 16 10:54:51 2019 @@ -1,4 +1,4 @@ -# $NetBSD: database.mk,v 1.2 2015/11/25 12:49:46 jperkin Exp $ +# $NetBSD: database.mk,v 1.3 2019/08/16 10:54:51 wiz Exp $ # # This Makefile fragment is intended to be included by packages that install # dconf database. It takes care of update the corresponding databases @@ -8,7 +8,7 @@ .if !defined(DCONF_DATABASE_MK) DCONF_DATABASE_MK= # defined -DCONF= ${LOCALBASE}/bin/dconf +DCONF= ${PREFIX}/bin/dconf FILES_SUBST+= DCONF=${DCONF:Q} INSTALL_TEMPLATES+= ../../devel/dconf/files/database.tmpl Index: pkgsrc/devel/dconf/distinfo diff -u pkgsrc/devel/dconf/distinfo:1.16 pkgsrc/devel/dconf/distinfo:1.17 --- pkgsrc/devel/dconf/distinfo:1.16 Mon Dec 17 15:33:01 2018 +++ pkgsrc/devel/dconf/distinfo Fri Aug 16 10:54:51 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.16 2018/12/17 15:33:01 jperkin Exp $ +$NetBSD: distinfo,v 1.17 2019/08/16 10:54:51 wiz Exp $ -SHA1 (dconf-0.30.1.tar.xz) = 181cdedc20a5ecd2d6e6aab4538ff199b5eaa1f9 -RMD160 (dconf-0.30.1.tar.xz) = c1b65608f36fd8f29a3e5204b95fc5afddd0affc -SHA512 (dconf-0.30.1.tar.xz) = f7d136aec7cb75b64c7d9446d520f4c4af368e6d22346b7bb8ad66c08afaa03a72aacd44016dae7690e37b7d0deb9a16187445db176427a12a8b3cd3885c9e03 -Size (dconf-0.30.1.tar.xz) = 104376 bytes +SHA1 (dconf-0.32.0.tar.xz) = 3b391ec3cc20b22bb029e1940223e3a583f17a3c +RMD160 (dconf-0.32.0.tar.xz) = 47e61388174da261201cd6aa9646efb5f34c3bb6 +SHA512 (dconf-0.32.0.tar.xz) = 09ae65ad365947aed24228b94978b290060264e55b443d18a743e943627703c92e16e3a5ca8a0aaf3549f7a1d5aad77bdc285d4c8519db705d3104ec22b111a0 +Size (dconf-0.32.0.tar.xz) = 111700 bytes SHA1 (patch-client_meson.build) = c14f83a8577d35c8f32dfa3d9fcbbe1c9e67548b SHA1 (patch-gsettings_meson.build) = 63abfc31d9fede52340708739bc53a6f6a439108 SHA1 (patch-meson.build) = 2015b184e88ed797b52152d00e96e45988cf01bf --_----------=_1565952891208940--