mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-php/pecl-event: add 3.1.3
Closes: https://bugs.gentoo.org/931061 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST event-3.0.8.tgz 199567 BLAKE2B 520949b55d27629e089993a49fe55114f8fb45cf5788dd57b30b0977fcfc9074757b4cc2efb6d5a126eea5343926f326d1651546650e9dbc8baa0ef7b06649f5 SHA512 45b4c07cac6dfca386cf9e6c792abc72c6f68d1443a1c67fd645f5e6f05ae9d45fb346b50b35cc6818ca70ebbff93c42afd801e70e9ebc63f997366996193593
|
||||
DIST event-3.1.3.tgz 205031 BLAKE2B 426e39a80c93889d6079b90f5ce121c33bde97c37d5fdf9463ec0ffa19d0a6cd562068b534cbe9ffd5c14a84e9c8c067b359b41b5b976b2b5a5a08ad6935c70d SHA512 d234ccaa113f6138c137adabcedf39744bf07a47e4e4f59d868a8c6e687a62120e6a0ae7760dcc494587351cca196a5810898bea426ef47ca8c999dad2bf33eb
|
||||
|
||||
50
dev-php/pecl-event/pecl-event-3.1.3.ebuild
Normal file
50
dev-php/pecl-event/pecl-event-3.1.3.ebuild
Normal file
@@ -0,0 +1,50 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
PHP_EXT_NAME="event"
|
||||
PHP_EXT_INI="yes"
|
||||
PHP_EXT_ZENDEXT="no"
|
||||
DOCS=( README.md )
|
||||
|
||||
USE_PHP="php8-1 php8-2"
|
||||
PHP_EXT_NEEDED_USE="sockets(-)?"
|
||||
|
||||
inherit php-ext-pecl-r3
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
LICENSE="PHP-3.01"
|
||||
|
||||
DESCRIPTION="PHP wrapper for libevent2"
|
||||
SLOT="0"
|
||||
IUSE="debug examples +extra +sockets +ssl threads"
|
||||
|
||||
DEPEND="
|
||||
>=dev-libs/libevent-2.0.2[ssl?]
|
||||
ssl? ( dev-libs/openssl:= )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
!dev-php/pecl-libevent
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local PHP_EXT_ECONF_ARGS=(
|
||||
--with-event-core
|
||||
$(use_enable debug event-debug)
|
||||
$(use_with extra event-extra)
|
||||
$(use_with ssl event-openssl)
|
||||
$(use_with threads event-pthreads)
|
||||
$(use_enable sockets event-sockets)
|
||||
)
|
||||
php-ext-source-r3_src_configure
|
||||
}
|
||||
|
||||
src_test() {
|
||||
local slot
|
||||
for slot in $(php_get_slots); do
|
||||
php_init_slot_env "${slot}"
|
||||
SKIP_ONLINE_TESTS="yes" NO_INTERACTION="yes" emake test
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user