diff options
Diffstat (limited to 'meta-yocto/conf')
-rw-r--r-- | meta-yocto/conf/distro/include/package_regex.inc | 15 |
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}" | |||
134 | GITTAGREGEX_pn-uclibc = "${GITTAGREGEX_COMMON}" | 134 | GITTAGREGEX_pn-uclibc = "${GITTAGREGEX_COMMON}" |
135 | GITTAGREGEX_pn-glibc = "${GITTAGREGEX_COMMON}" | 135 | GITTAGREGEX_pn-glibc = "${GITTAGREGEX_COMMON}" |
136 | GITTAGREGEX_pn-xf86-video-omap = "${GITTAGREGEX_COMMON}" | 136 | GITTAGREGEX_pn-xf86-video-omap = "${GITTAGREGEX_COMMON}" |
137 | |||
138 | # GNOME related. | ||
139 | # | ||
140 | # GNOME2_STABLE picks stable releases in the 2.x series (so not 2.90 onwards, | ||
141 | # which were GNOME 3 betas. | ||
142 | # | ||
143 | # GNOME_STABLE picks the latest stable release. | ||
144 | |||
145 | GNOME2_STABLE = "(?P<pver>2\.([0-8]*[02468])+\.\d+)" | ||
146 | GNOME_STABLE = "(?P<pver>\d+\.(\d*[02468])+\.\d+)" | ||
147 | |||
148 | REGEX_pn-glib-2.0 = "${GNOME_STABLE}" | ||
149 | REGEX_pn-atk = "${GNOME_STABLE}" | ||
150 | REGEX_pn-gtk+ = "${GNOME2_STABLE}" | ||
151 | REGEX_pn-gtk+3 = "${GNOME_STABLE}" | ||