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 31967158020 for ; Tue, 8 Nov 2022 17:55:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AB13E09F8; Tue, 8 Nov 2022 17:55:42 +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 3FA20E09F8 for ; Tue, 8 Nov 2022 17:55:42 +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 1A37433BEB9 for ; Tue, 8 Nov 2022 17:55:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D0F972B for ; Tue, 8 Nov 2022 17:55:38 +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: <1667929493.17d7b21b88a8da699aad7cc0574a962fc2d0f8f5.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-crystal/spectator/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-crystal/spectator/Manifest dev-crystal/spectator/spectator-0.11.3.ebuild X-VCS-Directories: dev-crystal/spectator/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 17d7b21b88a8da699aad7cc0574a962fc2d0f8f5 X-VCS-Branch: dev Date: Tue, 8 Nov 2022 17:55:38 +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: ebecac48-1791-47f0-a5e8-e03938d6fde0 X-Archives-Hash: 74fb23b62c7239e45c786ea8f9f2f50e commit: 17d7b21b88a8da699aad7cc0574a962fc2d0f8f5 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Tue Nov 8 17:44:53 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Tue Nov 8 17:44:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17d7b21b dev-crystal/spectator: new package, add 0.11.3 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-crystal/spectator/Manifest | 1 + dev-crystal/spectator/spectator-0.11.3.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-crystal/spectator/Manifest b/dev-crystal/spectator/Manifest new file mode 100644 index 000000000..b3f44eb42 --- /dev/null +++ b/dev-crystal/spectator/Manifest @@ -0,0 +1 @@ +DIST spectator-0.11.3.tar.gz 147641 BLAKE2B a1015bd8433002d5c0db0d6ac4671645b2d61b30749c59d70df84520a7c01159d83e08d14dd3203bba513df576fcbaade8bc645c6be9ae3824cdc77c6fb6c8d6 SHA512 be4dd9465ff678d8049824c63b316ec74069ce59b3dde3637b619e82c7247e533a087f344415e46bff61786810f5566a1fa1e19c9957fd4d08d2f312491bf0e5 diff --git a/dev-crystal/spectator/spectator-0.11.3.ebuild b/dev-crystal/spectator/spectator-0.11.3.ebuild new file mode 100644 index 000000000..ac6ecd55d --- /dev/null +++ b/dev-crystal/spectator/spectator-0.11.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit check-reqs shards + +DESCRIPTION="Feature-rich testing framework for Crystal inspired by RSpec" +HOMEPAGE="https://github.com/icy-arctic-fox/spectator" +SRC_URI="https://github.com/icy-arctic-fox/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +DOCS=( {ARCHITECTURE,CHANGELOG,CONTRIBUTING,README}.md ) + +CHECKREQS_MEMORY="3G" + +pkg_pretend() { + has test "${FEATURES}" && check-reqs_pkg_pretend +} + +pkg_setup() { + has test "${FEATURES}" && check-reqs_pkg_setup +}