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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 852BB13933E for ; Wed, 30 Jun 2021 18:40:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DCA3E0837; Wed, 30 Jun 2021 18:40:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8420E0837 for ; Wed, 30 Jun 2021 18:40:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A86FB33D3CF for ; Wed, 30 Jun 2021 18:40:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC4D47BB for ; Wed, 30 Jun 2021 18:40:43 +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: <1625078363.39141016c101fcc102b8120115dc6dab7e633c9d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/scrollz/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/scrollz/scrollz-2.3-r1.ebuild net-irc/scrollz/scrollz-2.3.ebuild X-VCS-Directories: net-irc/scrollz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 39141016c101fcc102b8120115dc6dab7e633c9d X-VCS-Branch: master Date: Wed, 30 Jun 2021 18:40:43 +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: a62ab6cb-ad48-4427-b2e4-ea57f265fcac X-Archives-Hash: 47f890dce01c57764c861ea0d0b92e2b commit: 39141016c101fcc102b8120115dc6dab7e633c9d Author: Sam James gentoo org> AuthorDate: Wed Jun 30 18:39:23 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 30 18:39:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39141016 net-irc/scrollz: add missing libcrypt dependency Signed-off-by: Sam James gentoo.org> net-irc/scrollz/{scrollz-2.3.ebuild => scrollz-2.3-r1.ebuild} | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/net-irc/scrollz/scrollz-2.3.ebuild b/net-irc/scrollz/scrollz-2.3-r1.ebuild similarity index 95% rename from net-irc/scrollz/scrollz-2.3.ebuild rename to net-irc/scrollz/scrollz-2.3-r1.ebuild index a76e2d53cdc..2cb6e53ecd8 100644 --- a/net-irc/scrollz/scrollz-2.3.ebuild +++ b/net-irc/scrollz/scrollz-2.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -10,17 +10,18 @@ MY_P="ScrollZ-${PV}" DESCRIPTION="Advanced IRC client based on ircII" HOMEPAGE="https://www.scrollz.info/" SRC_URI="https://www.scrollz.info/download/${MY_P}.tar.gz" +S="${WORKDIR}/ScrollZ-${MY_P}" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" - IUSE="gmp gnutls ipv6 ssl" REQUIRED_USE="gnutls? ( ssl )" BDEPEND="virtual/pkgconfig" DEPEND=" sys-libs/ncurses:0= + virtual/libcrypt:= gmp? ( dev-libs/gmp:0= ) ssl? ( gnutls? ( net-libs/gnutls:0= ) @@ -29,8 +30,6 @@ DEPEND=" " RDEPEND="${DEPEND}" -S="${WORKDIR}/ScrollZ-${MY_P}" - PATCHES=( "${FILESDIR}/${PN}-2.3-fcommon.patch" )