commit: 84f9a2151477eb86f0b0326e5d1b8edb5981aa66 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Feb 8 19:12:54 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Feb 8 19:12:54 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f9a215
dev-libs/redland-bindings: Remove last-rited pkg Bug: https://bugs.gentoo.org/921826 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-libs/redland-bindings/Manifest | 1 - .../files/redland-bindings-1.0.17.1-bool.patch | 22 --- dev-libs/redland-bindings/metadata.xml | 11 -- .../redland-bindings-1.0.17.1-r102.ebuild | 151 --------------------- profiles/package.mask | 1 - 5 files changed, 186 deletions(-) diff --git a/dev-libs/redland-bindings/Manifest b/dev-libs/redland-bindings/Manifest deleted file mode 100644 index 75ccb5030e75..000000000000 --- a/dev-libs/redland-bindings/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST redland-bindings-1.0.17.1.tar.gz 933290 BLAKE2B f58524c30958200af1fb3ec0f63b8aa9f3fd2120297321299cdd225ff9eb331f385c4418ed25987b955857e5046b5c6f0589210b807aae0dc6abe0b758d48cfc SHA512 c105d1232555d226d98efdc1e4edc1b6c953fdd004804e40926452b8f91d30159319a50af68fc3cfe242cf180d85383ef3ff925cc65ed5d0652096cc51f4d7c0 diff --git a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-bool.patch b/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-bool.patch deleted file mode 100644 index 35594515c793..000000000000 --- a/dev-libs/redland-bindings/files/redland-bindings-1.0.17.1-bool.patch +++ /dev/null @@ -1,22 +0,0 @@ -From: =?utf-8?q?Ond=C5=99ej_Sur=C3=BD?= <[email protected]> -Date: Wed, 22 Jun 2016 10:28:48 +0200 -Subject: Don't undef bool, it's needed - ---- - perl/CORE_wrap.c | 3 --- - 1 file changed, 3 deletions(-) - -diff --git a/perl/CORE_wrap.c b/perl/CORE_wrap.c -index 46c2a46..4eb3785 100644 ---- a/perl/CORE_wrap.c -+++ b/perl/CORE_wrap.c -@@ -1432,9 +1432,6 @@ SWIG_Perl_SetModule(swig_module_info *module) { - #ifdef eof - #undef eof - #endif --#ifdef bool -- #undef bool --#endif - #ifdef close - #undef close - #endif diff --git a/dev-libs/redland-bindings/metadata.xml b/dev-libs/redland-bindings/metadata.xml deleted file mode 100644 index 4b651c1ad2d6..000000000000 --- a/dev-libs/redland-bindings/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>[email protected]</email> - <name>Gentoo Sound project</name> -</maintainer> -<upstream> - <remote-id type="github">dajobe/redland-bindings</remote-id> -</upstream> -</pkgmetadata> diff --git a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r102.ebuild b/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r102.ebuild deleted file mode 100644 index 1568a849e8fc..000000000000 --- a/dev-libs/redland-bindings/redland-bindings-1.0.17.1-r102.ebuild +++ /dev/null @@ -1,151 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -GENTOO_DEPEND_ON_PERL=no -LUA_COMPAT=( lua5-{1..4} luajit ) -PYTHON_COMPAT=( python3_11 ) - -inherit lua perl-module python-single-r1 autotools - -DESCRIPTION="Language bindings for Redland" -HOMEPAGE="https://librdf.org/bindings/" -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 ~ppc ppc64 ~sparc x86" -IUSE="lua perl python ruby test ${GENTOO_PERL_USESTRING}" -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) - python? ( ${PYTHON_REQUIRED_USE} )" -RESTRICT="!test? ( test )" - -BDEPEND="virtual/pkgconfig" - -RDEPEND="dev-libs/redland - lua? ( ${LUA_DEPS} ) - perl? ( - ${GENTOO_PERL_DEPSTRING} - dev-lang/perl:= - ) - python? ( ${PYTHON_DEPS} ) - ruby? ( dev-lang/ruby:* dev-ruby/log4r )" - -DEPEND="${RDEPEND} - dev-lang/swig - test? ( - dev-libs/redland[berkdb] - )" - -PATCHES=( - "${FILESDIR}"/${P}-bool.patch -) - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - default - - eautoreconf - - # As of version 1.0.17.1, out-of-tree builds fail with: - # "error: redland_wrap.c: No such file or directory", - # have to copy the sources. - use lua && lua_copy_sources -} - -lua_src_configure() { - pushd "${BUILD_DIR}" > /dev/null || die - - econf \ - --with-lua="${ELUA}" \ - --without-perl \ - --without-php \ - --without-python \ - --without-ruby - - popd > /dev/null || die -} - -src_configure() { - if use perl || use python || use ruby ; then - econf \ - $(use_with lua) \ - $(use_with perl) \ - $(use_with python) \ - --without-php \ - $(use_with ruby) - fi - - if use lua; then - lua_foreach_impl lua_src_configure - fi -} - -lua_src_compile() { - pushd "${BUILD_DIR}" > /dev/null || die - - default_src_compile - - popd > /dev/null || die -} - -src_compile() { - if use perl || use python || use ruby ; then - default - fi - - if use lua; then - lua_foreach_impl lua_src_compile - fi -} - -lua_src_test() { - pushd "${BUILD_DIR}" > /dev/null || die - - default_src_test - - popd > /dev/null || die -} - -src_test() { - if use perl || use python || use ruby ; then - default - fi - - if use lua; then - lua_foreach_impl lua_src_test - fi -} - -lua_src_install() { - pushd "${BUILD_DIR}" > /dev/null || die - - emake DESTDIR="${D}" INSTALLDIRS=vendor luadir="$(lua_get_cmod_dir)" install - - popd > /dev/null || die -} - -src_install() { - if use perl || use python || use ruby ; then - emake DESTDIR="${D}" INSTALLDIRS=vendor install - fi - - if use lua; then - lua_foreach_impl lua_src_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 - - local DOCS=( AUTHORS ChangeLog NEWS README TODO ) - local HTML_DOCS=( {NEWS,README,RELEASE,TODO}.html ) - einstalldocs -} diff --git a/profiles/package.mask b/profiles/package.mask index aa05623cfdfd..a896149c5c03 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -199,7 +199,6 @@ app-emacs/docker-tramp # of dev-lang/julia, all versions are unkeyworded). # Bug #921826. Removal on 2026-01-20. dev-lang/julia -dev-libs/redland-bindings # Michał Górny <[email protected]> (2025-12-12) # Upstream has switched to LLM-first coding which has already caused
