pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel



Module Name:    pkgsrc
Committed By:   mef
Date:           Sun Feb 16 01:51:06 UTC 2025

Modified Files:
        pkgsrc/devel/GConf: Makefile Makefile.common distinfo
        pkgsrc/devel/GConf-ui: Makefile
        pkgsrc/devel/GConf/patches: patch-ai

Log Message:
(devel/GConf{,-ui}) Updated 3.2.3 to 3.2.4

# Generated by Makefile. Do not edit.

commit 81b729de846ef3d7c69769dce4fba05ffae06e97
Author: Ryan Lortie <desrt%desrt.ca@localhost>
Date:   Thu Mar 8 12:10:22 2012 -0500

    GConf 3.2.4

 NEWS         |   17 +++++++++++++++++
 configure.in |    2 +-
 2 files changed, 18 insertions(+), 1 deletions(-)

commit 1f4573580320b744e6aaad7f7390cff84668d883
Author: Ryan Lortie <desrt%desrt.ca@localhost>
Date:   Thu Mar 8 12:08:13 2012 -0500

    build: add uninstall hook for GSettings backend

    New automake is more strict about having the install directory clean
    after 'make uninstall' during 'make distcheck'.

 gsettings/Makefile.am |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

commit c35ac7aff8f035710b3fbbee4fe34461cc78681e
Author: Ryan Lortie <desrt%desrt.ca@localhost>
Date:   Thu Mar 8 11:47:35 2012 -0500

    fix build failure with ORBit enabled

    With ORBit enabled, the internal gconf headers (that we are now using
    from gsettings-data-convert) depend on ORBit headers.  Add the proper
    search path to the CFLAGS for gsettings-data-convert to fix that.

 gsettings/Makefile.am |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit d28bd006832bd136c58d42003bf1b0f25f74128e
Author: Ryan Lortie <desrt%desrt.ca@localhost>
Date:   Wed Mar 7 15:04:53 2012 -0500

    gsettings-data-convert: convert only user settings

    We only want to migrate settings that were in writable databases (in
    order to avoid 'lifting' system defaults into the user's database).

    https://bugzilla.gnome.org/show_bug.cgi?id=671581

 gsettings/Makefile.am              |    1 +
 gsettings/gsettings-data-convert.c |   65 ++++++++++++++++++++++++++++++++++-
 2 files changed, 64 insertions(+), 2 deletions(-)

commit 27c183fe8e63a3a21b58348a294056e2594f985f
Author: Ryan Lortie <desrt%desrt.ca@localhost>
Date:   Wed Mar 7 15:04:20 2012 -0500

    sources: remove a harmless warning message

    GConf warns if there are no writable databases in use.  Stop it from
    doing that.

    https://bugzilla.gnome.org/show_bug.cgi?id=671581

 gconf/gconf-sources.c |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

commit 0914a38ab9758741e878ce2345cc48650f368372
Author: Daniel Korostil <ted.korostiled%gmail.com@localhost>
Date:   Fri Mar 2 17:07:01 2012 +0200

    Uploaded Ukranian

 po/uk.po |  389 ++++++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 225 insertions(+), 164 deletions(-)

commit ca6c66bdc2da414d2dacb7c96e40a7cdcbe58f03
Author: Kasia Bondarava <kasia.bondarava%gmail.com@localhost>
Date:   Sun Feb 26 01:15:19 2012 +0300

    Updated Belarusian translation.

 po/be.po | 2919 ++++++++++++++++++++++++++++----------------------------------
 1 files changed, 1334 insertions(+), 1585 deletions(-)

commit 14176e68e899810eea404ea4a42b7480e5114524
Author: Ray Strode <rstrode%redhat.com@localhost>
Date:   Fri Jun 10 14:38:49 2011 -0400

    daemon: tie saved_state file to session

    The code isn't really designed to work well with multiple
    gconfd's writing to the same saved_state file, so we should
    make it per-session.

    https://bugzilla.gnome.org/show_bug.cgi?id=652289

 gconf/gconfd.c |   82 +++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 files changed, 79 insertions(+), 3 deletions(-)

commit 2895a09bc0666cf7b26190bdb648ad1f52c174da
Author: Ray Strode <rstrode%redhat.com@localhost>
Date:   Fri Jun 10 18:47:41 2011 -0400

    daemon: store daemon data in XDG_RUNTIME_DIR

    If XDG_RUNTIME_DIR is available it's a much better
    directory than /tmp since it ensures there's no
    DoS possibilities

    https://bugzilla.gnome.org/show_bug.cgi?id=652289

 gconf/gconf-internals.c |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)

