Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/coderay: coderay-1.0.7.ebuild ChangeLog
Date: Thu, 05 Jul 2012 23:49:15
Message-Id: 20120705234905.44F142004B@flycatcher.gentoo.org
1 flameeyes 12/07/05 23:49:05
2
3 Modified: ChangeLog
4 Added: coderay-1.0.7.ebuild
5 Log:
6 Version bump; reinstate jruby support.
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.53 dev-ruby/coderay/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/coderay/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/coderay/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/coderay/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 25 Jun 2012 06:06:31 -0000 1.52
24 +++ ChangeLog 5 Jul 2012 23:49:05 -0000 1.53
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/coderay
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v 1.52 2012/06/25 06:06:31 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v 1.53 2012/07/05 23:49:05 flameeyes Exp $
30 +
31 +*coderay-1.0.7 (05 Jul 2012)
32 +
33 + 05 Jul 2012; Diego E. Pettenò <flameeyes@g.o> +coderay-1.0.7.ebuild:
34 + Version bump; reinstate jruby support.
35
36 25 Jun 2012; Hans de Graaff <graaff@g.o> coderay-1.0.6.ebuild:
37 Avoid unneeded dependency on git.
38 @@ -210,4 +215,3 @@
39 16 Jan 2008; Aggelos Orfanakos <agorf@g.o> +metadata.xml,
40 +coderay-0.7.4.215.ebuild:
41 Initial import.
42 -
43
44
45
46 1.1 dev-ruby/coderay/coderay-1.0.7.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/coderay/coderay-1.0.7.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/coderay/coderay-1.0.7.ebuild?rev=1.1&content-type=text/plain
50
51 Index: coderay-1.0.7.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/coderay-1.0.7.ebuild,v 1.1 2012/07/05 23:49:05 flameeyes Exp $
56
57 EAPI=4
58
59 USE_RUBY="ruby18 ree18 ruby19 jruby"
60
61 # The test target also contains test:exe but that requires
62 # shoulda-context which we do not have packaged yet.
63 RUBY_FAKEGEM_TASK_TEST="test:functional test:units"
64
65 RUBY_FAKEGEM_TASK_DOC="doc"
66 RUBY_FAKEGEM_DOCDIR="doc"
67
68 RUBY_FAKEGEM_EXTRADOC="Changes-pre-1.0.textile Changes.textile FOLDERS README_INDEX.rdoc README.textile"
69
70 inherit ruby-fakegem
71
72 DESCRIPTION="A Ruby library for syntax highlighting."
73 HOMEPAGE="http://coderay.rubychan.de/"
74 SRC_URI="https://github.com/rubychan/coderay/tarball/v${PV} -> ${P}.tgz"
75
76 RUBY_S="rubychan-coderay-*"
77
78 LICENSE="LGPL-2.1"
79 SLOT="0"
80 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
81 IUSE=""
82
83 # Redcloth is optional but automagically tested, so we add this
84 # dependency to ensure that we get at least a version that works: bug
85 # 330621. We use this convoluted way because redcloth isn't available
86 # yet for jruby.
87 USE_RUBY="${USE_RUBY/jruby/}" ruby_add_bdepend "test? ( >=dev-ruby/redcloth-4.2.2 )"
88
89 all_ruby_prepare() {
90 sed -i -e '/git ls-files/ s:^:#:' coderay.gemspec || die
91 }