From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1601341-garchives=archives.gentoo.org@lists.gentoo.org>
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 3384315808B
	for <garchives@archives.gentoo.org>; Sat, 17 Feb 2024 20:31:02 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 6B320E2A65;
	Sat, 17 Feb 2024 20:31:01 +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 53DACE2A65
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Feb 2024 20:31:01 +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 4D49433FD3F
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Feb 2024 20:31:00 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 93BAC1160
	for <gentoo-commits@lists.gentoo.org>; Sat, 17 Feb 2024 20:30:58 +0000 (UTC)
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" <leio@gentoo.org>
Message-ID: <1708201835.8ba10cf89fba5273c89fb4d937aeb059665bb548.leio@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libgphoto2/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild
X-VCS-Directories: media-libs/libgphoto2/
X-VCS-Committer: leio
X-VCS-Committer-Name: Mart Raudsepp
X-VCS-Revision: 8ba10cf89fba5273c89fb4d937aeb059665bb548
X-VCS-Branch: master
Date: Sat, 17 Feb 2024 20:30:58 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 128e9cf3-4185-43a6-b11a-d459d78433c0
X-Archives-Hash: 6b4a79e1dc828706cc1fcef25ef7baa1

commit:     8ba10cf89fba5273c89fb4d937aeb059665bb548
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 17 16:13:17 2024 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Feb 17 20:30:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba10cf8

media-libs/libgphoto2: drop no-op sed

The sed didn't match anything, but it also was a no-op because the seemingly
unnecessary eautoreconf would recreate the changed configure, bringing back
any sleeps that it might have patched out. But as this looks gone in current
configure.ac, just drop it overall.

Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild b/media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild
index e523eb7519ee..e6cd661f803a 100644
--- a/media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild
+++ b/media-libs/libgphoto2/libgphoto2-2.5.31-r1.ebuild
@@ -93,8 +93,6 @@ src_prepare() {
 	sed 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
 		|| die "examples sed failed"
 
-	sed -e 's/sleep 2//' -i configure || die
-
 	eautoreconf # For configure.ac patching
 }