All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking] Uprev memcached from upstream
@ 2014-04-09 17:30 Amy Fong
  2014-04-09 20:30 ` Khem Raj
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Amy Fong @ 2014-04-09 17:30 UTC (permalink / raw)
  To: openembedded-devel, Joe MacDonald

commit 3d0b80c5667a2c1d8634173948048567d0bc9c36
Author: Amy Fong <amy.fong@windriver.com>
Date:   Tue Apr 8 14:29:19 2014 -0400

    Uprev memcached from upstream
    
    memcached 1.4.15 has some configuration errors:
    configure:5798: error: cannot run test program while cross compiling
    
    Uprev has the needed fix for the configuration error and some other fixes.
    
    Signed-off-by: Amy Fong <amy.fong@windriver.com>

diff --git a/recipes-support/memcached/memcached_1.4.17.bb b/recipes-support/memcached/memcached_1.4.17.bb
new file mode 100644
index 0000000..906896c
--- /dev/null
+++ b/recipes-support/memcached/memcached_1.4.17.bb
@@ -0,0 +1,50 @@
+SUMMARY = "A high-performance memory object caching system"
+DESCRIPTION = "\
+ Danga Interactive developed memcached to enhance the speed of LiveJournal.com, \
+ a site which was already doing 20 million+ dynamic page views per day for 1 \
+ million users with a bunch of webservers and a bunch of database servers. \
+ memcached dropped the database load to almost nothing, yielding faster page \
+ load times for users, better resource utilization, and faster access to the \
+ databases on a memcache miss. \
+ . \
+ memcached optimizes specific high-load serving applications that are designed \
+ to take advantage of its versatile no-locking memory access system. Clients \
+ are available in several different programming languages, to suit the needs \
+ of the specific application. Traditionally this has been used in mod_perl \
+ apps to avoid storing large chunks of data in Apache memory, and to share \
+ this burden across several machines."
+
+HOMEPAGE = "http://www.danga.com/memcached/"
+LICENSE = "BSD"
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff"
+
+inherit autotools
+
+DEPENDS += "libevent"
+RDEPENDS += "perl perl-module-posix perl-module-autoloader perl-module-tie-hash"
+
+SRC_URI = "http://www.memcached.org/files/${PN}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
+SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
+
+python __anonymous () {
+    endianness = d.getVar('SITEINFO_ENDIANNESS', True)
+    if endianness == 'le':
+        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little")
+    else:
+        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big")
+}
+
+inherit update-rc.d
+
+INITSCRIPT_NAME = "memcached"
+INITSCRIPT_PARAMS = "defaults"
+
+do_install_append() {
+	install -D -m 755 ${S}/scripts/memcached-init ${D}${sysconfdir}/init.d/memcached 
+	mkdir -p ${D}/usr/share/memcached/scripts
+	install -m 755 ${S}/scripts/memcached-tool ${D}/usr/share/memcached/scripts
+	install -m 755 ${S}/scripts/start-memcached ${D}/usr/share/memcached/scripts
+}


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

* Re: [meta-networking] Uprev memcached from upstream
  2014-04-09 17:30 [meta-networking] Uprev memcached from upstream Amy Fong
@ 2014-04-09 20:30 ` Khem Raj
  2014-04-20 11:58 ` Martin Jansa
  2014-04-25  1:34 ` Joe MacDonald
  2 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2014-04-09 20:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Joe MacDonald

On Apr 9, 2014 7:30 AM, "Amy Fong" <amy.fong@windriver.com> wrote:
>
> commit 3d0b80c5667a2c1d8634173948048567d0bc9c36
> Author: Amy Fong <amy.fong@windriver.com>
> Date:   Tue Apr 8 14:29:19 2014 -0400
>
>     Uprev memcached from upstream
>
>     memcached 1.4.15 has some configuration errors:
>     configure:5798: error: cannot run test program while cross compiling
>
>     Uprev has the needed fix for the configuration error and some other
fixes.
>
>     Signed-off-by: Amy Fong <amy.fong@windriver.com>
>
> diff --git a/recipes-support/memcached/memcached_1.4.17.bbb/recipes-support/memcached/
memcached_1.4.17.bb
> new file mode 100644
> index 0000000..906896c
> --- /dev/null
> +++ b/recipes-support/memcached/memcached_1.4.17.bb
> @@ -0,0 +1,50 @@
> +SUMMARY = "A high-performance memory object caching system"
> +DESCRIPTION = "\
> + Danga Interactive developed memcached to enhance the speed of
LiveJournal.com, \
> + a site which was already doing 20 million+ dynamic page views per day
for 1 \
> + million users with a bunch of webservers and a bunch of database
servers. \
> + memcached dropped the database load to almost nothing, yielding faster
page \
> + load times for users, better resource utilization, and faster access to
the \
> + databases on a memcache miss. \
> + . \
> + memcached optimizes specific high-load serving applications that are
designed \
> + to take advantage of its versatile no-locking memory access system.
Clients \
> + are available in several different programming languages, to suit the
needs \
> + of the specific application. Traditionally this has been used in
mod_perl \
> + apps to avoid storing large chunks of data in Apache memory, and to
share \
> + this burden across several machines."
> +
> +HOMEPAGE = "http://www.danga.com/memcached/"
> +LICENSE = "BSD"

