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 C95A415808B for ; Sun, 20 Mar 2022 10:04:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D3B7E0858; Sun, 20 Mar 2022 10:04:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37815E0858 for ; Sun, 20 Mar 2022 10:04:44 +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 61719342FAD for ; Sun, 20 Mar 2022 10:04:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A31FC33A for ; Sun, 20 Mar 2022 10:04:40 +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: <1647770675.e354a1b16faa8f6d5475e21d8737219e3994dbec.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/abstract/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/abstract/abstract-1.0.0-r5.ebuild X-VCS-Directories: dev-ruby/abstract/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: e354a1b16faa8f6d5475e21d8737219e3994dbec X-VCS-Branch: master Date: Sun, 20 Mar 2022 10:04:40 +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: b5c9670d-c737-4faa-9c31-45710ea4618d X-Archives-Hash: cf0eef01162aad405e3aeb9f2fdeff01 commit: e354a1b16faa8f6d5475e21d8737219e3994dbec Author: Hans de Graaff gentoo org> AuthorDate: Sun Mar 20 09:05:01 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Mar 20 10:04:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e354a1b1 dev-ruby/abstract: add ruby31 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/abstract/abstract-1.0.0-r5.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-ruby/abstract/abstract-1.0.0-r5.ebuild b/dev-ruby/abstract/abstract-1.0.0-r5.ebuild new file mode 100644 index 000000000000..1febb53a86ce --- /dev/null +++ b/dev-ruby/abstract/abstract-1.0.0-r5.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.txt" + +inherit ruby-fakegem + +DESCRIPTION="Library which enable you to define abstract method in Ruby" +HOMEPAGE="https://rubygems.org/gems/abstract" + +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +each_ruby_test() { + ${RUBY} -Ilib test/test.rb || die "tests failed" +}