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 B29E8138341 for ; Tue, 18 Oct 2016 19:27:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35F3CE0B79; Tue, 18 Oct 2016 19:26:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D50FE0B79 for ; Tue, 18 Oct 2016 19:26:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AFF54341668 for ; Tue, 18 Oct 2016 19:26:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08E1424B1 for ; Tue, 18 Oct 2016 19:26:43 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1476818790.31b06de2a82d1502f37415433ef3104a9526afd0.pacho@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.14.1.ebuild X-VCS-Directories: dev-libs/redland-bindings/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 31b06de2a82d1502f37415433ef3104a9526afd0 X-VCS-Branch: master Date: Tue, 18 Oct 2016 19:26:43 +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-Archives-Salt: b237c1b6-bf1a-4426-9cfb-b30d8d7cb51c X-Archives-Hash: 9060228b9786e2d7b51f18a44f99385b commit: 31b06de2a82d1502f37415433ef3104a9526afd0 Author: Pacho Ramos gentoo org> AuthorDate: Tue Oct 18 19:21:52 2016 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Tue Oct 18 19:26:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31b06de2 dev-libs/redland-bindings: Drop old Package-Manager: portage-2.3.1 .../redland-bindings-1.0.14.1.ebuild | 103 --------------------- 1 file changed, 103 deletions(-) diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.14.1.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.14.1.ebuild deleted file mode 100644 index e9278b2..00000000 --- a/dev-libs/redland-bindings/redland-bindings-1.0.14.1.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 -PYTHON_DEPEND="python? 2:2.7" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit multilib python - -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 ia64 ppc ppc64 sparc x86 ~x86-linux ~ppc-macos" -IUSE="lua perl python php ruby" - -RDEPEND=">=dev-libs/redland-1.0.14 - lua? ( >=dev-lang/lua-5.1 ) - perl? ( dev-lang/perl ) - php? ( dev-lang/php ) - ruby? ( dev-lang/ruby dev-ruby/log4r )" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=dev-lang/swig-2 - sys-apps/sed" - -pkg_setup() { - use python && python_pkg_setup -} - -src_configure() { - econf \ - $(use_with lua) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with php) \ - $(use_with ruby) - - # Python bindings are built/tested/installed manually. - sed -e "/^SUBDIRS =/s/ python//" -i Makefile -} - -src_compile() { - default - - if use python; then - python_copy_sources python - - building() { - emake \ - PYTHON_INCLUDES="-I$(python_get_includedir)" \ - pythondir="$(python_get_sitedir)" - } - python_execute_function -s --source-dir python building - fi -} - -src_test() { - default - - if use python; then - testing() { - emake \ - PYTHON="$(PYTHON)" \ - check - } - python_execute_function -s --source-dir python testing - fi -} - -src_install() { - emake DESTDIR="${D}" INSTALLDIRS=vendor luadir=/usr/$(get_libdir)/lua/5.1 install - - if use perl; then - find "${ED}" -type f -name perllocal.pod -delete - find "${ED}" -depth -mindepth 1 -type d -empty -delete - fi - - if use python; then - installation() { - emake \ - DESTDIR="${D}" \ - pythondir="$(python_get_sitedir)" \ - install - } - python_execute_function -s --source-dir python installation - fi - - dodoc AUTHORS ChangeLog NEWS README TODO - dohtml {NEWS,README,RELEASE,TODO}.html -} - -pkg_postinst() { - use python && python_mod_optimize RDF.py -} - -pkg_postrm() { - use python && python_mod_cleanup RDF.py -}