which bsd ?
> +
> +LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff"
> +
> +inherit autotools
> +
> +DEPENDS += "libevent"
> +RDEPENDS += "perl perl-module-posix perl-module-autoloader
perl-module-tie-hash"
> +

rdepend should be package specific

> +SRC_URI = "http://www.memcached.org/files/${PN}-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
> +SRC_URI[sha256sum] =
"d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
> +
> +python __anonymous () {
> +    endianness = d.getVar('SITEINFO_ENDIANNESS', True)
> +    if endianness == 'le':
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little")
> +    else:
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big")
> +}
> +
> +inherit update-rc.d
> +
> +INITSCRIPT_NAME = "memcached"
> +INITSCRIPT_PARAMS = "defaults"
> +
> +do_install_append() {
> +       install -D -m 755 ${S}/scripts/memcached-init
${D}${sysconfdir}/init.d/memcached
> +       mkdir -p ${D}/usr/share/memcached/scripts
> +       install -m 755 ${S}/scripts/memcached-tool
${D}/usr/share/memcached/scripts
> +       install -m 755 ${S}/scripts/start-memcached
${D}/usr/share/memcached/scripts
> +}
> --
> _______________________________________________
> 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: [meta-networking] Uprev memcached from upstream
  2014-04-09 17:30 [meta-networking] Uprev memcached from upstream Amy Fong
  2014-04-09 20:30 ` Khem Raj
@ 2014-04-20 11:58 ` Martin Jansa
  2014-04-25  1:34 ` Joe MacDonald
  2 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2014-04-20 11:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Joe MacDonald

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

On Wed, Apr 09, 2014 at 01:30:22PM -0400, Amy Fong wrote:
> commit 3d0b80c5667a2c1d8634173948048567d0bc9c36
> Author: Amy Fong <amy.fong@windriver.com>
> Date:   Tue Apr 8 14:29:19 2014 -0400
> 
>     Uprev memcached from upstream

Please remove 1.4.15 in the same commit and send with -M.
>     
>     memcached 1.4.15 has some configuration errors:
>     configure:5798: error: cannot run test program while cross compiling
>     
>     Uprev has the needed fix for the configuration error and some other fixes.
>     
>     Signed-off-by: Amy Fong <amy.fong@windriver.com>
> 
> diff --git a/recipes-support/memcached/memcached_1.4.17.bb b/recipes-support/memcached/memcached_1.4.17.bb
> new file mode 100644
> index 0000000..906896c
> --- /dev/null
> +++ b/recipes-support/memcached/memcached_1.4.17.bb
> @@ -0,0 +1,50 @@
> +SUMMARY = "A high-performance memory object caching system"
> +DESCRIPTION = "\
> + Danga Interactive developed memcached to enhance the speed of LiveJournal.com, \
> + a site which was already doing 20 million+ dynamic page views per day for 1 \
> + million users with a bunch of webservers and a bunch of database servers. \
> + memcached dropped the database load to almost nothing, yielding faster page \
> + load times for users, better resource utilization, and faster access to the \
> + databases on a memcache miss. \
> + . \
> + memcached optimizes specific high-load serving applications that are designed \
> + to take advantage of its versatile no-locking memory access system. Clients \
> + are available in several different programming languages, to suit the needs \
> + of the specific application. Traditionally this has been used in mod_perl \
> + apps to avoid storing large chunks of data in Apache memory, and to share \
> + this burden across several machines."
> +
> +HOMEPAGE = "http://www.danga.com/memcached/"
> +LICENSE = "BSD"
> +
> +LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff"
> +
> +inherit autotools
> +
> +DEPENDS += "libevent"
> +RDEPENDS += "perl perl-module-posix perl-module-autoloader perl-module-tie-hash"
> +
> +SRC_URI = "http://www.memcached.org/files/${PN}-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
> +SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
> +
> +python __anonymous () {
> +    endianness = d.getVar('SITEINFO_ENDIANNESS', True)
> +    if endianness == 'le':
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little")
> +    else:
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big")
> +}
> +
> +inherit update-rc.d
> +
> +INITSCRIPT_NAME = "memcached"
> +INITSCRIPT_PARAMS = "defaults"
> +
> +do_install_append() {
> +	install -D -m 755 ${S}/scripts/memcached-init ${D}${sysconfdir}/init.d/memcached 
> +	mkdir -p ${D}/usr/share/memcached/scripts
> +	install -m 755 ${S}/scripts/memcached-tool ${D}/usr/share/memcached/scripts
> +	install -m 755 ${S}/scripts/start-memcached ${D}/usr/share/memcached/scripts
> +}
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking] Uprev memcached from upstream
  2014-04-09 17:30 [meta-networking] Uprev memcached from upstream Amy Fong
  2014-04-09 20:30 ` Khem Raj
  2014-04-20 11:58 ` Martin Jansa
@ 2014-04-25  1:34 ` Joe MacDonald
  2014-05-07 18:23   ` Joe MacDonald
  2 siblings, 1 reply; 5+ messages in thread
From: Joe MacDonald @ 2014-04-25  1:34 UTC (permalink / raw)
  To: Amy Fong; +Cc: openembedded-devel

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

Hi Amy,

Should I expect a v2 based on Martin and Khem's comments?  Also, if
you're doing the uprev, it's probably worth removing the old one at the
same time.

-J.

[[oe] [meta-networking] Uprev memcached from upstream] On 14.04.09 (Wed 13:30) Amy Fong wrote:

> commit 3d0b80c5667a2c1d8634173948048567d0bc9c36
> Author: Amy Fong <amy.fong@windriver.com>
> Date:   Tue Apr 8 14:29:19 2014 -0400
> 
>     Uprev memcached from upstream
>     
>     memcached 1.4.15 has some configuration errors:
>     configure:5798: error: cannot run test program while cross compiling
>     
>     Uprev has the needed fix for the configuration error and some other fixes.
>     
>     Signed-off-by: Amy Fong <amy.fong@windriver.com>
> 
> diff --git a/recipes-support/memcached/memcached_1.4.17.bb b/recipes-support/memcached/memcached_1.4.17.bb
> new file mode 100644
> index 0000000..906896c
> --- /dev/null
> +++ b/recipes-support/memcached/memcached_1.4.17.bb
> @@ -0,0 +1,50 @@
> +SUMMARY = "A high-performance memory object caching system"
> +DESCRIPTION = "\
> + Danga Interactive developed memcached to enhance the speed of LiveJournal.com, \
> + a site which was already doing 20 million+ dynamic page views per day for 1 \
> + million users with a bunch of webservers and a bunch of database servers. \
> + memcached dropped the database load to almost nothing, yielding faster page \
> + load times for users, better resource utilization, and faster access to the \
> + databases on a memcache miss. \
> + . \
> + memcached optimizes specific high-load serving applications that are designed \
> + to take advantage of its versatile no-locking memory access system. Clients \
> + are available in several different programming languages, to suit the needs \
> + of the specific application. Traditionally this has been used in mod_perl \
> + apps to avoid storing large chunks of data in Apache memory, and to share \
> + this burden across several machines."
> +
> +HOMEPAGE = "http://www.danga.com/memcached/"
> +LICENSE = "BSD"
> +
> +LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff"
> +
> +inherit autotools
> +
> +DEPENDS += "libevent"
> +RDEPENDS += "perl perl-module-posix perl-module-autoloader perl-module-tie-hash"
> +
> +SRC_URI = "http://www.memcached.org/files/${PN}-${PV}.tar.gz"
> +
> +SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
> +SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
> +
> +python __anonymous () {
> +    endianness = d.getVar('SITEINFO_ENDIANNESS', True)
> +    if endianness == 'le':
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little")
> +    else:
> +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big")
> +}
> +
> +inherit update-rc.d
> +
> +INITSCRIPT_NAME = "memcached"
> +INITSCRIPT_PARAMS = "defaults"
> +
> +do_install_append() {
> +	install -D -m 755 ${S}/scripts/memcached-init ${D}${sysconfdir}/init.d/memcached 
> +	mkdir -p ${D}/usr/share/memcached/scripts
> +	install -m 755 ${S}/scripts/memcached-tool ${D}/usr/share/memcached/scripts
> +	install -m 755 ${S}/scripts/start-memcached ${D}/usr/share/memcached/scripts
> +}
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking] Uprev memcached from upstream
  2014-04-25  1:34 ` Joe MacDonald
