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 D07AC15800C for ; Thu, 29 Dec 2022 20:29:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7178EE0963; Thu, 29 Dec 2022 20:29:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 5D5B5E0963 for ; Thu, 29 Dec 2022 20:29:39 +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 3FB88340E92 for ; Thu, 29 Dec 2022 20:29:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53292801 for ; Thu, 29 Dec 2022 20:29:35 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1672345734.fa5eb224988472988a41c8f0235717b3094348d7.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/baka-mplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/baka-mplayer/baka-mplayer-2.0.4-r1.ebuild X-VCS-Directories: media-video/baka-mplayer/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: fa5eb224988472988a41c8f0235717b3094348d7 X-VCS-Branch: master Date: Thu, 29 Dec 2022 20:29:35 +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: acff9077-4961-40f4-8119-0bf74ed77b54 X-Archives-Hash: fc8ff88a83fd3cb9ba40eb48ff656988 commit: fa5eb224988472988a41c8f0235717b3094348d7 Author: Ionen Wolkens gentoo org> AuthorDate: Thu Dec 29 16:54:48 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Thu Dec 29 20:28:54 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa5eb224 media-video/baka-mplayer: drop 2.0.4-r1 Signed-off-by: Ionen Wolkens gentoo.org> .../baka-mplayer/baka-mplayer-2.0.4-r1.ebuild | 70 ---------------------- 1 file changed, 70 deletions(-) diff --git a/media-video/baka-mplayer/baka-mplayer-2.0.4-r1.ebuild b/media-video/baka-mplayer/baka-mplayer-2.0.4-r1.ebuild deleted file mode 100644 index f636c9d563c5..000000000000 --- a/media-video/baka-mplayer/baka-mplayer-2.0.4-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmake-utils xdg-utils - -DESCRIPTION="Cross-platform libmpv-based multimedia player with uncluttered design" -HOMEPAGE="http://bakamplayer.u8sand.net/" -SRC_URI="https://github.com/u8sand/Baka-MPlayer/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 ~x86" -IUSE="" - -BDEPEND=" - dev-qt/linguist-tools:5 - virtual/pkgconfig -" -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - media-video/mpv[libmpv] - x11-libs/libX11 -" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/Baka-MPlayer-${PV}" - -PATCHES=( - "${FILESDIR}/${P}-gcc5.patch" - "${FILESDIR}/${P}-mpv23.patch" - "${FILESDIR}/${P}-playlist-regression.patch" -) - -src_prepare() { - default - # don't install license, man.gz, install the latter manually - sed -e "/^INSTALLS/s:\sman\slicense::" \ - -e '/^manual.path/s:'${PN}':'${PF}':' \ - -i src/Baka-MPlayer.pro || die - gunzip DOCS/baka-mplayer.1.gz || die -} - -src_configure() { - eqmake5 \ - INSTROOT="${D}" \ - CONFIG+=install_translations \ - lrelease="$(qt5_get_bindir)"/lrelease \ - lupdate="$(qt5_get_bindir)"/lupdate \ - src/Baka-MPlayer.pro -} - -src_install() { - default - doman DOCS/baka-mplayer.1 -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -}