All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] libstatgrab: add recipe for libstatgrab-0.92
@ 2019-09-13 14:05 Jens Rehsack
  2019-09-13 18:04 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Jens Rehsack @ 2019-09-13 14:05 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jens Rehsack

With the recent update at begin of summer, which includes the fix
for nxp bsp issues, it's time to bring libstatgrab to more people
than the few who use it in datacenter monitoring.

Language bindings will follow once base library is settled.

Signed-off-by: Jens Rehsack <sno@netbsd.org>
---
 .../libstatgrab/libstatgrab_0.92.bb           | 26 +++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb

diff --git a/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
new file mode 100644
index 000000000..ab08d8bb2
--- /dev/null
+++ b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
@@ -0,0 +1,26 @@
+DESCRIPTION = "Utilities to collect and visualise system statistics"
+HOMEPAGE = "http://www.i-scream.org/libstatgrab/"
+
+LICENSE = "GPL-2.0+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+DEPENDS = "ncurses"
+
+PACKAGES_prepend = "statgrab statgrab-dbg saidar saidar-dbg ${PN}-mrtg "
+
+SRCREV = "fa7e1d9fe76c3a1a7ade264c746b3f5edc566f3b"
+SRC_URI = "git://github.com/libstatgrab/libstatgrab.git \
+          "
+# Perl5 is for tests only
+EXTRA_OECONF = "--without-perl5 --with-mnttab=/proc/mounts"
+
+S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig
+
+FILES_statgrab = "${bindir}/statgrab"
+FILES_statgrab-dbg = "${bindir}/.debug/statgrab"
+FILES_saidar = "${bindir}/saidar"
+FILES_saidar-dbg = "${bindir}/.debug/saidar"
+FILES_${PN}-mrtg = "${bindir}/statgrab-make-mrtg-config ${bindir}/statgrab-make-mrtg-index"
+RDEPENDS_${PN}-mrtg_append = "perl statgrab"
-- 
2.17.1



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

* Re: [meta-oe][PATCH] libstatgrab: add recipe for libstatgrab-0.92
  2019-09-13 14:05 [meta-oe][PATCH] libstatgrab: add recipe for libstatgrab-0.92 Jens Rehsack
@ 2019-09-13 18:04 ` Khem Raj
  2019-09-14 12:05   ` Jens Rehsack
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2019-09-13 18:04 UTC (permalink / raw)
  To: Jens Rehsack; +Cc: openembeded-devel

Fails

https://errors.yoctoproject.org/Errors/Details/270231/

On Fri, Sep 13, 2019 at 7:05 AM Jens Rehsack <sno@netbsd.org> wrote:
>
> With the recent update at begin of summer, which includes the fix
> for nxp bsp issues, it's time to bring libstatgrab to more people
> than the few who use it in datacenter monitoring.
>
> Language bindings will follow once base library is settled.
>
> Signed-off-by: Jens Rehsack <sno@netbsd.org>
> ---
>  .../libstatgrab/libstatgrab_0.92.bb           | 26 +++++++++++++++++++
>  1 file changed, 26 insertions(+)
>  create mode 100644 meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
>
> diff --git a/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
> new file mode 100644
> index 000000000..ab08d8bb2
> --- /dev/null
> +++ b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
> @@ -0,0 +1,26 @@
> +DESCRIPTION = "Utilities to collect and visualise system statistics"
> +HOMEPAGE = "http://www.i-scream.org/libstatgrab/"
> +
> +LICENSE = "GPL-2.0+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
> +
> +DEPENDS = "ncurses"
> +
> +PACKAGES_prepend = "statgrab statgrab-dbg saidar saidar-dbg ${PN}-mrtg "
> +
> +SRCREV = "fa7e1d9fe76c3a1a7ade264c746b3f5edc566f3b"
> +SRC_URI = "git://github.com/libstatgrab/libstatgrab.git \
> +          "
> +# Perl5 is for tests only
> +EXTRA_OECONF = "--without-perl5 --with-mnttab=/proc/mounts"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit autotools pkgconfig
> +
> +FILES_statgrab = "${bindir}/statgrab"
> +FILES_statgrab-dbg = "${bindir}/.debug/statgrab"
> +FILES_saidar = "${bindir}/saidar"
> +FILES_saidar-dbg = "${bindir}/.debug/saidar"
> +FILES_${PN}-mrtg = "${bindir}/statgrab-make-mrtg-config ${bindir}/statgrab-make-mrtg-index"
> +RDEPENDS_${PN}-mrtg_append = "perl statgrab"
> --
> 2.17.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-oe][PATCH] libstatgrab: add recipe for libstatgrab-0.92
  2019-09-13 18:04 ` Khem Raj
@ 2019-09-14 12:05   ` Jens Rehsack
  0 siblings, 0 replies; 3+ messages in thread
