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/
Date: Sat, 28 May 2016 08:41:42
Message-Id: 1464424838.12dfaabdeb193fb316a3a91528dd4701d2da00ea.graaff@gentoo
1 commit: 12dfaabdeb193fb316a3a91528dd4701d2da00ea
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 07:47:22 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 08:40:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12dfaabd
7
8 www-apps/nanoc: drop last x86 version
9
10 Bug 546964 has gone one year without any activity.
11 Assume that there is no longer interest for nanoc on x86
12 and drop keywords accordingly.
13
14 Package-Manager: portage-2.2.28
15
16 www-apps/nanoc/Manifest | 1 -
17 www-apps/nanoc/nanoc-3.7.5.ebuild | 57 ---------------------------------------
18 2 files changed, 58 deletions(-)
19
20 diff --git a/www-apps/nanoc/Manifest b/www-apps/nanoc/Manifest
21 index 2a0137e..c1b7038 100644
22 --- a/www-apps/nanoc/Manifest
23 +++ b/www-apps/nanoc/Manifest
24 @@ -1,3 +1,2 @@
25 -DIST nanoc-3.7.5.gem 185856 SHA256 504309339c3e7711e6d75741b8bfa1ac1c6bcbd4a6accfc7beafbd5a45812602 SHA512 3cf6562e06d20afbc378e1d83a0545b8b6309c3c273a05538b62dd75ddbb80f4cbfc90b9225981562e561ab59a9e4e7810515da60ed12c797af4086b2531a1c7 WHIRLPOOL c1327033847a9a773e8d19795c36971ecf84d37386a7a33556b82a1563da321096b7a6596f982fa3159b6443a2c94c1ecf3ae14dd3b7f12000bb46d807ba0df4
26 DIST nanoc-3.8.0.gem 189440 SHA256 382397d761ea1a97537eaee995e37ba416f7f7f093090cc812071a9eb28cea1e SHA512 ed39b6e799ea16fe19539181c0de2054af428b0ecdec5cfd592948aa14f3f0e7233a6039e57d68d9046824f55b7fc00d4f2621c4bd4b77d243e40c5c8750e93e WHIRLPOOL 33b92d6da24974c1d525d8da2433d62863ff97423ad8079c3937ac1c5c98fa310a05b179afa390d1fe3758a2e423951c880210508fdcbfc9c601e67fcbb841c5
27 DIST nanoc-4.1.6.gem 173056 SHA256 95887475fac5a9bc1e59a74f6a5df9b2655b19a6389953121210276ca373db30 SHA512 bf6059558f8465a0aab7fa67b1fefb06618bd2ee54f61fb5e8b77d6738bb4f2bc97604cfa76164aa2c759be8aa4912ec3538cf349a77f903321acd786029b2d8 WHIRLPOOL 396b32ba5170aeaed2f2b11917e480b27a9e63046da344e3232ca4b2691c56d9037877ea2370f9225f77eb65af03a8b3b4f4b9962611d41e65db0d08184eb5b4
28
29 diff --git a/www-apps/nanoc/nanoc-3.7.5.ebuild b/www-apps/nanoc/nanoc-3.7.5.ebuild
30 deleted file mode 100644
31 index 6107985..0000000
32 --- a/www-apps/nanoc/nanoc-3.7.5.ebuild
33 +++ /dev/null
34 @@ -1,57 +0,0 @@
35 -# Copyright 1999-2015 Gentoo Foundation
36 -# Distributed under the terms of the GNU General Public License v2
37 -# $Id$
38 -
39 -EAPI=5
40 -USE_RUBY="ruby19 ruby20 ruby21"
41 -
42 -RUBY_FAKEGEM_EXTRADOC="ChangeLog NEWS.md README.md"
43 -
44 -RUBY_FAKEGEM_TASK_DOC="doc"
45 -RUBY_FAKEGEM_TASK_TEST="test:all"
46 -
47 -inherit ruby-fakegem
48 -
49 -DESCRIPTION="nanoc is a simple but very flexible static site generator written in Ruby"
50 -HOMEPAGE="http://nanoc.ws/"
51 -LICENSE="MIT"
52 -
53 -KEYWORDS="~amd64 ~x86"
54 -SLOT="0"
55 -IUSE="${IUSE} minimal"
56 -
57 -DEPEND+="test? ( app-text/asciidoc app-text/highlight )"
58 -
59 -ruby_add_rdepend "!minimal? (
60 - dev-ruby/mime-types
61 - dev-ruby/rack
62 -)
63 - >=dev-ruby/cri-2.3:0"
64 -
65 -ruby_add_bdepend "test? (
66 - >=dev-ruby/mocha-0.13
67 - dev-ruby/minitest
68 - =dev-ruby/rdoc-4*
69 - dev-ruby/systemu
70 - dev-ruby/yard
71 -)
72 -doc? (
73 - dev-ruby/kramdown
74 - dev-ruby/rdiscount
75 - dev-ruby/yard
76 -)"
77 -
78 -all_ruby_prepare() {
79 - use doc || use test || (rm tasks/doc.rake || die)
80 - use test || (rm tasks/test.rake || die)
81 -
82 - # Avoid dependency on coveralls.
83 - sed -i -e '/coverall/I s:^:#:' test/helper.rb || die
84 -
85 - # Avoid non-optional tests for w3c_validators which we don't have
86 - # packaged and which require network access.
87 - rm test/extra/checking/checks/test_{css,html}.rb || die
88 -
89 - # Skip a test that produces slightly different javascript.
90 - sed -i -e '/test_filter_with_options/,/^ end/ s:^:#:' test/filters/test_uglify_js.rb || die
91 -}