pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/dconf



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Dec  2 07:11:55 UTC 2018

Modified Files:
        pkgsrc/devel/dconf: Makefile PLIST distinfo

Log Message:
dconf: update to 0.30.1.

Changes in dconf 0.30.1
=======================

 - Engine: Fix memory leak when subscribing to a path
   (Guido Günther; !25)

Changes in dconf 0.30.0
=======================

None.

Changes in dconf 0.29.2
=======================

 - Service: When corrupt GVDB files are found, they are now
   transparently backed up and replaced with an empty database.
   (Philip Withnall, !8)
 - Replace all hard-coded /etc path with sysconfdir. This is useful for
   JHBuild environments and systems that don't want to use /etc/dconf.
   (Ting-Wei Lan; !21, #739229)
 - Engine: Change overflow thresholds in subscription counts from
   GMAXUINT32 to GMAXUINT (Daniel Playfair Cal; !20)
 - Change meson flag used to build Gtk-Doc from enable-gtk-doc to
   gtk_doc (Daniel Playfair Cal; !19)
 - Declare libdconf_service as a dependency to fix the build in
   massively parallelised environments (Emmanuele Bassi; !22)

Changes in dconf 0.29.1
=======================

 - Engine: track in progress watch handles to avoid spurious changed
   signals for the root path. Subscription requests are no longer sent
   if the engine is already subscribed to the given path. In the case
   that some value changes while a subscription request is in progress,
   a changed signal is only sent for the path being subscribed to
   instead of the root path. (Daniel Playfair Cal; !1, !5, #790640)

 - Engine: fix deadlock which occured when using the engine from libsoup
   within flatpak by extending the existing workaround for Glib !541, aka
   #674885. GSocket and various other GObject types are now also
   initialised in the main thread. (Owen Taylor; !15)

 - Add transfer annotations to the GTK-Doc strings for functions in the
   dconf_changeset_* and dconf_client_* namespaces (Xavier Claessens,
   Philip Withnall; !9, #758903)

 - Update GVDB subtree from GVDB master, containing mostly documentation
   improvements (Philip Withnall; !17)

 - dconf-update.vala: correct error message grammar (Kenyon Ralph; !6)

 - Various meson related improvements (Iñigo Martínez; !11)

 - Add GitLab CI (Philip Withnall; !10)

 - Service: Port from the deprecated g_type_class_add_private() to
   G_ADD_PRIVATE() (Philip Withnall; !7)

 - Add Daniel Playfair Cal and Philip Withnall as maintainers (Philip
   Withnall)


To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 pkgsrc/devel/dconf/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/dconf/PLIST
cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/dconf/distinfo

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

Modified files:

Index: pkgsrc/devel/dconf/Makefile
diff -u pkgsrc/devel/dconf/Makefile:1.45 pkgsrc/devel/dconf/Makefile:1.46
--- pkgsrc/devel/dconf/Makefile:1.45    Mon Sep  3 10:50:17 2018
+++ pkgsrc/devel/dconf/Makefile Sun Dec  2 07:11:55 2018
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.45 2018/09/03 10:50:17 wiz Exp $
+# $NetBSD: Makefile,v 1.46 2018/12/02 07:11:55 wiz Exp $
 
-DISTNAME=      dconf-0.28.0
-PKGREVISION=   1
+DISTNAME=      dconf-0.30.1
 CATEGORIES=    devel gnome
 MASTER_SITES=  ${MASTER_SITE_GNOME:=sources/dconf/${PKGVERSION_NOREV:R}/}
 EXTRACT_SUFX=  .tar.xz
@@ -34,6 +33,7 @@ SUBST_SED.sysdir=     -e s,/etc,${PKG_SYSCON
 #MESON_ARGS+=          -D enable-gtk-doc=true
 # man option does not work without gtk-doc option
 #MESON_ARGS+=          -D enable-man=true
+MESON_ARGS+=           -D bash_completion=false
 
 PKGCONFIG_OVERRIDE=            output/meson-private/dconf.pc
 PKGCONFIG_OVERRIDE_STAGE=      post-build
@@ -62,5 +62,6 @@ BUILDLINK_API_DEPENDS.glib2+= glib2>=2.4
 #.include "../../textproc/gtk-doc/buildlink3.mk"
 .include "../../devel/glib2/modules.mk"
 .include "../../devel/py-meson/build.mk"
+.include "../../sysutils/dbus/buildlink3.mk"
 .include "../../lang/python/application.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/devel/dconf/PLIST
diff -u pkgsrc/devel/dconf/PLIST:1.10 pkgsrc/devel/dconf/PLIST:1.11
--- pkgsrc/devel/dconf/PLIST:1.10       Tue Apr 17 12:28:41 2018
+++ pkgsrc/devel/dconf/PLIST    Sun Dec  2 07:11:55 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2018/04/17 12:28:41 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2018/12/02 07:11:55 wiz Exp $
 bin/dconf
 include/dconf/client/dconf-client.h
 include/dconf/common/dconf-changeset.h
@@ -11,7 +11,9 @@ lib/libdconf.so.1
 lib/libdconf.so.1.0.0
 lib/pkgconfig/dconf.pc
 libexec/dconf-service
-share/bash-completion/completions/dconf
+man/man1/dconf-service.1
+man/man1/dconf.1
+man/man7/dconf.7
 share/dbus-1/services/ca.desrt.dconf.service
 share/vala/vapi/dconf.deps
 share/vala/vapi/dconf.vapi

Index: pkgsrc/devel/dconf/distinfo
diff -u pkgsrc/devel/dconf/distinfo:1.13 pkgsrc/devel/dconf/distinfo:1.14
--- pkgsrc/devel/dconf/distinfo:1.13    Tue Apr 17 12:28:41 2018
+++ pkgsrc/devel/dconf/distinfo Sun Dec  2 07:11:55 2018
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2018/04/17 12:28:41 wiz Exp $
+$NetBSD: distinfo,v 1.14 2018/12/02 07:11:55 wiz Exp $
 
-SHA1 (dconf-0.28.0.tar.xz) = e6b10da51df002a1661ce938941770c549cd5b87
-RMD160 (dconf-0.28.0.tar.xz) = 5098b0afadd8613c0e3550d78e4fd5037d876046
-SHA512 (dconf-0.28.0.tar.xz) = bce43c997bd09ef575ffc4ec7a4216543a65996ecb4c7df910b561865a6ed0e0401596a0ba9e72036e26cd526f98e0de99f9c6787b1127594bc13e484983ba74
-Size (dconf-0.28.0.tar.xz) = 99340 bytes
+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



Home | Main Index | Thread Index | Old Index