All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gstreamer1.0-python: add new recipe
@ 2017-07-18  0:21 Martin Kelly
  2017-07-18  2:47 ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Kelly @ 2017-07-18  0:21 UTC (permalink / raw)
  To: openembedded-core

Previously, we had a gst-python recipe, but it supported only GStreamer
0.1. After GStreamer switched the Python bindings to use GObject
introspection, we were no longer able to build the bindings, and they
were dropped in this patch:

https://patchwork.openembedded.org/patch/93793/

However, at this point, we have a gobject-introspection class, so we can
use the bindings again, this time with GStreamer 1.0.

Signed-off-by: Martin Kelly <mkelly@xevo.com>
---
 .../gstreamer/gstreamer1.0-python.inc              | 35 ++++++++++++++++++++++
 .../gstreamer/gstreamer1.0-python_1.10.4.bb        |  7 +++++
 2 files changed, 42 insertions(+)
 create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
 create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
new file mode 100644
index 0000000000..3299b89daa
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
@@ -0,0 +1,35 @@
+SUMMARY = "Python bindings for GStreamer 1.0"
+HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
+SECTION = "multimedia"
+LICENSE = "LGPLv2"
+
+DEPENDS = "gstreamer1.0 python3-pygobject"
+RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
+
+PNREAL = "gst-python"
+
+SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
+
+S = "${WORKDIR}/${PNREAL}-${PV}"
+
+inherit autotools pkgconfig distutils3-base upstream-version-is-even gobject-introspection
+
+do_install_append() {
+    # gstpythonplugin hardcodes the location of the libpython from the build
+    # workspace and then fails at runtime. We can override it using
+    # --with-libpython-dir=${libdir}, but it still fails because it looks for a
+    # symlinked library ending in .so instead of the actually library with
+    # LIBNAME.so.MAJOR.MINOR. Although we could patch the code to use the path
+    # we want, it will break again if the library version ever changes. We need
+    # to think about the best way of handling this and possibly consult
+    # upstream.
+    #
+    # Note that this particular find line is taken from the Debian packaging for
+    # gst-python1.0.
+    find "${D}" \
+        -name '*.pyc' -o \
+        -name '*.pyo' -o \
+        -name '*.la' -o \
+        -name 'libgstpythonplugin*' \
+        -delete
+}
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
new file mode 100644
index 0000000000..1365f7c6dd
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
@@ -0,0 +1,7 @@
+require gstreamer1.0-python.inc
+
+SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
+SRC_URI[md5sum] = "adcdb74f713e28d0b22a0a1e4f831573"
+SRC_URI[sha256sum] = "59508174b8bc86c05290aa9a7c5d480ac556a6f36306ddbc1d0eacf4f7868212"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
-- 
2.11.0



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

* Re: [PATCH] gstreamer1.0-python: add new recipe
  2017-07-18  0:21 [PATCH] gstreamer1.0-python: add new recipe Martin Kelly
@ 2017-07-18  2:47 ` Khem Raj
  2017-07-18 16:21   ` Martin Kelly
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2017-07-18  2:47 UTC (permalink / raw)
  To: Martin Kelly; +Cc: Patches and discussions about the oe-core layer

On Mon, Jul 17, 2017 at 8:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
> Previously, we had a gst-python recipe, but it supported only GStreamer
> 0.1. After GStreamer switched the Python bindings to use GObject
> introspection, we were no longer able to build the bindings, and they
> were dropped in this patch:
>
> https://patchwork.openembedded.org/patch/93793/
>
> However, at this point, we have a gobject-introspection class, so we can
> use the bindings again, this time with GStreamer 1.0.
>
> Signed-off-by: Martin Kelly <mkelly@xevo.com>
> ---
>  .../gstreamer/gstreamer1.0-python.inc              | 35 ++++++++++++++++++++++
>  .../gstreamer/gstreamer1.0-python_1.10.4.bb        |  7 +++++
>  2 files changed, 42 insertions(+)
>  create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>  create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb

