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 4465C158095 for ; Sat, 10 Sep 2022 11:18:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5CE84E08F7; Sat, 10 Sep 2022 11:18:50 +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 41EC4E08F7 for ; Sat, 10 Sep 2022 11:18:50 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DB4B340F3F for ; Sat, 10 Sep 2022 11:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C04265BD for ; Sat, 10 Sep 2022 11:18:47 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1662808698.4971298c4bf0599edfec478d2f5d1e9f31de3bf9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/alpine/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-client/alpine/alpine-2.26-r1.ebuild mail-client/alpine/alpine-2.26.ebuild X-VCS-Directories: mail-client/alpine/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4971298c4bf0599edfec478d2f5d1e9f31de3bf9 X-VCS-Branch: master Date: Sat, 10 Sep 2022 11:18:47 +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: 49ac77cc-ef1b-4ba9-9e9d-c65ea978b82d X-Archives-Hash: b8cea2477300bb14860db050274219a9 commit: 4971298c4bf0599edfec478d2f5d1e9f31de3bf9 Author: Holger Hoffstätte applied-asynchrony com> AuthorDate: Sun Sep 4 13:24:53 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Sep 10 11:18:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4971298c mail-client/alpine: enable threads by default Upstream enables pthreads by default, so enable it unconditionally. Closes: https://bugs.gentoo.org/868396 Signed-off-by: Holger Hoffstätte applied-asynchrony.com> Closes: https://github.com/gentoo/gentoo/pull/27138 Signed-off-by: Sam James gentoo.org> mail-client/alpine/{alpine-2.26.ebuild => alpine-2.26-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail-client/alpine/alpine-2.26.ebuild b/mail-client/alpine/alpine-2.26-r1.ebuild similarity index 98% rename from mail-client/alpine/alpine-2.26.ebuild rename to mail-client/alpine/alpine-2.26-r1.ebuild index c06917b3931e..b3e7ee51414d 100644 --- a/mail-client/alpine/alpine-2.26.ebuild +++ b/mail-client/alpine/alpine-2.26-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://alpineapp.email/alpine/release/src/${P}.tar.xz LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="+chappa ipv6 kerberos ldap nls onlyalpine passfile smime ssl threads" +IUSE="+chappa ipv6 kerberos ldap nls onlyalpine passfile smime ssl" DEPEND="sys-libs/ncurses:= virtual/libcrypt:= @@ -37,13 +37,13 @@ src_prepare() { src_configure() { myconf=( --without-tcl + --with-pthread --with-system-pinerc="${EPREFIX}"/etc/pine.conf --with-system-fixed-pinerc="${EPREFIX}"/etc/pine.conf.fixed $(use_with ldap) $(use_with ssl) $(use_with passfile passfile .pinepwd) $(use_with kerberos krb5) - $(use_with threads pthread) $(use_enable nls) $(use_with ipv6) $(use_with smime)