From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 474CF13835C for ; Fri, 26 Mar 2021 19:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88725E086B; Fri, 26 Mar 2021 19:46:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 709C3E086B for ; Fri, 26 Mar 2021 19:46:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7ECE0340E69 for ; Fri, 26 Mar 2021 19:46:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D561863D for ; Fri, 26 Mar 2021 19:46:01 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1616787923.591a9cc41b941bcb320871a36c8a2b8622555957.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/redland-bindings/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/redland-bindings/redland-bindings-1.0.17.1-r1.ebuild X-VCS-Directories: dev-libs/redland-bindings/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 591a9cc41b941bcb320871a36c8a2b8622555957 X-VCS-Branch: master Date: Fri, 26 Mar 2021 19:46:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8bd35bda-4cc6-4334-8366-420451b73f8a X-Archives-Hash: a56f344acbf7331129d816d1f42f93a6 commit: 591a9cc41b941bcb320871a36c8a2b8622555957 Author: Conrad Kostecki gentoo org> AuthorDate: Fri Mar 26 19:06:42 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Mar 26 19:45:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=591a9cc4 dev-libs/redland-bindings: drop old version Dropping old version, which does not support slotted lua. Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> .../redland-bindings-1.0.17.1-r1.ebuild | 130 --------------------- 1 file changed, 130 deletions(-) diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r1.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r1.ebuild deleted file mode 100644 index ca8b6ee1e90..00000000000 --- a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r1.ebuild +++ /dev/null @@ -1,130 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..9} ) - -USE_PHP="php7-2 php7-3 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 php-ext-source-r3 python-single-r1 autotools - -DESCRIPTION="Language bindings for Redland" -HOMEPAGE="http://librdf.org/bindings/" -SRC_URI="http://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" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -BDEPEND="sys-apps/sed - virtual/pkgconfig" - -RDEPEND=">=dev-libs/redland-1.0.14 - lua? ( >=dev-lang/lua-5.1:0= ) - perl? ( dev-lang/perl:= ) - python? ( ${PYTHON_DEPS} ) - ruby? ( dev-lang/ruby:* dev-ruby/log4r ) - php? ( - php_targets_php7-2? ( dev-lang/php:7.2[-threads] ) - php_targets_php7-3? ( dev-lang/php:7.3[-threads] ) - php_targets_php7-4? ( dev-lang/php:7.4[-threads] ) - )" - -DEPEND="${RDEPEND} - >=dev-lang/swig-2 - test? ( - >=dev-libs/redland-1.0.14[berkdb] - )" - -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() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - default - - eautoreconf - - use php && php-ext-source-r3_src_prepare -} - -src_configure() { - if use lua || use perl || use python || use ruby ; then - econf \ - $(use_with lua) \ - $(use_with perl) \ - $(use_with python) \ - --without-php \ - $(use_with ruby) - fi - - use php && php-ext-source-r3_src_configure -} - -src_compile() { - if use lua || use perl || use python || use ruby ; then - default - fi - - use php && php-ext-source-r3_src_compile -} - -src_test() { - if use lua || use perl || use python || use ruby ; then - default - 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 -} - -src_install() { - if use lua || use perl || use python || use ruby ; then - emake DESTDIR="${D}" INSTALLDIRS=vendor luadir=/usr/$(get_libdir)/lua/5.1 install - fi - - if use perl; then - find "${ED}" -type f -name perllocal.pod -delete - find "${ED}" -depth -mindepth 1 -type d -empty -delete - fi - - 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 -}