From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1537938-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 14A6A15800A
	for <garchives@archives.gentoo.org>; Sun, 16 Jul 2023 05:46:27 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 53EEFE041F;
	Sun, 16 Jul 2023 05:46:26 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(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 357FFE041F
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jul 2023 05:46:26 +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 2B2CA335D1E
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jul 2023 05:46:25 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 89E1AB50
	for <gentoo-commits@lists.gentoo.org>; Sun, 16 Jul 2023 05:46:23 +0000 (UTC)
From: "Ulrich Müller" <ulm@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, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1689486360.389180e9c3d1adff23b8317701cca711f8690c3c.ulm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/magit/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-emacs/magit/magit-3.3.0-r2.ebuild
X-VCS-Directories: app-emacs/magit/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 389180e9c3d1adff23b8317701cca711f8690c3c
X-VCS-Branch: master
Date: Sun, 16 Jul 2023 05:46:23 +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: e54e3c97-6f6c-4f23-883d-f813b115d345
X-Archives-Hash: 7ebd2b4fe6c04369847470055497d758

commit:     389180e9c3d1adff23b8317701cca711f8690c3c
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 16 05:42:18 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Jul 16 05:46:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=389180e9

app-emacs/magit: Enable libgit per IUSE default

magit-inhibit-libgit is still nil in version 3.3.0. The default was
changed in upstream commit
https://github.com/magit/magit/commit/451cbe5c24f2af7ed505f1422af6ad4e8f05205b
which is not in this release.

Bug: https://bugs.gentoo.org/910381
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 app-emacs/magit/magit-3.3.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/magit/magit-3.3.0-r2.ebuild b/app-emacs/magit/magit-3.3.0-r2.ebuild
index e84c3c6320e7..9299f8b8d42f 100644
--- a/app-emacs/magit/magit-3.3.0-r2.ebuild
+++ b/app-emacs/magit/magit-3.3.0-r2.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${P}/lisp"
 
 LICENSE="GPL-3+"
 SLOT="0"
-IUSE="libgit"
+IUSE="+libgit"	# drop the IUSE default for next upstream release
 
 DOCS=( ../README.md ../Documentation/AUTHORS.md ../Documentation/RelNotes )
 ELISP_TEXINFO="../Documentation/*.texi"