From: Jens Rehsack @ 2019-09-14 12:05 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

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



> Am 13.09.2019 um 20:04 schrieb Khem Raj <raj.khem@gmail.com>:
> 
> Fails
> 
> https://errors.yoctoproject.org/Errors/Details/270231/ <https://errors.yoctoproject.org/Errors/Details/270231/>

Thanks - sending update soon ;)

> On Fri, Sep 13, 2019 at 7:05 AM Jens Rehsack <sno@netbsd.org> wrote:
>> 
>> With the recent update at begin of summer, which includes the fix
>> for nxp bsp issues, it's time to bring libstatgrab to more people
>> than the few who use it in datacenter monitoring.
>> 
>> Language bindings will follow once base library is settled.
>> 
>> Signed-off-by: Jens Rehsack <sno@netbsd.org>
>> ---
>> .../libstatgrab/libstatgrab_0.92.bb           | 26 +++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>> create mode 100644 meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
>> 
>> diff --git a/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
>> new file mode 100644
>> index 000000000..ab08d8bb2
>> --- /dev/null
>> +++ b/meta-oe/recipes-extended/libstatgrab/libstatgrab_0.92.bb
>> @@ -0,0 +1,26 @@
>> +DESCRIPTION = "Utilities to collect and visualise system statistics"
>> +HOMEPAGE = "http://www.i-scream.org/libstatgrab/"
>> +
>> +LICENSE = "GPL-2.0+"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
>> +
>> +DEPENDS = "ncurses"
>> +
>> +PACKAGES_prepend = "statgrab statgrab-dbg saidar saidar-dbg ${PN}-mrtg "
>> +
>> +SRCREV = "fa7e1d9fe76c3a1a7ade264c746b3f5edc566f3b"
>> +SRC_URI = "git://github.com/libstatgrab/libstatgrab.git \
>> +          "
>> +# Perl5 is for tests only
>> +EXTRA_OECONF = "--without-perl5 --with-mnttab=/proc/mounts"
>> +
>> +S = "${WORKDIR}/git"
>> +
>> +inherit autotools pkgconfig
>> +
>> +FILES_statgrab = "${bindir}/statgrab"
>> +FILES_statgrab-dbg = "${bindir}/.debug/statgrab"
>> +FILES_saidar = "${bindir}/saidar"
>> +FILES_saidar-dbg = "${bindir}/.debug/saidar"
>> +FILES_${PN}-mrtg = "${bindir}/statgrab-make-mrtg-config ${bindir}/statgrab-make-mrtg-index"
>> +RDEPENDS_${PN}-mrtg_append = "perl statgrab"
>> --
>> 2.17.1
>> 
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

--
Jens Rehsack - rehsack@gmail.com


[-- Attachment #2: Message signed with OpenPGP --]
[-- Type: application/pgp-signature, Size: 849 bytes --]

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

end of thread, other threads:[~2019-09-14 12:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-13 14:05 [meta-oe][PATCH] libstatgrab: add recipe for libstatgrab-0.92 Jens Rehsack
2019-09-13 18:04 ` Khem Raj
2019-09-14 12:05   ` Jens Rehsack

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.