@ 2014-05-07 18:23   ` Joe MacDonald
  0 siblings, 0 replies; 5+ messages in thread
From: Joe MacDonald @ 2014-05-07 18:23 UTC (permalink / raw)
  To: Amy Fong; +Cc: openembedded-devel

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

[Re: [oe] [meta-networking] Uprev memcached from upstream] On 14.04.24 (Thu 21:34) Joe MacDonald wrote:

> Hi Amy,
> 
> Should I expect a v2 based on Martin and Khem's comments?  Also, if
> you're doing the uprev, it's probably worth removing the old one at the
> same time.

Finally coming up for air again, so ping?

-J.

> 
> -J.
> 
> [[oe] [meta-networking] Uprev memcached from upstream] On 14.04.09 (Wed 13:30) Amy Fong wrote:
> 
> > commit 3d0b80c5667a2c1d8634173948048567d0bc9c36
> > Author: Amy Fong <amy.fong@windriver.com>
> > Date:   Tue Apr 8 14:29:19 2014 -0400
> > 
> >     Uprev memcached from upstream
> >     
> >     memcached 1.4.15 has some configuration errors:
> >     configure:5798: error: cannot run test program while cross compiling
> >     
> >     Uprev has the needed fix for the configuration error and some other fixes.
> >     
> >     Signed-off-by: Amy Fong <amy.fong@windriver.com>
> > 
> > diff --git a/recipes-support/memcached/memcached_1.4.17.bb b/recipes-support/memcached/memcached_1.4.17.bb
> > new file mode 100644
> > index 0000000..906896c
> > --- /dev/null
> > +++ b/recipes-support/memcached/memcached_1.4.17.bb
> > @@ -0,0 +1,50 @@
> > +SUMMARY = "A high-performance memory object caching system"
> > +DESCRIPTION = "\
> > + Danga Interactive developed memcached to enhance the speed of LiveJournal.com, \
> > + a site which was already doing 20 million+ dynamic page views per day for 1 \
> > + million users with a bunch of webservers and a bunch of database servers. \
> > + memcached dropped the database load to almost nothing, yielding faster page \
> > + load times for users, better resource utilization, and faster access to the \
> > + databases on a memcache miss. \
> > + . \
> > + memcached optimizes specific high-load serving applications that are designed \
> > + to take advantage of its versatile no-locking memory access system. Clients \
> > + are available in several different programming languages, to suit the needs \
> > + of the specific application. Traditionally this has been used in mod_perl \
> > + apps to avoid storing large chunks of data in Apache memory, and to share \
> > + this burden across several machines."
> > +
> > +HOMEPAGE = "http://www.danga.com/memcached/"
> > +LICENSE = "BSD"
> > +
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff"
> > +
> > +inherit autotools
> > +
> > +DEPENDS += "libevent"
> > +RDEPENDS += "perl perl-module-posix perl-module-autoloader perl-module-tie-hash"
> > +
> > +SRC_URI = "http://www.memcached.org/files/${PN}-${PV}.tar.gz"
> > +
> > +SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6"
> > +SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458"
> > +
> > +python __anonymous () {
> > +    endianness = d.getVar('SITEINFO_ENDIANNESS', True)
> > +    if endianness == 'le':
> > +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little")
> > +    else:
> > +        d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big")
> > +}
> > +
> > +inherit update-rc.d
> > +
> > +INITSCRIPT_NAME = "memcached"
> > +INITSCRIPT_PARAMS = "defaults"
> > +
> > +do_install_append() {
> > +	install -D -m 755 ${S}/scripts/memcached-init ${D}${sysconfdir}/init.d/memcached 
> > +	mkdir -p ${D}/usr/share/memcached/scripts
> > +	install -m 755 ${S}/scripts/memcached-tool ${D}/usr/share/memcached/scripts
> > +	install -m 755 ${S}/scripts/start-memcached ${D}/usr/share/memcached/scripts
> > +}
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2014-05-07 18:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-09 17:30 [meta-networking] Uprev memcached from upstream Amy Fong
2014-04-09 20:30 ` Khem Raj
2014-04-20 11:58 ` Martin Jansa
2014-04-25  1:34 ` Joe MacDonald
2014-05-07 18:23   ` Joe MacDonald

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.