All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][meta-oe] memstat: add memstat recipe
@ 2014-07-08  8:44 rongqing.li
  2014-07-09  2:59 ` Rongqing Li
  0 siblings, 1 reply; 5+ messages in thread
From: rongqing.li @ 2014-07-08  8:44 UTC (permalink / raw)
  To: openembedded-devel

From: Roy Li <rongqing.li@windriver.com>

Signed-off-by: Roy Li <rongqing.li@windriver.com>
---
 meta-oe/recipes-devtools/memstat/memstat_1.0.bb |   24 +++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb

diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
new file mode 100644
index 0000000..8c8882e
--- /dev/null
+++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
@@ -0,0 +1,24 @@
+SUMMARY = "Display virtual memory allocation"
+DESCRIPTION = "Lists all the processes, executables, and shared libraries \
+that are using up virtual memory. It's helpful to see how the shared memory \
+is used and which 'old' libs are loaded. "
+HOMEPAGE = "http://memstattool.sourceforge.net/"
+SECTION = "devtool"
+
+LICENSE = "GPLv2"
+
+S = "${WORKDIR}/memstattool"
+
+LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb"
+
+SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \
+          "
+SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462"
+SRC_URI[sha256sum] = "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94"
+
+do_install_append(){
+    install -d ${D}${bindir}
+    install -m 0755 memstat ${D}${bindir}
+    install -d ${D}/etc
+    install -m 0755 memstat.conf ${D}/etc
+}
-- 
1.7.10.4



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

* Re: [PATCH][meta-oe] memstat: add memstat recipe
  2014-07-08  8:44 [PATCH][meta-oe] memstat: add memstat recipe rongqing.li
@ 2014-07-09  2:59 ` Rongqing Li
  2014-07-15  8:44   ` Matthieu CRAPET
  0 siblings, 1 reply; 5+ messages in thread
From: Rongqing Li @ 2014-07-09  2:59 UTC (permalink / raw)
  To: openembedded-devel

Drop this patch, HuangJ has sent out a similar patch

-Roy

On 07/08/2014 04:44 PM, rongqing.li@windriver.com wrote:
> From: Roy Li <rongqing.li@windriver.com>
>
> Signed-off-by: Roy Li <rongqing.li@windriver.com>
> ---
>   meta-oe/recipes-devtools/memstat/memstat_1.0.bb |   24 +++++++++++++++++++++++
>   1 file changed, 24 insertions(+)
>   create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>
> diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> new file mode 100644
> index 0000000..8c8882e
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> @@ -0,0 +1,24 @@
> +SUMMARY = "Display virtual memory allocation"
> +DESCRIPTION = "Lists all the processes, executables, and shared libraries \
> +that are using up virtual memory. It's helpful to see how the shared memory \
> +is used and which 'old' libs are loaded. "
> +HOMEPAGE = "http://memstattool.sourceforge.net/"
> +SECTION = "devtool"
> +
> +LICENSE = "GPLv2"
> +
> +S = "${WORKDIR}/memstattool"
> +
> +LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb"
> +
> +SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \
> +          "
> +SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462"
> +SRC_URI[sha256sum] = "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94"
> +
> +do_install_append(){
> +    install -d ${D}${bindir}
> +    install -m 0755 memstat ${D}${bindir}
> +    install -d ${D}/etc
> +    install -m 0755 memstat.conf ${D}/etc
> +}
>

-- 
Best Reagrds,
Roy | RongQing Li


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

* Re: [PATCH][meta-oe] memstat: add memstat recipe
  2014-07-09  2:59 ` Rongqing Li
@ 2014-07-15  8:44   ` Matthieu CRAPET
  2014-07-15  8:47     ` Rongqing Li
  0 siblings, 1 reply; 5+ messages in thread
From: Matthieu CRAPET @ 2014-07-15  8:44 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

Hi,

A manpage is included in the sources but not installed. This would be nice to package it.

Regards,
Matthieu


