commit: 85e335cd4f6f100fcf3e03d7d745666b0da4e755 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Mon Jan 20 17:30:04 2025 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Mon Jan 20 17:30:04 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85e335cd
www-apps/jekyll-coffeescript: update EAPI 7 -> 8 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> .../jekyll-coffeescript-2.0.0-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0-r1.ebuild b/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0-r1.ebuild new file mode 100644 index 000000000000..b2ae5200e9a4 --- /dev/null +++ b/www-apps/jekyll-coffeescript/jekyll-coffeescript-2.0.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32" + +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 + +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 \ + require 'jekyll'"\ + -e "/^RSpec/i \ + require 'jekyll-coffeescript'" spec/spec_helper.rb || die + sed -i -e 's/git ls-files/find -type f -print/' ${RUBY_FAKEGEM_GEMSPEC} || die +}
