diff options
| author | Mark Asselstine <mark.asselstine@windriver.com> | 2017-12-01 15:13:09 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-12-01 21:46:35 -0500 |
| commit | ee1c631b92752742d89b311f4774d7017a946d54 (patch) | |
| tree | 2aa15fc54ae82e1e842418ea7d687d953bee600e /meta-openstack/recipes-support/memcached/memcached_1.4.17.bb | |
| parent | 1d73ebe570177695a8aa0a846e63747a26068aea (diff) | |
| download | meta-cloud-services-ee1c631b92752742d89b311f4774d7017a946d54.tar.gz | |
memcached: uprev to v1.5.3
Incorporate updates in the recipe found in meta-networking and add
support for systemd.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-support/memcached/memcached_1.4.17.bb')
| -rw-r--r-- | meta-openstack/recipes-support/memcached/memcached_1.4.17.bb | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/meta-openstack/recipes-support/memcached/memcached_1.4.17.bb b/meta-openstack/recipes-support/memcached/memcached_1.4.17.bb deleted file mode 100644 index 6097693..0000000 --- a/meta-openstack/recipes-support/memcached/memcached_1.4.17.bb +++ /dev/null | |||
| @@ -1,44 +0,0 @@ | |||
| 1 | SUMMARY = "A high-performance memory object caching system" | ||
| 2 | DESCRIPTION = "\ | ||
| 3 | memcached optimizes specific high-load serving applications that are designed \ | ||
| 4 | to take advantage of its versatile no-locking memory access system. Clients \ | ||
| 5 | are available in several different programming languages, to suit the needs \ | ||
| 6 | of the specific application. Traditionally this has been used in mod_perl \ | ||
| 7 | apps to avoid storing large chunks of data in Apache memory, and to share \ | ||
| 8 | this burden across several machines." | ||
| 9 | |||
| 10 | HOMEPAGE = "http://memcached.org/" | ||
| 11 | LICENSE = "BSD-3-Clause" | ||
| 12 | |||
| 13 | LIC_FILES_CHKSUM = "file://COPYING;md5=7e5ded7363d335e1bb18013ca08046ff" | ||
| 14 | |||
| 15 | inherit autotools | ||
| 16 | |||
| 17 | DEPENDS += "libevent" | ||
| 18 | RDEPENDS_${PN} += "bash perl perl-module-posix perl-module-autoloader perl-module-tie-hash" | ||
| 19 | |||
| 20 | SRC_URI = "http://www.memcached.org/files/${BP}.tar.gz \ | ||
| 21 | file://configure.patch" | ||
| 22 | |||
| 23 | SRC_URI[md5sum] = "46402dfbd7faadf6182283dbbd18b1a6" | ||
| 24 | SRC_URI[sha256sum] = "d9173ef6d99ba798c982ea4566cb4f0e64eb23859fdbf9926a89999d8cdc0458" | ||
| 25 | |||
| 26 | python __anonymous () { | ||
| 27 | endianness = d.getVar('SITEINFO_ENDIANNESS', True) | ||
| 28 | if endianness == 'le': | ||
| 29 | d.setVar('EXTRA_OECONF', "ac_cv_c_endian=little") | ||
| 30 | else: | ||
| 31 | d.setVar('EXTRA_OECONF', "ac_cv_c_endian=big") | ||
| 32 | } | ||
| 33 | |||
| 34 | inherit update-rc.d | ||
| 35 | |||
| 36 | INITSCRIPT_NAME = "memcached" | ||
| 37 | INITSCRIPT_PARAMS = "defaults" | ||
| 38 | |||
| 39 | do_install_append() { | ||
| 40 | install -D -m 755 ${S}/scripts/memcached-init ${D}${sysconfdir}/init.d/memcached | ||
| 41 | mkdir -p ${D}/usr/share/memcached/scripts | ||
| 42 | install -m 755 ${S}/scripts/memcached-tool ${D}/usr/share/memcached/scripts | ||
| 43 | install -m 755 ${S}/scripts/start-memcached ${D}/usr/share/memcached/scripts | ||
| 44 | } | ||
