All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Add recipe python3-pydot and its dependency
@ 2022-03-03 14:08 kai.kang
  2022-03-03 14:08 ` [PATCH 1/2] python3-pyparsing: add recipe kai.kang
  2022-03-03 14:08 ` [PATCH 2/2] python3-pydot: " kai.kang
  0 siblings, 2 replies; 6+ messages in thread
From: kai.kang @ 2022-03-03 14:08 UTC (permalink / raw)
  To: openembedded-devel

From: Kai Kang <kai.kang@windriver.com>


Kai Kang (2):
  python3-pyparsing: add recipe
  python3-pydot: add recipe

 .../python3-pydot/python3-pydot_1.4.2.bb              | 11 +++++++++++
 .../python3-pyparsing/python3-pyparsing_3.0.7.bb      | 11 +++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 meta-python/recipes-extended/python3-pydot/python3-pydot_1.4.2.bb
 create mode 100644 meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb

-- 
2.17.1



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

* [PATCH 1/2] python3-pyparsing: add recipe
  2022-03-03 14:08 [PATCH 0/2] Add recipe python3-pydot and its dependency kai.kang
@ 2022-03-03 14:08 ` kai.kang
  2022-03-03 15:07   ` [oe] " Tim Orling
  2022-03-03 14:08 ` [PATCH 2/2] python3-pydot: " kai.kang
  1 sibling, 1 reply; 6+ messages in thread
From: kai.kang @ 2022-03-03 14:08 UTC (permalink / raw)
  To: openembedded-devel

From: Kai Kang <kai.kang@windriver.com>

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../python3-pyparsing/python3-pyparsing_3.0.7.bb      | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb

diff --git a/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
new file mode 100644
index 000000000..30db080e8
--- /dev/null
+++ b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
@@ -0,0 +1,11 @@
+SUMMARY = "The pyparsing module is an alternative approach to creating and executing simple grammars."
+HOMEPAGE = "https://github.com/pyparsing/pyparsing/"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=657a566233888513e1f07ba13e2f47f1"
+
+SRC_URI[sha256sum] = "18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} = "python3-pprint"
-- 
2.17.1



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

* [PATCH 2/2] python3-pydot: add recipe
  2022-03-03 14:08 [PATCH 0/2] Add recipe python3-pydot and its dependency kai.kang
  2022-03-03 14:08 ` [PATCH 1/2] python3-pyparsing: add recipe kai.kang
@ 2022-03-03 14:08 ` kai.kang
  1 sibling, 0 replies; 6+ messages in thread
From: kai.kang @ 2022-03-03 14:08 UTC (permalink / raw)
  To: openembedded-devel

From: Kai Kang <kai.kang@windriver.com>

Add recipe for python3-pydot which is an interface to Graphviz.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 .../python3-pydot/python3-pydot_1.4.2.bb              | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 meta-python/recipes-extended/python3-pydot/python3-pydot_1.4.2.bb

diff --git a/meta-python/recipes-extended/python3-pydot/python3-pydot_1.4.2.bb b/meta-python/recipes-extended/python3-pydot/python3-pydot_1.4.2.bb
new file mode 100644
index 000000000..fde1029c7
--- /dev/null
+++ b/meta-python/recipes-extended/python3-pydot/python3-pydot_1.4.2.bb
@@ -0,0 +1,11 @@
+SUMMARY = "pydot is is an interface to Graphviz."
+HOMEPAGE = "https://github.com/pydot/pydot"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3f6fa041dfcc7ff7747cfceaa34a3180"
+
+SRC_URI[sha256sum] = "248081a39bcb56784deb018977e428605c1c758f10897a339fce1dd728ff007d"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} = "graphviz python3-pyparsing"
-- 
2.17.1



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

* Re: [oe] [PATCH 1/2] python3-pyparsing: add recipe
  2022-03-03 14:08 ` [PATCH 1/2] python3-pyparsing: add recipe kai.kang
