Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll/
Date: Thu, 06 Sep 2018 21:23:07
Message-Id: 1536268948.b653689533aa6c0b080afd721e2c260b7d51fa4d.mgorny@gentoo
1 commit: b653689533aa6c0b080afd721e2c260b7d51fa4d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 6 20:55:50 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 6 21:22:28 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6536895
7
8 www-apps/jekyll: Clean old up
9
10 www-apps/jekyll/Manifest | 1 -
11 www-apps/jekyll/jekyll-3.6.0.ebuild | 79 -------------------------------------
12 2 files changed, 80 deletions(-)
13
14 diff --git a/www-apps/jekyll/Manifest b/www-apps/jekyll/Manifest
15 index b8aebb934d4..63ad953c916 100644
16 --- a/www-apps/jekyll/Manifest
17 +++ b/www-apps/jekyll/Manifest
18 @@ -1,2 +1 @@
19 -DIST jekyll-3.6.0.tar.gz 737199 BLAKE2B b823d794c5f4e0fb78276d2af28821a7ac67b13159832cbda3a691ad0f9e32c2228da1dde22a0ee33890ffb8384ac6d92adbb7b47629f98dda1d92024488475a SHA512 87c17c31cda44d040308079aacbcdba1e704186a69d64c1240a44960f7a79e74b35bb230be7c14419bb89843cfbf48ecf3601a8018df2255deebc0afdb4fcd86
20 DIST jekyll-3.6.2.tar.gz 740389 BLAKE2B c51e8b1545bfd1bab64c890fdf8d53087e27b3ba2fac07d286d009f1c4b6efb81d3528d239f73a73afa68d1f2d320e816c7015bf385dc9e27cad13d1b4279a50 SHA512 3af17f32098bf1012393d0ad47269ef305138553735ede9c65e461c8f1e1033008a01805c8c96f9aa0f4682f7e68a9cff3eda83a70660a334161ec3d04ce9c72
21
22 diff --git a/www-apps/jekyll/jekyll-3.6.0.ebuild b/www-apps/jekyll/jekyll-3.6.0.ebuild
23 deleted file mode 100644
24 index 10f95241893..00000000000
25 --- a/www-apps/jekyll/jekyll-3.6.0.ebuild
26 +++ /dev/null
27 @@ -1,79 +0,0 @@
28 -# Copyright 1999-2018 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -USE_RUBY="ruby23 ruby24"
33 -
34 -inherit ruby-fakegem
35 -
36 -RUBY_FAKEGEM_EXTRADOC="README.markdown History.markdown"
37 -RUBY_FAKEGEM_EXTRAINSTALL="features"
38 -
39 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
40 -
41 -RUBY_FAKEGEM_BINDIR="exe"
42 -
43 -DESCRIPTION="A simple, blog aware, static site generator"
44 -HOMEPAGE="https://jekyllrb.com https://github.com/jekyll/jekyll"
45 -SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64"
50 -IUSE="test"
51 -
52 -ruby_add_rdepend "
53 - >=dev-ruby/addressable-2.4
54 - >=dev-ruby/colorator-1.0
55 - >=dev-ruby/kramdown-1.14
56 - >=dev-ruby/liquid-4.0:4
57 - >=dev-ruby/mercenary-0.3.3
58 - >=dev-ruby/pathutil-0.9
59 - >=dev-ruby/safe_yaml-1.0
60 - >=dev-ruby/rouge-1.7:0
61 - >=www-apps/jekyll-sass-converter-1.0
62 - >=www-apps/jekyll-watch-1.1
63 -"
64 -
65 -ruby_add_bdepend "
66 - test? (
67 - >=dev-ruby/classifier-reborn-2.1.0
68 - dev-ruby/launchy
69 - >=dev-ruby/pygments_rb-0.6.0
70 - >=dev-ruby/rdiscount-2.0
71 - >=dev-ruby/redcarpet-3.2.3
72 - dev-ruby/rspec-mocks
73 - >=dev-ruby/shoulda-3
74 - dev-ruby/test-unit:2
75 - www-apps/jekyll-coffeescript
76 - )
77 -"
78 -
79 -all_ruby_prepare() {
80 - eapply "${FILESDIR}"/jekyll-3.6.0-test-helper.patch
81 -
82 - # Drop tests requiring bundler
83 - sed -i -e '/bundle_message/d' test/test_new_command.rb || die
84 - rm test/test_plugin_manager.rb || die
85 -
86 - # Replace git command in gemspec
87 - sed -i 's/git ls-files -z/find -not -type d -print0/' $RUBY_FAKEGEM_GEMSPEC || die
88 -
89 - # FIXMEs:
90 - # fails to find fixtures
91 - rm test/test_theme.rb || die
92 - rm test/test_theme_assets_reader.rb || die
93 - sed -i -e '/^ should.*theme/,/^ end$/d' \
94 - -e '/^ should.*theme/,/^ end$/d' test/test_site.rb || die
95 - # partially requires 'toml'
96 - rm test/test_configuration.rb || die
97 - # pygments tests fail because of line numbering
98 - sed -i -e '/^ context.*pygments/,/^ end$/d' test/test_tags.rb || die
99 - sed -i -e '/^ context.*pygments/,/^ end$/d' test/test_redcarpet.rb || die
100 -}
101 -
102 -src_test() {
103 - local -x JEKYLL_NO_BUNDLER_REQUIRE=true
104 -
105 - ruby-ng_src_test
106 -}