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 15CFC158086 for ; Fri, 22 Oct 2021 06:40:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DE79E086A; Fri, 22 Oct 2021 06:40:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 13BECE0869 for ; Fri, 22 Oct 2021 06:40:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F240B34342B for ; Fri, 22 Oct 2021 06:40:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66BB1155 for ; Fri, 22 Oct 2021 06:40:27 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1634884780.a1b7523dde6724d31d224e5244e1a67266346d52.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/vdr2jpeg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/vdr2jpeg/vdr2jpeg-0.2.0.ebuild X-VCS-Directories: media-video/vdr2jpeg/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: a1b7523dde6724d31d224e5244e1a67266346d52 X-VCS-Branch: master Date: Fri, 22 Oct 2021 06:40:27 +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: 3a8cfbfa-b4d1-429c-9a76-4558f24dd6bf X-Archives-Hash: db6742a1826d901468f3b54181a3eb92 commit: a1b7523dde6724d31d224e5244e1a67266346d52 Author: Jakov Smolić gentoo org> AuthorDate: Fri Oct 22 06:39:40 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Fri Oct 22 06:39:40 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b7523d media-video/vdr2jpeg: drop 0.2.0 Bug: https://bugs.gentoo.org/819138 Signed-off-by: Jakov Smolić gentoo.org> media-video/vdr2jpeg/vdr2jpeg-0.2.0.ebuild | 37 ------------------------------ 1 file changed, 37 deletions(-) diff --git a/media-video/vdr2jpeg/vdr2jpeg-0.2.0.ebuild b/media-video/vdr2jpeg/vdr2jpeg-0.2.0.ebuild deleted file mode 100644 index c6f14a605b8..00000000000 --- a/media-video/vdr2jpeg/vdr2jpeg-0.2.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils - -VERSION="1911" # every bump, new version - -RESTRICT="strip" - -DESCRIPTION="Addon needed for XXV - WWW Admin for the Video Disk Recorder" -HOMEPAGE="https://projects.vdr-developer.org/projects/xxv" -SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz - mirror://gentoo/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" - -RDEPEND="media-video/ffmpeg:0" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -src_prepare() { - sed -i \ - -e "s:usr/local:usr:" \ - -e "s:-o vdr2jpeg:\$(LDFLAGS) -o vdr2jpeg:" \ - Makefile || die -} - -src_install() { - emake DESTDIR="${D}" install FFMPEG_BIN=/usr/bin/ffmpeg - - dodoc README LIESMICH -}