I think everything in single file would be better

>
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
> new file mode 100644
> index 0000000000..3299b89daa
> --- /dev/null
> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
> @@ -0,0 +1,35 @@
> +SUMMARY = "Python bindings for GStreamer 1.0"
> +HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
> +SECTION = "multimedia"
> +LICENSE = "LGPLv2"
> +

this should be 2.1 most probably

> +DEPENDS = "gstreamer1.0 python3-pygobject"
> +RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
> +
> +PNREAL = "gst-python"
> +
> +SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
> +
> +S = "${WORKDIR}/${PNREAL}-${PV}"
> +
> +inherit autotools pkgconfig distutils3-base upstream-version-is-even gobject-introspection
> +
> +do_install_append() {
> +    # gstpythonplugin hardcodes the location of the libpython from the build
> +    # workspace and then fails at runtime. We can override it using
> +    # --with-libpython-dir=${libdir}, but it still fails because it looks for a
> +    # symlinked library ending in .so instead of the actually library with
> +    # LIBNAME.so.MAJOR.MINOR. Although we could patch the code to use the path
> +    # we want, it will break again if the library version ever changes. We need
> +    # to think about the best way of handling this and possibly consult
> +    # upstream.
> +    #
> +    # Note that this particular find line is taken from the Debian packaging for
> +    # gst-python1.0.
> +    find "${D}" \
> +        -name '*.pyc' -o \
> +        -name '*.pyo' -o \
> +        -name '*.la' -o \
> +        -name 'libgstpythonplugin*' \
> +        -delete
> +}
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
> new file mode 100644
> index 0000000000..1365f7c6dd
> --- /dev/null
> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
> @@ -0,0 +1,7 @@
> +require gstreamer1.0-python.inc
> +
> +SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
> +SRC_URI[md5sum] = "adcdb74f713e28d0b22a0a1e4f831573"
> +SRC_URI[sha256sum] = "59508174b8bc86c05290aa9a7c5d480ac556a6f36306ddbc1d0eacf4f7868212"
> +
> +LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
> --
> 2.11.0
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] gstreamer1.0-python: add new recipe
  2017-07-18  2:47 ` Khem Raj
@ 2017-07-18 16:21   ` Martin Kelly
  2017-07-18 18:37     ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Kelly @ 2017-07-18 16:21 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On 07/17/2017 07:47 PM, Khem Raj wrote:
> On Mon, Jul 17, 2017 at 8:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
>> Previously, we had a gst-python recipe, but it supported only GStreamer
>> 0.1. After GStreamer switched the Python bindings to use GObject
>> introspection, we were no longer able to build the bindings, and they
>> were dropped in this patch:
>>
>> https://patchwork.openembedded.org/patch/93793/
>>
>> However, at this point, we have a gobject-introspection class, so we can
>> use the bindings again, this time with GStreamer 1.0.
>>
>> Signed-off-by: Martin Kelly <mkelly@xevo.com>
>> ---
>>  .../gstreamer/gstreamer1.0-python.inc              | 35 ++++++++++++++++++++++
>>  .../gstreamer/gstreamer1.0-python_1.10.4.bb        |  7 +++++
>>  2 files changed, 42 insertions(+)
>>  create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>  create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>
> I think everything in single file would be better
>

I'm fine with that, but I was just following the convention that the 
rest of the gstreamer packaging uses; all the recipes in 
meta/recipes-multimedia/gstreamer use the same convention. I figured 
it's cleaner to keep all of it consistent. Would you prefer I diverge 
anyway?

>>
>> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>> new file mode 100644
>> index 0000000000..3299b89daa
>> --- /dev/null
>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>> @@ -0,0 +1,35 @@
>> +SUMMARY = "Python bindings for GStreamer 1.0"
>> +HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
>> +SECTION = "multimedia"
>> +LICENSE = "LGPLv2"
>> +
>
> this should be 2.1 most probably
>

