All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python-smbus2: Add new recipe
@ 2020-04-03  8:15 Leon Anavi
  2020-04-03  8:15 ` [meta-python][PATCH 2/3] python-luma-core: add " Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Leon Anavi @ 2020-04-03  8:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Drop-in replacement for smbus-cffi/smbus-python in pure Python.
It is another implementation of the python-smbus package.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 meta-python/recipes-devtools/python/python-smbus2.inc | 19 +++++++++++++++++++
 .../recipes-devtools/python/python3-smbus2_0.3.0.bb   |  2 ++
 2 files changed, 21 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-smbus2.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb

diff --git a/meta-python/recipes-devtools/python/python-smbus2.inc b/meta-python/recipes-devtools/python/python-smbus2.inc
new file mode 100644
index 0000000..0bab1a4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-smbus2.inc
@@ -0,0 +1,19 @@
+SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python"
+DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
+HOMEPAGE = "https://github.com/kplindegaard/smbus2"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
+
+SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
+SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
+
+CLEANBROKEN = "1"
+
+PYPI_PACKAGE = "smbus2"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-ctypes ${PYTHON_PN}-fcntl"
+
+RDEPENDS_${PN} += "\
+	${PYTHON_PN}-ctypes \
+	${PYTHON_PN}-fcntl \
+"
diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
new file mode 100644
index 0000000..6149e35
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-smbus2.inc
-- 
2.7.4


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

* [meta-python][PATCH 2/3] python-luma-core: add new recipe
  2020-04-03  8:15 [meta-python][PATCH 1/3] python-smbus2: Add new recipe Leon Anavi
@ 2020-04-03  8:15 ` Leon Anavi
  2020-04-03 17:32   ` [oe] " Tim Orling
  2020-04-03  8:15 ` [meta-python][PATCH 3/3] python-luma-oled: " Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Anavi @ 2020-04-03  8:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Component library providing a Pillow-compatible drawing canvas,
and other functionality to support drawing primitives and
text-rendering capabilities for small displays on the Raspberry Pi
and other single board computers.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python-luma-core.inc       | 18 ++++++++++++++++++
 .../python/python3-luma-core_1.12.0.bb                 |  2 ++
 2 files changed, 20 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-luma-core.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb

diff --git a/meta-python/recipes-devtools/python/python-luma-core.inc b/meta-python/recipes-devtools/python/python-luma-core.inc
new file mode 100644
index 0000000..65350ef
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-luma-core.inc
@@ -0,0 +1,18 @@
+SUMMARY = "A component library to support SBC display drivers"
+DESCRIPTION = "A component library to support SBC display drivers"
+HOMEPAGE = "https://github.com/rm-hull/luma.core"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
+
+SRC_URI[md5sum] = "4378edb99cd12540b4e4a588969567ee"
+SRC_URI[sha256sum] = "864a427de78bcc16758f4f4402a9e61f31cc8857bfae9aba8041159aaec3a491"
+
+CLEANBROKEN = "1"
+
+PYPI_PACKAGE = "luma.core"
+
+RDEPENDS_${PN} += " \
+	${PYTHON_PN}-pillow \
+	${PYTHON_PN}-threading \
+	${PYTHON_PN}-smbus2 \
+"
diff --git a/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb b/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb
new file mode 100644
index 0000000..6e34f81
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-luma-core.inc
-- 
2.7.4


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

