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 54F56158012 for ; Thu, 3 Nov 2022 03:09:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D30BE0951; Thu, 3 Nov 2022 03:09:04 +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 44D45E0951 for ; Thu, 3 Nov 2022 03:09:04 +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 CEECD340FAB for ; Thu, 3 Nov 2022 03:09:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54A4C6DC for ; Thu, 3 Nov 2022 03:09:01 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1667437971.84dce05a355e98a0d500d2f0b4d86ce8665d0545.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-vcs/got/got-0.77-r1.ebuild dev-vcs/got/got-0.77.ebuild X-VCS-Directories: dev-vcs/got/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 84dce05a355e98a0d500d2f0b4d86ce8665d0545 X-VCS-Branch: dev Date: Thu, 3 Nov 2022 03:09:01 +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: a8c93fb3-000e-4178-9ac4-cc2c7ff7bf49 X-Archives-Hash: de765dd1ce98a5339a82b02bf3623bd2 commit: 84dce05a355e98a0d500d2f0b4d86ce8665d0545 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Nov 2 15:44:20 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Nov 3 01:12:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84dce05a dev-vcs/got: add missing dep Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> .../got/{got-0.77.ebuild => got-0.77-r1.ebuild} | 25 +++++++++++++--------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/dev-vcs/got/got-0.77.ebuild b/dev-vcs/got/got-0.77-r1.ebuild similarity index 71% rename from dev-vcs/got/got-0.77.ebuild rename to dev-vcs/got/got-0.77-r1.ebuild index f8642b4cf..f7846ca77 100644 --- a/dev-vcs/got/got-0.77.ebuild +++ b/dev-vcs/got/got-0.77-r1.ebuild @@ -3,8 +3,6 @@ EAPI=8 -inherit toolchain-funcs - MY_PN="${PN}-portable" DESCRIPTION="Portable version of the Game of Trees version control system" HOMEPAGE="https://gameoftrees.org" @@ -16,15 +14,22 @@ SLOT="0" KEYWORDS="~amd64 ~x86" DEPEND=" + dev-libs/libevent:= sys-libs/ncurses:=[unicode(+)] sys-libs/zlib:= - elibc_Darwin? ( dev-libs/ossp-uuid ) - elibc_SunOS? ( sys-libs/libuuid ) - !elibc_Darwin? ( dev-libs/libbsd ) - !elibc_Darwin? ( !elibc_SunOS? ( - app-crypt/libmd - sys-apps/util-linux - ) ) + elibc_Darwin? ( + dev-libs/ossp-uuid + ) + elibc_SunOS? ( + sys-libs/libuuid + ) + !elibc_Darwin? ( + dev-libs/libbsd + !elibc_SunOS? ( + app-crypt/libmd + sys-apps/util-linux + ) + ) " BDEPEND=" virtual/pkgconfig @@ -36,5 +41,5 @@ RDEPEND="${DEPEND}" DOCS=( CHANGELOG CHANGES README TODO ) src_compile() { - emake AR=$(tc-getAR) GOT_RELEASE=Yes + emake GOT_RELEASE=Yes }