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 83D8E15808B for ; Mon, 4 Apr 2022 07:49:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2423CE0937; Mon, 4 Apr 2022 07:49:14 +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 1BB37E092B for ; Mon, 4 Apr 2022 07:49:09 +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 6AACF34137B for ; Mon, 4 Apr 2022 07:49:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B51422D7 for ; Mon, 4 Apr 2022 07:49:05 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1649058524.5fb95556a3e42847551afc5c43ca7e9d995184ec.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-utils/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/v4l-utils/files/v4l-utils-1.20.0-automagic.patch X-VCS-Directories: media-tv/v4l-utils/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 5fb95556a3e42847551afc5c43ca7e9d995184ec X-VCS-Branch: master Date: Mon, 4 Apr 2022 07:49:05 +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: 2a5202ad-497d-42c1-a8d8-a6977cb1cd07 X-Archives-Hash: abdd3d5c7ec005bd5e1e7691b4196d0f commit: 5fb95556a3e42847551afc5c43ca7e9d995184ec Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Apr 4 07:48:44 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Apr 4 07:48:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb95556 media-tv/v4l-utils: remove unused patch(es) Closes: https://github.com/gentoo/gentoo/pull/24889 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: David Seifert gentoo.org> .../files/v4l-utils-1.20.0-automagic.patch | 52 ---------------------- 1 file changed, 52 deletions(-) diff --git a/media-tv/v4l-utils/files/v4l-utils-1.20.0-automagic.patch b/media-tv/v4l-utils/files/v4l-utils-1.20.0-automagic.patch deleted file mode 100644 index 017513bcb907..000000000000 --- a/media-tv/v4l-utils/files/v4l-utils-1.20.0-automagic.patch +++ /dev/null @@ -1,52 +0,0 @@ -From e018720a49b96535613ca9173750ce2271608cd5 Mon Sep 17 00:00:00 2001 -From: James Le Cuirot -Date: Sun, 23 Aug 2020 16:33:21 +0100 -Subject: [PATCH] configure.ac: Add --without-libudev option to avoid automagic - dep - -Signed-off-by: James Le Cuirot ---- - configure.ac | 27 +++++++++++++++++---------- - 1 file changed, 17 insertions(+), 10 deletions(-) - -diff --git a/configure.ac b/configure.ac -index d9f43ab5..e6134d08 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -291,16 +291,23 @@ else - AC_MSG_WARN(ALSA library not available) - fi - --PKG_CHECK_MODULES(libudev, libudev, have_libudev=yes, have_libudev=no) --if test "x$have_libudev" = "xyes"; then -- AC_DEFINE([HAVE_LIBUDEV], [], [Use libudev]) -- LIBUDEV_CFLAGS="$libudev_CFLAGS" -- LIBUDEV_LIBS="$libudev_LIBS" -- AC_SUBST(LIBUDEV_CFLAGS) -- AC_SUBST(LIBUDEV_LIBS) --else -- AC_MSG_WARN(udev library not available) --fi -+AC_ARG_WITH([libudev], -+ AS_HELP_STRING([--without-libudev], [Do not use udev library]), -+ [], -+ [with_libudev=yes]) -+ -+have_libudev=no -+ -+AS_IF([test "x$with_libudev" != xno -o "x$enable_libdvbv5" != xno], -+ [PKG_CHECK_MODULES(libudev, libudev, have_libudev=yes, []) -+ AS_IF([test "x$have_libudev" = xyes], -+ [AC_DEFINE([HAVE_LIBUDEV], [], [Use libudev]) -+ LIBUDEV_CFLAGS="$libudev_CFLAGS" -+ LIBUDEV_LIBS="$libudev_LIBS" -+ AC_SUBST(LIBUDEV_CFLAGS) -+ AC_SUBST(LIBUDEV_LIBS)], -+ AC_MSG_WARN(udev library not available) -+ )]) - - AC_SUBST([JPEG_LIBS]) - --- -2.26.2 -