* [meta-python][PATCH 3/3] python-luma-oled: add new recipe
  2020-04-03  8:15 [meta-python][PATCH 1/3] python-smbus2: Add new recipe Leon Anavi
  2020-04-03  8:15 ` [meta-python][PATCH 2/3] python-luma-core: add " Leon Anavi
@ 2020-04-03  8:15 ` Leon Anavi
  2020-04-03 17:30   ` [oe] " Tim Orling
  2020-04-03 10:33 ` [oe] [meta-python][PATCH 1/3] python-smbus2: Add " Paul Barker
  2020-04-03 17:29 ` Khem Raj
  3 siblings, 1 reply; 8+ messages in thread
From: Leon Anavi @ 2020-04-03  8:15 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Python library interfacing OLED matrix displays with the SSD1306,
SSD1309, SSD1322, SSD1325, SSD1327, SSD1331, SSD1351 or SH1106
driver using I2C/SPI on the Raspberry Pi and other single-board
computers.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python-luma-oled.inc       | 18 ++++++++++++++++++
 .../recipes-devtools/python/python3-luma-oled_3.4.0.bb |  2 ++
 2 files changed, 20 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-luma-oled.inc
 create mode 100644 meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb

diff --git a/meta-python/recipes-devtools/python/python-luma-oled.inc b/meta-python/recipes-devtools/python/python-luma-oled.inc
new file mode 100644
index 0000000..dc59024
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-luma-oled.inc
@@ -0,0 +1,18 @@
+SUMMARY = "A small library to drive an OLED device"
+DESCRIPTION = "\
+A small library to drive an OLED device with either SSD1306 , SSD1309, SSD1322, \
+SSD1325, SSD1327, SSD1331, SSD1351 or SH1106 chipset"
+HOMEPAGE = "https://github.com/rm-hull/luma.oled"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=c328c862c3335ad464e1c9a3ba574249"
+
+SRC_URI[md5sum] = "2944155b2242b9d2ddeb6e139c6083b8"
+SRC_URI[sha256sum] = "2ea2b535e7e2f056a51a8c54ad78aa1f00d5699fc439c01bc7c2902823889552"
+
+CLEANBROKEN = "1"
+
+PYPI_PACKAGE = "luma.oled"
+
+RDEPENDS_${PN} += " \
+	${PYTHON_PN}-luma-core \
+"
diff --git a/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb b/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
new file mode 100644
index 0000000..4f64a92
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-luma-oled.inc
-- 
2.7.4


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

* Re: [oe] [meta-python][PATCH 1/3] python-smbus2: Add new recipe
  2020-04-03  8:15 [meta-python][PATCH 1/3] python-smbus2: Add new recipe Leon Anavi
  2020-04-03  8:15 ` [meta-python][PATCH 2/3] python-luma-core: add " Leon Anavi
  2020-04-03  8:15 ` [meta-python][PATCH 3/3] python-luma-oled: " Leon Anavi
@ 2020-04-03 10:33 ` Paul Barker
  2020-04-03 11:16   ` Leon Anavi
  2020-04-03 17:29 ` Khem Raj
  3 siblings, 1 reply; 8+ messages in thread
From: Paul Barker @ 2020-04-03 10:33 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembedded-devel

On Fri,  3 Apr 2020 11:15:46 +0300
"Leon Anavi" <leon.anavi@konsulko.com> wrote:

> Drop-in replacement for smbus-cffi/smbus-python in pure Python.
> It is another implementation of the python-smbus package.
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  meta-python/recipes-devtools/python/python-smbus2.inc | 19 +++++++++++++++++++
>  .../recipes-devtools/python/python3-smbus2_0.3.0.bb   |  2 ++
>  2 files changed, 21 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python-smbus2.inc
>  create mode 100644 meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python-smbus2.inc b/meta-python/recipes-devtools/python/python-smbus2.inc
> new file mode 100644
> index 0000000..0bab1a4
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-smbus2.inc
> @@ -0,0 +1,19 @@
> +SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python"
> +DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
> +HOMEPAGE = "https://github.com/kplindegaard/smbus2"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
> +
> +SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
> +SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
> +
> +CLEANBROKEN = "1"
> +
> +PYPI_PACKAGE = "smbus2"
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-ctypes ${PYTHON_PN}-fcntl"
> +
> +RDEPENDS_${PN} += "\
> +	${PYTHON_PN}-ctypes \
> +	${PYTHON_PN}-fcntl \
> +"
> diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> new file mode 100644
> index 0000000..6149e35
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> @@ -0,0 +1,2 @@
> +inherit pypi setuptools3
> +require python-smbus2.inc

