* [PATCH] [meta-webserver]: add Monkey HTTP Server
@ 2014-06-02 20:35 Eduardo Silva
2014-06-02 20:56 ` Jack Mitchell
0 siblings, 1 reply; 12+ messages in thread
From: Eduardo Silva @ 2014-06-02 20:35 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Eduardo Silva <eduardo@monkey.io>
---
.../recipes-httpd/monkey/monkey_1.5.0.bb | 38 ++++++++++++++++++++++
1 file changed, 38 insertions(+)
create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
new file mode 100644
index 0000000..c6f1a76
--- /dev/null
+++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
@@ -0,0 +1,38 @@
+SUMMARY = "Fast and Lightweight HTTP Server for Linux"
+HOMEPAGE = "http://monkey-project.com"
+BUGTRACKER = "https://github.com/monkey/monkey/issues"
+
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
+
+PR = "r1"
+
+SECTION = "net"
+
+SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
+SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
+SRC_URI[sha256sum] = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7"
+
+EXTRA_OECONF = " \
+ --plugdir=${libdir}/monkey/ \
+ --logdir=/var/log/monkey/ \
+ --pidfile=/var/run/monkey.pid \
+ --default-user=www-data \
+ --datadir=/var/www/monkey/ \
+ --sysconfdir=${sysconfdir}/monkey/ \
+ --enable-plugins=* \
+ --disable-plugins=polarssl \
+ --debug \
+ --malloc-libc \
+"
+
+inherit autotools pkgconfig update-rc.d systemd
+
+INITSCRIPT_NAME = "monkey"
+INITSCRIPT_PARAMS = "defaults 70"
+
+SYSTEMD_SERVICE_${PN} = "monkey.service"
+
+FILES_${PN} += "/www"
+
+CONFFILES_${PN} = "${sysconfdir}/monkey/"
--
1.9.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server
2014-06-02 20:35 [PATCH] [meta-webserver]: add Monkey HTTP Server Eduardo Silva
@ 2014-06-02 20:56 ` Jack Mitchell
2014-06-02 21:14 ` Eduardo Silva
0 siblings, 1 reply; 12+ messages in thread
From: Jack Mitchell @ 2014-06-02 20:56 UTC (permalink / raw)
To: openembedded-devel
Hi Eduardo,
Just the one comment inline.
On 02/06/2014 21:35, Eduardo Silva wrote:
> Signed-off-by: Eduardo Silva <eduardo@monkey.io>
> ---
> .../recipes-httpd/monkey/monkey_1.5.0.bb | 38 ++++++++++++++++++++++
> 1 file changed, 38 insertions(+)
> create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>
> diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> new file mode 100644
> index 0000000..c6f1a76
> --- /dev/null
> +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> @@ -0,0 +1,38 @@
> +SUMMARY = "Fast and Lightweight HTTP Server for Linux"
> +HOMEPAGE = "http://monkey-project.com"
> +BUGTRACKER = "https://github.com/monkey/monkey/issues"
> +
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
> +
> +PR = "r1"
PR is no longer needed, remove.
> +
> +SECTION = "net"
> +
> +SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
> +SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
> +SRC_URI[sha256sum] = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7"
> +
> +EXTRA_OECONF = " \
> + --plugdir=${libdir}/monkey/ \
> + --logdir=/var/log/monkey/ \
> + --pidfile=/var/run/monkey.pid \
> + --default-user=www-data \
> + --datadir=/var/www/monkey/ \
> + --sysconfdir=${sysconfdir}/monkey/ \
> + --enable-plugins=* \
> + --disable-plugins=polarssl \
> + --debug \
> + --malloc-libc \
> +"
> +
> +inherit autotools pkgconfig update-rc.d systemd
> +
> +INITSCRIPT_NAME = "monkey"
> +INITSCRIPT_PARAMS = "defaults 70"
> +
> +SYSTEMD_SERVICE_${PN} = "monkey.service"
> +
> +FILES_${PN} += "/www"
> +
> +CONFFILES_${PN} = "${sysconfdir}/monkey/"
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server
2014-06-02 20:56 ` Jack Mitchell
@ 2014-06-02 21:14 ` Eduardo Silva
0 siblings, 0 replies; 12+ messages in thread
From: Eduardo Silva @ 2014-06-02 21:14 UTC (permalink / raw)
To: openembedded-devel
On Mon, Jun 2, 2014 at 2:56 PM, Jack Mitchell <ml@communistcode.co.uk> wrote:
> Hi Eduardo,
>
> Just the one comment inline.
>
>
> On 02/06/2014 21:35, Eduardo Silva wrote:
>>
>> Signed-off-by: Eduardo Silva <eduardo@monkey.io>
>> ---
>> .../recipes-httpd/monkey/monkey_1.5.0.bb | 38
>> ++++++++++++++++++++++
>> 1 file changed, 38 insertions(+)
>> create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>>
>> diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>> b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>> new file mode 100644
>> index 0000000..c6f1a76
>> --- /dev/null
>> +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>> @@ -0,0 +1,38 @@
>> +SUMMARY = "Fast and Lightweight HTTP Server for Linux"
>> +HOMEPAGE = "http://monkey-project.com"
>> +BUGTRACKER = "https://github.com/monkey/monkey/issues"
>> +
>> +LICENSE = "Apache-2.0"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
>> +
>> +PR = "r1"
>
>
> PR is no longer needed, remove.
new patch will be submitted.
thanks
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] [meta-webserver]: add Monkey HTTP Server.
@ 2014-06-02 21:14 Eduardo Silva
2014-06-02 21:36 ` Otavio Salvador
2014-06-03 6:23 ` Koen Kooi
0 siblings, 2 replies; 12+ messages in thread
From: Eduardo Silva @ 2014-06-02 21:14 UTC (permalink / raw)
To: openembedded-devel
This patch add the initial recipe for Monkey HTTP Server v1.5.0.
Signed-off-by: Eduardo Silva <eduardo@monkey.io>
---
.../recipes-httpd/monkey/monkey_1.5.0.bb | 36 ++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
new file mode 100644
index 0000000..25a9530
--- /dev/null
+++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
@@ -0,0 +1,36 @@
+SUMMARY = "Fast and Lightweight HTTP Server for Linux"
+HOMEPAGE = "http://monkey-project.com"
+BUGTRACKER = "https://github.com/monkey/monkey/issues"
+
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
+
+SECTION = "net"
+
+SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
+SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
+SRC_URI[sha256sum] = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7"
+
+EXTRA_OECONF = " \
+ --plugdir=${libdir}/monkey/ \
+ --logdir=/var/log/monkey/ \
+ --pidfile=/var/run/monkey.pid \
+ --default-user=www-data \
+ --datadir=/var/www/monkey/ \
+ --sysconfdir=${sysconfdir}/monkey/ \
+ --enable-plugins=* \
+ --disable-plugins=polarssl \
+ --debug \
+ --malloc-libc \
+"
+
+inherit autotools pkgconfig update-rc.d systemd
+
+INITSCRIPT_NAME = "monkey"
+INITSCRIPT_PARAMS = "defaults 70"
+
+SYSTEMD_SERVICE_${PN} = "monkey.service"
+
+FILES_${PN} += "/www"
+
+CONFFILES_${PN} = "${sysconfdir}/monkey/"
--
1.9.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-02 21:14 Eduardo Silva
@ 2014-06-02 21:36 ` Otavio Salvador
2014-06-03 6:23 ` Koen Kooi
1 sibling, 0 replies; 12+ messages in thread
From: Otavio Salvador @ 2014-06-02 21:36 UTC (permalink / raw)
To: OpenEmbedded Devel List
On Mon, Jun 2, 2014 at 6:14 PM, Eduardo Silva <eduardo@monkey.io> wrote:
> This patch add the initial recipe for Monkey HTTP Server v1.5.0.
>
> Signed-off-by: Eduardo Silva <eduardo@monkey.io>
...
> + --datadir=/var/www/monkey/ \
...
> +FILES_${PN} += "/www"
Does not match. Is it right?
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-02 21:14 Eduardo Silva
2014-06-02 21:36 ` Otavio Salvador
@ 2014-06-03 6:23 ` Koen Kooi
2014-06-03 19:53 ` Eduardo Silva
1 sibling, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2014-06-03 6:23 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Eduardo Silva schreef op 02-06-14 23:14:
> This patch add the initial recipe for Monkey HTTP Server v1.5.0.
>
> Signed-off-by: Eduardo Silva <eduardo@monkey.io> ---
> .../recipes-httpd/monkey/monkey_1.5.0.bb | 36
> ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode
> 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>
> diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb new file mode
> 100644 index 0000000..25a9530 --- /dev/null +++
> b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb @@ -0,0 +1,36 @@
> +SUMMARY = "Fast and Lightweight HTTP Server for Linux" +HOMEPAGE =
> "http://monkey-project.com" +BUGTRACKER =
> "https://github.com/monkey/monkey/issues" + +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM =
> "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" + +SECTION = "net"
> + +SRC_URI =
> "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
> +SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3" +SRC_URI[sha256sum]
> = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7" +
> +EXTRA_OECONF = " \ + --plugdir=${libdir}/monkey/ \ +
> --logdir=/var/log/monkey/ \ + --pidfile=/var/run/monkey.pid
> \ + --default-user=www-data \ +
> --datadir=/var/www/monkey/ \
/var -> ${localstatedir} ?
> + --sysconfdir=${sysconfdir}/monkey/ \ +
> --enable-plugins=* \ + --disable-plugins=polarssl \ +
> --debug \ + --malloc-libc \ +" + +inherit autotools pkgconfig
> update-rc.d systemd + +INITSCRIPT_NAME = "monkey" +INITSCRIPT_PARAMS =
> "defaults 70" + +SYSTEMD_SERVICE_${PN} = "monkey.service" + +FILES_${PN}
> += "/www" + +CONFFILES_${PN} = "${sysconfdir}/monkey/"
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org
iD8DBQFTjWnfMkyGM64RGpERAleHAJ98+/IM1m1Ddw708zXerzZummo+0QCdH9Yl
t/mM47yqio6yGosSXuuTVBY=
=BunW
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-03 6:23 ` Koen Kooi
@ 2014-06-03 19:53 ` Eduardo Silva
0 siblings, 0 replies; 12+ messages in thread
From: Eduardo Silva @ 2014-06-03 19:53 UTC (permalink / raw)
To: openembedded-devel
On Tue, Jun 3, 2014 at 12:23 AM, Koen Kooi <koen@dominion.thruhere.net>
wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Eduardo Silva schreef op 02-06-14 23:14:
> > This patch add the initial recipe for Monkey HTTP Server v1.5.0.
> >
> > Signed-off-by: Eduardo Silva <eduardo@monkey.io> ---
> > .../recipes-httpd/monkey/monkey_1.5.0.bb | 36
> > ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode
> > 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> >
> > diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> > b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb new file mode
> > 100644 index 0000000..25a9530 --- /dev/null +++
> > b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb @@ -0,0 +1,36 @@
> > +SUMMARY = "Fast and Lightweight HTTP Server for Linux" +HOMEPAGE =
> > "http://monkey-project.com" +BUGTRACKER =
> > "https://github.com/monkey/monkey/issues" + +LICENSE = "Apache-2.0"
> > +LIC_FILES_CHKSUM =
> > "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93" + +SECTION = "net"
> > + +SRC_URI =
> > "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
> > +SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3" +SRC_URI[sha256sum]
> > = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7" +
> > +EXTRA_OECONF = " \ + --plugdir=${libdir}/monkey/ \ +
> > --logdir=/var/log/monkey/ \ + --pidfile=/var/run/monkey.pid
> > \ + --default-user=www-data \ +
> > --datadir=/var/www/monkey/ \
>
> /var -> ${localstatedir} ?
>
>
> > + --sysconfdir=${sysconfdir}/monkey/ \ +
> > --enable-plugins=* \ + --disable-plugins=polarssl \ +
> > --debug \ + --malloc-libc \ +" + +inherit autotools pkgconfig
> > update-rc.d systemd + +INITSCRIPT_NAME = "monkey" +INITSCRIPT_PARAMS =
> > "defaults 70" + +SYSTEMD_SERVICE_${PN} = "monkey.service" + +FILES_${PN}
> > += "/www" + +CONFFILES_${PN} = "${sysconfdir}/monkey/"
> >
>
>
thanks to all for the feedback!.
Before to submit a new patch, would you please verify if it now looks
correct now ?:
https://github.com/monkey/monkey-yocto/blob/master/monkey/monkey_1.5.0.bb
if it's ok i will submit a new one.
best
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH] [meta-webserver]: add Monkey HTTP Server.
@ 2014-06-05 17:00 Eduardo Silva
2014-06-11 4:17 ` Robert Yang
0 siblings, 1 reply; 12+ messages in thread
From: Eduardo Silva @ 2014-06-05 17:00 UTC (permalink / raw)
To: openembedded-devel
This patch adds the Monkey HTTP Server v1.5.0 recipes. The content
on this patch includes the modifications suggested by people in the
Maling List.
Signed-off-by: Eduardo Silva <eduardo@monkey.io>
---
.../recipes-httpd/monkey/monkey_1.5.0.bb | 36 ++++++++++++++++++++++
1 file changed, 36 insertions(+)
create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
new file mode 100644
index 0000000..07a202f
--- /dev/null
+++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
@@ -0,0 +1,36 @@
+SUMMARY = "Fast and Lightweight HTTP Server for Linux"
+HOMEPAGE = "http://monkey-project.com"
+BUGTRACKER = "https://github.com/monkey/monkey/issues"
+
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
+
+SECTION = "net"
+
+SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
+SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
+SRC_URI[sha256sum] = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7"
+
+EXTRA_OECONF = " \
+ --plugdir=${libdir}/monkey/ \
+ --logdir=${localstatedir}/log/monkey/ \
+ --pidfile=${localstatedir}/run/monkey.pid \
+ --default-user=www-data \
+ --datadir= ${localstatedir}/www/monkey/ \
+ --sysconfdir=${sysconfdir}/monkey/ \
+ --enable-plugins=* \
+ --disable-plugins=polarssl \
+ --debug \
+ --malloc-libc \
+"
+
+inherit autotools pkgconfig update-rc.d systemd
+
+INITSCRIPT_NAME = "monkey"
+INITSCRIPT_PARAMS = "defaults 70"
+
+SYSTEMD_SERVICE_${PN} = "monkey.service"
+
+FILES_${PN} += "${localstatedir}/www/monkey/"
+
+CONFFILES_${PN} = "${sysconfdir}/monkey/"
--
1.9.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-05 17:00 Eduardo Silva
@ 2014-06-11 4:17 ` Robert Yang
2014-06-11 13:19 ` Paul Eggleton
0 siblings, 1 reply; 12+ messages in thread
From: Robert Yang @ 2014-06-11 4:17 UTC (permalink / raw)
To: openembedded-devel
On 06/06/2014 01:00 AM, Eduardo Silva wrote:
> This patch adds the Monkey HTTP Server v1.5.0 recipes. The content
> on this patch includes the modifications suggested by people in the
> Maling List.
>
> Signed-off-by: Eduardo Silva <eduardo@monkey.io>
> ---
> .../recipes-httpd/monkey/monkey_1.5.0.bb | 36 ++++++++++++++++++++++
> 1 file changed, 36 insertions(+)
> create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
>
> diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> new file mode 100644
> index 0000000..07a202f
> --- /dev/null
> +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> @@ -0,0 +1,36 @@
> +SUMMARY = "Fast and Lightweight HTTP Server for Linux"
> +HOMEPAGE = "http://monkey-project.com"
> +BUGTRACKER = "https://github.com/monkey/monkey/issues"
> +
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
> +
> +SECTION = "net"
> +
> +SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
> +SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
> +SRC_URI[sha256sum] = "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7"
> +
> +EXTRA_OECONF = " \
> + --plugdir=${libdir}/monkey/ \
> + --logdir=${localstatedir}/log/monkey/ \
> + --pidfile=${localstatedir}/run/monkey.pid \
> + --default-user=www-data \
> + --datadir= ${localstatedir}/www/monkey/ \
Here is an extra space, perhaps a typo, please ?
// Robert
> + --sysconfdir=${sysconfdir}/monkey/ \
> + --enable-plugins=* \
> + --disable-plugins=polarssl \
> + --debug \
> + --malloc-libc \
> +"
> +
> +inherit autotools pkgconfig update-rc.d systemd
> +
> +INITSCRIPT_NAME = "monkey"
> +INITSCRIPT_PARAMS = "defaults 70"
> +
> +SYSTEMD_SERVICE_${PN} = "monkey.service"
> +
> +FILES_${PN} += "${localstatedir}/www/monkey/"
> +
> +CONFFILES_${PN} = "${sysconfdir}/monkey/"
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-11 4:17 ` Robert Yang
@ 2014-06-11 13:19 ` Paul Eggleton
2014-06-11 17:47 ` Eduardo Silva
0 siblings, 1 reply; 12+ messages in thread
From: Paul Eggleton @ 2014-06-11 13:19 UTC (permalink / raw)
To: Robert Yang, Eduardo Silva; +Cc: openembedded-devel
On Wednesday 11 June 2014 12:17:28 Robert Yang wrote:
> On 06/06/2014 01:00 AM, Eduardo Silva wrote:
> > This patch adds the Monkey HTTP Server v1.5.0 recipes. The content
> > on this patch includes the modifications suggested by people in the
> > Maling List.
> >
> > Signed-off-by: Eduardo Silva <eduardo@monkey.io>
> > ---
> >
> > .../recipes-httpd/monkey/monkey_1.5.0.bb | 36
> > ++++++++++++++++++++++ 1 file changed, 36 insertions(+)
> > create mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> >
> > diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> > b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb new file mode
> > 100644
> > index 0000000..07a202f
> > --- /dev/null
> > +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
> > @@ -0,0 +1,36 @@
> > +SUMMARY = "Fast and Lightweight HTTP Server for Linux"
> > +HOMEPAGE = "http://monkey-project.com"
> > +BUGTRACKER = "https://github.com/monkey/monkey/issues"
> > +
> > +LICENSE = "Apache-2.0"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
> > +
> > +SECTION = "net"
> > +
> > +SRC_URI = "http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz"
> > +SRC_URI[md5sum] = "9123fc371334621fde1c060ab17adcd3"
> > +SRC_URI[sha256sum] =
> > "f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7" +
> > +EXTRA_OECONF = " \
> > + --plugdir=${libdir}/monkey/ \
> > + --logdir=${localstatedir}/log/monkey/ \
> > + --pidfile=${localstatedir}/run/monkey.pid \
> > + --default-user=www-data \
> > + --datadir= ${localstatedir}/www/monkey/ \
>
> Here is an extra space, perhaps a typo, please ?
Yes, also I just tried building it with that fixed and with the change in
master to use separate build directories for autotools the build fails:
----------------- snip ------------------
ERROR: Function failed: do_compile (log file is located at
/media/large/tmp/work/core2-64-poky-linux/monkey/1.5.0-
r0/temp/log.do_compile.22474)
ERROR: Logfile of failure stored in: /media/large/tmp/work/core2-64-poky-
linux/monkey/1.5.0-r0/temp/log.do_compile.22474
Log data follows:
| DEBUG: SITE files ['endian-little', 'common-linux', 'common-glibc', 'bit-64',
'x86_64-linux', 'common']
| DEBUG: Executing shell function do_compile
| NOTE: make -j 8
| sed: can't read monkey.pc.in: No such file or directory
| make: *** [monkey.pc] Error 2
| ERROR: oe_runmake failed
| WARNING: /media/large/tmp/work/core2-64-poky-linux/monkey/1.5.0-
r0/temp/run.do_compile.22474:1 exit 1 from
| exit 1
| ERROR: Function failed: do_compile (log file is located at
/media/large/tmp/work/core2-64-poky-linux/monkey/1.5.0-
r0/temp/log.do_compile.22474)
ERROR: Task 6 (/home/paul/poky/meta-oe/meta-webserver/recipes-
httpd/monkey/monkey_1.5.0.bb, do_compile) failed with exit code '1'
----------------- snip ------------------
The quick fix for this is to inherit autotools-brokensep; a more desirable
long-term fix would be to fix monkey to allow building it in a separate build
directory.
Eduardo, could you please send patches for these?
Thanks,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-11 13:19 ` Paul Eggleton
@ 2014-06-11 17:47 ` Eduardo Silva
2014-06-12 9:12 ` Robert Yang
0 siblings, 1 reply; 12+ messages in thread
From: Eduardo Silva @ 2014-06-11 17:47 UTC (permalink / raw)
To: Paul Eggleton; +Cc: openembedded-devel
Hi all,
/media/large/tmp/work/core2-64-poky-linux/monkey/1.5.0-
> r0/temp/log.do_compile.22474)
> ERROR: Task 6 (/home/paul/poky/meta-oe/meta-webserver/recipes-
> httpd/monkey/monkey_1.5.0.bb, do_compile) failed with exit code '1'
> ----------------- snip ------------------
>
> The quick fix for this is to inherit autotools-brokensep; a more desirable
> long-term fix would be to fix monkey to allow building it in a separate
> build
> directory.
>
> Eduardo, could you please send patches for these?
>
thanks for tracking down this problem.
After verify, our configure script miss that feature (i am wondering why
this problem did not happened on our local tests), as this is something
that is breaking the build we will work in a long-term fix. You should
receive today a patch for the quickfix plus the new recipe for Monkey
v1.5.1 (minor release).
cheers,
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] [meta-webserver]: add Monkey HTTP Server.
2014-06-11 17:47 ` Eduardo Silva
@ 2014-06-12 9:12 ` Robert Yang
0 siblings, 0 replies; 12+ messages in thread
From: Robert Yang @ 2014-06-12 9:12 UTC (permalink / raw)
To: Eduardo Silva, Paul Eggleton; +Cc: openembedded-devel
On 06/12/2014 01:47 AM, Eduardo Silva wrote:
> Hi all,
>
> /media/large/tmp/work/core2-64-poky-linux/monkey/1.5.0-
> r0/temp/log.do_compile.22474)
> ERROR: Task 6 (/home/paul/poky/meta-oe/meta-webserver/recipes-
> httpd/monkey/monkey_1.5.0.bb <http://monkey_1.5.0.bb>, do_compile) failed
> with exit code '1'
> ----------------- snip ------------------
>
> The quick fix for this is to inherit autotools-brokensep; a more desirable
> long-term fix would be to fix monkey to allow building it in a separate build
> directory.
>
> Eduardo, could you please send patches for these?
>
>
> thanks for tracking down this problem.
>
> After verify, our configure script miss that feature (i am wondering why this
> problem did not happened on our local tests), as this is something that is
Are you using oe-core's master branch ? Separate builds by default is enabled
after daisy released.
// Robert
> breaking the build we will work in a long-term fix. You should receive today a
> patch for the quickfix plus the new recipe for Monkey v1.5.1 (minor release).
>
> cheers,
>
>
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2014-06-12 9:12 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-02 20:35 [PATCH] [meta-webserver]: add Monkey HTTP Server Eduardo Silva
2014-06-02 20:56 ` Jack Mitchell
2014-06-02 21:14 ` Eduardo Silva
-- strict thread matches above, loose matches on Subject: below --
2014-06-02 21:14 Eduardo Silva
2014-06-02 21:36 ` Otavio Salvador
2014-06-03 6:23 ` Koen Kooi
2014-06-03 19:53 ` Eduardo Silva
2014-06-05 17:00 Eduardo Silva
2014-06-11 4:17 ` Robert Yang
2014-06-11 13:19 ` Paul Eggleton
2014-06-11 17:47 ` Eduardo Silva
2014-06-12 9:12 ` Robert Yang
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.