All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH v2] cpulimit: introduce support for this package
@ 2019-03-11 20:11 BOUBAKER Bassem
  2019-03-11 20:20 ` BOUBAKER Bassem
  0 siblings, 1 reply; 3+ messages in thread
From: BOUBAKER Bassem @ 2019-03-11 20:11 UTC (permalink / raw)
  To: openembedded-devel

* Now, cpulimit recipe is put under recipes-support. Binary will be installed by the recipe under /usr/sbin

         # cpulimit -h
         Usage: cpulimit [OPTIONS...] TARGET
                 OPTIONS
                 -l, --limit=N          percentage of cpu allowed from 0 to 100 (required)
                 -v, --verbose          show control statistics
                 -z, --lazy             exit if there is no target process, or if it dies
                 -i, --include-children limit also the children processes
                 -h, --help             display this help and exit
                 TARGET must be exactly one of these:
                 -p, --pid=N            pid of the process (implies -z)
                 -e, --exe=FILE         name of the executable program file or path name
                 COMMAND [ARGS]         run this command and limit it (implies -z)

                 Report bugs to <marlonx80@hotmail.com>.

Signed-off-by: Bassem Boubaker <bassem.boubaker@actia.fr>
---
 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb

diff --git a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
new file mode 100644
index 0000000..8eaa928
--- /dev/null
+++ b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
@@ -0,0 +1,19 @@
+SUMMARY = "cpulimit is a tool which limits the CPU usage of a process"
+HOMEPAGE = "http://cpulimit.sourceforge.net"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
+SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
+
+SRC_URI = "git://git@github.com/opsengine/cpulimit.git;protocol=https"
+
+S = "${WORKDIR}/git"
+
+do_compile() {
+    oe_runmake all
+}
+do_install() {
+    install -d ${D}${sbindir}
+    install -m 0755 ${B}/src/${PN} ${D}${sbindir}/
+}
+
+CFLAGS += "${LDFLAGS}"
\ No newline at end of file
-- 
2.7.4



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

* Re: [meta-oe][PATCH v2] cpulimit: introduce support for this package
  2019-03-11 20:11 [meta-oe][PATCH v2] cpulimit: introduce support for this package BOUBAKER Bassem
@ 2019-03-11 20:20 ` BOUBAKER Bassem
  2019-03-14 14:23   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: BOUBAKER Bassem @ 2019-03-11 20:20 UTC (permalink / raw)
  To: openembedded-devel

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

On Monday 11 Mar 2019 à 21:11:36 (+0100), BOUBAKER Bassem wrote:
> * Now, cpulimit recipe is put under recipes-support. Binary will be installed by the recipe under /usr/sbin
> 
>          # cpulimit -h
>          Usage: cpulimit [OPTIONS...] TARGET
>                  OPTIONS
>                  -l, --limit=N          percentage of cpu allowed from 0 to 100 (required)
>                  -v, --verbose          show control statistics
>                  -z, --lazy             exit if there is no target process, or if it dies
>                  -i, --include-children limit also the children processes
>                  -h, --help             display this help and exit
>                  TARGET must be exactly one of these:
>                  -p, --pid=N            pid of the process (implies -z)
>                  -e, --exe=FILE         name of the executable program file or path name
>                  COMMAND [ARGS]         run this command and limit it (implies -z)
> 
>                  Report bugs to <marlonx80@hotmail.com>.
> 
> Signed-off-by: Bassem Boubaker <bassem.boubaker@actia.fr>
> ---
>  meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>  create mode 100644 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> 
> diff --git a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> new file mode 100644
> index 0000000..8eaa928
> --- /dev/null
> +++ b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> @@ -0,0 +1,19 @@
> +SUMMARY = "cpulimit is a tool which limits the CPU usage of a process"
> +HOMEPAGE = "http://cpulimit.sourceforge.net"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
> +SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
> +
> +SRC_URI = "git://git@github.com/opsengine/cpulimit.git;protocol=https"
> +
> +S = "${WORKDIR}/git"
> +
> +do_compile() {
> +    oe_runmake all
> +}
> +do_install() {
> +    install -d ${D}${sbindir}
> +    install -m 0755 ${B}/src/${PN} ${D}${sbindir}/
> +}
> +
> +CFLAGS += "${LDFLAGS}"

oooups didn't see it. will be fixed
> \ No newline at end of file

> -- 
> 2.7.4
> 

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-cpulimit-introduce-support-for-this-package.patch --]
[-- Type: text/x-diff; name="0001-cpulimit-introduce-support-for-this-package.patch", Size: 2261 bytes --]

