diff options
author | David Seifert <soap@gentoo.org> | 2023-09-15 09:51:57 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-15 09:51:57 +0200 |
commit | 1e1de33fd19098bd6ee3e171bc3c0b73aa74336e (patch) | |
tree | f47d2e7f1dd9d6d113bf48298ec7e4d77b5f44ed | |
parent | media-sound/qtractor: bump to 0.9.35 (diff) | |
download | gentoo-1e1de33fd19098bd6ee3e171bc3c0b73aa74336e.tar.gz gentoo-1e1de33fd19098bd6ee3e171bc3c0b73aa74336e.tar.bz2 gentoo-1e1de33fd19098bd6ee3e171bc3c0b73aa74336e.zip |
dev-libs/redland-bindings: remove PHP bindings
Signed-off-by: David Seifert <soap@gentoo.org>
3 files changed, 3 insertions, 184 deletions
diff --git a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-add-PHP7-support.patch b/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-add-PHP7-support.patch deleted file mode 100644 index af8e3d560d7b..000000000000 --- a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-add-PHP7-support.patch +++ /dev/null @@ -1,64 +0,0 @@ -Origin: Based on patch from Petr Písař <ppisar@redhat.com> -Date: Tue, 13 Jun 2017 15:29:15 +0200 - ---- a/php/redland-post.i -+++ b/php/redland-post.i -@@ -132,8 +132,11 @@ librdf_php_world_init(void) - exception_ce = zend_exception_get_default(); - INIT_CLASS_ENTRY(ee_ce, "RedlandException", NULL); - redland_exception_ptr = zend_register_internal_class_ex(&ee_ce, -- exception_ce, -- NULL TSRMLS_CC); -+ exception_ce -+#if PHP_MAJOR_VERSION < 7 -+ ,NULL TSRMLS_CC -+#endif -+ ); - #endif - - memset(&librdf_php_locator, '\0', sizeof(raptor_locator)); ---- a/php/redland-typemap.i -+++ b/php/redland-typemap.i -@@ -1,17 +1,17 @@ --%typemap(in) librdf_uri* %{ -- if(SWIG_ConvertPtr(*$input, (void **) &$1, SWIGTYPE_p_librdf_uri_s, 0) < 0) { -+%typemap(in) librdf_uri %{ -+ if(SWIG_ConvertPtr($input, (void **) &$1, SWIGTYPE_p_librdf_uri_s, 0) < 0) { - /* Allow NULL from php for librdf_uri* */ -- if ((*$input)->type==IS_NULL) -+ if ($input->type==IS_NULL) - $1=NULL; - else - SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor"); - } - %} - --%typemap(in) librdf_node* %{ -- if(SWIG_ConvertPtr(*$input, (void **) &$1, SWIGTYPE_p_librdf_node_s, 0) < 0) { -+%typemap(in) librdf_node %{ -+ if(SWIG_ConvertPtr($input, (void **) &$1, SWIGTYPE_p_librdf_node_s, 0) < 0) { - /* Allow NULL from php for librdf_node* */ -- if ((*$input)->type==IS_NULL) -+ if ($input->type==IS_NULL) - $1=NULL; - else - SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor"); - ---- a/php/test.php -+++ b/php/test.php -@@ -26,11 +26,9 @@ - /* ------------------------------------------------------------------------ */ - - print "Testing Redland...\n"; --$dlls = array("redland.so", "php_redland.dll", "redland.dylib", "redland.bundle"); --foreach ($dlls as $dll) { -- if(file_exists($dll)) { -- dl($dll); -- } -+if (extension_loaded('redland') !== true) { -+ print "Redland extension not loaded. Cannot run tests!" . PHP_EOL; -+ exit(1); - } - - $world=librdf_php_get_world(); - diff --git a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-php-config-r1.patch b/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-php-config-r1.patch deleted file mode 100644 index 8f8dd409c0d3..000000000000 --- a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-php-config-r1.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -58,7 +58,6 @@ AC_CHECK_PROGS(TAR, gnutar gtar tar) - AC_CHECK_PROGS(LUA, lua) - AC_CHECK_PROGS(PYTHON, python) - AC_CHECK_PROGS(PERL, perl) --AC_CHECK_PROGS(PHP, php) - AC_CHECK_PROGS(RUBY, ruby) - AC_CHECK_PROGS(SWIG, swig) - # Gnome -@@ -153,15 +152,28 @@ if test "X$LUA_VERSION" != X; then - fi - fi - -+dnl Find php-config script. -+AC_ARG_WITH([php-config], -+ [AS_HELP_STRING([--with-php-config=PATH], [Path to php-config [php-config]])], -+ [with_php_config=${withval}], -+ [with_php_config=php-config]) -+ -+if test "${with_php_config}" = "php-config"; then -+ AC_CHECK_PROG(PHP_CONFIG, php-config, php-config) -+elif test -x "${with_php_config}"; then -+ PHP_CONFIG=${with_php_config} -+ AC_SUBST(PHP_CONFIG) -+ AC_MSG_NOTICE([found ${PHP_CONFIG}]) -+fi - --AC_CHECK_PROG(PHP_CONFIG, php-config, php-config) - if test "X$PHP_CONFIG" != X ; then -+ PHP_VERSION=`${PHP_CONFIG} --version` -+ PHP_INCLUDES=`${PHP_CONFIG} --includes` -+ PHP_EXTENSION_DIR=`${PHP_CONFIG} --extension-dir` - -- PHP_VERSION=`$PHP_CONFIG --version` -- PHP_INCLUDES=`$PHP_CONFIG --includes` -- PHP_EXTENSION_DIR=`$PHP_CONFIG --extension-dir` -- -- if test $PHP_VERSION '>' 5.0.0; then -+ if test $PHP_VERSION '>' 7; then -+ PHP_SWIG="-php7" -+ elif test $PHP_VERSION '>' 5.0.0; then - PHP_SWIG="-php5" - else - PHP_SWIG="-php4" -@@ -200,6 +212,8 @@ if test "X$PHP_CONFIG" != X ; then - AC_MSG_RESULT(compile '$PHP_CFLAGS' link '$PHP_LDFLAGS' suffix $PHP_SO_SUFFIX) - - else -+ AC_MSG_WARN([php-config not found]) -+ - # This allows 'make clean' in the php directory to work when - # php isn't available - PHP=: -@@ -445,13 +459,17 @@ if test "X$with_php" != Xno ; then - with_php=yes - fi - --PHP_VERSION=`php-config --version 2>/dev/null` --if test "X$PHP_VERSION" != X; then -- languages_available="$languages_available php($PHP_VERSION)" -- if test $with_php = yes; then -- languages="$languages php" -+if test "X${PHP_VERSION}" != "X"; then -+ languages_available="$languages_available php(${PHP_VERSION})" -+fi -+ -+if test ${with_php} = yes; then -+ if test "X${PHP_VERSION}" = "X"; then -+ AC_MSG_ERROR([Failed to detect PHP version]) - fi -+ languages="$languages php" - fi -+ - AC_MSG_RESULT($with_php) - AC_SUBST(PHP_VERSION) - diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r101.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r101.ebuild index c230f35c004a..d9633b1acd8a 100644 --- a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r101.ebuild +++ b/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r101.ebuild @@ -6,14 +6,7 @@ EAPI=8 LUA_COMPAT=( lua5-{1..4} luajit ) PYTHON_COMPAT=( python3_{9..11} ) -USE_PHP="php7-4" -PHP_EXT_ECONF_ARGS="--with-php=yes --without-lua --without-perl --without-python --without-ruby" -PHP_EXT_NAME="redland" -PHP_EXT_OPTIONAL_USE="php" -PHP_EXT_SKIP_PATCHES="yes" -PHP_EXT_SKIP_PHPIZE="yes" - -inherit lua php-ext-source-r3 python-single-r1 autotools +inherit lua python-single-r1 autotools DESCRIPTION="Language bindings for Redland" HOMEPAGE="https://librdf.org/bindings/" @@ -22,7 +15,7 @@ SRC_URI="https://download.librdf.org/source/${P}.tar.gz" LICENSE="Apache-2.0 GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x86-linux" -IUSE="lua perl python php ruby test" +IUSE="lua perl python ruby test" REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} )" RESTRICT="!test? ( test )" @@ -33,10 +26,7 @@ RDEPEND="dev-libs/redland lua? ( ${LUA_DEPS} ) perl? ( dev-lang/perl:= ) python? ( ${PYTHON_DEPS} ) - ruby? ( dev-lang/ruby:* dev-ruby/log4r ) - php? ( - php_targets_php7-4? ( dev-lang/php:7.4[-threads] ) - )" + ruby? ( dev-lang/ruby:* dev-ruby/log4r )" DEPEND="${RDEPEND} dev-lang/swig @@ -46,8 +36,6 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}"/${P}-bool.patch - "${FILESDIR}"/${PN}-1.0.17.1-php-config-r1.patch - "${FILESDIR}"/${PN}-1.0.17.1-add-PHP7-support.patch ) pkg_setup() { @@ -63,8 +51,6 @@ src_prepare() { # "error: redland_wrap.c: No such file or directory", # have to copy the sources. use lua && lua_copy_sources - - use php && php-ext-source-r3_src_prepare } lua_src_configure() { @@ -93,8 +79,6 @@ src_configure() { if use lua; then lua_foreach_impl lua_src_configure fi - - use php && php-ext-source-r3_src_configure } lua_src_compile() { @@ -113,8 +97,6 @@ src_compile() { if use lua; then lua_foreach_impl lua_src_compile fi - - use php && php-ext-source-r3_src_compile } lua_src_test() { @@ -133,17 +115,6 @@ src_test() { if use lua; then lua_foreach_impl lua_src_test fi - - if use php ; then - local slot - for slot in $(php_get_slots) ; do - php_init_slot_env "${slot}" - cd php || die - ${PHPCLI} -v - ${PHPCLI} -d "extension=./${PHP_EXT_NAME}.so" -f test.php || die "PHP tests for ${slot} failed!" - cd "${S}" || die - done - fi } lua_src_install() { @@ -170,17 +141,6 @@ src_install() { use python && python_optimize - if use php; then - local slot - for slot in $(php_get_slots); do - php_init_slot_env "${slot}" - exeinto "${EXT_DIR#$EPREFIX}" - doexe "php/${PHP_EXT_NAME}.so" - done - - php-ext-source-r3_createinifiles - fi - local DOCS=( AUTHORS ChangeLog NEWS README TODO ) local HTML_DOCS=( {NEWS,README,RELEASE,TODO}.html ) einstalldocs |