@ 2022-03-03 15:07   ` Tim Orling
  2022-03-03 22:03     ` Kai
  2022-03-03 22:07     ` Khem Raj
  0 siblings, 2 replies; 6+ messages in thread
From: Tim Orling @ 2022-03-03 15:07 UTC (permalink / raw)
  To: kai; +Cc: openembedded-devel

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

On Thu, Mar 3, 2022 at 6:08 AM kai <kai.kang@windriver.com> wrote:

> From: Kai Kang <kai.kang@windriver.com>
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
>  .../python3-pyparsing/python3-pyparsing_3.0.7.bb      | 11 +++++++++++
>  1 file changed, 11 insertions(+)
>  create mode 100644 meta-python/recipes-extended/python3-pyparsing/
> python3-pyparsing_3.0.7.bb
>

python3-pyparsing is in oe-core
https://git.yoctoproject.org/poky/tree/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb


> diff --git a/meta-python/recipes-extended/python3-pyparsing/
> python3-pyparsing_3.0.7.bb
> b/meta-python/recipes-extended/python3-pyparsing/
> python3-pyparsing_3.0.7.bb
> new file mode 100644
> index 000000000..30db080e8
> --- /dev/null
> +++ b/meta-python/recipes-extended/python3-pyparsing/
> python3-pyparsing_3.0.7.bb
> @@ -0,0 +1,11 @@
> +SUMMARY = "The pyparsing module is an alternative approach to creating
> and executing simple grammars."
> +HOMEPAGE = "https://github.com/pyparsing/pyparsing/"
> +
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=657a566233888513e1f07ba13e2f47f1"
> +
> +SRC_URI[sha256sum] =
> "18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS:${PN} = "python3-pprint"
> --
> 2.17.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#95747):
> https://lists.openembedded.org/g/openembedded-devel/message/95747
> Mute This Topic: https://lists.openembedded.org/mt/89525383/924729
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [
> ticotimo@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

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

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

* Re: [oe] [PATCH 1/2] python3-pyparsing: add recipe
  2022-03-03 15:07   ` [oe] " Tim Orling
@ 2022-03-03 22:03     ` Kai
  2022-03-03 22:07     ` Khem Raj
  1 sibling, 0 replies; 6+ messages in thread
From: Kai @ 2022-03-03 22:03 UTC (permalink / raw)
  To: Tim Orling; +Cc: openembedded-devel

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

On 3/3/22 11:07 PM, Tim Orling wrote:
>
>
> On Thu, Mar 3, 2022 at 6:08 AM kai <kai.kang@windriver.com 
> <mailto:kai.kang@windriver.com>> wrote:
>
>     From: Kai Kang <kai.kang@windriver.com
>     <mailto:kai.kang@windriver.com>>
>
>     Signed-off-by: Kai Kang <kai.kang@windriver.com
>     <mailto:kai.kang@windriver.com>>
>     ---
>      .../python3-pyparsing/python3-pyparsing_3.0.7.bb
>     <https://urldefense.com/v3/__http://python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJEVZ1GWQ$>
>         | 11 +++++++++++
>      1 file changed, 11 insertions(+)
>      create mode 100644
>     meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>     <https://urldefense.com/v3/__http://python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJEVZ1GWQ$>
>
>
> python3-pyparsing is in oe-core
> https://git.yoctoproject.org/poky/tree/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb 
> <https://urldefense.com/v3/__https://git.yoctoproject.org/poky/tree/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpKqUDxp6w$>

Thanks a lot. I didn't notice it.

Regards,
Kai

