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 3EBA2158094 for ; Fri, 15 Jul 2022 08:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25D60E107F; Fri, 15 Jul 2022 08:09:26 +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 EC4D3E1075 for ; Fri, 15 Jul 2022 08:09:25 +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 E2F6C3412F0 for ; Fri, 15 Jul 2022 08:09:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DA4C53D for ; Fri, 15 Jul 2022 08:09:23 +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: <1657872559.1668f679eb4842cc4886fbf1e1fa80fc40b8c827.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/loquacious/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/loquacious/loquacious-1.9.1-r4.ebuild X-VCS-Directories: dev-ruby/loquacious/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 1668f679eb4842cc4886fbf1e1fa80fc40b8c827 X-VCS-Branch: master Date: Fri, 15 Jul 2022 08:09:23 +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: 9ae6ee69-984d-44d2-b103-fae9c0a0597c X-Archives-Hash: c546e4e468a398686a0e15bd9261cc02 commit: 1668f679eb4842cc4886fbf1e1fa80fc40b8c827 Author: Hans de Graaff gentoo org> AuthorDate: Fri Jul 15 06:53:24 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Jul 15 08:09:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1668f679 dev-ruby/loquacious: EAPI 7 -> 8, add ruby30, ruby31 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/loquacious/loquacious-1.9.1-r4.ebuild | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-ruby/loquacious/loquacious-1.9.1-r4.ebuild b/dev-ruby/loquacious/loquacious-1.9.1-r4.ebuild new file mode 100644 index 000000000000..63f45cc4568d --- /dev/null +++ b/dev-ruby/loquacious/loquacious-1.9.1-r4.ebuild @@ -0,0 +1,33 @@ +# 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_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_DOCDIR="doc" + +RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Descriptive configuration files for Ruby written in Ruby" +HOMEPAGE="https://github.com/TwP/loquacious" + +IUSE="" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +all_ruby_prepare() { + sed -i -e 's/be_true/be true/' -e 's/be_false/be false/' spec/*_spec.rb || die +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* +}