aboutsummaryrefslogtreecommitdiffstats
path: root/meta-yocto
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-05-26 18:17:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-26 21:00:48 +0100
commitd60a2078ca7ca7417e67813c763ce6e077b6ae39 (patch)
treede2c3a07e1fa3072502d8c94c5183514c594c017 /meta-yocto
parent1604ca299b93766dffd13277c4923c82168eca4d (diff)
downloadopenembedded-core-contrib-d60a2078ca7ca7417e67813c763ce6e077b6ae39.tar.gz
distro/package_regex: add patterns for GNOME stable releases
The GNOME versioning scheme is set in stone, so add patterns for the latest stable release and the latest GNOME 2-specific stable release, and use them for atk, glib-2.0, gtk+ and gtk+3. (From meta-yocto rev: e3969d99a69023fb33622de232f98f871c248711) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r--meta-yocto/conf/distro/include/package_regex.inc15
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-yocto/conf/distro/include/package_regex.inc b/meta-yocto/conf/distro/include/package_regex.inc
index 544557c0a3..7e383f67d6 100644
--- a/meta-yocto/conf/distro/include/package_regex.inc
+++ b/meta-yocto/conf/distro/include/package_regex.inc
@@ -134,3 +134,18 @@ GITTAGREGEX_pn-linux-yocto-dev = "${GITTAGREGEX_COMMON}"
GITTAGREGEX_pn-uclibc = "${GITTAGREGEX_COMMON}"
GITTAGREGEX_pn-glibc = "${GITTAGREGEX_COMMON}"
GITTAGREGEX_pn-xf86-video-omap = "${GITTAGREGEX_COMMON}"
+
+# GNOME related.
+#
+# GNOME2_STABLE picks stable releases in the 2.x series (so not 2.90 onwards,
+# which were GNOME 3 betas.
+#
+# GNOME_STABLE picks the latest stable release.
+
+GNOME2_STABLE = "(?P<pver>2\.([0-8]*[02468])+\.\d+)"
+GNOME_STABLE = "(?P<pver>\d+\.(\d*[02468])+\.\d+)"
+
+REGEX_pn-glib-2.0 = "${GNOME_STABLE}"
+REGEX_pn-atk = "${GNOME_STABLE}"
+REGEX_pn-gtk+ = "${GNOME2_STABLE}"
+REGEX_pn-gtk+3 = "${GNOME_STABLE}"