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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AA4CF138334 for ; Wed, 12 Jun 2019 10:37:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCE91E096A; Wed, 12 Jun 2019 10:37:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94D62E0967 for ; Wed, 12 Jun 2019 10:37:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42878345F27 for ; Wed, 12 Jun 2019 10:37:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DD71618 for ; Wed, 12 Jun 2019 10:37:28 +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: <1560335824.1eb16a7838c9a80f3b79922a34458a6c35ae05d3.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.0.ebuild X-VCS-Directories: media-video/ffmpegthumbnailer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1eb16a7838c9a80f3b79922a34458a6c35ae05d3 X-VCS-Branch: master Date: Wed, 12 Jun 2019 10:37:28 +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: 9e94ee02-043c-4d65-858d-73d3f9068d44 X-Archives-Hash: deba3eaa9d3807746118f7bb66c45c48 commit: 1eb16a7838c9a80f3b79922a34458a6c35ae05d3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 12 10:30:49 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 12 10:37:04 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb16a78 media-video/ffmpegthumbnailer: Drop 2.2.0 (r0) Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Andreas Sturmlechner gentoo.org> .../ffmpegthumbnailer-2.2.0.ebuild | 47 ---------------------- 1 file changed, 47 deletions(-) diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild deleted file mode 100644 index d92f8f29094..00000000000 --- a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils eutils - -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 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="gnome gtk jpeg libav png test" - -RDEPEND=" - gtk? ( dev-libs/glib:2= ) - jpeg? ( virtual/jpeg:0= ) - !libav? ( >=media-video/ffmpeg-2.7:0= ) - libav? ( >=media-video/libav-11:0= ) - png? ( media-libs/libpng:0= ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" -REQUIRED_USE="gnome? ( gtk ) - test? ( png jpeg )" - -DOCS=( AUTHORS ChangeLog README.md ) - -src_prepare() { - rm -rf out* || die - - cmake-utils_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-utils_src_configure -}