Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/wikicloth: wikicloth-0.8.2.ebuild ChangeLog
Date: Thu, 29 Jan 2015 20:56:20
Message-Id: 20150129205614.8E907109D4@oystercatcher.gentoo.org
1 mrueg 15/01/29 20:56:14
2
3 Modified: ChangeLog
4 Added: wikicloth-0.8.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.2 dev-ruby/wikicloth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/wikicloth/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/wikicloth/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/wikicloth/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/wikicloth/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 6 Jun 2014 14:43:56 -0000 1.1
24 +++ ChangeLog 29 Jan 2015 20:56:14 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/wikicloth
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/wikicloth/ChangeLog,v 1.1 2014/06/06 14:43:56 mrueg Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/wikicloth/ChangeLog,v 1.2 2015/01/29 20:56:14 mrueg Exp $
31 +
32 +*wikicloth-0.8.2 (29 Jan 2015)
33 +
34 + 29 Jan 2015; Manuel RĂ¼ger <mrueg@g.o> +wikicloth-0.8.2.ebuild:
35 + Version bump.
36
37 *wikicloth-0.8.1 (06 Jun 2014)
38
39
40
41
42 1.1 dev-ruby/wikicloth/wikicloth-0.8.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/wikicloth/wikicloth-0.8.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/wikicloth/wikicloth-0.8.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wikicloth-0.8.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/wikicloth/wikicloth-0.8.2.ebuild,v 1.1 2015/01/29 20:56:14 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
57 RUBY_FAKEGEM_EXTRADOC="README README.textile"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="A mediawiki parser"
62 HOMEPAGE="https://github.com/nricciar/wikicloth"
63 SRC_URI="https://github.com/nricciar/wikicloth/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE=""
69
70 ruby_add_rdepend "dev-ruby/builder
71 dev-ruby/expression_parser
72 dev-ruby/rinku"
73 ruby_add_bdepend "test? (
74 dev-ruby/activesupport
75 dev-ruby/test-unit
76 dev-ruby/i18n )"
77
78 all_ruby_prepare() {
79 sed -i \
80 -e '/[Bb]undler/d' \
81 -e "/require 'simplecov'/d" \
82 Rakefile || die "sed failed"
83 }
84
85 each_ruby_test() {
86 ${RUBY} -Ilib:test test/wiki_cloth_test.rb || die
87 }