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 6D1A915ACFC for ; Sun, 30 Apr 2023 07:53:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77D0AE086A; Sun, 30 Apr 2023 07:53:54 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6079BE085D for ; Sun, 30 Apr 2023 07:53:54 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91B213412B1 for ; Sun, 30 Apr 2023 07:53:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2B9AA5A for ; Sun, 30 Apr 2023 07:53:51 +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: <1682841223.6a805c728f4d7ed1d64b84dd03412ad97d2c0320.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ffmpegthumbnailer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.2.ebuild X-VCS-Directories: media-video/ffmpegthumbnailer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6a805c728f4d7ed1d64b84dd03412ad97d2c0320 X-VCS-Branch: master Date: Sun, 30 Apr 2023 07:53:51 +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: d082b315-63df-4013-b58e-6b875f0db5ef X-Archives-Hash: 2b8cd78cd157990823be8d5d74330886 commit: 6a805c728f4d7ed1d64b84dd03412ad97d2c0320 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Apr 29 22:40:39 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 30 07:53:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a805c72 media-video/ffmpegthumbnailer: drop 2.2.2 Signed-off-by: Andreas Sturmlechner gentoo.org> .../ffmpegthumbnailer-2.2.2.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.2.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.2.ebuild deleted file mode 100644 index 009948d53ef0..000000000000 --- a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Lightweight video thumbnailer that can be used by file managers" -HOMEPAGE="https://github.com/dirkvdb/ffmpegthumbnailer" -SRC_URI="https://github.com/dirkvdb/${PN}/releases/download/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="gnome gtk jpeg png test" -RESTRICT="!test? ( test )" - -REQUIRED_USE="gnome? ( gtk ) - test? ( png jpeg )" - -BDEPEND=" - virtual/pkgconfig -" -RDEPEND=" - gtk? ( dev-libs/glib:2= ) - jpeg? ( virtual/jpeg:0= ) - >=media-video/ffmpeg-2.7:0= - png? ( media-libs/libpng:0= ) -" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS ChangeLog README.md ) - -src_prepare() { - rm -rf out* || die - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_GIO=$(usex gtk) - -DENABLE_TESTS=$(usex test) - -DENABLE_THUMBNAILER=$(usex gnome) - -DHAVE_JPEG=$(usex jpeg) - -DHAVE_PNG=$(usex png) - ) - cmake_src_configure -}