Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Small fixes
@ 2011-08-18  6:40 Martin Jansa
  2011-08-18  6:40 ` [PATCH 1/2] task-core-boot: allow distribution to override default dev_manager provider with VIRTUAL-RUNTIME_dev_manager Martin Jansa
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Martin Jansa @ 2011-08-18  6:40 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 2e83e6755441cb14bd907d306974338c15173189:

  kernel: restore crtsavres.o to enable building external modules on powerpc (2011-08-17 15:46:16 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib jansa/pull
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/pull

Martin Jansa (2):
  task-core-boot: allow distribution to override default dev_manager
    provider with VIRTUAL-RUNTIME_dev_manager
  bluez4: update recipe from meta-oe

 meta/recipes-connectivity/bluez/bluez4_4.96.bb |   17 ++++++-----------
 meta/recipes-core/tasks/task-core-boot.bb      |    5 ++++-
 2 files changed, 10 insertions(+), 12 deletions(-)

-- 
1.7.6




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

* [PATCH 1/2] task-core-boot: allow distribution to override default dev_manager provider with VIRTUAL-RUNTIME_dev_manager
  2011-08-18  6:40 [PATCH 0/2] Small fixes Martin Jansa
@ 2011-08-18  6:40 ` Martin Jansa
  2011-08-18  6:40 ` [PATCH 2/2] bluez4: update recipe from meta-oe Martin Jansa
  2011-08-23  1:07 ` [PATCH 0/2] Small fixes Saul Wold
  2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-08-18  6:40 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-core/tasks/task-core-boot.bb |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/tasks/task-core-boot.bb b/meta/recipes-core/tasks/task-core-boot.bb
index eb2b548..9116c38 100644
--- a/meta/recipes-core/tasks/task-core-boot.bb
+++ b/meta/recipes-core/tasks/task-core-boot.bb
@@ -17,6 +17,9 @@ PR = "r8"
 MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
 MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
 
+# Distro can override dev_manager provider
+VIRTUAL-RUNTIME_dev_manager ?= "udev"
+
 PACKAGES = "\
     task-core-boot \
     task-core-boot-dbg \
@@ -33,7 +36,7 @@ RDEPENDS_task-core-boot = "\
     netbase \
     sysvinit \
     tinylogin \
-    udev \
+    ${VIRTUAL-RUNTIME_dev_manager} \
     ${VIRTUAL-RUNTIME_update-alternatives} \
     ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}"
 
-- 
1.7.6




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

* [PATCH 2/2] bluez4: update recipe from meta-oe
  2011-08-18  6:40 [PATCH 0/2] Small fixes Martin Jansa
  2011-08-18  6:40 ` [PATCH 1/2] task-core-boot: allow distribution to override default dev_manager provider with VIRTUAL-RUNTIME_dev_manager Martin Jansa
@ 2011-08-18  6:40 ` Martin Jansa
  2011-08-23  1:07 ` [PATCH 0/2] Small fixes Saul Wold
  2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-08-18  6:40 UTC (permalink / raw)
  To: openembedded-core

* fix DEPENDS
* fix typo in --enable-pandd option
* remove unsupported options
* update packaging
* remove distro override which doesn't belong to oe-core

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-connectivity/bluez/bluez4_4.96.bb |   17 ++++++-----------
 1 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/meta/recipes-connectivity/bluez/bluez4_4.96.bb b/meta/recipes-connectivity/bluez/bluez4_4.96.bb
index ebd2849..edba167 100644
--- a/meta/recipes-connectivity/bluez/bluez4_4.96.bb
+++ b/meta/recipes-connectivity/bluez/bluez4_4.96.bb
@@ -7,12 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
                     file://COPYING.LIB;md5=fb504b67c50331fc78734fed90fb0e09 \
                     file://src/main.c;beginline=1;endline=24;md5=9bc54b93cd7e17bf03f52513f39f926e \
                     file://sbc/sbc.c;beginline=1;endline=25;md5=1a40781ed30d50d8639323a184aeb191"
-DEPENDS = "gst-plugins-base alsa-lib libusb dbus-glib libnl"
+DEPENDS = "udev gst-plugins-base alsa-lib libusb dbus-glib usbpath"
 RDEPENDS_${PN}-dev = "bluez-hcidump"
 
-# For angstrom we want this to replace at least bluez-libs
-PROVIDES_append_angstrom = " bluez-utils bluez-libs"
-
 ASNEEDED = ""
 
 PR = "r0"
@@ -24,6 +21,7 @@ SRC_URI = "\
 
 SRC_URI[md5sum] = "296111afac49e3f9035085ac14daf518"
 SRC_URI[sha256sum] = "c06fd50fd77909cad55e3181a42c6bce7cfcf7abb8cd87871c13d0d70f87fa99"
+
 S = "${WORKDIR}/bluez-${PV}"
 
 inherit autotools
@@ -32,20 +30,16 @@ EXTRA_OECONF = "\
   --enable-gstreamer \
   --enable-alsa \
   --enable-usb \
-  --enable-netlink \
   --enable-tools \
   --enable-bccmd \
   --enable-hid2hci \
   --enable-dfutool \
   --enable-hidd \
-  --enable-pandd \
+  --enable-pand \
   --enable-dund \
   --disable-cups \
   --enable-test \
-  --enable-manpages \
   --enable-configfiles \
-  --enable-initscripts \
-  --disable-pcmciarules \
 "
 
 do_install_append() {
@@ -59,8 +53,8 @@ do_install_append() {
 PACKAGES =+ "gst-plugin-bluez libasound-module-bluez"
 
 FILES_gst-plugin-bluez = "${libdir}/gstreamer-0.10/lib*.so"
-FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so"
-FILES_${PN} += "${libdir}/bluetooth/plugins/*.so"
+FILES_libasound-module-bluez = "${libdir}/alsa-lib/lib*.so ${datadir}/alsa"
+FILES_${PN} += "${libdir}/bluetooth/plugins/*.so ${base_libdir}/udev/ ${base_libdir}/systemd/"
 FILES_${PN}-dev += "\
   ${libdir}/bluetooth/plugins/*.la \
   ${libdir}/alsa-lib/*.la \
@@ -70,4 +64,5 @@ FILES_${PN}-dev += "\
 FILES_${PN}-dbg += "\
   ${libdir}/bluetooth/plugins/.debug \
   ${libdir}/*/.debug \
+  ${base_libdir}/udev/.debug \
 "
-- 
1.7.6




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

* Re: [PATCH 0/2] Small fixes
  2011-08-18  6:40 [PATCH 0/2] Small fixes Martin Jansa
  2011-08-18  6:40 ` [PATCH 1/2] task-core-boot: allow distribution to override default dev_manager provider with VIRTUAL-RUNTIME_dev_manager Martin Jansa
  2011-08-18  6:40 ` [PATCH 2/2] bluez4: update recipe from meta-oe Martin Jansa
@ 2011-08-23  1:07 ` Saul Wold
  2 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-08-23  1:07 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Martin Jansa