Yes you're right, I'll change it.

>> +DEPENDS = "gstreamer1.0 python3-pygobject"
>> +RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
>> +
>> +PNREAL = "gst-python"
>> +
>> +SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>> +
>> +S = "${WORKDIR}/${PNREAL}-${PV}"
>> +
>> +inherit autotools pkgconfig distutils3-base upstream-version-is-even gobject-introspection
>> +
>> +do_install_append() {
>> +    # gstpythonplugin hardcodes the location of the libpython from the build
>> +    # workspace and then fails at runtime. We can override it using
>> +    # --with-libpython-dir=${libdir}, but it still fails because it looks for a
>> +    # symlinked library ending in .so instead of the actually library with
>> +    # LIBNAME.so.MAJOR.MINOR. Although we could patch the code to use the path
>> +    # we want, it will break again if the library version ever changes. We need
>> +    # to think about the best way of handling this and possibly consult
>> +    # upstream.
>> +    #
>> +    # Note that this particular find line is taken from the Debian packaging for
>> +    # gst-python1.0.
>> +    find "${D}" \
>> +        -name '*.pyc' -o \
>> +        -name '*.pyo' -o \
>> +        -name '*.la' -o \
>> +        -name 'libgstpythonplugin*' \
>> +        -delete
>> +}
>> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>> new file mode 100644
>> index 0000000000..1365f7c6dd
>> --- /dev/null
>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>> @@ -0,0 +1,7 @@
>> +require gstreamer1.0-python.inc
>> +
>> +SRC_URI = "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>> +SRC_URI[md5sum] = "adcdb74f713e28d0b22a0a1e4f831573"
>> +SRC_URI[sha256sum] = "59508174b8bc86c05290aa9a7c5d480ac556a6f36306ddbc1d0eacf4f7868212"
>> +
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
>> --
>> 2.11.0
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] gstreamer1.0-python: add new recipe
  2017-07-18 16:21   ` Martin Kelly
@ 2017-07-18 18:37     ` Khem Raj
  2017-07-18 18:48       ` Martin Kelly
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2017-07-18 18:37 UTC (permalink / raw)
  To: Martin Kelly; +Cc: Patches and discussions about the oe-core layer

On Tue, Jul 18, 2017 at 12:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
> On 07/17/2017 07:47 PM, Khem Raj wrote:
>>
>> On Mon, Jul 17, 2017 at 8:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
>>>
>>> Previously, we had a gst-python recipe, but it supported only GStreamer
>>> 0.1. After GStreamer switched the Python bindings to use GObject
>>> introspection, we were no longer able to build the bindings, and they
>>> were dropped in this patch:
>>>
>>> https://patchwork.openembedded.org/patch/93793/
>>>
>>> However, at this point, we have a gobject-introspection class, so we can
>>> use the bindings again, this time with GStreamer 1.0.
>>>
>>> Signed-off-by: Martin Kelly <mkelly@xevo.com>
>>> ---
>>>  .../gstreamer/gstreamer1.0-python.inc              | 35
>>> ++++++++++++++++++++++
>>>  .../gstreamer/gstreamer1.0-python_1.10.4.bb        |  7 +++++
>>>  2 files changed, 42 insertions(+)
>>>  create mode 100644
>>> meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>>  create mode 100644
>>> meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>
>>
>> I think everything in single file would be better
>>
>
> I'm fine with that, but I was just following the convention that the rest of
> the gstreamer packaging uses; all the recipes in
> meta/recipes-multimedia/gstreamer use the same convention. I figured it's
> cleaner to keep all of it consistent. Would you prefer I diverge anyway?
>

I dont have strong preference here.

>>>
>>> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>> b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>> new file mode 100644
>>> index 0000000000..3299b89daa
>>> --- /dev/null
>>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>> @@ -0,0 +1,35 @@
>>> +SUMMARY = "Python bindings for GStreamer 1.0"
>>> +HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
>>> +SECTION = "multimedia"
>>> +LICENSE = "LGPLv2"
>>> +
>>
>>
>> this should be 2.1 most probably
>>
>
> Yes you're right, I'll change it.
>
>
>>> +DEPENDS = "gstreamer1.0 python3-pygobject"
>>> +RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
>>> +
>>> +PNREAL = "gst-python"
>>> +
>>> +SRC_URI =
>>> "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>>> +
>>> +S = "${WORKDIR}/${PNREAL}-${PV}"
>>> +
>>> +inherit autotools pkgconfig distutils3-base upstream-version-is-even
>>> gobject-introspection
>>> +
>>> +do_install_append() {
>>> +    # gstpythonplugin hardcodes the location of the libpython from the
>>> build
>>> +    # workspace and then fails at runtime. We can override it using
>>> +    # --with-libpython-dir=${libdir}, but it still fails because it
>>> looks for a
>>> +    # symlinked library ending in .so instead of the actually library
>>> with
>>> +    # LIBNAME.so.MAJOR.MINOR. Although we could patch the code to use
>>> the path
>>> +    # we want, it will break again if the library version ever changes.
>>> We need
>>> +    # to think about the best way of handling this and possibly consult
>>> +    # upstream.
>>> +    #
>>> +    # Note that this particular find line is taken from the Debian
>>> packaging for
>>> +    # gst-python1.0.
>>> +    find "${D}" \
>>> +        -name '*.pyc' -o \
>>> +        -name '*.pyo' -o \
>>> +        -name '*.la' -o \
>>> +        -name 'libgstpythonplugin*' \
>>> +        -delete
>>> +}
>>> diff --git
>>> a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>> b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>> new file mode 100644
>>> index 0000000000..1365f7c6dd
>>> --- /dev/null
>>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>> @@ -0,0 +1,7 @@
>>> +require gstreamer1.0-python.inc
>>> +
>>> +SRC_URI =
>>> "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>>> +SRC_URI[md5sum] = "adcdb74f713e28d0b22a0a1e4f831573"
>>> +SRC_URI[sha256sum] =
>>> "59508174b8bc86c05290aa9a7c5d480ac556a6f36306ddbc1d0eacf4f7868212"
>>> +
>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
>>> --
>>> 2.11.0
>>>
>>> --
>>> _______________________________________________
>>> Openembedded-core mailing list
>>> Openembedded-core@lists.openembedded.org
>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] gstreamer1.0-python: add new recipe
  2017-07-18 18:37     ` Khem Raj
