Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/nanoc-core/
Date: Sun, 18 Aug 2019 05:44:30
Message-Id: 1566105567.74181923ddc61e48ee005b11cf9387ed995cbe53.graaff@gentoo
1 commit: 74181923ddc61e48ee005b11cf9387ed995cbe53
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 18 05:19:27 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 18 05:19:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74181923
7
8 www-apps/nanoc-core: add 4.11.9
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 www-apps/nanoc-core/Manifest | 1 +
14 www-apps/nanoc-core/nanoc-core-4.11.9.ebuild | 65 ++++++++++++++++++++++++++++
15 2 files changed, 66 insertions(+)
16
17 diff --git a/www-apps/nanoc-core/Manifest b/www-apps/nanoc-core/Manifest
18 index c2c839567ff..030c17c145a 100644
19 --- a/www-apps/nanoc-core/Manifest
20 +++ b/www-apps/nanoc-core/Manifest
21 @@ -1,2 +1,3 @@
22 DIST nanoc-core-4.11.7.tar.gz 307042 BLAKE2B b1144c80ea80ccf5bf713f93469061fbfb8a74890c3b9563ee8d88cd85375810fa6161a53d9221d817985b870426cafb52257403d05245b735855aecd76356a3 SHA512 d82d89dcd9f056e711cb722b6fbe22045eecf9fd61e3541529b89c8eb916ca850ef498148f1065b792e1a1d786e6d2f1477b41713753ff9d7b283ecc3cf2649c
23 DIST nanoc-core-4.11.8.tar.gz 307102 BLAKE2B 615dfc1e2a6424343327888d4d5c577652d8480178769accc15f86ae8f64f7dc8aecbfd98b16791f98dc3f5fbf1a9e88ed6ca38354aa5277aea13dec42a6404b SHA512 939e54a55ffeca9ea392d2e4ad49564761dc7497052a8bc367a9df9d7dd2fbc1943bc363e7df82da988d6897ed24d9a5db1c869ce063dd7dd6ae03d0da8d19b5
24 +DIST nanoc-core-4.11.9.tar.gz 307441 BLAKE2B 9357a78412056eb62b8aac04ff2d02238bd02786bf6d3a1d0d4cc738b833f596122f55d325779760d2afa579b2864561701ccf107c9f0bd1a04e6aacd6d2b64d SHA512 34b6a52e16d04d69e3016ae9b77080d96860ab406ada8a597d5cf721761d82ec5e6d4dcc64193b6804315f3731618cc6286b5d6844f55c8d20dabed1a8251579
25
26 diff --git a/www-apps/nanoc-core/nanoc-core-4.11.9.ebuild b/www-apps/nanoc-core/nanoc-core-4.11.9.ebuild
27 new file mode 100644
28 index 00000000000..ccc331cdd62
29 --- /dev/null
30 +++ b/www-apps/nanoc-core/nanoc-core-4.11.9.ebuild
31 @@ -0,0 +1,65 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_EXTRADOC="NEWS.md README.md"
39 +
40 +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="nanoc is a simple but very flexible static site generator written in Ruby"
45 +HOMEPAGE="https://nanoc.ws/"
46 +SRC_URI="https://github.com/nanoc/nanoc/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 +LICENSE="MIT"
48 +
49 +KEYWORDS="~amd64"
50 +SLOT="0"
51 +IUSE="${IUSE} minimal"
52 +
53 +DEPEND+="test? ( app-text/asciidoc app-text/highlight )"
54 +
55 +RUBY_S="nanoc-${PV}/nanoc-core"
56 +
57 +ruby_add_rdepend "
58 + dev-ruby/ddmemoize:1
59 + dev-ruby/ddmetrics:1
60 + dev-ruby/ddplugin:1
61 + =dev-ruby/hamster-3*
62 + >=dev-ruby/json_schema-0.19:0
63 + dev-ruby/slow_enumerator_tools:1
64 + >=dev-ruby/zeitwerk-2.1:2
65 +"
66 +
67 +ruby_add_bdepend "test? (
68 + dev-ruby/bundler
69 + dev-ruby/rspec:3
70 + dev-ruby/rspec-its
71 + dev-ruby/fuubar
72 + dev-ruby/minitest
73 + dev-ruby/timecop
74 + dev-ruby/yard
75 +)
76 +"
77 +
78 +all_ruby_prepare() {
79 + # Avoid unneeded development dependencies
80 + sed -i -e '/simplecov/I s:^:#:' \
81 + -e '/codecov/I s:^:#:' ../common/spec/spec_helper_head_core.rb || die
82 + sed -i -e '/coverall/I s:^:#:' \
83 + -e '/rubocop/ s:^:#:' Rakefile || die
84 + sed -i -e '1i require "tmpdir"; require "pathname"' spec/spec_helper.rb || die
85 +
86 + echo "-r ./spec/spec_helper.rb" > .rspec || die
87 +
88 + sed -i -e "s:require_relative 'lib:require './lib:" ${RUBY_FAKEGEM_GEMSPEC} || die
89 +
90 + # Use useable tmp dir
91 + sed -i -e 's:/tmp/whatever:'${T}'/whatever:' spec/nanoc/core/checksummer_spec.rb || die
92 +}
93 +
94 +each_ruby_test() {
95 + RUBYLIB="${S}/lib" ${RUBY} -S rake spec || die
96 +}