We should be doing away with this kind of .inc file now that meta-python is
python3 only. See
https://lists.openembedded.org/g/openembedded-devel/topic/72718415.

Thanks,

-- 
Paul Barker
Konsulko Group

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

* Re: [oe] [meta-python][PATCH 1/3] python-smbus2: Add new recipe
  2020-04-03 10:33 ` [oe] [meta-python][PATCH 1/3] python-smbus2: Add " Paul Barker
@ 2020-04-03 11:16   ` Leon Anavi
  0 siblings, 0 replies; 8+ messages in thread
From: Leon Anavi @ 2020-04-03 11:16 UTC (permalink / raw)
  To: Paul Barker; +Cc: openembedded-devel

Hi Paul,

On 3.04.20 г. 13:33 ч., Paul Barker wrote:
> On Fri,  3 Apr 2020 11:15:46 +0300
> "Leon Anavi" <leon.anavi@konsulko.com> wrote:
>
>> Drop-in replacement for smbus-cffi/smbus-python in pure Python.
>> It is another implementation of the python-smbus package.
>>
>> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
>> ---
>>   meta-python/recipes-devtools/python/python-smbus2.inc | 19 +++++++++++++++++++
>>   .../recipes-devtools/python/python3-smbus2_0.3.0.bb   |  2 ++
>>   2 files changed, 21 insertions(+)
>>   create mode 100644 meta-python/recipes-devtools/python/python-smbus2.inc
>>   create mode 100644 meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
>>
>> diff --git a/meta-python/recipes-devtools/python/python-smbus2.inc b/meta-python/recipes-devtools/python/python-smbus2.inc
>> new file mode 100644
>> index 0000000..0bab1a4
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-smbus2.inc
>> @@ -0,0 +1,19 @@
>> +SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python"
>> +DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
>> +HOMEPAGE = "https://github.com/kplindegaard/smbus2"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
>> +
>> +SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
>> +SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
>> +
>> +CLEANBROKEN = "1"
>> +
>> +PYPI_PACKAGE = "smbus2"
>> +
>> +RDEPENDS_${PN} = "${PYTHON_PN}-ctypes ${PYTHON_PN}-fcntl"
>> +
>> +RDEPENDS_${PN} += "\
>> +	${PYTHON_PN}-ctypes \
>> +	${PYTHON_PN}-fcntl \
>> +"
>> diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
>> new file mode 100644
>> index 0000000..6149e35
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
>> @@ -0,0 +1,2 @@
>> +inherit pypi setuptools3
>> +require python-smbus2.inc
> We should be doing away with this kind of .inc file now that meta-python is
> python3 only. See
> https://lists.openembedded.org/g/openembedded-devel/topic/72718415.
>
> Thanks,
Thanks for pointing it out. I will update accordingly my patches and 
resubmit them.

Best regards,
Leon

-- 
Leon Anavi
Software Engineer
konsulko.com


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

* Re: [oe] [meta-python][PATCH 1/3] python-smbus2: Add new recipe
  2020-04-03  8:15 [meta-python][PATCH 1/3] python-smbus2: Add new recipe Leon Anavi
                   ` (2 preceding siblings ...)
  2020-04-03 10:33 ` [oe] [meta-python][PATCH 1/3] python-smbus2: Add " Paul Barker