-----Message d'origine-----
De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Rongqing Li
Envoyé : mercredi 9 juillet 2014 04:59
À : openembedded-devel@lists.openembedded.org
Objet : Re: [oe] [PATCH][meta-oe] memstat: add memstat recipe

Drop this patch, HuangJ has sent out a similar patch

-Roy

On 07/08/2014 04:44 PM, rongqing.li@windriver.com wrote:
> From: Roy Li <rongqing.li@windriver.com>
>
> Signed-off-by: Roy Li <rongqing.li@windriver.com>
> ---
>   meta-oe/recipes-devtools/memstat/memstat_1.0.bb |   24 +++++++++++++++++++++++
>   1 file changed, 24 insertions(+)
>   create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>
> diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb 
> b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> new file mode 100644
> index 0000000..8c8882e
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> @@ -0,0 +1,24 @@
> +SUMMARY = "Display virtual memory allocation"
> +DESCRIPTION = "Lists all the processes, executables, and shared 
> +libraries \ that are using up virtual memory. It's helpful to see how 
> +the shared memory \ is used and which 'old' libs are loaded. "
> +HOMEPAGE = "http://memstattool.sourceforge.net/"
> +SECTION = "devtool"
> +
> +LICENSE = "GPLv2"
> +
> +S = "${WORKDIR}/memstattool"
> +
> +LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb"
> +
> +SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \
> +          "
> +SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462"
> +SRC_URI[sha256sum] = "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94"
> +
> +do_install_append(){
> +    install -d ${D}${bindir}
> +    install -m 0755 memstat ${D}${bindir}
> +    install -d ${D}/etc
> +    install -m 0755 memstat.conf ${D}/etc }
>

--
Best Reagrds,
Roy | RongQing Li
--
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [PATCH][meta-oe] memstat: add memstat recipe
  2014-07-15  8:44   ` Matthieu CRAPET
@ 2014-07-15  8:47     ` Rongqing Li
  2014-07-15  9:24       ` Huang, Jie (Jackie)
  0 siblings, 1 reply; 5+ messages in thread
From: Rongqing Li @ 2014-07-15  8:47 UTC (permalink / raw)
  To: openembedded-devel



On 07/15/2014 04:44 PM, Matthieu CRAPET wrote:
> Hi,
>
> A manpage is included in the sources but not installed. This would be nice to package it.
>
> Regards,
> Matthieu


Cc: HuangJie

-Roy
>
>
> -----Message d'origine-----
> De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Rongqing Li
> Envoyé : mercredi 9 juillet 2014 04:59
> À : openembedded-devel@lists.openembedded.org
> Objet : Re: [oe] [PATCH][meta-oe] memstat: add memstat recipe
>
> Drop this patch, HuangJ has sent out a similar patch
>
> -Roy
>
> On 07/08/2014 04:44 PM, rongqing.li@windriver.com wrote:
>> From: Roy Li <rongqing.li@windriver.com>
>>
>> Signed-off-by: Roy Li <rongqing.li@windriver.com>
>> ---
>>    meta-oe/recipes-devtools/memstat/memstat_1.0.bb |   24 +++++++++++++++++++++++
>>    1 file changed, 24 insertions(+)
>>    create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>>
>> diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>> b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>> new file mode 100644
>> index 0000000..8c8882e
>> --- /dev/null
>> +++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
>> @@ -0,0 +1,24 @@
>> +SUMMARY = "Display virtual memory allocation"
>> +DESCRIPTION = "Lists all the processes, executables, and shared
>> +libraries \ that are using up virtual memory. It's helpful to see how
>> +the shared memory \ is used and which 'old' libs are loaded. "
>> +HOMEPAGE = "http://memstattool.sourceforge.net/"
>> +SECTION = "devtool"
>> +
>> +LICENSE = "GPLv2"
>> +
>> +S = "${WORKDIR}/memstattool"
>> +
>> +LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb"
>> +
>> +SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \
>> +          "
>> +SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462"
>> +SRC_URI[sha256sum] = "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94"
>> +
>> +do_install_append(){
>> +    install -d ${D}${bindir}
>> +    install -m 0755 memstat ${D}${bindir}
>> +    install -d ${D}/etc
>> +    install -m 0755 memstat.conf ${D}/etc }
>>
>
> --
> Best Reagrds,
> Roy | RongQing Li
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>

-- 
Best Reagrds,
Roy | RongQing Li


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

* Re: [PATCH][meta-oe] memstat: add memstat recipe
  2014-07-15  8:47     ` Rongqing Li