From 35e686b6cf443d4de44dd431ebea5cfadc9e5880 Mon Sep 17 00:00:00 2001
From: Bassem Boubaker <bassem.boubaker@actia.fr>
Date: Fri, 8 Mar 2019 17:30:04 +0100
Subject: [PATCH]     cpulimit: introduce support for this package

    * Now, cpulimit recipe is put under recipes-support. Binary will be installed by the recipe under /usr/sbin

	# cpulimit -h
	Usage: cpulimit [OPTIONS...] TARGET
		OPTIONS
		-l, --limit=N          percentage of cpu allowed from 0 to 100 (required)
		-v, --verbose          show control statistics
		-z, --lazy             exit if there is no target process, or if it dies
		-i, --include-children limit also the children processes
		-h, --help             display this help and exit
		TARGET must be exactly one of these:
		-p, --pid=N            pid of the process (implies -z)
		-e, --exe=FILE         name of the executable program file or path name
		COMMAND [ARGS]         run this command and limit it (implies -z)

		Report bugs to <marlonx80@hotmail.com>.

Signed-off-by: Bassem Boubaker <bassem.boubaker@actia.fr>
---
 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb

diff --git a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
new file mode 100644
index 0000000..d0c524e
--- /dev/null
+++ b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
@@ -0,0 +1,22 @@
+DESCRIPTION = "cpulimit is a tool which limits the CPU usage of a process from bash prespective"
+HOMEPAGE = "http://cpulimit.sourceforge.net/"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
+
+PR = "r0"
+
+SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
+
+SRC_URI = "git://git@github.com/opsengine/cpulimit.git;protocol=https"
+
+SRC_URI[md5sum] = "4f805fe26c8cf28e8251d64d0ace21d4"
+SRC_URI[sha256sum] = "544516d0d80c685b1df1344a71c900e845270551cf210300fa4d13876e10817a"
+
+inherit autotools
+
+S = "${WORKDIR}/git"
+
+do_install() {
+        install -d ${D}${sbindir}
+        install -m 0755 ${S}/src/${PN} ${D}${sbindir}/
+}
\ No newline at end of file
-- 
2.7.4


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

* Re: [meta-oe][PATCH v2] cpulimit: introduce support for this package
  2019-03-11 20:20 ` BOUBAKER Bassem
@ 2019-03-14 14:23   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2019-03-14 14:23 UTC (permalink / raw)
  To: BOUBAKER Bassem; +Cc: openembedded-devel

musl build fails.
https://errors.yoctoproject.org/Errors/Details/232895/

On Mon, Mar 11, 2019 at 10:30 PM BOUBAKER Bassem via
Openembedded-devel <openembedded-devel@lists.openembedded.org> wrote:
>
> On Monday 11 Mar 2019 à 21:11:36 (+0100), BOUBAKER Bassem wrote:
> > * Now, cpulimit recipe is put under recipes-support. Binary will be installed by the recipe under /usr/sbin
> >
> >          # cpulimit -h
> >          Usage: cpulimit [OPTIONS...] TARGET
> >                  OPTIONS
> >                  -l, --limit=N          percentage of cpu allowed from 0 to 100 (required)
> >                  -v, --verbose          show control statistics
> >                  -z, --lazy             exit if there is no target process, or if it dies
> >                  -i, --include-children limit also the children processes
> >                  -h, --help             display this help and exit
> >                  TARGET must be exactly one of these:
> >                  -p, --pid=N            pid of the process (implies -z)
> >                  -e, --exe=FILE         name of the executable program file or path name
> >                  COMMAND [ARGS]         run this command and limit it (implies -z)
> >
> >                  Report bugs to <marlonx80@hotmail.com>.
> >
> > Signed-off-by: Bassem Boubaker <bassem.boubaker@actia.fr>
> > ---
> >  meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb | 19 +++++++++++++++++++
> >  1 file changed, 19 insertions(+)
> >  create mode 100644 meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> >
> > diff --git a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> > new file mode 100644
> > index 0000000..8eaa928
> > --- /dev/null
> > +++ b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
> > @@ -0,0 +1,19 @@
> > +SUMMARY = "cpulimit is a tool which limits the CPU usage of a process"
> > +HOMEPAGE = "http://cpulimit.sourceforge.net"
> > +LICENSE = "GPLv2"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
> > +SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
> > +
> > +SRC_URI = "git://git@github.com/opsengine/cpulimit.git;protocol=https"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +do_compile() {
> > +    oe_runmake all
> > +}
> > +do_install() {
> > +    install -d ${D}${sbindir}
> > +    install -m 0755 ${B}/src/${PN} ${D}${sbindir}/
> > +}
> > +
> > +CFLAGS += "${LDFLAGS}"
>
> oooups didn't see it. will be fixed
> > \ No newline at end of file
>
> > --
> > 2.7.4
> >
> --
> _______________________________________________
> 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

end of thread, other threads:[~2019-03-14 14:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-11 20:11 [meta-oe][PATCH v2] cpulimit: introduce support for this package BOUBAKER Bassem
2019-03-11 20:20 ` BOUBAKER Bassem
2019-03-14 14:23   ` Khem Raj

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.