@ 2017-07-18 18:48       ` Martin Kelly
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Kelly @ 2017-07-18 18:48 UTC (permalink / raw)
  To: Khem Raj; +Cc: Patches and discussions about the oe-core layer

On 07/18/2017 11:37 AM, Khem Raj wrote:
> On Tue, Jul 18, 2017 at 12:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
>> On 07/17/2017 07:47 PM, Khem Raj wrote:
>>>
>>> On Mon, Jul 17, 2017 at 8:21 PM, Martin Kelly <mkelly@xevo.com> wrote:
>>>>
>>>> Previously, we had a gst-python recipe, but it supported only GStreamer
>>>> 0.1. After GStreamer switched the Python bindings to use GObject
>>>> introspection, we were no longer able to build the bindings, and they
>>>> were dropped in this patch:
>>>>
>>>> https://patchwork.openembedded.org/patch/93793/
>>>>
>>>> However, at this point, we have a gobject-introspection class, so we can
>>>> use the bindings again, this time with GStreamer 1.0.
>>>>
>>>> Signed-off-by: Martin Kelly <mkelly@xevo.com>
>>>> ---
>>>>  .../gstreamer/gstreamer1.0-python.inc              | 35
>>>> ++++++++++++++++++++++
>>>>  .../gstreamer/gstreamer1.0-python_1.10.4.bb        |  7 +++++
>>>>  2 files changed, 42 insertions(+)
>>>>  create mode 100644
>>>> meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>>>  create mode 100644
>>>> meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>>
>>>
>>> I think everything in single file would be better
>>>
>>
>> I'm fine with that, but I was just following the convention that the rest of
>> the gstreamer packaging uses; all the recipes in
>> meta/recipes-multimedia/gstreamer use the same convention. I figured it's
>> cleaner to keep all of it consistent. Would you prefer I diverge anyway?
>>
>
> I dont have strong preference here.
>

OK, I sent a new version with just the license change.

>>>>
>>>> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>>> b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>>> new file mode 100644
>>>> index 0000000000..3299b89daa
>>>> --- /dev/null
>>>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python.inc
>>>> @@ -0,0 +1,35 @@
>>>> +SUMMARY = "Python bindings for GStreamer 1.0"
>>>> +HOMEPAGE = "http://cgit.freedesktop.org/gstreamer/gst-python/"
>>>> +SECTION = "multimedia"
>>>> +LICENSE = "LGPLv2"
>>>> +
>>>
>>>
>>> this should be 2.1 most probably
>>>
>>
>> Yes you're right, I'll change it.
>>
>>
>>>> +DEPENDS = "gstreamer1.0 python3-pygobject"
>>>> +RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
>>>> +
>>>> +PNREAL = "gst-python"
>>>> +
>>>> +SRC_URI =
>>>> "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>>>> +
>>>> +S = "${WORKDIR}/${PNREAL}-${PV}"
>>>> +
>>>> +inherit autotools pkgconfig distutils3-base upstream-version-is-even
>>>> gobject-introspection
>>>> +
>>>> +do_install_append() {
>>>> +    # gstpythonplugin hardcodes the location of the libpython from the
>>>> build
>>>> +    # workspace and then fails at runtime. We can override it using
>>>> +    # --with-libpython-dir=${libdir}, but it still fails because it
>>>> looks for a
>>>> +    # symlinked library ending in .so instead of the actually library
>>>> with
>>>> +    # LIBNAME.so.MAJOR.MINOR. Although we could patch the code to use
>>>> the path
>>>> +    # we want, it will break again if the library version ever changes.
>>>> We need
>>>> +    # to think about the best way of handling this and possibly consult
>>>> +    # upstream.
>>>> +    #
>>>> +    # Note that this particular find line is taken from the Debian
>>>> packaging for
>>>> +    # gst-python1.0.
>>>> +    find "${D}" \
>>>> +        -name '*.pyc' -o \
>>>> +        -name '*.pyo' -o \
>>>> +        -name '*.la' -o \
>>>> +        -name 'libgstpythonplugin*' \
>>>> +        -delete
>>>> +}
>>>> diff --git
>>>> a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>>> b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>>> new file mode 100644
>>>> index 0000000000..1365f7c6dd
>>>> --- /dev/null
>>>> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.10.4.bb
>>>> @@ -0,0 +1,7 @@
>>>> +require gstreamer1.0-python.inc
>>>> +
>>>> +SRC_URI =
>>>> "http://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
>>>> +SRC_URI[md5sum] = "adcdb74f713e28d0b22a0a1e4f831573"
>>>> +SRC_URI[sha256sum] =
>>>> "59508174b8bc86c05290aa9a7c5d480ac556a6f36306ddbc1d0eacf4f7868212"
>>>> +
>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
>>>> --
>>>> 2.11.0
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-core mailing list
>>>> Openembedded-core@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

end of thread, other threads:[~2017-07-18 18:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-18  0:21 [PATCH] gstreamer1.0-python: add new recipe Martin Kelly
2017-07-18  2:47 ` Khem Raj
2017-07-18 16:21   ` Martin Kelly
2017-07-18 18:37     ` Khem Raj
2017-07-18 18:48       ` Martin Kelly

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.