@ 2014-07-15  9:24       ` Huang, Jie (Jackie)
  0 siblings, 0 replies; 5+ messages in thread
From: Huang, Jie (Jackie) @ 2014-07-15  9:24 UTC (permalink / raw)
  To: Li, Rongqing, openembedded-devel@lists.openembedded.org

> 
> 
> 
> On 07/15/2014 04:44 PM, Matthieu CRAPET wrote:
> > Hi,
> >
> > A manpage is included in the sources but not installed. This would be nice to package it.

Sure, it make senses, I will add it and send v2.

Thanks,
Jackie

> >
> > Regards,
> > Matthieu
> 
> 
> Cc: HuangJie
> 
> -Roy
> >
> >
> > -----Message d'origine-----
> > De : openembedded-devel-bounces@lists.openembedded.org
> > [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part
> > de Rongqing Li Envoyé : mercredi 9 juillet 2014 04:59 À :
> > openembedded-devel@lists.openembedded.org
> > Objet : Re: [oe] [PATCH][meta-oe] memstat: add memstat recipe
> >
> > Drop this patch, HuangJ has sent out a similar patch
> >
> > -Roy
> >
> > On 07/08/2014 04:44 PM, rongqing.li@windriver.com wrote:
> >> From: Roy Li <rongqing.li@windriver.com>
> >>
> >> Signed-off-by: Roy Li <rongqing.li@windriver.com>
> >> ---
> >>    meta-oe/recipes-devtools/memstat/memstat_1.0.bb |   24 +++++++++++++++++++++++
> >>    1 file changed, 24 insertions(+)
> >>    create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> >>
> >> diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> >> b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> >> new file mode 100644
> >> index 0000000..8c8882e
> >> --- /dev/null
> >> +++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb
> >> @@ -0,0 +1,24 @@
> >> +SUMMARY = "Display virtual memory allocation"
> >> +DESCRIPTION = "Lists all the processes, executables, and shared
> >> +libraries \ that are using up virtual memory. It's helpful to see
> >> +how the shared memory \ is used and which 'old' libs are loaded. "
> >> +HOMEPAGE = "http://memstattool.sourceforge.net/"
> >> +SECTION = "devtool"
> >> +
> >> +LICENSE = "GPLv2"
> >> +
> >> +S = "${WORKDIR}/memstattool"
> >> +
> >> +LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb"
> >> +
> >> +SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \
> >> +          "
> >> +SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462"
> >> +SRC_URI[sha256sum] =
> "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94"
> >> +
> >> +do_install_append(){
> >> +    install -d ${D}${bindir}
> >> +    install -m 0755 memstat ${D}${bindir}
> >> +    install -d ${D}/etc
> >> +    install -m 0755 memstat.conf ${D}/etc }
> >>
> >
> > --
> > Best Reagrds,
> > Roy | RongQing Li
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> 
> --
> Best Reagrds,
> Roy | RongQing Li


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

end of thread, other threads:[~2014-07-15  9:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-08  8:44 [PATCH][meta-oe] memstat: add memstat recipe rongqing.li
2014-07-09  2:59 ` Rongqing Li
2014-07-15  8:44   ` Matthieu CRAPET
2014-07-15  8:47     ` Rongqing Li
2014-07-15  9:24       ` Huang, Jie (Jackie)

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.