[meld/meld-3-12] bin/meld: Recompile gschemas based on schema mtime check (bgo#739267)
- From: Kai Willadsen <kaiw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [meld/meld-3-12] bin/meld: Recompile gschemas based on schema mtime check (bgo#739267)
- Date: Sat, 8 Nov 2014 21:32:22 +0000 (UTC)
commit 348d33c76ac6f485250535557f15b253ee66caba
Author: Kai Willadsen <kai willadsen gmail com>
Date: Sun Nov 9 07:27:35 2014 +1000
bin/meld: Recompile gschemas based on schema mtime check (bgo#739267)
When checking whether we have a compiled version of the schemas, we now
also check to see whether it looks like it's actually current, based on
the relative mtimes of the source and compiled schema files.
This keeps biting people running from source whenever we change the
schemas. While this fix isn't exactly elegant, it's better than
constantly running into the problem, since that's what the
autocompiling-the-schemas hack was added for in the first place.
bin/meld | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
---
diff --git a/bin/meld b/bin/meld
index 8cfa713..6da1a80 100755
--- a/bin/meld
+++ b/bin/meld
@@ -209,8 +209,17 @@ def setup_resources():
def setup_settings():
import meld.conf
- schema_path = os.path.join(meld.conf.DATADIR, "gschemas.compiled")
- if uninstalled and not os.path.exists(schema_path):
+ schema_path = os.path.join(meld.conf.DATADIR, "org.gnome.meld.gschema.xml")
+ compiled_schema_path = os.path.join(meld.conf.DATADIR, "gschemas.compiled")
+
+ try:
+ schema_mtime = os.path.getmtime(schema_path)
+ compiled_mtime = os.path.getmtime(compiled_schema_path)
+ have_schema = schema_mtime < compiled_mtime
+ except OSError:
+ have_schema = False
+
+ if uninstalled and not have_schema:
subprocess.call(["glib-compile-schemas", meld.conf.DATADIR],
cwd=melddir)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]