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 236D9158094 for ; Thu, 30 Jun 2022 06:01:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56E97E0A10; Thu, 30 Jun 2022 06:01:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3C9DE0A10 for ; Thu, 30 Jun 2022 06:01:12 +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 AF662341519 for ; Thu, 30 Jun 2022 06:01:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1314351E for ; Thu, 30 Jun 2022 06:01:10 +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: <1656568803.b8f810b54ddf7867efa63454896fe07af9f482bf.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-nim/ups/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-nim/ups/ups-0.0.7.ebuild X-VCS-Directories: dev-nim/ups/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: b8f810b54ddf7867efa63454896fe07af9f482bf X-VCS-Branch: dev Date: Thu, 30 Jun 2022 06:01:10 +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: a34e07ac-f51e-4f1b-9d5b-803eae1b7557 X-Archives-Hash: 78250f2d478aea3ed5948d848395f4ce commit: b8f810b54ddf7867efa63454896fe07af9f482bf Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed Jun 29 19:29:48 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Thu Jun 30 06:00:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b8f810b5 dev-nim/ups: drop custom src_test Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-nim/ups/ups-0.0.7.ebuild | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/dev-nim/ups/ups-0.0.7.ebuild b/dev-nim/ups/ups-0.0.7.ebuild index 35f517fdb..a004789cc 100644 --- a/dev-nim/ups/ups-0.0.7.ebuild +++ b/dev-nim/ups/ups-0.0.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit edo nimble +inherit nimble DESCRIPTION="a package handler" HOMEPAGE="https://github.com/disruptek/ups" @@ -17,15 +17,7 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND="=dev-nim/npeg-0*" -BDEPEND=" - test? ( - ${RDEPEND} - dev-nim/balls - ) -" +DEPEND="test? ( ${RDEPEND} )" +BDEPEND="test? ( dev-nim/balls )" set_package_url "https://github.com/disruptek/ups" - -src_test() { - edo balls -}