* [PATCH] pstree: added reciept
@ 2010-11-15 17:17 Dvorkin Dmitry
2010-11-15 18:12 ` Koen Kooi
0 siblings, 1 reply; 5+ messages in thread
From: Dvorkin Dmitry @ 2010-11-15 17:17 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Dvorkin Dmitry <dvorkin@tibbo.com>
---
recipes/pstree/pstree_2.33.bb | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
create mode 100644 recipes/pstree/pstree_2.33.bb
diff --git a/recipes/pstree/pstree_2.33.bb b/recipes/pstree/pstree_2.33.bb
new file mode 100644
index 0000000..4695323
--- /dev/null
+++ b/recipes/pstree/pstree_2.33.bb
@@ -0,0 +1,24 @@
+AUTHOR = "Dvorkin Dmitry dvorkin@tibbo.com"
+SECTION = "base"
+DESCRIPTION = "pstree cli tool to nicely show processes tree"
+LICENSE = "GPL"
+DEPENDS = "libnl"
+PR = "r0"
+
+S = "${WORKDIR}"
+
+do_compile() {
+ ${CC} -O ${CFLAGS} ${LDFLAGS} -o pstree pstree.c
+}
+
+do_install() {
+ install -d ${D}/bin/
+ install -m 0755 pstree ${D}/bin/
+}
+
+SRC_URI = "\
+ ftp://ftp.thp.uni-duisburg.de/pub/source/${PN}-${PV}.tar.gz \
+"
+
+SRC_URI[md5sum] = "b0a85caacd85f78bd83700afa86ec2e9"
+SRC_URI[sha256sum] = "0f06116208cf15932cf99785d001c053e523e0aed474b936858f1b7f61a6c990"
--
1.6.4.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] pstree: added reciept
2010-11-15 17:17 [PATCH] pstree: added reciept Dvorkin Dmitry
@ 2010-11-15 18:12 ` Koen Kooi
2010-11-15 18:15 ` Dvorkin Dmitry
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2010-11-15 18:12 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 15-11-10 18:17, Dvorkin Dmitry wrote:
> +AUTHOR = "Dvorkin Dmitry dvorkin@tibbo.com"
Unless your name is Fred Hucht you're not the author of pstree.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFM4Xf2MkyGM64RGpERAt3/AJ9WUVV5qm/KjKmvvUiLIU0RRqPU2QCfYfqv
7ZgMBgQnFbyAs/KqBM+z99o=
=sEUu
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pstree: added reciept
2010-11-15 18:12 ` Koen Kooi
@ 2010-11-15 18:15 ` Dvorkin Dmitry
0 siblings, 0 replies; 5+ messages in thread
From: Dvorkin Dmitry @ 2010-11-15 18:15 UTC (permalink / raw)
To: openembedded-devel
I thought, I have to write an author of receipt... sorry!
15.11.2010 21:12, Koen Kooi пишет:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 15-11-10 18:17, Dvorkin Dmitry wrote:
>
>
>> +AUTHOR = "Dvorkin Dmitry dvorkin@tibbo.com"
>>
> Unless your name is Fred Hucht you're not the author of pstree.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
>
> iD8DBQFM4Xf2MkyGM64RGpERAt3/AJ9WUVV5qm/KjKmvvUiLIU0RRqPU2QCfYfqv
> 7ZgMBgQnFbyAs/KqBM+z99o=
> =sEUu
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] pstree: added reciept
@ 2010-11-15 18:20 Dvorkin Dmitry
2010-11-15 18:30 ` Michael Smith
0 siblings, 1 reply; 5+ messages in thread
From: Dvorkin Dmitry @ 2010-11-15 18:20 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Dvorkin Dmitry <dvorkin@tibbo.com>
---
recipes/pstree/pstree_2.33.bb | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
create mode 100644 recipes/pstree/pstree_2.33.bb
diff --git a/recipes/pstree/pstree_2.33.bb b/recipes/pstree/pstree_2.33.bb
new file mode 100644
index 0000000..f875f46
--- /dev/null
+++ b/recipes/pstree/pstree_2.33.bb
@@ -0,0 +1,23 @@
+SECTION = "base"
+DESCRIPTION = "pstree cli tool to nicely show processes tree"
+LICENSE = "GPL"
+DEPENDS = "libnl"
+PR = "r0"
+
+S = "${WORKDIR}"
+
+do_compile() {
+ ${CC} -O ${CFLAGS} ${LDFLAGS} -o pstree pstree.c
+}
+
+do_install() {
+ install -d ${D}/bin/
+ install -m 0755 pstree ${D}/bin/
+}
+
+SRC_URI = "\
+ ftp://ftp.thp.uni-duisburg.de/pub/source/${PN}-${PV}.tar.gz \
+"
+
+SRC_URI[md5sum] = "b0a85caacd85f78bd83700afa86ec2e9"
+SRC_URI[sha256sum] = "0f06116208cf15932cf99785d001c053e523e0aed474b936858f1b7f61a6c990"
--
1.6.4.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] pstree: added reciept
2010-11-15 18:20 Dvorkin Dmitry
@ 2010-11-15 18:30 ` Michael Smith
0 siblings, 0 replies; 5+ messages in thread
From: Michael Smith @ 2010-11-15 18:30 UTC (permalink / raw)
To: openembedded-devel
Dvorkin Dmitry wrote:
> Signed-off-by: Dvorkin Dmitry <dvorkin@tibbo.com>
> ---
> recipes/pstree/pstree_2.33.bb | 23 +++++++++++++++++++++++
> 1 files changed, 23 insertions(+), 0 deletions(-)
> create mode 100644 recipes/pstree/pstree_2.33.bb
Thanks, pushed.
In future if you send a second or third version of the patch, you can
change [PATCH] to [PATCH v2]. It makes it a bit easier to spot in
Patchwork (http://patchwork.openembedded.org/).
Mike
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-11-15 18:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-15 17:17 [PATCH] pstree: added reciept Dvorkin Dmitry
2010-11-15 18:12 ` Koen Kooi
2010-11-15 18:15 ` Dvorkin Dmitry
-- strict thread matches above, loose matches on Subject: below --
2010-11-15 18:20 Dvorkin Dmitry
2010-11-15 18:30 ` Michael Smith
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.