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 C423D159C96 for ; Mon, 29 Jul 2024 21:39:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D93352BC09B; Mon, 29 Jul 2024 21:39:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 BCB7F2BC09B for ; Mon, 29 Jul 2024 21:39:47 +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 D51D333FD3F for ; Mon, 29 Jul 2024 21:39:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A73B1E7E for ; Mon, 29 Jul 2024 21:39:45 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1722288724.dd878a1c43e324b9e51d94fd5845b8a082cb95ef.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/ivtv-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild X-VCS-Directories: media-tv/ivtv-utils/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: dd878a1c43e324b9e51d94fd5845b8a082cb95ef X-VCS-Branch: master Date: Mon, 29 Jul 2024 21:39:45 +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: e7ff6f8b-bfe6-4fe3-adbc-fb43bff8e331 X-Archives-Hash: 71130a74ccd91a8fb1395fb70e221fb0 commit: dd878a1c43e324b9e51d94fd5845b8a082cb95ef Author: James Le Cuirot gentoo org> AuthorDate: Mon Jul 29 21:29:12 2024 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Mon Jul 29 21:32:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd878a1c media-tv/ivtv-utils: Drop old 1.4.1 Signed-off-by: James Le Cuirot gentoo.org> media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild | 48 ----------------------------- 1 file changed, 48 deletions(-) diff --git a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild b/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild deleted file mode 100644 index 57a6fc766ab5..000000000000 --- a/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards" -HOMEPAGE="http://www.ivtvdriver.org/" -SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/$(ver_cut 1-2).x/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="perl" - -DEPEND="!media-tv/ivtv" -RDEPEND="${DEPEND} - media-tv/v4l-utils - perl? ( - dev-perl/Video-Frequencies - dev-perl/Video-ivtv - dev-perl/Config-IniFiles - dev-perl/Tk - virtual/perl-Getopt-Long - )" - -PATCHES=( - "${FILESDIR}"/${PN}-1.4.0-gentoo.patch - "${FILESDIR}"/${PN}-1.4.1-overflow.patch -) - -src_configure() { - tc-export CC CXX - - # bug 907679 - use elibc_musl && append-flags -D_LARGEFILE64_SOURCE -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install - dodoc -r ChangeLog README doc/. - - if use perl; then - dobin utils/perl/*.pl - dodoc utils/perl/README.ptune - fi -}