commit ea6894303f7ebadb98bf4bf70a79c5bf6ef7cb90
Author: Ray Strode <rstrode%redhat.com@localhost>
Date:   Fri Jun 10 11:25:55 2011 -0400

    daemon: store saved_state in daemon dir not ~/.gconfd

    The daemon dir isn't always ~/.gconfd so we shouldn't hard
    code it.

    https://bugzilla.gnome.org/show_bug.cgi?id=652289

 gconf/gconfd.c |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

commit 6f3e127330cb0820a373be77be3cb2cacd0b352e
Author: Ray Strode <rstrode%redhat.com@localhost>
Date:   Mon Feb 13 23:35:06 2012 -0500

    gconf-dbus: don't crash during sync if gconfd shutting down

    The gconfd shuts down after a bit of inactivity.  When that
    happens there's a window where it refuses requests from the
    client library with an error.  The library is resposible for
    gracefully handling this condition and reacting appropriately.

    There are many places in the code where the client library has
    this idiom:

    db = gconf_engine_get_database (conf, TRUE, err);

    if (db == NULL)
      {
        g_return_if_fail(err == NULL || *err != NULL);

        return;
      }

    In the event gconfd is shutting down, db will be NULL, and the
    code will return early from whatever (non-critical) operation
    it was doing.

    gconf_engine_suggest_sync has a similiar chunk of code, but it
    neglected the "return;" and then promptly crashed since it wasn't
    expecting db to be NULL.

    This commit adds the return;

    https://bugzilla.gnome.org/show_bug.cgi?id=670033

 gconf/gconf-dbus.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 0bc3a90c2178ae0dd42029f7ad227fa7f44d6c0c
Author: Hannie Dumoleyn <hannie%ubuntu-nl.org@localhost>
Date:   Sat Feb 4 18:43:35 2012 +0100

    Updated Dutch translation

 po/nl.po |  384 ++++++++++++++++++++++++++++++++++++--------------------------
 1 files changed, 224 insertions(+), 160 deletions(-)

commit 6cd97ba58d2022378a627406bcd786eefd5b891a
Author: Kjartan Maraas <kmaraas%gnome.org@localhost>
Date:   Tue Jan 24 15:12:06 2012 +0100

    Updated Norwegian bokmål translation

 po/nb.po |  220 ++++++++++++++++++++++++++-----------------------------------
 1 files changed, 94 insertions(+), 126 deletions(-)

commit 212c2b9f69ccf4fd6a140726a45848d8810ae6ab
Author: Matthias Clasen <mclasen%redhat.com@localhost>
Date:   Thu Jan 19 12:42:13 2012 -0500

    Put back gthread-2.0

    Turns out g_thread_init is used in gconftool

 configure.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 371b817fec29aeeeaabb24fca80248e8dc4d68c5
Author: Matthias Clasen <mclasen%redhat.com@localhost>
Date:   Thu Jan 19 11:37:42 2012 -0500

    Back down gio requirements

    2.32 doesn't actually exist yet...

 configure.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit e06e9553b060d6b0fd96cdf40dbd5918045c52ca
Author: Matthias Clasen <mclasen%redhat.com@localhost>
Date:   Thu Jan 19 09:54:58 2012 -0500

    Bump GIO dep to 2.32

    This is needed for the settings schema API.

 configure.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 120f116e608bc1f09cf65435333e40e00c6b8ad2
Author: Matthias Clasen <mclasen%redhat.com@localhost>
Date:   Thu Jan 19 09:53:08 2012 -0500

    Skip nonexisting schemas

    This can happen in practice, due to e.g. schemas being packaged
    in subpackages, while all the conversions are kept in a single
    file.

 gsettings/gsettings-data-convert.c |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

commit 76e5c8e2cf3d2555beb8d06211711d82962a9ebf
Author: Matthias Clasen <mclasen%redhat.com@localhost>
Date:   Thu Jan 19 09:51:16 2012 -0500

    Cosmetics: Consistenly capitalize messages

 gsettings/gsettings-data-convert.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

