Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/5] Small changes #101
@ 2012-10-18 19:54 Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob Martin Jansa
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 4cd60deb11a8a6f9134d7f6ec39255a35d921426:

  hiawatha: add initial 8.5 recipe and associated files (2012-10-18 15:12:31 +0100)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib jansa/pull
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/pull

Martin Jansa (5):
  PACKAGES_DYNAMIC: use regexp not glob
  mcnavi: remove myslq_config include path work around
  ecore: drop libxputil from DEPENDS
  libxaw: drop libxp and printproto from DEPENDS
  mcnavi: move from meta-oe to meta-efl

 meta-efl/recipes-efl/efl/ecore.inc                              | 5 +++--
 meta-efl/recipes-efl/efl/evas-generic-loaders.inc               | 2 +-
 meta-efl/recipes-efl/efl/evas.inc                               | 2 +-
 {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 7 +------
 meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb               | 2 +-
 meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb          | 2 +-
 meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb                    | 2 +-
 meta-gnome/recipes-support/goffice/goffice_0.8.17.bb            | 2 +-
 meta-initramfs/recipes-devtools/klibc/klibc-utils.inc           | 2 +-
 meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb        | 2 +-
 meta-oe/recipes-extended/lcdproc/lcdproc5.inc                   | 2 +-
 meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb               | 2 +-
 meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb              | 4 ++--
 meta-oe/recipes-multimedia/libav/libav.inc                      | 2 +-
 meta-oe/recipes-support/freerdp/freerdp.inc                     | 2 +-
 meta-oe/recipes-support/openldap/openldap_2.4.23.bb             | 2 +-
 meta-oe/recipes-support/pidgin/pidgin.inc                       | 2 +-
 meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb       | 2 +-
 meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb        | 2 +-
 meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb                    | 2 +-
 20 files changed, 23 insertions(+), 27 deletions(-)
 rename {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb (71%)

-- 
1.7.12.4




^ permalink raw reply	[flat|nested] 12+ messages in thread

* [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob
  2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
@ 2012-10-18 19:54 ` Martin Jansa
  2012-10-19  2:43   ` Andreas Müller
  2012-10-18 19:54 ` [meta-oe][PATCH 2/5] mcnavi: remove myslq_config include path work around Martin Jansa
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

* bitbake uses PACKAGES_DYNAMIC as regexp
  ^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
  * made all those last '-' optional, use .* (or nothing)
* use += instead of = in most cases to keep ${PN}-locale from
  bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/evas-generic-loaders.inc         | 2 +-
 meta-efl/recipes-efl/efl/evas.inc                         | 2 +-
 meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb         | 2 +-
 meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb    | 2 +-
 meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb              | 2 +-
 meta-gnome/recipes-support/goffice/goffice_0.8.17.bb      | 2 +-
 meta-initramfs/recipes-devtools/klibc/klibc-utils.inc     | 2 +-
 meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb  | 2 +-
 meta-oe/recipes-extended/lcdproc/lcdproc5.inc             | 2 +-
 meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb         | 2 +-
 meta-oe/recipes-multimedia/libav/libav.inc                | 2 +-
 meta-oe/recipes-support/freerdp/freerdp.inc               | 2 +-
 meta-oe/recipes-support/openldap/openldap_2.4.23.bb       | 2 +-
 meta-oe/recipes-support/pidgin/pidgin.inc                 | 2 +-
 meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | 2 +-
 meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb  | 2 +-
 meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb              | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/evas-generic-loaders.inc b/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
index 7556eb2..cb11334 100644
--- a/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
+++ b/meta-efl/recipes-efl/efl/evas-generic-loaders.inc
@@ -30,4 +30,4 @@ python populate_packages_prepend () {
 FILES_evas-generic-loader-xcf += "${libdir}/evas/utils/*.xcf.gz"
 FILES_${PN}-dbg += "${libdir}/evas/utils/.debug"
 
-PACKAGES_DYNAMIC = "evas-generic-loader-*"
+PACKAGES_DYNAMIC += "^evas-generic-loader-.*"
diff --git a/meta-efl/recipes-efl/efl/evas.inc b/meta-efl/recipes-efl/efl/evas.inc
index b0ec0cf..e3e5d39 100644
--- a/meta-efl/recipes-efl/efl/evas.inc
+++ b/meta-efl/recipes-efl/efl/evas.inc
@@ -40,7 +40,7 @@ FILES_${PN}-dbg += "${libdir}/evas/modules/*/*/*/.debug/ ${libdir}/evas/cserve2/
 FILES_${PN}-cserve2 += "${libexecdir}/evas_cserve2* ${libexecdir}/dummy_slave"
 
 PACKAGES += "${PN}-cserve2"
-PACKAGES_DYNAMIC = "evas-engine-* evas-loader-* evas-saver-* evas-cserve2-*"
+PACKAGES_DYNAMIC += "^evas-engine-.* ^evas-loader-.* ^evas-saver-.* ^evas-cserve2-.*"
 
 # evas-loader-svg is gone as we don't have esvg and probably won't have anytime soon
 # http://www.intesis.hr/news/16-esvg-source
diff --git a/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb b/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
index 8c3aab4..60b970b 100644
--- a/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
+++ b/meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb
@@ -99,7 +99,7 @@ FILES_${PN}-strings        += "${datadir}/${PN}-${SHRT_VER}/AbiWord/strings"
 FILES_${PN}-systemprofiles += "${datadir}/${PN}-${SHRT_VER}/AbiWord/system.profile*"
 FILES_${PN}-templates      += "${datadir}/${PN}-${SHRT_VER}/templates"
 
-PACKAGES_DYNAMIC = "${PN}-meta ${PN}-plugin-*"
+PACKAGES_DYNAMIC += "^${PN}-meta.* ^${PN}-plugin-.*"
 
 python populate_packages_prepend () {
     abiword_libdir    = bb.data.expand('${libdir}/abiword-2.8/plugins', d)
diff --git a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
index 586eed8..46be86f 100644
--- a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
+++ b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
@@ -40,7 +40,7 @@ FILES_${PN}-dbg += " ${libdir}/gnome-vfs-2.0/modules/.debug"
 FILES_${PN}-dev += " ${libdir}/gnome-vfs-2.0/include"
 FILES_${PN}-doc += " ${datadir}/gtk-doc"
 
-PACKAGES_DYNAMIC = "gnome-vfs-plugin-*"
+PACKAGES_DYNAMIC += "^gnome-vfs-plugin-.*"
 
 python populate_packages_prepend () {
     print bb.data.getVar('FILES_gnome-vfs', d, 1)
diff --git a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
index c1f535b..32b54ef 100644
--- a/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
+++ b/meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb
@@ -72,7 +72,7 @@ FILES_${PN}-dbg += " \
                     ${libdir}/gtk-3.0/modules/.debug"
 
 
-PACKAGES_DYNAMIC += "gtk3-immodule-* gtk3-printbackend-*"
+PACKAGES_DYNAMIC += "^gtk3-immodule-.* ^gtk3-printbackend-.*"
 
 python populate_packages_prepend () {
     import os.path
diff --git a/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb b/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
index c55a8ac..4b64731 100644
--- a/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
+++ b/meta-gnome/recipes-support/goffice/goffice_0.8.17.bb
@@ -36,7 +36,7 @@ FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*${SOLIBS}
             ${datadir}/idl ${datadir}/omf ${datadir}/sounds \
             ${libdir}/bonobo/servers"
 
-PACKAGES_DYNAMIC = "goffice-plugin-*"
+PACKAGES_DYNAMIC += "^goffice-plugin-.*"
 
 python populate_packages_prepend () {
     goffice_libdir = bb.data.expand('${libdir}/goffice/${PV}/plugins/', d)
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-utils.inc b/meta-initramfs/recipes-devtools/klibc/klibc-utils.inc
index cd55dc2..2190ca2 100644
--- a/meta-initramfs/recipes-devtools/klibc/klibc-utils.inc
+++ b/meta-initramfs/recipes-devtools/klibc/klibc-utils.inc
@@ -92,7 +92,7 @@ RDEPENDS_klibc-utils-true = "${THIS_LIBKLIBC}"
 RDEPENDS_klibc-utils-umount = "${THIS_LIBKLIBC}"
 RDEPENDS_klibc-utils-uname = "${THIS_LIBKLIBC}"
 
-PACKAGES_DYNAMIC = "${KLIBC_UTILS_PKGNAME}-*"
+PACKAGES_DYNAMIC += "^${KLIBC_UTILS_PKGNAME}-.*"
 
 python populate_packages_prepend () {
 
diff --git a/meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb b/meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb
index 00030d3..c2f1cc8 100644
--- a/meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb
+++ b/meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb
@@ -35,7 +35,7 @@ python populate_packages_prepend() {
 
 PACKAGES =+ "${PN}-gtk"
 
-PACKAGES_DYNAMIC = "libcanberra-*"
+PACKAGES_DYNAMIC += "^libcanberra-.*"
 
 FILES_${PN}-gtk = "\
   ${sysconfdir}/gconf \
diff --git a/meta-oe/recipes-extended/lcdproc/lcdproc5.inc b/meta-oe/recipes-extended/lcdproc/lcdproc5.inc
index 50b6b0e..76669be 100644
--- a/meta-oe/recipes-extended/lcdproc/lcdproc5.inc
+++ b/meta-oe/recipes-extended/lcdproc/lcdproc5.inc
@@ -73,5 +73,5 @@ python populate_packages_prepend() {
     do_split_packages(d, plugindir, '(.*)\.so$', 'lcdd-driver-%s', 'LCDd driver for %s', prepend=True)
 }
 
-PACKAGES_DYNAMIC = "lcdd-driver-*"
+PACKAGES_DYNAMIC += "^lcdd-driver-.*"
 
diff --git a/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb b/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb
index 0d03889..8e842c4 100644
--- a/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb
+++ b/meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb
@@ -20,7 +20,7 @@ EXTRA_OECONF += "--with-plugins=none"
 
 PACKAGES =+ "${PN}-core ${PN}-lxde ${PN}-gnome"
 
-PACKAGES_DYNAMIC += "${PN}-theme-*"
+PACKAGES_DYNAMIC += "^${PN}-theme-.*"
 
 python populate_packages_prepend() {
     theme_dir = bb.data.expand('${datadir}/themes/', d)
diff --git a/meta-oe/recipes-multimedia/libav/libav.inc b/meta-oe/recipes-multimedia/libav/libav.inc
index 4a1716f..0e80430 100644
--- a/meta-oe/recipes-multimedia/libav/libav.inc
+++ b/meta-oe/recipes-multimedia/libav/libav.inc
@@ -119,4 +119,4 @@ python populate_packages_prepend() {
                       allow_links=True)
 }
 
-PACKAGES_DYNAMIC = "lib(av(codec|device|filter|format|util)|postproc)*"
+PACKAGES_DYNAMIC += "^lib(av(codec|device|filter|format|util)|postproc).*"
diff --git a/meta-oe/recipes-support/freerdp/freerdp.inc b/meta-oe/recipes-support/freerdp/freerdp.inc
index 46aecf6..673b372 100644
--- a/meta-oe/recipes-support/freerdp/freerdp.inc
+++ b/meta-oe/recipes-support/freerdp/freerdp.inc
@@ -23,7 +23,7 @@ PACKAGES =+ "libfreerdp"
 LEAD_SONAME = "libfreerdp.so"
 FILES_libfreerdp = "${libdir}/lib*${SOLIBS}"
 
-PACKAGES_DYNAMIC = "libfreerdp-plugin-*"
+PACKAGES_DYNAMIC += "^libfreerdp-plugin-.*"
 
 python populate_packages_prepend () {
     freerdp_root = bb.data.expand('${libdir}/freerdp', d)
diff --git a/meta-oe/recipes-support/openldap/openldap_2.4.23.bb b/meta-oe/recipes-support/openldap/openldap_2.4.23.bb
index 3ef12d3..8d9bd6c 100644
--- a/meta-oe/recipes-support/openldap/openldap_2.4.23.bb
+++ b/meta-oe/recipes-support/openldap/openldap_2.4.23.bb
@@ -249,7 +249,7 @@ pkg_prerm_${PN}-slapd () {
     update-rc.d $D openldap remove
 }
 
-PACKAGES_DYNAMIC = "openldap-backends openldap-backend-*"
+PACKAGES_DYNAMIC += "^openldap-backends.* ^openldap-backend-.*"
 
 python populate_packages_prepend () {
     backend_dir    = bb.data.expand('${libexecdir}/openldap', d)
diff --git a/meta-oe/recipes-support/pidgin/pidgin.inc b/meta-oe/recipes-support/pidgin/pidgin.inc
index 90e2fd4..cb2a597 100644
--- a/meta-oe/recipes-support/pidgin/pidgin.inc
+++ b/meta-oe/recipes-support/pidgin/pidgin.inc
@@ -56,7 +56,7 @@ RRECOMMENDS_${PN} = "${PN}-data libpurple-plugin-ssl-gnutls libpurple-protocol-i
 FILES_${PN}-data = "${datadir}/pixmaps ${datadir}/sounds ${datadir}/icons"
 FILES_${PN}-dev += "${libdir}/${PN}/*.la"
 
-PACKAGES_DYNAMIC = "libpurple-protocol-* libpurple-plugin-* pidgin-plugin-* finch-plugin-*"
+PACKAGES_DYNAMIC += "^libpurple-protocol-.* ^libpurple-plugin-.* ^pidgin-plugin-.* ^finch-plugin-.*"
 
 python populate_packages_prepend () {
     pidgroot = bb.data.expand('${libdir}/pidgin', d)
diff --git a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb
index c018cb5..1826dd2 100644
--- a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb
+++ b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb
@@ -16,4 +16,4 @@ python populate_packages_prepend () {
     do_split_packages(d, themedir, '^(.*)', 'xfwm4-old-theme-%s', 'XFWM4 theme %s', allow_dirs=True)
 }
 
-PACKAGES_DYNAMIC += "xfwm4-old-theme-*"
+PACKAGES_DYNAMIC += "^xfwm4-old-theme-.*"
diff --git a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb
index 5d03425..bb914ba 100644
--- a/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb
+++ b/meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb
@@ -20,7 +20,7 @@ python populate_packages_prepend() {
                                          '${bindir}/*%s*'])
 }
 
-PACKAGES_DYNAMIC = "${PN}-plugin-*"
+PACKAGES_DYNAMIC += "^${PN}-plugin-.*"
 
 FILES_${PN} += "${libdir}/xfce4/panel/migrate \
                 ${libdir}/xfce4/panel/wrapper"
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb
index 049ac6f..f17d4e5 100644
--- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb
+++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb
@@ -14,7 +14,7 @@ python populate_packages_prepend () {
     do_split_packages(d, themedir, '^(.*)', 'xfwm4-theme-%s', 'XFWM4 theme %s', allow_dirs=True)
 }
 
-PACKAGES_DYNAMIC += "xfwm4-theme-*"
+PACKAGES_DYNAMIC += "^xfwm4-theme-.*"
 
 ALTERNATIVE_${PN} = "x-window-manager"
 ALTERNATIVE_TARGET[x-window-manager] = "${bindir}/xfwm4"
-- 
1.7.12.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [meta-oe][PATCH 2/5] mcnavi: remove myslq_config include path work around
  2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob Martin Jansa
@ 2012-10-18 19:54 ` Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS Martin Jansa
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

* it was fixed in mysql5 3f95bb907381ac5fd789452e1330c12f9a8904f9

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb b/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
index 35c304c..75958d0 100644
--- a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
+++ b/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
@@ -4,7 +4,7 @@ LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a"
 DEPENDS = "ecore evas imlib2 gpsd edje edje-native mysql5"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://www.gps-routes.info/debian/pool/main/m/mcnavi/mcnavi_${PV}.tar.gz"
 SRC_URI[md5sum] = "acc07debcdb3ef448b95e6a6cfcf53d8"
@@ -12,9 +12,4 @@ SRC_URI[sha256sum] = "d3ce1f5901f13985d877b2b6ad06b64094ba43a4e13cbfe06c7cb2f1ab
 
 S = "${WORKDIR}/${PN}"
 
-do_configure_prepend() {
-  # for some reason our mysql_config returns just sysroot/include_dir while mysql.h is in include_dir/mysql
-  sed -i 's#`mysql_config --include`$#`mysql_config --include`/mysql#g' ${S}/configure.ac
-}
-
 inherit autotools
-- 
1.7.12.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS
  2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 2/5] mcnavi: remove myslq_config include path work around Martin Jansa
@ 2012-10-18 19:54 ` Martin Jansa
  2012-10-19  9:26   ` Burton, Ross
  2012-10-18 19:54 ` [meta-oe][PATCH 4/5] libxaw: drop libxp and printproto " Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl Martin Jansa
  4 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

* it was removed from oe-core
  http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328
* it needs to be explicitly disabled now, because recipe was removed in
  oe-core, but files still stay in sysroot and we cannot even
  cleansstate it now without recipes around.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-efl/recipes-efl/efl/ecore.inc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-efl/recipes-efl/efl/ecore.inc b/meta-efl/recipes-efl/efl/ecore.inc
index 9faaf3a..7744501 100644
--- a/meta-efl/recipes-efl/efl/ecore.inc
+++ b/meta-efl/recipes-efl/efl/ecore.inc
@@ -2,7 +2,7 @@ DESCRIPTION = "Ecore is the Enlightenment application framework library"
 LICENSE = "MIT BSD"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d6ff2c3c85de2faf5fd7dcd9ccfc8886"
 DEPENDS = "virtual/libiconv tslib curl eet evas glib-2.0 gnutls \
-           libxtst libxcomposite libxinerama libxscrnsaver libxdamage libxrandr libxcursor libxprintutil"
+           libxtst libxcomposite libxinerama libxscrnsaver libxdamage libxrandr libxcursor"
 DEPENDS_virtclass-native = "eet-native evas-native gettext-native"
 # optional
 # DEPENDS += "directfb virtual/libsdl openssl virtual/libiconv"
@@ -10,7 +10,7 @@ DEPENDS_virtclass-native = "eet-native evas-native gettext-native"
 inherit efl gettext
 
 BBCLASSEXTEND = "native"
-INC_PR = "r0"
+INC_PR = "r1"
 
 do_configure_prepend() {
     touch ${S}/po/Makefile.in.in || true
@@ -78,6 +78,7 @@ ECORE_OECONF = "\
   --enable-inotify \
   --disable-ecore-desktop \
   --disable-ecore-x-xcb \
+  --disable-ecore-x-xprint \
   --disable-ecore-directfb \
   --disable-ecore-sdl \
   --enable-ecore-evas-opengl-x11 \
-- 
1.7.12.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [meta-oe][PATCH 4/5] libxaw: drop libxp and printproto from DEPENDS
  2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
                   ` (2 preceding siblings ...)
  2012-10-18 19:54 ` [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS Martin Jansa
@ 2012-10-18 19:54 ` Martin Jansa
  2012-10-18 19:54 ` [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl Martin Jansa
  4 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

* it was removed from oe-core
  http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328
* there should be --disable-xprint/--without-xprint too, but it looks
  like all support for xprint was removed from libxaw already

  commit 012e73faab8dc8617c6da4679715dae14f6cddd4
  Author: Daniel Stone <daniel@fooishbar.org>
  Date:   Fri Aug 15 18:25:53 2008 +0300

    Remove last remaining vestiges of Xprint support

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb b/meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb
index 88863a7..f5a4a6f 100644
--- a/meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb
+++ b/meta-oe/recipes-graphics/xorg-lib/libxaw_1.0.10.bb
@@ -1,11 +1,11 @@
 require recipes-graphics/xorg-lib/xorg-lib-common.inc
 DESCRIPTION = "X Athena Widget Set"
-DEPENDS += "xproto virtual/libx11 libxext xextproto libxt libxmu libxpm libxp printproto libxau xmlto-native"
+DEPENDS += "xproto virtual/libx11 libxext xextproto libxt libxmu libxpm libxau xmlto-native"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=1c65719d42900bb81b83e8293c20a364"
 
 PE = "1"
-PR = "r1"
+PR = "r2"
 
 SRC_URI[md5sum] = "f1ea52debce7a18cc26b21647a00ad8b"
 SRC_URI[sha256sum] = "2d96bcf92638b8ec5c91d379f5ec2e7b15133adeb2ba22066d48bf3239ee1bdd"
-- 
1.7.12.4




^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl
  2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
                   ` (3 preceding siblings ...)
  2012-10-18 19:54 ` [meta-oe][PATCH 4/5] libxaw: drop libxp and printproto " Martin Jansa
@ 2012-10-18 19:54 ` Martin Jansa
  2012-10-19  2:50   ` Andreas Müller
  4 siblings, 1 reply; 12+ messages in thread
From: Martin Jansa @ 2012-10-18 19:54 UTC (permalink / raw)
  To: openembedded-devel

* mcnavi depends on ecore, but meta-oe does not depend on meta-efl
* thanks to kergoth for reporting this!

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 0
 1 file changed, 0 insertions(+), 0 deletions(-)
 rename {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb (100%)

diff --git a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb b/meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
similarity index 100%
rename from meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
rename to meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
-- 
1.7.12.4




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob
  2012-10-18 19:54 ` [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob Martin Jansa
@ 2012-10-19  2:43   ` Andreas Müller
  2012-10-19  8:15     ` Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Andreas Müller @ 2012-10-19  2:43 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Oct 18, 2012 at 9:54 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> * bitbake uses PACKAGES_DYNAMIC as regexp
>   ^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
>   * made all those last '-' optional, use .* (or nothing)
> * use += instead of = in most cases to keep ${PN}-locale from
>   bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  meta-efl/recipes-efl/efl/evas-generic-loaders.inc         | 2 +-
>  meta-efl/recipes-efl/efl/evas.inc                         | 2 +-
>  meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb         | 2 +-
>  meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb    | 2 +-
>  meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb              | 2 +-
>  meta-gnome/recipes-support/goffice/goffice_0.8.17.bb      | 2 +-
>  meta-initramfs/recipes-devtools/klibc/klibc-utils.inc     | 2 +-
>  meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb  | 2 +-
>  meta-oe/recipes-extended/lcdproc/lcdproc5.inc             | 2 +-
>  meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb         | 2 +-
>  meta-oe/recipes-multimedia/libav/libav.inc                | 2 +-
>  meta-oe/recipes-support/freerdp/freerdp.inc               | 2 +-
>  meta-oe/recipes-support/openldap/openldap_2.4.23.bb       | 2 +-
>  meta-oe/recipes-support/pidgin/pidgin.inc                 | 2 +-
>  meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | 2 +-
>  meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb  | 2 +-
>  meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb              | 2 +-
>  17 files changed, 17 insertions(+), 17 deletions(-)
>
Some buildhistory results for that?

Andreas



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl
  2012-10-18 19:54 ` [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl Martin Jansa
@ 2012-10-19  2:50   ` Andreas Müller
  2012-10-19 13:01     ` Paul Eggleton
  0 siblings, 1 reply; 12+ messages in thread
From: Andreas Müller @ 2012-10-19  2:50 UTC (permalink / raw)
  To: openembedded-devel

On Thu, Oct 18, 2012 at 9:54 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> * mcnavi depends on ecore, but meta-oe does not depend on meta-efl
> * thanks to kergoth for reporting this!
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
>  {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 0
>  1 file changed, 0 insertions(+), 0 deletions(-)
>  rename {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb (100%)
>
> diff --git a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb b/meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> similarity index 100%
> rename from meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> rename to meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> --
> 1.7.12.4
>
Just for the admins: Pure move patches do not make it into patchwork
(had same with [1])

Andreas

[1] https://gitorious.org/schnitzeltony-oe-meta/meta-openembedded/commit/7acc5d92451fb14627736c9099249f8952b5deab



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob
  2012-10-19  2:43   ` Andreas Müller
@ 2012-10-19  8:15     ` Martin Jansa
  0 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-10-19  8:15 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2254 bytes --]

On Fri, Oct 19, 2012 at 04:43:10AM +0200, Andreas Müller wrote:
> On Thu, Oct 18, 2012 at 9:54 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > * bitbake uses PACKAGES_DYNAMIC as regexp
> >   ^ could make matching faster (and it will be more clear that we're expecting regexp not glob)
> >   * made all those last '-' optional, use .* (or nothing)
> > * use += instead of = in most cases to keep ${PN}-locale from
> >   bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*"
> >
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > ---
> >  meta-efl/recipes-efl/efl/evas-generic-loaders.inc         | 2 +-
> >  meta-efl/recipes-efl/efl/evas.inc                         | 2 +-
> >  meta-gnome/recipes-gnome/abiword/abiword_2.8.6.bb         | 2 +-
> >  meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb    | 2 +-
> >  meta-gnome/recipes-gnome/gtk+/gtk+3_3.2.3.bb              | 2 +-
> >  meta-gnome/recipes-support/goffice/goffice_0.8.17.bb      | 2 +-
> >  meta-initramfs/recipes-devtools/klibc/klibc-utils.inc     | 2 +-
> >  meta-oe/recipes-devtools/libcanberra/libcanberra_0.26.bb  | 2 +-
> >  meta-oe/recipes-extended/lcdproc/lcdproc5.inc             | 2 +-
> >  meta-oe/recipes-graphics/openbox/openbox_3.5.0.bb         | 2 +-
> >  meta-oe/recipes-multimedia/libav/libav.inc                | 2 +-
> >  meta-oe/recipes-support/freerdp/freerdp.inc               | 2 +-
> >  meta-oe/recipes-support/openldap/openldap_2.4.23.bb       | 2 +-
> >  meta-oe/recipes-support/pidgin/pidgin.inc                 | 2 +-
> >  meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | 2 +-
> >  meta-xfce/recipes-xfce/xfce4-panel/xfce4-panel_4.10.0.bb  | 2 +-
> >  meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.0.bb              | 2 +-
> >  17 files changed, 17 insertions(+), 17 deletions(-)
> >
> Some buildhistory results for that?

PACKAGES_DYNAMIC does not really influence runtime packages IMHO, it
would fail to find some runtime dependency for my image or work as
before, but yes buildhistory results are the same as on oe-core patch
for PACKAGES_DYNAMIC:

http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/030952.html

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS
  2012-10-18 19:54 ` [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS Martin Jansa
@ 2012-10-19  9:26   ` Burton, Ross
  2012-10-19  9:35     ` Martin Jansa
  0 siblings, 1 reply; 12+ messages in thread
From: Burton, Ross @ 2012-10-19  9:26 UTC (permalink / raw)
  To: openembedded-devel

On 18 October 2012 20:54, Martin Jansa <martin.jansa@gmail.com> wrote:
> * it was removed from oe-core
>   http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328
> * it needs to be explicitly disabled now, because recipe was removed in
>   oe-core, but files still stay in sysroot and we cannot even
>   cleansstate it now without recipes around.

To be honest you'll probably want to tell upstream to just remove
Xprint.  It was removed from oe-core because support in the server was
removed in 2008.  Since 2008 the Xprint code in any client application
has been unable to work.

Ross



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS
  2012-10-19  9:26   ` Burton, Ross
@ 2012-10-19  9:35     ` Martin Jansa
  0 siblings, 0 replies; 12+ messages in thread
From: Martin Jansa @ 2012-10-19  9:35 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1000 bytes --]

On Fri, Oct 19, 2012 at 10:26:07AM +0100, Burton, Ross wrote:
> On 18 October 2012 20:54, Martin Jansa <martin.jansa@gmail.com> wrote:
> > * it was removed from oe-core
> >   http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328
> > * it needs to be explicitly disabled now, because recipe was removed in
> >   oe-core, but files still stay in sysroot and we cannot even
> >   cleansstate it now without recipes around.
> 
> To be honest you'll probably want to tell upstream to just remove
> Xprint.  It was removed from oe-core because support in the server was
> removed in 2008.  Since 2008 the Xprint code in any client application
> has been unable to work.

They are migrating all efl libs to one efl tree now and removing a lot
of options in the process so I guess they will remove Xprint too in the
process, but I'll tell them if they keep it autodetected.

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl
  2012-10-19  2:50   ` Andreas Müller
@ 2012-10-19 13:01     ` Paul Eggleton
  0 siblings, 0 replies; 12+ messages in thread
From: Paul Eggleton @ 2012-10-19 13:01 UTC (permalink / raw)
  To: openembedded-devel

On Friday 19 October 2012 04:50:11 Andreas Müller wrote:
> On Thu, Oct 18, 2012 at 9:54 PM, Martin Jansa <martin.jansa@gmail.com> 
wrote:
> > * mcnavi depends on ecore, but meta-oe does not depend on meta-efl
> > * thanks to kergoth for reporting this!
> > 
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > ---
> > 
> >  {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb | 0
> >  1 file changed, 0 insertions(+), 0 deletions(-)
> >  rename {meta-oe => meta-efl}/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> >  (100%)> 
> > diff --git a/meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> > b/meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb similarity index
> > 100%
> > rename from meta-oe/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> > rename to meta-efl/recipes-navigation/mcnavi/mcnavi_0.3.3.bb
> > --
> > 1.7.12.4
> 
> Just for the admins: Pure move patches do not make it into patchwork
> (had same with [1])
> 
> Andreas
> 
> [1]
> https://gitorious.org/schnitzeltony-oe-meta/meta-openembedded/commit/7acc5d
> 92451fb14627736c9099249f8952b5deab

My patch to add hddtemp yesterday (which was not just a move) somehow didn't 
make it into patchwork either :(

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2012-10-19 13:15 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-18 19:54 [meta-oe][PATCH 0/5] Small changes #101 Martin Jansa
2012-10-18 19:54 ` [meta-oe][PATCH 1/5] PACKAGES_DYNAMIC: use regexp not glob Martin Jansa
2012-10-19  2:43   ` Andreas Müller
2012-10-19  8:15     ` Martin Jansa
2012-10-18 19:54 ` [meta-oe][PATCH 2/5] mcnavi: remove myslq_config include path work around Martin Jansa
2012-10-18 19:54 ` [meta-oe][PATCH 3/5] ecore: drop libxputil from DEPENDS Martin Jansa
2012-10-19  9:26   ` Burton, Ross
2012-10-19  9:35     ` Martin Jansa
2012-10-18 19:54 ` [meta-oe][PATCH 4/5] libxaw: drop libxp and printproto " Martin Jansa
2012-10-18 19:54 ` [meta-oe][PATCH 5/5] mcnavi: move from meta-oe to meta-efl Martin Jansa
2012-10-19  2:50   ` Andreas Müller
2012-10-19 13:01     ` Paul Eggleton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox