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 9D00D15811D for ; Fri, 23 Jun 2023 08:51:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA19BE0872; Fri, 23 Jun 2023 08:51:30 +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 BB0AFE0872 for ; Fri, 23 Jun 2023 08:51:30 +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 BB224340871 for ; Fri, 23 Jun 2023 08:51:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBBCEAA0 for ; Fri, 23 Jun 2023 08:51:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1687510270.a45f861fc09472e1fa29d8692eb6a918f4a1eee6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll-coffeescript/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild X-VCS-Directories: www-apps/jekyll-coffeescript/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a45f861fc09472e1fa29d8692eb6a918f4a1eee6 X-VCS-Branch: master Date: Fri, 23 Jun 2023 08:51:26 +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: 0a7ca3ab-4f54-4f65-aeaf-e64450f936c2 X-Archives-Hash: e5882a2044f3468df380b45e68e8cc72 commit: a45f861fc09472e1fa29d8692eb6a918f4a1eee6 Author: Sam James gentoo org> AuthorDate: Fri Jun 23 08:37:12 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 23 08:51:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a45f861f www-apps/jekyll-coffeescript: enable ruby31 Signed-off-by: Sam James gentoo.org> .../jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild b/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild index efbc13877e54..fefe0ab957b2 100644 --- a/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild +++ b/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0.ebuild @@ -2,25 +2,29 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -USE_RUBY="ruby27 ruby30" + +USE_RUBY="ruby30 ruby31" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_EXTRADOC="README.md History.markdown" RUBY_FAKEGEM_TASK_DOC="" - RUBY_FAKEGEM_GEMSPEC="jekyll-coffeescript.gemspec" inherit ruby-fakegem -SRC_URI="https://github.com/jekyll/jekyll-coffeescript/archive/v${PV}.tar.gz -> ${P}.tar.gz" DESCRIPTION="A CoffeeScript Converter for Jekyll" HOMEPAGE="https://github.com/jekyll/jekyll-coffeescript" +SRC_URI="https://github.com/jekyll/jekyll-coffeescript/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64" IUSE="test" +ruby_add_rdepend ">=dev-ruby/coffee-script-2.2 + >=dev-ruby/coffee-script-source-1.12" +ruby_add_bdepend "test? ( www-apps/jekyll )" + all_ruby_prepare() { sed -i -e '/bundler/d' Rakefile || die sed -i -e "/^RSpec/i \ @@ -29,7 +33,3 @@ all_ruby_prepare() { require 'jekyll-coffeescript'" spec/spec_helper.rb || die sed -i -e 's/git ls-files/find -type f -print/' ${RUBY_FAKEGEM_GEMSPEC} || die } - -ruby_add_rdepend ">=dev-ruby/coffee-script-2.2 - >=dev-ruby/coffee-script-source-1.12" -ruby_add_bdepend "test? ( www-apps/jekyll )"