On 08/17/2011 11:40 PM, Martin Jansa wrote:
> The following changes since commit 2e83e6755441cb14bd907d306974338c15173189:
>
>    kernel: restore crtsavres.o to enable building external modules on powerpc (2011-08-17 15:46:16 +0100)
>
> are available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib jansa/pull
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/pull
>
> Martin Jansa (2):
>    task-core-boot: allow distribution to override default dev_manager
>      provider with VIRTUAL-RUNTIME_dev_manager
>    bluez4: update recipe from meta-oe
>
>   meta/recipes-connectivity/bluez/bluez4_4.96.bb |   17 ++++++-----------
>   meta/recipes-core/tasks/task-core-boot.bb      |    5 ++++-
>   2 files changed, 10 insertions(+), 12 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!



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

* [PATCH 0/2] Small fixes
@ 2012-01-12  9:34 Martin Jansa
  2012-01-17 19:02 ` Saul Wold
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2012-01-12  9:34 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 1d2697e6f00cc3771f39f5a7d4384a22d9696b16:

  multilib.conf: Clean up file and add missing entries for various dependencies (2012-01-11 23:53:21 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib jansa/pull
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/pull

Denis 'GNUtoo' Carikli (1):
  alsa-utils: depend on libsamplerate0

Martin Jansa (1):
  xorg-*: disable xmlto where it was failing

 meta/recipes-graphics/xorg-lib/xorg-lib-common.inc |    2 +-
 .../xorg-proto/xorg-proto-common.inc               |    2 +-
 .../recipes-graphics/xorg-xserver/xserver-xorg.inc |    1 +
 .../recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb |    4 ++--
 4 files changed, 5 insertions(+), 4 deletions(-)

-- 
1.7.8.3




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

* Re: [PATCH 0/2] Small fixes
  2012-01-12  9:34 Martin Jansa
@ 2012-01-17 19:02 ` Saul Wold
  0 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2012-01-17 19:02 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Martin Jansa

On 01/12/2012 01:34 AM, Martin Jansa wrote:
> The following changes since commit 1d2697e6f00cc3771f39f5a7d4384a22d9696b16:
>
>    multilib.conf: Clean up file and add missing entries for various dependencies (2012-01-11 23:53:21 +0000)
>
> are available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib jansa/pull
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/pull
>
> Denis 'GNUtoo' Carikli (1):
>    alsa-utils: depend on libsamplerate0
>
> Martin Jansa (1):
>    xorg-*: disable xmlto where it was failing
>
>   meta/recipes-graphics/xorg-lib/xorg-lib-common.inc |    2 +-
>   .../xorg-proto/xorg-proto-common.inc               |    2 +-
>   .../recipes-graphics/xorg-xserver/xserver-xorg.inc |    1 +
>   .../recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb |    4 ++--
>   4 files changed, 5 insertions(+), 4 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!



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

* [PATCH 0/2] Small fixes
@ 2017-06-09  7:36 Jussi Kukkonen
  0 siblings, 0 replies; 7+ messages in thread
From: Jussi Kukkonen @ 2017-06-09  7:36 UTC (permalink / raw)
  To: openembedded-core

A host path leak fix for diff and a build optimization for numpy.

Cheers,
 Jussi


The following changes since commit 4a7612c7a12b9a381fb8343ba9586272b889fc15:

  buildhistory: skip tests if GitPython module is missing (2017-06-07 16:00:49 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib numpy-parallel
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=numpy-parallel

Jussi Kukkonen (2):
  Enable parallel compilation for python3-numpy
  diffutils: prevent host path leaks, set pr path

 meta/recipes-devtools/python-numpy/python3-numpy_1.11.2.bb | 2 ++
 meta/recipes-extended/diffutils/diffutils_3.5.bb           | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
2.1.4



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

end of thread, other threads:[~2017-06-09  7:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-18  6:40 [PATCH 0/2] Small fixes Martin Jansa
2011-08-18  6:40 ` [PATCH 1/2] task-core-boot: allow distribution to override default dev_manager provider with VIRTUAL-RUNTIME_dev_manager Martin Jansa
2011-08-18  6:40 ` [PATCH 2/2] bluez4: update recipe from meta-oe Martin Jansa
2011-08-23  1:07 ` [PATCH 0/2] Small fixes Saul Wold
  -- strict thread matches above, loose matches on Subject: below --
2012-01-12  9:34 Martin Jansa
2012-01-17 19:02 ` Saul Wold
2017-06-09  7:36 Jussi Kukkonen

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