>
>
>     diff --git
>     a/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>     <https://urldefense.com/v3/__http://python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJEVZ1GWQ$>
>     b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>     <https://urldefense.com/v3/__http://python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJEVZ1GWQ$>
>     new file mode 100644
>     index 000000000..30db080e8
>     --- /dev/null
>     +++
>     b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>     <https://urldefense.com/v3/__http://python3-pyparsing_3.0.7.bb__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJEVZ1GWQ$>
>     @@ -0,0 +1,11 @@
>     +SUMMARY = "The pyparsing module is an alternative approach to
>     creating and executing simple grammars."
>     +HOMEPAGE = "https://github.com/pyparsing/pyparsing/
>     <https://urldefense.com/v3/__https://github.com/pyparsing/pyparsing/__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJgDUfgdg$>"
>     +
>     +LICENSE = "MIT"
>     +LIC_FILES_CHKSUM =
>     "file://LICENSE;md5=657a566233888513e1f07ba13e2f47f1"
>     +
>     +SRC_URI[sha256sum] =
>     "18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"
>     +
>     +inherit pypi setuptools3
>     +
>     +RDEPENDS:${PN} = "python3-pprint"
>     -- 
>     2.17.1
>
>
>     -=-=-=-=-=-=-=-=-=-=-=-
>     Links: You receive all messages sent to this group.
>     View/Reply Online (#95747):
>     https://lists.openembedded.org/g/openembedded-devel/message/95747
>     <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/message/95747__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpIOtHRD2g$>
>     Mute This Topic: https://lists.openembedded.org/mt/89525383/924729
>     <https://urldefense.com/v3/__https://lists.openembedded.org/mt/89525383/924729__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpJBh8c8Qw$>
>     Group Owner: openembedded-devel+owner@lists.openembedded.org
>     <mailto:openembedded-devel%2Bowner@lists.openembedded.org>
>     Unsubscribe:
>     https://lists.openembedded.org/g/openembedded-devel/unsub
>     <https://urldefense.com/v3/__https://lists.openembedded.org/g/openembedded-devel/unsub__;!!AjveYdw8EvQ!Ii96tzniLq4xpKdjf-0h11X9TRWDyDdi3CXCOQcl2NzXCjwFq-oh6qCZqpKu20Q_7w$>
>     [ticotimo@gmail.com <mailto:ticotimo@gmail.com>]
>     -=-=-=-=-=-=-=-=-=-=-=-
>

-- 
Kai Kang
Wind River Linux


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

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

* Re: [oe] [PATCH 1/2] python3-pyparsing: add recipe
  2022-03-03 15:07   ` [oe] " Tim Orling
  2022-03-03 22:03     ` Kai
@ 2022-03-03 22:07     ` Khem Raj
  1 sibling, 0 replies; 6+ messages in thread
From: Khem Raj @ 2022-03-03 22:07 UTC (permalink / raw)
  To: Tim Orling; +Cc: kai, openembeded-devel

On Thu, Mar 3, 2022 at 7:07 AM Tim Orling <ticotimo@gmail.com> wrote:
>
>
>
> On Thu, Mar 3, 2022 at 6:08 AM kai <kai.kang@windriver.com> wrote:
>>
>> From: Kai Kang <kai.kang@windriver.com>
>>
>> Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ---
>>  .../python3-pyparsing/python3-pyparsing_3.0.7.bb      | 11 +++++++++++
>>  1 file changed, 11 insertions(+)
>>  create mode 100644 meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>
>
> python3-pyparsing is in oe-core
> https://git.yoctoproject.org/poky/tree/meta/recipes-devtools/python/python3-pyparsing_3.0.7.bb
>

right, I have ignored this for meta-python

>>
>> diff --git a/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>> new file mode 100644
>> index 000000000..30db080e8
>> --- /dev/null
>> +++ b/meta-python/recipes-extended/python3-pyparsing/python3-pyparsing_3.0.7.bb
>> @@ -0,0 +1,11 @@
>> +SUMMARY = "The pyparsing module is an alternative approach to creating and executing simple grammars."
>> +HOMEPAGE = "https://github.com/pyparsing/pyparsing/"
>> +
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=657a566233888513e1f07ba13e2f47f1"
>> +
>> +SRC_URI[sha256sum] = "18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"
>> +
>> +inherit pypi setuptools3
>> +
>> +RDEPENDS:${PN} = "python3-pprint"
>> --
>> 2.17.1
>>
>>
>>
>>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#95750): https://lists.openembedded.org/g/openembedded-devel/message/95750
> Mute This Topic: https://lists.openembedded.org/mt/89525383/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


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

end of thread, other threads:[~2022-03-03 22:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-03 14:08 [PATCH 0/2] Add recipe python3-pydot and its dependency kai.kang
2022-03-03 14:08 ` [PATCH 1/2] python3-pyparsing: add recipe kai.kang
2022-03-03 15:07   ` [oe] " Tim Orling
2022-03-03 22:03     ` Kai
2022-03-03 22:07     ` Khem Raj
2022-03-03 14:08 ` [PATCH 2/2] python3-pydot: " kai.kang

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.