All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] gnome-bluetooth: fix compile
@ 2016-03-16 22:13 Andreas Müller
  2016-03-16 22:13 ` [PATCH 2/2] gnome-bluetooth: pack introspection related files Andreas Müller
  2016-03-18 19:06 ` [PATCH 1/2] gnome-bluetooth: fix compile alexander.kanavin
  0 siblings, 2 replies; 6+ messages in thread
From: Andreas Müller @ 2016-03-16 22:13 UTC (permalink / raw)
  To: openembedded-devel

fixes error series starting with
| Caught exception: <type 'exceptions.TypeError'> TypeError('expected a string or other character buffer object',)
| > /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/python2.7/distutils/sysconfig.py(22)<module>()
| -> PREFIX = os.path.normpath(sys.prefix).replace( os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
index 77e9a15..d64346e 100644
--- a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
+++ b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
@@ -18,3 +18,9 @@ SRC_URI[archive.md5sum] = "75d09c924468ec0c687f9ab3acf7f113"
 SRC_URI[archive.sha256sum] = "d8df073c331df0f97261869fb77ffcdbf4e3e4eaf460d3c3ed2b16e03d9c5398"
 
 FILES_${PN}-dbg += "${libdir}/gnome-bluetooth/plugins/.debug/"
+
+# required for python binding
+export HOST_SYS
+export BUILD_SYS
+export STAGING_LIBDIR
+export STAGING_INCDIR
-- 
2.5.0



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

* [PATCH 2/2] gnome-bluetooth: pack introspection related files
  2016-03-16 22:13 [PATCH 1/2] gnome-bluetooth: fix compile Andreas Müller
@ 2016-03-16 22:13 ` Andreas Müller
  2016-03-18 19:06 ` [PATCH 1/2] gnome-bluetooth: fix compile alexander.kanavin
  1 sibling, 0 replies; 6+ messages in thread
From: Andreas Müller @ 2016-03-16 22:13 UTC (permalink / raw)
  To: openembedded-devel

fixes:

| WARNING: gnome-bluetooth-3.18.2-r0 do_package: QA Issue: gnome-bluetooth: Files/directories were installed but not shipped in any package:
|  /usr/lib/girepository-1.0
|  /usr/lib/girepository-1.0/GnomeBluetooth-1.0.typelib
|  /usr/share/gir-1.0
|  /usr/share/gir-1.0/GnomeBluetooth-1.0.gir

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
 meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
index d64346e..ab08254 100644
--- a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
+++ b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_3.18.2.bb
@@ -17,6 +17,10 @@ REQUIRED_DISTRO_FEATURES = "systemd"
 SRC_URI[archive.md5sum] = "75d09c924468ec0c687f9ab3acf7f113"
 SRC_URI[archive.sha256sum] = "d8df073c331df0f97261869fb77ffcdbf4e3e4eaf460d3c3ed2b16e03d9c5398"
 
+FILES_${PN} += " \
+    ${datadir}/gir* \
+    ${libdir}/gir* \
+"
 FILES_${PN}-dbg += "${libdir}/gnome-bluetooth/plugins/.debug/"
 
 # required for python binding
-- 
2.5.0



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

* Re: [PATCH 1/2] gnome-bluetooth: fix compile
  2016-03-16 22:13 [PATCH 1/2] gnome-bluetooth: fix compile Andreas Müller
  2016-03-16 22:13 ` [PATCH 2/2] gnome-bluetooth: pack introspection related files Andreas Müller
@ 2016-03-18 19:06 ` alexander.kanavin
  2016-03-21 12:43   ` Alexander Kanavin
  1 sibling, 1 reply; 6+ messages in thread
From: alexander.kanavin @ 2016-03-18 19:06 UTC (permalink / raw)
  To: openembedded-devel

> fixes error series starting with
> | Caught exception: <type 'exceptions.TypeError'> TypeError('expected a
> string or other character buffer object',)
> | >
> /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/python2.7/distutils/sysconfig.py(22)<module>()
> | -> PREFIX = os.path.normpath(sys.prefix).replace(
> os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )

Both this patch and the second one should be replaced with a patch that
simply adds

inherit gobject-introspection

to the recipe. For some reason I forgot to do that in my g-i fixes patchset.

Alex


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

* Re: [PATCH 1/2] gnome-bluetooth: fix compile
  2016-03-18 19:06 ` [PATCH 1/2] gnome-bluetooth: fix compile alexander.kanavin
@ 2016-03-21 12:43   ` Alexander Kanavin
  2016-03-21 13:10     ` Martin Jansa
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Kanavin @ 2016-03-21 12:43 UTC (permalink / raw)
  To: openembedded-devel

On 03/18/2016 09:06 PM, alexander.kanavin@linux.intel.com wrote:
>> fixes error series starting with
>> | Caught exception: <type 'exceptions.TypeError'> TypeError('expected a
>> string or other character buffer object',)
>> | >
>> /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/python2.7/distutils/sysconfig.py(22)<module>()
>> | -> PREFIX = os.path.normpath(sys.prefix).replace(
>> os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
>
> Both this patch and the second one should be replaced with a patch that
> simply adds
>
> inherit gobject-introspection
>
> to the recipe. For some reason I forgot to do that in my g-i fixes patchset.

Martin, can you drop these patches from master-next please? Just want to 
make sure they don't make it to the master branch.


Alex



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

* Re: [PATCH 1/2] gnome-bluetooth: fix compile
  2016-03-21 12:43   ` Alexander Kanavin
@ 2016-03-21 13:10     ` Martin Jansa
  2016-03-21 13:59       ` Andreas Müller
  0 siblings, 1 reply; 6+ messages in thread
From: Martin Jansa @ 2016-03-21 13:10 UTC (permalink / raw)
  To: openembedded-devel

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

On Mon, Mar 21, 2016 at 02:43:02PM +0200, Alexander Kanavin wrote:
> On 03/18/2016 09:06 PM, alexander.kanavin@linux.intel.com wrote:
> >> fixes error series starting with
> >> | Caught exception: <type 'exceptions.TypeError'> TypeError('expected a
> >> string or other character buffer object',)
> >> | >
> >> /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/python2.7/distutils/sysconfig.py(22)<module>()
> >> | -> PREFIX = os.path.normpath(sys.prefix).replace(
> >> os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
> >
> > Both this patch and the second one should be replaced with a patch that
> > simply adds
> >
> > inherit gobject-introspection
> >
> > to the recipe. For some reason I forgot to do that in my g-i fixes patchset.
> 
> Martin, can you drop these patches from master-next please? Just want to 
> make sure they don't make it to the master branch.

After someone sends the patch with the inherit, then yes.

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

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

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

* Re: [PATCH 1/2] gnome-bluetooth: fix compile
  2016-03-21 13:10     ` Martin Jansa
@ 2016-03-21 13:59       ` Andreas Müller
  0 siblings, 0 replies; 6+ messages in thread
From: Andreas Müller @ 2016-03-21 13:59 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

On Mon, Mar 21, 2016 at 2:10 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Mon, Mar 21, 2016 at 02:43:02PM +0200, Alexander Kanavin wrote:
>> On 03/18/2016 09:06 PM, alexander.kanavin@linux.intel.com wrote:
>> >> fixes error series starting with
>> >> | Caught exception: <type 'exceptions.TypeError'> TypeError('expected a
>> >> string or other character buffer object',)
>> >> | >
>> >> /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/lib/python2.7/distutils/sysconfig.py(22)<module>()
>> >> | -> PREFIX = os.path.normpath(sys.prefix).replace(
>> >> os.getenv("BUILD_SYS"), os.getenv("HOST_SYS") )
>> >
>> > Both this patch and the second one should be replaced with a patch that
>> > simply adds
>> >
>> > inherit gobject-introspection
>> >
>> > to the recipe. For some reason I forgot to do that in my g-i fixes patchset.
>>
>> Martin, can you drop these patches from master-next please? Just want to
>> make sure they don't make it to the master branch.
>
> After someone sends the patch with the inherit, then yes.
>
I don't think I can send something till next week - am drowning on WIP - sorry

Andreas


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

end of thread, other threads:[~2016-03-21 13:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 22:13 [PATCH 1/2] gnome-bluetooth: fix compile Andreas Müller
2016-03-16 22:13 ` [PATCH 2/2] gnome-bluetooth: pack introspection related files Andreas Müller
2016-03-18 19:06 ` [PATCH 1/2] gnome-bluetooth: fix compile alexander.kanavin
2016-03-21 12:43   ` Alexander Kanavin
2016-03-21 13:10     ` Martin Jansa
2016-03-21 13:59       ` Andreas Müller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.