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 88046158089 for ; Wed, 24 Nov 2021 06:37:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B350E08BB; Wed, 24 Nov 2021 06:37:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4EB24E08BB for ; Wed, 24 Nov 2021 06:37:23 +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 7F876342EA5 for ; Wed, 24 Nov 2021 06:37:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23A118E for ; Wed, 24 Nov 2021 06:37:19 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1637735830.d20702f65e64414d0510fc9eac0d7a2cd825cd53.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rkelly-remix/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rkelly-remix/rkelly-remix-0.0.7-r1.ebuild X-VCS-Directories: dev-ruby/rkelly-remix/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d20702f65e64414d0510fc9eac0d7a2cd825cd53 X-VCS-Branch: master Date: Wed, 24 Nov 2021 06:37:19 +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: dc79cb98-feac-4d38-ba42-1fa390504219 X-Archives-Hash: 5e4ca222a6d2d9a70c7b1fa05653a7ba commit: d20702f65e64414d0510fc9eac0d7a2cd825cd53 Author: Hans de Graaff gentoo org> AuthorDate: Tue Nov 23 11:29:27 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Nov 24 06:37:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d20702f6 dev-ruby/rkelly-remix: add ruby30 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rkelly-remix/rkelly-remix-0.0.7-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-ruby/rkelly-remix/rkelly-remix-0.0.7-r1.ebuild b/dev-ruby/rkelly-remix/rkelly-remix-0.0.7-r1.ebuild new file mode 100644 index 000000000000..ab8dfa4bf714 --- /dev/null +++ b/dev-ruby/rkelly-remix/rkelly-remix-0.0.7-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27 ruby30" + +inherit ruby-fakegem + +DESCRIPTION="RKelly Remix is a fork of the RKelly JavaScript parser" +HOMEPAGE="https://github.com/nene/rkelly-remix" +LICENSE="MIT" + +KEYWORDS="~amd64 ~arm ~x86" +SLOT="0" +IUSE="doc" + +each_ruby_test() { + ${RUBY} -S testrb-2 -Ilib:. test/test_*.rb test/*/test_*.rb || die +}