commit 8a9c168c8b9f58cfcfdb021e45fb5a16674a3969
Author: Colin Walters <walters%verbum.org@localhost>
Date:   Sat Jan 14 22:08:48 2012 -0500

    build: Add --disable-documentation configure option

    Documentation is the source of many cyclical build loops.  Allow
    operating system builders to manually cut these cycles initially
    by disabling documentation for a first pass.

 configure.in          |    5 +++++
 gsettings/Makefile.am |    6 +++++-
 2 files changed, 10 insertions(+), 1 deletions(-)

commit 635d28cbf635d89b8bbbb008bf86cc864b8dabb7
Author: Richard Purdie <richard.purdie%intel.com@localhost>
Date:   Mon Nov 28 14:34:43 2011 +0000

    Allow the backend directory to be specified from the environment.

    This is required in Yoctor so we can relocate gconf-native to different paths
    and still allow it to work.

    https://bugzilla.gnome.org/show_bug.cgi?id=664650

 gconf/gconf-backend.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

commit c129898afaa562ffc38f434e5e0c607f525101b8
Author: Sascha Silbe <sascha-pgp%silbe.org@localhost>
Date:   Mon Nov 14 16:13:27 2011 +0100

    D-Bus backend: Add GCONF_DEFAULT_SOURCE_PATH support (#664031)

    Forward-port 7baf4c6b33a6dd0697a8bdb81bd86c72d58ebdc6
    ("Allow overriding the default config via $GCONF_DEFAULT_SOURCE_PATH")
    from the ORBit to the D-Bus backend to fix (sugar-)jhbuild breakage when
    building with --disable-orbit.

 gconf/gconf-dbus.c |   30 +++++++++++++++++++-----------
 1 files changed, 19 insertions(+), 11 deletions(-)


To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 pkgsrc/devel/GConf/Makefile
cvs rdiff -u -r1.22 -r1.23 pkgsrc/devel/GConf/Makefile.common
cvs rdiff -u -r1.35 -r1.36 pkgsrc/devel/GConf/distinfo
cvs rdiff -u -r1.70 -r1.71 pkgsrc/devel/GConf-ui/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/GConf/patches/patch-ai

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

Modified files:

Index: pkgsrc/devel/GConf/Makefile
diff -u pkgsrc/devel/GConf/Makefile:1.117 pkgsrc/devel/GConf/Makefile:1.118
--- pkgsrc/devel/GConf/Makefile:1.117   Thu Nov 14 22:19:15 2024
+++ pkgsrc/devel/GConf/Makefile Sun Feb 16 01:51:06 2025
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.117 2024/11/14 22:19:15 wiz Exp $
+# $NetBSD: Makefile,v 1.118 2025/02/16 01:51:06 mef Exp $
 
-PKGREVISION= 22
 .include "../../devel/GConf/Makefile.common"
 
 CONFIGURE_ARGS+=       --disable-gtk

Index: pkgsrc/devel/GConf/Makefile.common
diff -u pkgsrc/devel/GConf/Makefile.common:1.22 pkgsrc/devel/GConf/Makefile.common:1.23
--- pkgsrc/devel/GConf/Makefile.common:1.22     Tue Nov 28 14:33:52 2017
+++ pkgsrc/devel/GConf/Makefile.common  Sun Feb 16 01:51:06 2025
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile.common,v 1.22 2017/11/28 14:33:52 wiz Exp $
+# $NetBSD: Makefile.common,v 1.23 2025/02/16 01:51:06 mef Exp $
 #
 # used by devel/GConf/Makefile
 # used by devel/GConf-ui/Makefile
 
-GCONF_VERSION=         3.2.3
+GCONF_VERSION=         3.2.4
 
 DISTNAME=              GConf-${GCONF_VERSION}
 CATEGORIES=            devel gnome
 MASTER_SITES=          ${MASTER_SITE_GNOME:=sources/GConf/3.2/}
-EXTRACT_SUFX=          .tar.bz2
+EXTRACT_SUFX=          .tar.xz
 
 MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=              https://www.gnome.org/projects/gconf/

Index: pkgsrc/devel/GConf/distinfo
diff -u pkgsrc/devel/GConf/distinfo:1.35 pkgsrc/devel/GConf/distinfo:1.36
--- pkgsrc/devel/GConf/distinfo:1.35    Tue Oct 26 10:13:59 2021
+++ pkgsrc/devel/GConf/distinfo Sun Feb 16 01:51:06 2025
@@ -1,11 +1,11 @@
-$NetBSD: distinfo,v 1.35 2021/10/26 10:13:59 nia Exp $
+$NetBSD: distinfo,v 1.36 2025/02/16 01:51:06 mef Exp $
 
-BLAKE2s (GConf-3.2.3.tar.bz2) = 9aca7bcc37fe7ef1cf66d7c359f928fec4473ad3e6814a0627a77ee013d08bd1
-SHA512 (GConf-3.2.3.tar.bz2) = 8d3be4bc042d341fc331b8fcd5a4f1ad83b950690ea73d2af3eb5c0741492317f9d503e648356958b190f7edd699d0f9ea00f84a7d458a9e6a56202b8fefdf07
-Size (GConf-3.2.3.tar.bz2) = 1782011 bytes
+BLAKE2s (GConf-3.2.4.tar.xz) = 96ea0367fbc67c052936481c9bc11019655acb35ed695328fa376c039bae043e
+SHA512 (GConf-3.2.4.tar.xz) = aa6b0929ca53566be3abb763e8e31589f915a34fbdab90ccb1c173e23dd6a6d42771872abcad138f04dc83d9fc887d204c2b541efa3488dcb9f1a356b82f77c4
+Size (GConf-3.2.4.tar.xz) = 1523824 bytes
 SHA1 (patch-ab) = ca0c9f45ff46ceb05a10c03c59f94b6a5be562b0
 SHA1 (patch-ac) = a810c943fc6408cd4f6024be65f9973d42028e1a
 SHA1 (patch-ae) = ec5b872713e3a5aec222ad46e6f24e27fff51a86
 SHA1 (patch-af) = 6c32965505db5d0b2e1083e629c7bc7f0cd0a439
 SHA1 (patch-ah) = 66485f9aeef7e6023c60f58cc054924f3cac4972
-SHA1 (patch-ai) = bd343f9e98dbb8597b593fdcb01de35824f18dd4
+SHA1 (patch-ai) = cacac229164e32a4f7b5a4d14c10d84685f1a2f1

Index: pkgsrc/devel/GConf-ui/Makefile
diff -u pkgsrc/devel/GConf-ui/Makefile:1.70 pkgsrc/devel/GConf-ui/Makefile:1.71
--- pkgsrc/devel/GConf-ui/Makefile:1.70 Fri Dec 27 08:19:30 2024
+++ pkgsrc/devel/GConf-ui/Makefile      Sun Feb 16 01:51:06 2025
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.70 2024/12/27 08:19:30 wiz Exp $
+# $NetBSD: Makefile,v 1.71 2025/02/16 01:51:06 mef Exp $
 
-PKGREVISION= 32
 .include "../../devel/GConf/Makefile.common"
 
 PKGNAME=       GConf-ui-${GCONF_VERSION}

Index: pkgsrc/devel/GConf/patches/patch-ai
diff -u pkgsrc/devel/GConf/patches/patch-ai:1.2 pkgsrc/devel/GConf/patches/patch-ai:1.3
--- pkgsrc/devel/GConf/patches/patch-ai:1.2     Fri May 13 17:07:27 2011
+++ pkgsrc/devel/GConf/patches/patch-ai Sun Feb 16 01:51:06 2025
@@ -1,8 +1,8 @@
-$NetBSD: patch-ai,v 1.2 2011/05/13 17:07:27 drochner Exp $
+$NetBSD: patch-ai,v 1.3 2025/02/16 01:51:06 mef Exp $
 
---- gsettings/Makefile.in.orig 2011-04-25 10:30:54.000000000 +0000
+--- gsettings/Makefile.in.orig 2012-03-08 17:10:54.000000000 +0000
 +++ gsettings/Makefile.in
-@@ -351,7 +351,7 @@ gsettings_data_convert_LDADD = \
+@@ -380,7 +380,7 @@ gsettings_data_convert_LDADD = \
        $(GSETTINGS_LIBS)                   \
        $(NULL)
  
@@ -10,4 +10,4 @@ $NetBSD: patch-ai,v 1.2 2011/05/13 17:07
 +autostartdir = $(prefix)/share/examples/GConf/autostart
  autostart_in_files = gsettings-data-convert.desktop.in
  autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
- man_MANS = \
+ man_MANS = $(am__append_1)



Home | Main Index | Thread Index | Old Index