All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib
@ 2015-12-20 20:53 Leon Anavi
  2015-12-20 20:53 ` [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT Leon Anavi
  2016-01-11 10:08 ` [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Andrei Gherzan
  0 siblings, 2 replies; 9+ messages in thread
From: Leon Anavi @ 2015-12-20 20:53 UTC (permalink / raw)
  To: yocto

RTIMULib is a C++ and Python library that makes it easy to use
9-dof and 10-dof IMUs with embedded Linux systems. Python
module for Raspberry Pi Sense HAT depends on it.

Python module python-rtimu uses the source code from the
GitHub repository of RPi-Distro.

Signed-off-by: Leon Anavi <leon@anavi.org>
---
 recipes-devtools/python/python-rtimu_git.bb | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 recipes-devtools/python/python-rtimu_git.bb

diff --git a/recipes-devtools/python/python-rtimu_git.bb b/recipes-devtools/python/python-rtimu_git.bb
new file mode 100644
index 0000000..9d2f249
--- /dev/null
+++ b/recipes-devtools/python/python-rtimu_git.bb
@@ -0,0 +1,12 @@
+DESCRIPTION = "RTIMULib is a C++ and Python library that makes it easy to use 9-dof and 10-dof IMUs with embedded Linux systems"
+HOMEPAGE = "https://github.com/RPi-Distro/RTIMULib/"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://../../LICENSE;md5=96cdecb41125f498958e09b72faf318e"
+
+SRC_URI = "git://github.com/RPi-Distro/RTIMULib.git;protocol=http;branch=master "
+SRCREV = "b949681af69b45f0f7f4bb53b6770037b5b02178"
+
+S = "${WORKDIR}/git/Linux/python/"
+
+inherit setuptools
-- 
2.5.0



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

* [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 20:53 [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Leon Anavi
@ 2015-12-20 20:53 ` Leon Anavi
  2015-12-20 21:43   ` Khem Raj
  2016-01-11 10:08 ` [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Andrei Gherzan
  1 sibling, 1 reply; 9+ messages in thread
From: Leon Anavi @ 2015-12-20 20:53 UTC (permalink / raw)
  To: yocto

Python module to control the Raspberry Pi Sense HAT used in
the Astro Pi mission. This recipe provides the officially
supported library for the Sense HAT with access to all of the
on-board sensors and the LED matrix.

Signed-off-by: Leon Anavi <leon@anavi.org>
---
 recipes-devtools/python/python-sense-hat_2.1.0.bb | 31 +++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 recipes-devtools/python/python-sense-hat_2.1.0.bb

diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb b/recipes-devtools/python/python-sense-hat_2.1.0.bb
new file mode 100644
index 0000000..0665536
--- /dev/null
+++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
@@ -0,0 +1,31 @@
+SUMMARY = "Python module to control the Raspberry Pi Sense HAT used in the Astro Pi mission"
+HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
+SECTION = "devel/python"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
+
+SRCNAME = "sense-hat"
+
+SRC_URI = "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
+SRC_URI[sha256sum] = "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+inherit setuptools
+
+DEPENDS_${PN} += " \
+		jpeg \
+		jpeg-dev \
+		zlib \
+		zlib-dev \
+		freetype \
+		freetype-dev \
+		"
+
+RDEPENDS_${PN} += " \
+		python-numpy \
+		python-rtimu \
+		python-imaging \
+		"
-- 
2.5.0



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

* Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 20:53 ` [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT Leon Anavi
@ 2015-12-20 21:43   ` Khem Raj
  2015-12-20 22:00     ` Leon Anavi
  0 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2015-12-20 21:43 UTC (permalink / raw)
  To: Leon Anavi; +Cc: yocto

On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi <leon@anavi.org> wrote:
> Python module to control the Raspberry Pi Sense HAT used in
> the Astro Pi mission. This recipe provides the officially
> supported library for the Sense HAT with access to all of the
> on-board sensors and the LED matrix.
>
> Signed-off-by: Leon Anavi <leon@anavi.org>
> ---
>  recipes-devtools/python/python-sense-hat_2.1.0.bb | 31 +++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>  create mode 100644 recipes-devtools/python/python-sense-hat_2.1.0.bb
>
> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb b/recipes-devtools/python/python-sense-hat_2.1.0.bb
> new file mode 100644
> index 0000000..0665536
> --- /dev/null
> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
> @@ -0,0 +1,31 @@
> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT used in the Astro Pi mission"
> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
> +SECTION = "devel/python"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
> +
> +SRCNAME = "sense-hat"
> +
> +SRC_URI = "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
> +SRC_URI[sha256sum] = "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
> +
> +S = "${WORKDIR}/${SRCNAME}-${PV}"
> +
> +inherit setuptools
> +
> +DEPENDS_${PN} += " \

Just use DEPENDS here and remove -dev entries below, its implied with DEPENDS

> +               jpeg \
> +               jpeg-dev \
> +               zlib \
> +               zlib-dev \
> +               freetype \
> +               freetype-dev \
> +               "
> +
> +RDEPENDS_${PN} += " \
> +               python-numpy \
> +               python-rtimu \
> +               python-imaging \
> +               "
> --
> 2.5.0
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


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

* Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 21:43   ` Khem Raj
@ 2015-12-20 22:00     ` Leon Anavi
  2015-12-20 22:01       ` Khem Raj
  0 siblings, 1 reply; 9+ messages in thread
From: Leon Anavi @ 2015-12-20 22:00 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On 2015-12-20 23:43, Khem Raj wrote:
> On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi <leon@anavi.org> wrote:
>> Python module to control the Raspberry Pi Sense HAT used in
>> the Astro Pi mission. This recipe provides the officially
>> supported library for the Sense HAT with access to all of the
>> on-board sensors and the LED matrix.
>> 
>> Signed-off-by: Leon Anavi <leon@anavi.org>
>> ---
>>  recipes-devtools/python/python-sense-hat_2.1.0.bb | 31 
>> +++++++++++++++++++++++
>>  1 file changed, 31 insertions(+)
>>  create mode 100644 recipes-devtools/python/python-sense-hat_2.1.0.bb
>> 
>> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb 
>> b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>> new file mode 100644
>> index 0000000..0665536
>> --- /dev/null
>> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>> @@ -0,0 +1,31 @@
>> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT used 
>> in the Astro Pi mission"
>> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
>> +SECTION = "devel/python"
>> +LICENSE = "BSD"
>> +LIC_FILES_CHKSUM = 
>> "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
>> +
>> +SRCNAME = "sense-hat"
>> +
>> +SRC_URI = 
>> "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
>> +
>> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
>> +SRC_URI[sha256sum] = 
>> "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
>> +
>> +S = "${WORKDIR}/${SRCNAME}-${PV}"
>> +
>> +inherit setuptools
>> +
>> +DEPENDS_${PN} += " \
> 
> Just use DEPENDS here and remove -dev entries below, its implied with 
> DEPENDS

Done. I resubmitted this patch again. Thank you for the help.

Best regards, Leon

> 
>> +               jpeg \
>> +               jpeg-dev \
>> +               zlib \
>> +               zlib-dev \
>> +               freetype \
>> +               freetype-dev \
>> +               "
>> +
>> +RDEPENDS_${PN} += " \
>> +               python-numpy \
>> +               python-rtimu \
>> +               python-imaging \
>> +               "
>> --
>> 2.5.0
>> 
>> --
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto

-- 
http://anavi.org/


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

* Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 22:00     ` Leon Anavi
@ 2015-12-20 22:01       ` Khem Raj
  2015-12-20 22:19         ` Leon Anavi
  0 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2015-12-20 22:01 UTC (permalink / raw)
  To: Leon Anavi; +Cc: yocto

On Sun, Dec 20, 2015 at 2:00 PM, Leon Anavi <leon@anavi.org> wrote:
> On 2015-12-20 23:43, Khem Raj wrote:
>>
>> On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi <leon@anavi.org> wrote:
>>>
>>> Python module to control the Raspberry Pi Sense HAT used in
>>> the Astro Pi mission. This recipe provides the officially
>>> supported library for the Sense HAT with access to all of the
>>> on-board sensors and the LED matrix.
>>>
>>> Signed-off-by: Leon Anavi <leon@anavi.org>
>>> ---
>>>  recipes-devtools/python/python-sense-hat_2.1.0.bb | 31
>>> +++++++++++++++++++++++
>>>  1 file changed, 31 insertions(+)
>>>  create mode 100644 recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>
>>> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>> b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>> new file mode 100644
>>> index 0000000..0665536
>>> --- /dev/null
>>> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>> @@ -0,0 +1,31 @@
>>> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT used in
>>> the Astro Pi mission"
>>> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
>>> +SECTION = "devel/python"
>>> +LICENSE = "BSD"
>>> +LIC_FILES_CHKSUM =
>>> "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
>>> +
>>> +SRCNAME = "sense-hat"
>>> +
>>> +SRC_URI =
>>> "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
>>> +
>>> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
>>> +SRC_URI[sha256sum] =
>>> "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
>>> +
>>> +S = "${WORKDIR}/${SRCNAME}-${PV}"
>>> +
>>> +inherit setuptools
>>> +
>>> +DEPENDS_${PN} += " \
>>
>>
>> Just use DEPENDS here and remove -dev entries below, its implied with
>> DEPENDS
>
>
> Done. I resubmitted this patch again. Thank you for the help.
>

Looks good now. Thx

> Best regards, Leon
>
>
>>
>>> +               jpeg \
>>> +               jpeg-dev \
>>> +               zlib \
>>> +               zlib-dev \
>>> +               freetype \
>>> +               freetype-dev \
>>> +               "
>>> +
>>> +RDEPENDS_${PN} += " \
>>> +               python-numpy \
>>> +               python-rtimu \
>>> +               python-imaging \
>>> +               "
>>> --
>>> 2.5.0
>>>
>>> --
>>> _______________________________________________
>>> yocto mailing list
>>> yocto@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/yocto
>
>
> --
> http://anavi.org/


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

* Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 22:01       ` Khem Raj
@ 2015-12-20 22:19         ` Leon Anavi
  2016-01-07 15:14           ` Leon Anavi
  0 siblings, 1 reply; 9+ messages in thread
From: Leon Anavi @ 2015-12-20 22:19 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On 2015-12-21 00:01, Khem Raj wrote:
> On Sun, Dec 20, 2015 at 2:00 PM, Leon Anavi <leon@anavi.org> wrote:
>> On 2015-12-20 23:43, Khem Raj wrote:
>>> 
>>> On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi <leon@anavi.org> wrote:
>>>> 
>>>> Python module to control the Raspberry Pi Sense HAT used in
>>>> the Astro Pi mission. This recipe provides the officially
>>>> supported library for the Sense HAT with access to all of the
>>>> on-board sensors and the LED matrix.
>>>> 
>>>> Signed-off-by: Leon Anavi <leon@anavi.org>
>>>> ---
>>>>  recipes-devtools/python/python-sense-hat_2.1.0.bb | 31
>>>> +++++++++++++++++++++++
>>>>  1 file changed, 31 insertions(+)
>>>>  create mode 100644 
>>>> recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>> 
>>>> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>> b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>> new file mode 100644
>>>> index 0000000..0665536
>>>> --- /dev/null
>>>> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>> @@ -0,0 +1,31 @@
>>>> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT used 
>>>> in
>>>> the Astro Pi mission"
>>>> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
>>>> +SECTION = "devel/python"
>>>> +LICENSE = "BSD"
>>>> +LIC_FILES_CHKSUM =
>>>> "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
>>>> +
>>>> +SRCNAME = "sense-hat"
>>>> +
>>>> +SRC_URI =
>>>> "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
>>>> +
>>>> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
>>>> +SRC_URI[sha256sum] =
>>>> "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
>>>> +
>>>> +S = "${WORKDIR}/${SRCNAME}-${PV}"
>>>> +
>>>> +inherit setuptools
>>>> +
>>>> +DEPENDS_${PN} += " \
>>> 
>>> 
>>> Just use DEPENDS here and remove -dev entries below, its implied with
>>> DEPENDS
>> 
>> 
>> Done. I resubmitted this patch again. Thank you for the help.
>> 
> 
> Looks good now. Thx

It was my pleasure. Thanks again for the feedback.

Btw a quick and easy way to test the result on Raspberry Pi with a Sense 
HAT:

wget 
https://github.com/leon-anavi/python-sense-hat-scripts/archive/master.zip
unzip master.zip
cd python-sense-hat-scripts-master/
python python-sense-hat-text.py

If everything is OK you should see red text "Hello" scrolling on the LED 
matrix of the Sense HAT.

Best regards,
Leon

> 
>> Best regards, Leon
>> 
>> 
>>> 
>>>> +               jpeg \
>>>> +               jpeg-dev \
>>>> +               zlib \
>>>> +               zlib-dev \
>>>> +               freetype \
>>>> +               freetype-dev \
>>>> +               "
>>>> +
>>>> +RDEPENDS_${PN} += " \
>>>> +               python-numpy \
>>>> +               python-rtimu \
>>>> +               python-imaging \
>>>> +               "
>>>> --
>>>> 2.5.0
>>>> 
>>>> --
>>>> _______________________________________________
>>>> yocto mailing list
>>>> yocto@yoctoproject.org
>>>> https://lists.yoctoproject.org/listinfo/yocto
>> 
>> 
>> --
>> http://anavi.org/

-- 
http://anavi.org/


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

* Re: [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT
  2015-12-20 22:19         ` Leon Anavi
@ 2016-01-07 15:14           ` Leon Anavi
  0 siblings, 0 replies; 9+ messages in thread
From: Leon Anavi @ 2016-01-07 15:14 UTC (permalink / raw)
  To: Khem Raj, andrei; +Cc: yocto

Hi,

Kind reminder that I am still waiting for feedback regarding these two 
patches for Raspberry Pi Sense HAT.

Thanks, Leon

On 2015-12-21 00:19, Leon Anavi wrote:
> On 2015-12-21 00:01, Khem Raj wrote:
>> On Sun, Dec 20, 2015 at 2:00 PM, Leon Anavi <leon@anavi.org> wrote:
>>> On 2015-12-20 23:43, Khem Raj wrote:
>>>> 
>>>> On Sun, Dec 20, 2015 at 12:53 PM, Leon Anavi <leon@anavi.org> wrote:
>>>>> 
>>>>> Python module to control the Raspberry Pi Sense HAT used in
>>>>> the Astro Pi mission. This recipe provides the officially
>>>>> supported library for the Sense HAT with access to all of the
>>>>> on-board sensors and the LED matrix.
>>>>> 
>>>>> Signed-off-by: Leon Anavi <leon@anavi.org>
>>>>> ---
>>>>>  recipes-devtools/python/python-sense-hat_2.1.0.bb | 31
>>>>> +++++++++++++++++++++++
>>>>>  1 file changed, 31 insertions(+)
>>>>>  create mode 100644 
>>>>> recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>>> 
>>>>> diff --git a/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>>> b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>>> new file mode 100644
>>>>> index 0000000..0665536
>>>>> --- /dev/null
>>>>> +++ b/recipes-devtools/python/python-sense-hat_2.1.0.bb
>>>>> @@ -0,0 +1,31 @@
>>>>> +SUMMARY = "Python module to control the Raspberry Pi Sense HAT 
>>>>> used in
>>>>> the Astro Pi mission"
>>>>> +HOMEPAGE = "https://github.com/RPi-Distro/python-sense-hat"
>>>>> +SECTION = "devel/python"
>>>>> +LICENSE = "BSD"
>>>>> +LIC_FILES_CHKSUM =
>>>>> "file://LICENCE.txt;md5=d80fe312e1ff5fbd97369b093bf21cda"
>>>>> +
>>>>> +SRCNAME = "sense-hat"
>>>>> +
>>>>> +SRC_URI =
>>>>> "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
>>>>> +
>>>>> +SRC_URI[md5sum] = "71217f15ea963040f06e2f50722186ca"
>>>>> +SRC_URI[sha256sum] =
>>>>> "c6c76707c0ea514e4b0f1f96f1b5b79755875891aae037df7434b6aad7b9dbca"
>>>>> +
>>>>> +S = "${WORKDIR}/${SRCNAME}-${PV}"
>>>>> +
>>>>> +inherit setuptools
>>>>> +
>>>>> +DEPENDS_${PN} += " \
>>>> 
>>>> 
>>>> Just use DEPENDS here and remove -dev entries below, its implied 
>>>> with
>>>> DEPENDS
>>> 
>>> 
>>> Done. I resubmitted this patch again. Thank you for the help.
>>> 
>> 
>> Looks good now. Thx
> 
> It was my pleasure. Thanks again for the feedback.
> 
> Btw a quick and easy way to test the result on Raspberry Pi with a 
> Sense HAT:
> 
> wget 
> https://github.com/leon-anavi/python-sense-hat-scripts/archive/master.zip
> unzip master.zip
> cd python-sense-hat-scripts-master/
> python python-sense-hat-text.py
> 
> If everything is OK you should see red text "Hello" scrolling on the
> LED matrix of the Sense HAT.
> 
> Best regards,
> Leon
> 
>> 
>>> Best regards, Leon
>>> 
>>> 
>>>> 
>>>>> +               jpeg \
>>>>> +               jpeg-dev \
>>>>> +               zlib \
>>>>> +               zlib-dev \
>>>>> +               freetype \
>>>>> +               freetype-dev \
>>>>> +               "
>>>>> +
>>>>> +RDEPENDS_${PN} += " \
>>>>> +               python-numpy \
>>>>> +               python-rtimu \
>>>>> +               python-imaging \
>>>>> +               "
>>>>> --
>>>>> 2.5.0
>>>>> 
>>>>> --
>>>>> _______________________________________________
>>>>> yocto mailing list
>>>>> yocto@yoctoproject.org
>>>>> https://lists.yoctoproject.org/listinfo/yocto
>>> 
>>> 
>>> --
>>> http://anavi.org/

-- 
http://anavi.org/


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

* Re: [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib
  2015-12-20 20:53 [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Leon Anavi
  2015-12-20 20:53 ` [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT Leon Anavi
@ 2016-01-11 10:08 ` Andrei Gherzan
  2016-01-11 11:45   ` Leon Anavi
  1 sibling, 1 reply; 9+ messages in thread
From: Andrei Gherzan @ 2016-01-11 10:08 UTC (permalink / raw)
  To: Leon Anavi; +Cc: Yocto Project

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

Hi,



On Sun, Dec 20, 2015 at 9:53 PM, Leon Anavi <leon@anavi.org> wrote:

> RTIMULib is a C++ and Python library that makes it easy to use
> 9-dof and 10-dof IMUs with embedded Linux systems. Python
> module for Raspberry Pi Sense HAT depends on it.
>
> Python module python-rtimu uses the source code from the
> GitHub repository of RPi-Distro.
>
> Signed-off-by: Leon Anavi <leon@anavi.org>
> ---
>  recipes-devtools/python/python-rtimu_git.bb | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 recipes-devtools/python/python-rtimu_git.bb


Merged patch to master with some minor formatting tweaks (removed extra
space in SRC_URI and broke DESCRIPTION line around 90 chars).

Thanks,
--
Andrei Gherzan

[-- Attachment #2: Type: text/html, Size: 1479 bytes --]

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

* Re: [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib
  2016-01-11 10:08 ` [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Andrei Gherzan
@ 2016-01-11 11:45   ` Leon Anavi
  0 siblings, 0 replies; 9+ messages in thread
From: Leon Anavi @ 2016-01-11 11:45 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: Yocto Project

Hi Andrei,

On 2016-01-11 12:08, Andrei Gherzan wrote:
> Hi,
> 
> On Sun, Dec 20, 2015 at 9:53 PM, Leon Anavi <leon@anavi.org> wrote:
> 
>> RTIMULib is a C++ and Python library that makes it easy to use
>> 9-dof and 10-dof IMUs with embedded Linux systems. Python
>> module for Raspberry Pi Sense HAT depends on it.
>> 
>> Python module python-rtimu uses the source code from the
>> GitHub repository of RPi-Distro.
>> 
>> Signed-off-by: Leon Anavi <leon@anavi.org>
>> ---
>> recipes-devtools/python/python-rtimu_git.bb [1] | 12 ++++++++++++
>> 1 file changed, 12 insertions(+)
>> create mode 100644 recipes-devtools/python/python-rtimu_git.bb [1]
> 
> Merged patch to master with some minor formatting tweaks (removed
> extra space in SRC_URI and broke DESCRIPTION line around 90 chars).
> 

Cool :) Thank you for merging my Raspberry Pi Sense HAT patches.

Best regards, Leon

> Thanks,
> --
> Andrei Gherzan
> 
> Links:
> ------
> [1] http://python-rtimu_git.bb

-- 
http://anavi.org/


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

end of thread, other threads:[~2016-01-11 11:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-20 20:53 [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Leon Anavi
2015-12-20 20:53 ` [meta-raspberrypi][PATCH 2/2] python-sense-hat: Add recipe to support Raspberry Pi Sense HAT Leon Anavi
2015-12-20 21:43   ` Khem Raj
2015-12-20 22:00     ` Leon Anavi
2015-12-20 22:01       ` Khem Raj
2015-12-20 22:19         ` Leon Anavi
2016-01-07 15:14           ` Leon Anavi
2016-01-11 10:08 ` [meta-raspberrypi][PATCH 1/2] python-rtimu: Add recipe to support RTIMULib Andrei Gherzan
2016-01-11 11:45   ` Leon Anavi

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.