* [meta-oe][PATCH] parallel: Add recipe for GUN Parallel
@ 2024-11-05 10:10 peng.zhang1.cn
2024-11-05 11:07 ` [oe] " Rasmus Villemoes
0 siblings, 1 reply; 5+ messages in thread
From: peng.zhang1.cn @ 2024-11-05 10:10 UTC (permalink / raw)
To: openembedded-devel
From: Zhang Peng <peng.zhang1.cn@windriver.com>
This recipe adds the parallel package, a shell tool for executing jobs
in parallel using one or more computers.
Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
---
.../parallel/parallel_20150322.bb | 22 +++++++++++++++++++
1 file changed, 22 insertions(+)
create mode 100644 meta-oe/recipes-extended/parallel/parallel_20150322.bb
diff --git a/meta-oe/recipes-extended/parallel/parallel_20150322.bb b/meta-oe/recipes-extended/parallel/parallel_20150322.bb
new file mode 100644
index 000000000..e65cb0402
--- /dev/null
+++ b/meta-oe/recipes-extended/parallel/parallel_20150322.bb
@@ -0,0 +1,22 @@
+SUMMARY = "GNU Parallel - A shell tool for executing jobs in parallel using one or more computers"
+DESCRIPTION = "GNU Parallel is a command-line tool for executing jobs in parallel on one or more computers. \
+It allows users to run multiple commands simultaneously, making it easier to process large batches of tasks."
+
+HOMEPAGE = "https://www.gnu.org/software/parallel/"
+LICENSE = "GPL-3.0-only"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
+
+SRC_URI = "https://ftp.gnu.org/gnu/parallel/parallel-${PV}.tar.bz2"
+SRC_URI[sha256sum] = "2c00799cbbc07a57b4c1411bb9fb787ef2d2f6d1ff491093258baf4fda0a52ff"
+
+inherit autotools
+
+DEPENDS += "perl"
+
+RDEPENDS:${PN} += "perl \
+ perl-module-ipc-open3 \
+ perl-module-getopt-long \
+ perl-module-file-temp \
+ perl-module-filehandle \
+ perl-module-file-glob \
+"
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [oe] [meta-oe][PATCH] parallel: Add recipe for GUN Parallel
2024-11-05 10:10 [meta-oe][PATCH] parallel: Add recipe for GUN Parallel peng.zhang1.cn
@ 2024-11-05 11:07 ` Rasmus Villemoes
2024-11-05 23:15 ` Zhang, Peng (Paul) (CN)
0 siblings, 1 reply; 5+ messages in thread
From: Rasmus Villemoes @ 2024-11-05 11:07 UTC (permalink / raw)
To: openembedded-devel; +Cc: peng.zhang1.cn
On Tue, Nov 05 2024, "peng.zhang1.cn via lists.openembedded.org" <peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
> From: Zhang Peng <peng.zhang1.cn@windriver.com>
>
> This recipe adds the parallel package, a shell tool for executing jobs
> in parallel using one or more computers.
I often use GNU parallel, and might find some use for it on an embedded
target, so makes sense to me. However
> Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
> ---
> .../parallel/parallel_20150322.bb | 22 +++++++++++++++++++
> 1 file changed, 22 insertions(+)
> create mode 100644
> meta-oe/recipes-extended/parallel/parallel_20150322.bb
Why such an old version? It's not a dead project, there was a release
just a few weeks ago. If it's because of some dependencies that the
newer releases have grown and which are hard/impossible to satisfy in
oe, that should be mentioned in the commit message.
Rasmus
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [oe] [meta-oe][PATCH] parallel: Add recipe for GUN Parallel
2024-11-05 11:07 ` [oe] " Rasmus Villemoes
@ 2024-11-05 23:15 ` Zhang, Peng (Paul) (CN)
2024-11-06 0:26 ` Khem Raj
0 siblings, 1 reply; 5+ messages in thread
From: Zhang, Peng (Paul) (CN) @ 2024-11-05 23:15 UTC (permalink / raw)
To: Rasmus Villemoes, openembedded-devel
On 11/5/2024 7:07 PM, Rasmus Villemoes wrote:
> CAUTION: This email comes from a non Wind River email account!
> Do not click links or open attachments unless you recognize the sender and know the content is safe.
>
> On Tue, Nov 05 2024, "peng.zhang1.cn via lists.openembedded.org" <peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
>
>> From: Zhang Peng <peng.zhang1.cn@windriver.com>
>>
>> This recipe adds the parallel package, a shell tool for executing jobs
>> in parallel using one or more computers.
> I often use GNU parallel, and might find some use for it on an embedded
> target, so makes sense to me. However
>
>> Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
>> ---
>> .../parallel/parallel_20150322.bb | 22 +++++++++++++++++++
>> 1 file changed, 22 insertions(+)
>> create mode 100644
>> meta-oe/recipes-extended/parallel/parallel_20150322.bb
> Why such an old version? It's not a dead project, there was a release
> just a few weeks ago. If it's because of some dependencies that the
> newer releases have grown and which are hard/impossible to satisfy in
> oe, that should be mentioned in the commit message.
The first version I used was 20150322, which was already quite
user-friendly and straightforward to compile and deploy. Given that this
is the initial version of OE, I prioritized getting it working first,
with plans to upgrade as new features or requirements arise in future
iterations.
> Rasmus
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [oe] [meta-oe][PATCH] parallel: Add recipe for GUN Parallel
2024-11-05 23:15 ` Zhang, Peng (Paul) (CN)
@ 2024-11-06 0:26 ` Khem Raj
2024-11-06 10:52 ` Peng Zhang
0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2024-11-06 0:26 UTC (permalink / raw)
To: peng.zhang1.cn; +Cc: Rasmus Villemoes, openembedded-devel
On Tue, Nov 5, 2024 at 3:15 PM Zhang, Peng (Paul) (CN) via
lists.openembedded.org
<peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
>
>
> On 11/5/2024 7:07 PM, Rasmus Villemoes wrote:
> > CAUTION: This email comes from a non Wind River email account!
> > Do not click links or open attachments unless you recognize the sender and know the content is safe.
> >
> > On Tue, Nov 05 2024, "peng.zhang1.cn via lists.openembedded.org" <peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
> >
> >> From: Zhang Peng <peng.zhang1.cn@windriver.com>
> >>
> >> This recipe adds the parallel package, a shell tool for executing jobs
> >> in parallel using one or more computers.
> > I often use GNU parallel, and might find some use for it on an embedded
> > target, so makes sense to me. However
> >
> >> Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
> >> ---
> >> .../parallel/parallel_20150322.bb | 22 +++++++++++++++++++
> >> 1 file changed, 22 insertions(+)
> >> create mode 100644
> >> meta-oe/recipes-extended/parallel/parallel_20150322.bb
> > Why such an old version? It's not a dead project, there was a release
> > just a few weeks ago. If it's because of some dependencies that the
> > newer releases have grown and which are hard/impossible to satisfy in
> > oe, that should be mentioned in the commit message.
> The first version I used was 20150322, which was already quite
> user-friendly and straightforward to compile and deploy. Given that this
> is the initial version of OE, I prioritized getting it working first,
> with plans to upgrade as new features or requirements arise in future
> iterations.
It's better to get the latest version to begin with here.
> > Rasmus
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#113680): https://lists.openembedded.org/g/openembedded-devel/message/113680
> Mute This Topic: https://lists.openembedded.org/mt/109403275/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] 5+ messages in thread
* Re: [oe] [meta-oe][PATCH] parallel: Add recipe for GUN Parallel
2024-11-06 0:26 ` Khem Raj
@ 2024-11-06 10:52 ` Peng Zhang
0 siblings, 0 replies; 5+ messages in thread
From: Peng Zhang @ 2024-11-06 10:52 UTC (permalink / raw)
To: Khem Raj; +Cc: Rasmus Villemoes, openembedded-devel
在 11/6/24 08:26, Khem Raj 写道:
> CAUTION: This email comes from a non Wind River email account!
> Do not click links or open attachments unless you recognize the sender and know the content is safe.
>
> On Tue, Nov 5, 2024 at 3:15 PM Zhang, Peng (Paul) (CN) via
> lists.openembedded.org
> <peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
>>
>> On 11/5/2024 7:07 PM, Rasmus Villemoes wrote:
>>> CAUTION: This email comes from a non Wind River email account!
>>> Do not click links or open attachments unless you recognize the sender and know the content is safe.
>>>
>>> On Tue, Nov 05 2024, "peng.zhang1.cn via lists.openembedded.org" <peng.zhang1.cn=windriver.com@lists.openembedded.org> wrote:
>>>
>>>> From: Zhang Peng <peng.zhang1.cn@windriver.com>
>>>>
>>>> This recipe adds the parallel package, a shell tool for executing jobs
>>>> in parallel using one or more computers.
>>> I often use GNU parallel, and might find some use for it on an embedded
>>> target, so makes sense to me. However
>>>
>>>> Signed-off-by: Zhang Peng <peng.zhang1.cn@windriver.com>
>>>> ---
>>>> .../parallel/parallel_20150322.bb | 22 +++++++++++++++++++
>>>> 1 file changed, 22 insertions(+)
>>>> create mode 100644
>>>> meta-oe/recipes-extended/parallel/parallel_20150322.bb
>>> Why such an old version? It's not a dead project, there was a release
>>> just a few weeks ago. If it's because of some dependencies that the
>>> newer releases have grown and which are hard/impossible to satisfy in
>>> oe, that should be mentioned in the commit message.
>> The first version I used was 20150322, which was already quite
>> user-friendly and straightforward to compile and deploy. Given that this
>> is the initial version of OE, I prioritized getting it working first,
>> with plans to upgrade as new features or requirements arise in future
>> iterations.
> It's better to get the latest version to begin with here.
v2 sent, the version is 20241022
//peng
>
>>> Rasmus
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#113680): https://lists.openembedded.org/g/openembedded-devel/message/113680
>> Mute This Topic: https://lists.openembedded.org/mt/109403275/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] 5+ messages in thread
end of thread, other threads:[~2024-11-06 10:53 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-05 10:10 [meta-oe][PATCH] parallel: Add recipe for GUN Parallel peng.zhang1.cn
2024-11-05 11:07 ` [oe] " Rasmus Villemoes
2024-11-05 23:15 ` Zhang, Peng (Paul) (CN)
2024-11-06 0:26 ` Khem Raj
2024-11-06 10:52 ` Peng Zhang
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.