* [PATCH 0/2] Small fixes
@ 2011-08-18 6:40 Martin Jansa
2011-08-23 1:07 ` Saul Wold
0 siblings, 1 reply; 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
* Re: [PATCH 0/2] Small fixes
2011-08-18 6:40 Martin Jansa
@ 2011-08-23 1:07 ` Saul Wold
0 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-12 9:34 ` [PATCH 1/2] alsa-utils: depend on libsamplerate0 Martin Jansa
` (2 more replies)
0 siblings, 3 replies; 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
* [PATCH 1/2] alsa-utils: depend on libsamplerate0
2012-01-12 9:34 [PATCH 0/2] Small fixes Martin Jansa
@ 2012-01-12 9:34 ` Martin Jansa
2012-01-12 9:34 ` [PATCH 2/2] xorg-*: disable xmlto where it was failing Martin Jansa
2012-01-17 19:02 ` [PATCH 0/2] Small fixes Saul Wold
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-01-12 9:34 UTC (permalink / raw)
To: openembedded-core
From: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
We need to depend on libsamplerate0 because it's detected automatically
and if we configure without it we get that issue at runtime trying
to run the alsaloop program:
No libsamplerate support.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
.../recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb b/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb
index 9eee60a..196128e 100644
--- a/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb
+++ b/meta/recipes-multimedia/alsa/alsa-utils_1.0.24.2.bb
@@ -5,8 +5,8 @@ SECTION = "console/utils"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833 \
file://alsactl/utils.c;beginline=1;endline=20;md5=fe9526b055e246b5558809a5ae25c0b9"
-DEPENDS = "alsa-lib ncurses"
-PR = "r3"
+DEPENDS = "alsa-lib ncurses libsamplerate0"
+PR = "r4"
SRC_URI = "ftp://ftp.alsa-project.org/pub/utils/alsa-utils-${PV}.tar.bz2 \
file://ncursesfix.patch \
--
1.7.8.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] xorg-*: disable xmlto where it was failing
2012-01-12 9:34 [PATCH 0/2] Small fixes Martin Jansa
2012-01-12 9:34 ` [PATCH 1/2] alsa-utils: depend on libsamplerate0 Martin Jansa
@ 2012-01-12 9:34 ` Martin Jansa
2012-01-17 19:02 ` [PATCH 0/2] Small fixes Saul Wold
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2012-01-12 9:34 UTC (permalink / raw)
To: openembedded-core
* meta-oe now provides xmlto-native
http://git.openembedded.org/meta-openembedded/commit/?id=ab8f876ca8fa223c183e3db2029cce88f3435a27
but not the stylesheets for buildhosts without them it's unusable and fails, because xorg macros
autodetecting xmlto available, see:
http://lists.linuxtogo.org/pipermail/openembedded-devel/2011-December/037066.html
after adding xmlto-native and stylesheets-native to DEPENDS we can enable it again
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
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 +
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
index d843d65..d106054 100644
--- a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
+++ b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
@@ -13,4 +13,4 @@ S = "${WORKDIR}/${XORG_PN}-${PV}"
inherit autotools pkgconfig
-EXTRA_OECONF = "--enable-malloc0returnsnull --with-fop=no"
+EXTRA_OECONF = "--enable-malloc0returnsnull --with-fop=no --without-xmlto"
diff --git a/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc
index 765e30a..856f4d8 100644
--- a/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc
+++ b/meta/recipes-graphics/xorg-proto/xorg-proto-common.inc
@@ -14,7 +14,7 @@ S = "${WORKDIR}/${XORG_PN}-${PV}"
DEPENDS = "util-macros"
inherit autotools pkgconfig
-EXTRA_OECONF = "--with-fop=no"
+EXTRA_OECONF = "--with-fop=no --without-xmlto"
# ${PN} is empty so we need to tweak -dev and -dbg package dependencies
RDEPENDS_${PN}-dev = ""
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
index b387790..ca7d33a 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg.inc
@@ -9,4 +9,5 @@ EXTRA_OECONF += "\
--enable-glx-tls \
--with-pic \
--with-int10=x86emu \
+ --without-xmlto \
"
--
1.7.8.3
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 0/2] Small fixes
2012-01-12 9:34 [PATCH 0/2] Small fixes Martin Jansa
2012-01-12 9:34 ` [PATCH 1/2] alsa-utils: depend on libsamplerate0 Martin Jansa
2012-01-12 9:34 ` [PATCH 2/2] xorg-*: disable xmlto where it was failing Martin Jansa
@ 2012-01-17 19:02 ` Saul Wold
2 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 --
2012-01-12 9:34 [PATCH 0/2] Small fixes Martin Jansa
2012-01-12 9:34 ` [PATCH 1/2] alsa-utils: depend on libsamplerate0 Martin Jansa
2012-01-12 9:34 ` [PATCH 2/2] xorg-*: disable xmlto where it was failing Martin Jansa
2012-01-17 19:02 ` [PATCH 0/2] Small fixes Saul Wold
-- strict thread matches above, loose matches on Subject: below --
2017-06-09 7:36 Jussi Kukkonen
2011-08-18 6:40 Martin Jansa
2011-08-23 1:07 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox