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 27658138334 for ; Mon, 13 May 2019 00:18:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4C1AE089A; Mon, 13 May 2019 00:18:30 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9912FE089A for ; Mon, 13 May 2019 00:18:30 +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 283793441B7 for ; Mon, 13 May 2019 00:18:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D8265EF for ; Mon, 13 May 2019 00:18:26 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1557706663.3c15c6980e0322cb4ae84427644fb355dc4b5108.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/redland/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/redland/redland-1.0.17-r1.ebuild X-VCS-Directories: dev-libs/redland/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3c15c6980e0322cb4ae84427644fb355dc4b5108 X-VCS-Branch: master Date: Mon, 13 May 2019 00:18:26 +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: 31152f9d-7b52-4da1-b0c9-8390c855d86d X-Archives-Hash: b91b546f4656ff3b9b547705c713f057 commit: 3c15c6980e0322cb4ae84427644fb355dc4b5108 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun May 12 21:28:34 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon May 13 00:17:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c15c698 dev-libs/redland: Drop 1.0.17-r1 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/redland/redland-1.0.17-r1.ebuild | 86 ------------------------------- 1 file changed, 86 deletions(-) diff --git a/dev-libs/redland/redland-1.0.17-r1.ebuild b/dev-libs/redland/redland-1.0.17-r1.ebuild deleted file mode 100644 index 5b01d60bcae..00000000000 --- a/dev-libs/redland/redland-1.0.17-r1.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit db-use libtool - -DESCRIPTION="High-level interface for the Resource Description Framework" -HOMEPAGE="http://librdf.org/" -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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="berkdb iodbc mysql odbc postgres sqlite static-libs" - -RDEPEND="dev-libs/libltdl:0 - mysql? ( virtual/mysql ) - sqlite? ( =dev-db/sqlite-3* ) - berkdb? ( sys-libs/db ) - >=media-libs/raptor-2.0.14 - >=dev-libs/rasqal-0.9.32 - postgres? ( dev-db/postgresql ) - iodbc? ( dev-db/libiodbc ) - odbc? ( dev-db/unixODBC )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -MAKEOPTS="${MAKEOPTS} -j1" #500574, required for both src_compile() and src_install() - -src_prepare() { - elibtoolize # NOTE: this is for fbsd .so version -} - -src_configure() { - local myconf=( --without-virtuoso ) - if use iodbc; then - myconf=( --with-virtuoso --with-iodbc --without-unixodbc ) - elif use odbc; then - myconf=( --with-virtuoso --with-unixodbc --without-iodbc ) - fi - - if use berkdb; then - myconf+=( - --with-bdb-include="$(db_includedir)" - --with-bdb-lib="${EPREFIX}"/usr/$(get_libdir) - --with-bdb-dbname="$(db_libname)" - ) - fi - - # FIXME: upstream doesn't test with --with-threads and testsuite fails - econf \ - $(use_enable static-libs static) \ - $(use_with berkdb bdb) \ - $(use_with mysql) \ - $(use_with sqlite) \ - $(use_with postgres postgresql) \ - --without-threads \ - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \ - "${myconf[@]}" -} - -src_test() { - if ! use berkdb; then - export REDLAND_TEST_CLONING_STORAGE_TYPE=hashes - export REDLAND_TEST_CLONING_STORAGE_NAME=test - export REDLAND_TEST_CLONING_STORAGE_OPTIONS="hash-type='memory',dir='.',write='yes',new='yes',contexts='yes'" - fi - default -} - -src_install() { - default - dohtml {FAQS,NEWS,README,RELEASE,TODO}.html - find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + - - # !!! REMOVE THIS ON VERSION BUMP, see bug 468298 for proper fix !!! - if [[ -n ${LDFLAGS} ]]; then - sed -i \ - -e "s:${LDFLAGS} ::g" \ - "${ED}"/usr/$(get_libdir)/pkgconfig/${PN}.pc || die - fi - - # https://bugs.gentoo.org/467768 - local _rdocdir=/usr/share/doc/${PF}/html/${PN} - [[ -d ${ED}/${_rdocdir} ]] && dosym ${_rdocdir} /usr/share/gtk-doc/html/${PN} -}