mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-09-26 00:11:04 +00:00
Advance the pinned SRCREV to the current tip of jchampio's master. The latest tagged release is still 0.1.2 (already reflected in PV), and the 23 new commits are entirely test-infrastructure work: porting the test suite from Python 2 to Python 3/asyncio/websockets and adding coverage for the module APIs. None of them touch the module sources that get built and installed, so the shipped mod_websocket.so is functionally unchanged; this simply keeps the git-tracking recipe on the current tip. Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 KiB
BlitzBasic
SUMMARY = "Websocket module for Apache web server"
|
|
DESCRIPTION = "Process requests using the WebSocket protocol (RFC 6455)"
|
|
HOMEPAGE = "https://github.com/jchampio/apache-websocket/"
|
|
SECTION = "net"
|
|
LICENSE = "Apache-2.0"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
DEPENDS = "apache2 apache2-native pbzip2-native"
|
|
RDEPENDS:${PN} += "apache2"
|
|
|
|
# Original (github.com/disconnect/apache-websocket) is dead since 2012, the
|
|
# fork contains patches from the modules ML and fixes CVE compliance issues
|
|
SRC_URI = "git://github.com/jchampio/apache-websocket.git;branch=master;protocol=https"
|
|
|
|
SRCREV = "18ad4ae2fc99381b8d75785f492a479f789b322b"
|
|
|
|
PV = "0.1.2+git"
|
|
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
|
|
|
EXTRA_OECONF = "APACHECTL=${STAGING_DIR_TARGET}${sbindir}/apachectl"
|
|
|
|
do_install() {
|
|
install -d ${D}${libexecdir}/apache2/modules
|
|
install -m 755 ${B}/.libs/mod_websocket.so ${D}${libexecdir}/apache2/modules
|
|
}
|
|
|
|
FILES:${PN} += " ${libexecdir}/apache2/modules/* "
|
|
FILES:${PN}-dbg += " ${libexecdir}/apache2/modules/.debug/* "
|