@ 2020-04-03 17:29 ` Khem Raj
  3 siblings, 0 replies; 8+ messages in thread
From: Khem Raj @ 2020-04-03 17:29 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel



On 4/3/20 1:15 AM, Leon Anavi wrote:
> Drop-in replacement for smbus-cffi/smbus-python in pure Python.
> It is another implementation of the python-smbus package.
> 
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>   meta-python/recipes-devtools/python/python-smbus2.inc | 19 +++++++++++++++++++

inc file seems needless here, please add all code to .bb itself.

>   .../recipes-devtools/python/python3-smbus2_0.3.0.bb   |  2 ++
>   2 files changed, 21 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python-smbus2.inc
>   create mode 100644 meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python-smbus2.inc b/meta-python/recipes-devtools/python/python-smbus2.inc
> new file mode 100644
> index 0000000..0bab1a4
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-smbus2.inc
> @@ -0,0 +1,19 @@
> +SUMMARY = "Drop-in replacement for smbus-cffi/smbus-python in pure Python"
> +DESCRIPTION = "smbus2 is a drop-in replacement for smbus-cffi/smbus-python in pure Python"
> +HOMEPAGE = "https://github.com/kplindegaard/smbus2"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
> +
> +SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
> +SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
> +
> +CLEANBROKEN = "1"
> +
> +PYPI_PACKAGE = "smbus2"
> +
> +RDEPENDS_${PN} = "${PYTHON_PN}-ctypes ${PYTHON_PN}-fcntl"
> +
> +RDEPENDS_${PN} += "\
> +	${PYTHON_PN}-ctypes \
> +	${PYTHON_PN}-fcntl \
> +"
> diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> new file mode 100644
> index 0000000..6149e35
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> @@ -0,0 +1,2 @@
> +inherit pypi setuptools3
> +require python-smbus2.inc
> 
> 
> 
> 

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

* Re: [oe] [meta-python][PATCH 3/3] python-luma-oled: add new recipe
  2020-04-03  8:15 ` [meta-python][PATCH 3/3] python-luma-oled: " Leon Anavi
@ 2020-04-03 17:30   ` Tim Orling
  0 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2020-04-03 17:30 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembedded-devel

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

We do not want separate .inc and .bb files. It makes recipe upgrades with
devtool/AUH difficult. Please merge .inc and .bb

On Fri, Apr 3, 2020 at 1:16 AM Leon Anavi <leon.anavi@konsulko.com> wrote:

> Python library interfacing OLED matrix displays with the SSD1306,
> SSD1309, SSD1322, SSD1325, SSD1327, SSD1331, SSD1351 or SH1106
> driver using I2C/SPI on the Raspberry Pi and other single-board
> computers.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  .../recipes-devtools/python/python-luma-oled.inc       | 18
> ++++++++++++++++++
>  .../recipes-devtools/python/python3-luma-oled_3.4.0.bb |  2 ++
>  2 files changed, 20 insertions(+)
>  create mode 100644
> meta-python/recipes-devtools/python/python-luma-oled.inc
>  create mode 100644 meta-python/recipes-devtools/python/
> python3-luma-oled_3.4.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-luma-oled.inc
> b/meta-python/recipes-devtools/python/python-luma-oled.inc
> new file mode 100644
> index 0000000..dc59024
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-luma-oled.inc
> @@ -0,0 +1,18 @@
> +SUMMARY = "A small library to drive an OLED device"
> +DESCRIPTION = "\
> +A small library to drive an OLED device with either SSD1306 , SSD1309,
> SSD1322, \
> +SSD1325, SSD1327, SSD1331, SSD1351 or SH1106 chipset"
> +HOMEPAGE = "https://github.com/rm-hull/luma.oled"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM =
> "file://LICENSE.rst;md5=c328c862c3335ad464e1c9a3ba574249"
> +
> +SRC_URI[md5sum] = "2944155b2242b9d2ddeb6e139c6083b8"
> +SRC_URI[sha256sum] =
> "2ea2b535e7e2f056a51a8c54ad78aa1f00d5699fc439c01bc7c2902823889552"
> +
> +CLEANBROKEN = "1"
> +
> +PYPI_PACKAGE = "luma.oled"
> +
> +RDEPENDS_${PN} += " \
> +       ${PYTHON_PN}-luma-core \
> +"
> diff --git a/meta-python/recipes-devtools/python/
> python3-luma-oled_3.4.0.bb b/meta-python/recipes-devtools/python/
> python3-luma-oled_3.4.0.bb
> new file mode 100644
> index 0000000..4f64a92
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-luma-oled_3.4.0.bb
> @@ -0,0 +1,2 @@
> +inherit pypi setuptools3
> +require python-luma-oled.inc
> --
> 2.7.4
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/3] python-luma-core: add new recipe
  2020-04-03  8:15 ` [meta-python][PATCH 2/3] python-luma-core: add " Leon Anavi
