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 DBC1A15808F for ; Fri, 18 Feb 2022 03:07:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06D702BC009; Fri, 18 Feb 2022 03:07:10 +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 E2DDE2BC009 for ; Fri, 18 Feb 2022 03:07:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 58FB73432F3 for ; Fri, 18 Feb 2022 03:07:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C8BA2FC for ; Fri, 18 Feb 2022 03:07:00 +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: <1645153408.d99562d1416dbeac17da45eaf5d7d70e0cad1def.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/jp2a/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/jp2a/jp2a-1.1.1.ebuild X-VCS-Directories: media-gfx/jp2a/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d99562d1416dbeac17da45eaf5d7d70e0cad1def X-VCS-Branch: master Date: Fri, 18 Feb 2022 03:07:00 +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: c02279e1-8975-49a6-ab0f-fe1f664cea0b X-Archives-Hash: cba55477f65da41a126c402ab4e9e856 commit: d99562d1416dbeac17da45eaf5d7d70e0cad1def Author: Sam James gentoo org> AuthorDate: Fri Feb 18 03:02:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 18 03:03:28 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d99562d1 media-gfx/jp2a: drop vestigial ncurses dependency It freaks out because it can't find tinfo so let's just drop it for now. It won't have done anything for ages (it just skips over it). Signed-off-by: Sam James gentoo.org> media-gfx/jp2a/jp2a-1.1.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/media-gfx/jp2a/jp2a-1.1.1.ebuild b/media-gfx/jp2a/jp2a-1.1.1.ebuild index 3e88e9c7644d..6b66aafdfe5b 100644 --- a/media-gfx/jp2a/jp2a-1.1.1.ebuild +++ b/media-gfx/jp2a/jp2a-1.1.1.ebuild @@ -5,17 +5,19 @@ EAPI=8 DESCRIPTION="JPEG image to ASCII art converter" HOMEPAGE="https://github.com/Talinx/jp2a/" -SRC_URI="https://github.com/Talinx/jp2a/releases/download/v${PV}/jp2a-${PV}.tar.gz" +SRC_URI="https://github.com/Talinx/jp2a/releases/download/v${PV}/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos ~x64-solaris" IUSE="curl" -RDEPEND="sys-libs/ncurses - virtual/jpeg +# TODO: restore ncurses support? +# See https://github.com/gentoo/gentoo/pull/24218#issuecomment-1043795319 +RDEPEND="virtual/jpeg curl? ( net-misc/curl )" DEPEND="${RDEPEND}" src_configure() { - econf "$(use_enable curl)" + econf $(use_enable curl) }