commit: fc21e0abe505c0f2b83714f9a0da05aaeb274311 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Mon Apr 8 05:18:14 2019 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Mon Apr 8 05:18:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc21e0ab
www-apps/nanoc-core: initial import of 4.11.2 New dependency for www-apps/nanoc, split off from the main nanoc repository. Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 www-apps/nanoc-core/Manifest | 1 + www-apps/nanoc-core/metadata.xml | 9 ++++ www-apps/nanoc-core/nanoc-core-4.11.2.ebuild | 65 ++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+) diff --git a/www-apps/nanoc-core/Manifest b/www-apps/nanoc-core/Manifest new file mode 100644 index 00000000000..cc430550d7d --- /dev/null +++ b/www-apps/nanoc-core/Manifest @@ -0,0 +1 @@ +DIST nanoc-core-4.11.2.tar.gz 302927 BLAKE2B 206142cc13468c3456dfd141bb031791c3d6aa31b81cca04493519e8b44d7bc82d6837d266a0edecc58c0e635cee7428bfdf0d5428de7d5e6fb6eacebb09d45e SHA512 842703e5218c06e817ce188458ee0e9267467b92219dd566fda9d58cd21ec9842bbc011b8f2faa7854caf39af1379c2eae16a3e3b73c53f2c8af6b8851c7c8b9 diff --git a/www-apps/nanoc-core/metadata.xml b/www-apps/nanoc-core/metadata.xml new file mode 100644 index 00000000000..9abf9c6b8ec --- /dev/null +++ b/www-apps/nanoc-core/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer type="person"><email>[email protected]</email></maintainer> +<maintainer type="project"> +<email>[email protected]</email> +<name>Gentoo Ruby Project</name> +</maintainer> +</pkgmetadata> diff --git a/www-apps/nanoc-core/nanoc-core-4.11.2.ebuild b/www-apps/nanoc-core/nanoc-core-4.11.2.ebuild new file mode 100644 index 00000000000..65bb6bb4159 --- /dev/null +++ b/www-apps/nanoc-core/nanoc-core-4.11.2.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby24 ruby25" + +RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md" +RUBY_FAKEGEM_RECIPE_DOC="rdoc" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="nanoc is a simple but very flexible static site generator written in Ruby" +HOMEPAGE="https://nanoc.ws/" +SRC_URI="https://github.com/nanoc/nanoc/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MIT" + +KEYWORDS="~amd64" +SLOT="0" +IUSE="${IUSE} minimal" + +DEPEND+="test? ( app-text/asciidoc app-text/highlight )" + +RUBY_S="nanoc-${PV}/nanoc-core" + +ruby_add_rdepend " + dev-ruby/ddmemoize:1 + dev-ruby/ddmetrics:1 + dev-ruby/ddplugin:1 + =dev-ruby/hamster-3* + >=dev-ruby/json_schema-0.19:0 + dev-ruby/zeitwerk:1 +" + +ruby_add_bdepend "test? ( + dev-ruby/bundler + dev-ruby/rspec:3 + dev-ruby/rspec-its + dev-ruby/fuubar + dev-ruby/minitest + dev-ruby/timecop + dev-ruby/yard +) +" + +all_ruby_prepare() { + # Avoid unneeded development dependencies + sed -i -e '/simplecov/I s:^:#:' \ + -e '/codecov/I s:^:#:' ../common/spec/spec_helper_head_core.rb || die + sed -i -e '/coverall/I s:^:#:' \ + -e '/rubocop/ s:^:#:' Rakefile || die + sed -i -e '1i require "tmpdir"; require "pathname"' spec/spec_helper.rb || die + + echo "-r ./spec/spec_helper.rb" > .rspec || die + + sed -i -e "s:require_relative 'lib:require './lib:" ${RUBY_FAKEGEM_GEMSPEC} || die + + # Use useable tmp dir + sed -i -e 's:/tmp/whatever:'${T}'/whatever:' spec/nanoc/core/checksummer_spec.rb || die +} + +each_ruby_test() { + RUBYLIB="${S}/lib" ${RUBY} -S rake spec || die +}