@ 2020-04-03 17:32   ` Tim Orling
  0 siblings, 0 replies; 8+ messages in thread
From: Tim Orling @ 2020-04-03 17:32 UTC (permalink / raw)
  To: Leon Anavi; +Cc: openembedded-devel

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

We do not want separate .inc and .bb files. It makes recipe upgrades with
devtool/AUH difficult. Please merge .inc and .bb

On Fri, Apr 3, 2020 at 1:15 AM Leon Anavi <leon.anavi@konsulko.com> wrote:

> Component library providing a Pillow-compatible drawing canvas,
> and other functionality to support drawing primitives and
> text-rendering capabilities for small displays on the Raspberry Pi
> and other single board computers.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
> ---
>  .../recipes-devtools/python/python-luma-core.inc       | 18
> ++++++++++++++++++
>  .../python/python3-luma-core_1.12.0.bb                 |  2 ++
>  2 files changed, 20 insertions(+)
>  create mode 100644
> meta-python/recipes-devtools/python/python-luma-core.inc
>  create mode 100644 meta-python/recipes-devtools/python/
> python3-luma-core_1.12.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-luma-core.inc
> b/meta-python/recipes-devtools/python/python-luma-core.inc
> new file mode 100644
> index 0000000..65350ef
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-luma-core.inc
> @@ -0,0 +1,18 @@
> +SUMMARY = "A component library to support SBC display drivers"
> +DESCRIPTION = "A component library to support SBC display drivers"
> +HOMEPAGE = "https://github.com/rm-hull/luma.core"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM =
> "file://LICENSE.rst;md5=eda804060ba2312e41fe96b6fa334fd7"
> +
> +SRC_URI[md5sum] = "4378edb99cd12540b4e4a588969567ee"
> +SRC_URI[sha256sum] =
> "864a427de78bcc16758f4f4402a9e61f31cc8857bfae9aba8041159aaec3a491"
> +
> +CLEANBROKEN = "1"
> +
> +PYPI_PACKAGE = "luma.core"
> +
> +RDEPENDS_${PN} += " \
> +       ${PYTHON_PN}-pillow \
> +       ${PYTHON_PN}-threading \
> +       ${PYTHON_PN}-smbus2 \
> +"
> diff --git a/meta-python/recipes-devtools/python/
> python3-luma-core_1.12.0.bb b/meta-python/recipes-devtools/python/
> python3-luma-core_1.12.0.bb
> new file mode 100644
> index 0000000..6e34f81
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-luma-core_1.12.0.bb
> @@ -0,0 +1,2 @@
> +inherit pypi setuptools3
> +require python-luma-core.inc
> --
> 2.7.4
>
> 
>

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

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

end of thread, other threads:[~2020-04-03 17:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-03  8:15 [meta-python][PATCH 1/3] python-smbus2: Add new recipe Leon Anavi
2020-04-03  8:15 ` [meta-python][PATCH 2/3] python-luma-core: add " Leon Anavi
2020-04-03 17:32   ` [oe] " Tim Orling
2020-04-03  8:15 ` [meta-python][PATCH 3/3] python-luma-oled: " Leon Anavi
2020-04-03 17:30   ` [oe] " Tim Orling
2020-04-03 10:33 ` [oe] [meta-python][PATCH 1/3] python-smbus2: Add " Paul Barker
2020-04-03 11:16   ` Leon Anavi
2020-04-03 17:29 ` Khem Raj

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.