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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE5D2159C9B for ; Sat, 10 Aug 2024 06:58:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF9F52BC17A; Sat, 10 Aug 2024 06:58:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7F292BC17A for ; Sat, 10 Aug 2024 06:58:35 +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 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 18B873430D1 for ; Sat, 10 Aug 2024 06:58:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F8821ED0 for ; Sat, 10 Aug 2024 06:58:32 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1723273108.5af801f3ed0bec2cac7546e0c0d6e92ad2da4f45.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-skinelchi/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-skinelchi/vdr-skinelchi-0.3.0-r1.ebuild X-VCS-Directories: media-plugins/vdr-skinelchi/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 5af801f3ed0bec2cac7546e0c0d6e92ad2da4f45 X-VCS-Branch: master Date: Sat, 10 Aug 2024 06:58:32 +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: 50b5a4fc-5d9c-4aaf-9d7e-b427b4118172 X-Archives-Hash: 99f1d4373dbd6f2a20a02e44639a5984 commit: 5af801f3ed0bec2cac7546e0c0d6e92ad2da4f45 Author: Filip Kobierski pm me> AuthorDate: Thu Aug 1 09:07:43 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Aug 10 06:58:28 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af801f3 media-plugins/vdr-skinelchi: drop 0.3.0-r1 Signed-off-by: Filip Kobierski pm.me> Closes: https://github.com/gentoo/gentoo/pull/37900 Signed-off-by: Joonas Niilola gentoo.org> .../vdr-skinelchi/vdr-skinelchi-0.3.0-r1.ebuild | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/media-plugins/vdr-skinelchi/vdr-skinelchi-0.3.0-r1.ebuild b/media-plugins/vdr-skinelchi/vdr-skinelchi-0.3.0-r1.ebuild deleted file mode 100644 index 81062648c1c9..000000000000 --- a/media-plugins/vdr-skinelchi/vdr-skinelchi-0.3.0-r1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic vdr-plugin-2 - -DESCRIPTION="VDR Skin Plugin: skinelchi" -HOMEPAGE="http://firefly.vdr-developer.org/skinelchi" -SRC_URI="http://firefly.vdr-developer.org/skinelchi/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="media-video/vdr" - -src_prepare() { - vdr-plugin-2_src_prepare - - #bug #599148 - append-cxxflags -std=gnu++11 - - # disable imagemagick support, broken ... - sed -i "${S}"/Makefile -e \ - "s:SKINELCHI_HAVE_IMAGEMAGICK = 1:SKINELCHI_HAVE_IMAGEMAGICK = 0:" || die - - sed -i "${S}"/DisplayChannel.c \ - -e "s:/hqlogos::" \ - -e "s:/logos::" || die - - # wrong sed in vdr-plugin-2.eclass? - sed -e "s:INCLUDES += -I\$(VDRINCDIR):INCLUDES += -I\$(VDRINCDIR)/include:" \ - -i Makefile || die - - # gcc-6 warnings - sed -e "s:auto_ptr:unique_ptr:" -i services/epgsearch_services.h || die -}