From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9D005158046 for ; Mon, 18 Aug 2025 17:59:11 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 8B08C341FA6 for ; Mon, 18 Aug 2025 17:59:11 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 9DF4D11056B; Mon, 18 Aug 2025 17:58:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9956E11056B for ; Mon, 18 Aug 2025 17:58:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52CE0341F63 for ; Mon, 18 Aug 2025 17:58:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FB2734C1 for ; Mon, 18 Aug 2025 17:58:47 +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: <1755539871.8f6c2079733c4dff49d0fbef9ee36717112a90e8.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/kodi-addon.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8f6c2079733c4dff49d0fbef9ee36717112a90e8 X-VCS-Branch: master Date: Mon, 18 Aug 2025 17:58:47 +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: 75f0b28f-bc18-4f28-99e2-54ff59cdb478 X-Archives-Hash: 48cd1df88be8c60c277e6e53884c04ef commit: 8f6c2079733c4dff49d0fbef9ee36717112a90e8 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 18 15:42:51 2025 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 18 17:57:51 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f6c2079 kodi-addon.eclass: Cleanup last-rited eclass Bug: https://bugs.gentoo.org/939660 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kodi-addon.eclass | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/eclass/kodi-addon.eclass b/eclass/kodi-addon.eclass deleted file mode 100644 index 992f506c3879..000000000000 --- a/eclass/kodi-addon.eclass +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# @ECLASS: kodi-addon.eclass -# @MAINTAINER: -# candrews@gentoo.org -# @SUPPORTED_EAPIS: 7 -# @PROVIDES: cmake -# @BLURB: Helper for correct building and (importantly) installing Kodi addon packages. -# @DEAD -# @DESCRIPTION: -# Provides a src_configure function for correct CMake configuration - -case ${EAPI} in - 7) ;; - *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; -esac - -inherit cmake - -# @FUNCTION: kodi-addon_src_configure -# @DESCRIPTION: -# Configure handling for Kodi addons -kodi-addon_src_configure() { - - mycmakeargs+=( - -DCMAKE_INSTALL_LIBDIR="${EPREFIX}/usr/$(get_libdir)/kodi" - ) - - cmake_src_configure -} - -EXPORT_FUNCTIONS src_configure