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: ChangeLog coderay-0.9.2_pre455.ebuild
Date: Fri, 19 Feb 2010 10:33:03
Message-Id: E1NiQAN-00020e-WD@stork.gentoo.org
1 flameeyes 10/02/19 10:32:59
2
3 Modified: ChangeLog
4 Added: coderay-0.9.2_pre455.ebuild
5 Log:
6 Version bump, don't mask as it seems to work oute quite fine anyway. We still don't have tests, but we unbundle term-ansicolor at least. Upstream has been contacted to see for a full tarball release for tests and documentation.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 dev-ruby/coderay/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/coderay/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/coderay/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/coderay/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 24 Jan 2010 14:00:59 -0000 1.15
23 +++ ChangeLog 19 Feb 2010 10:32:59 -0000 1.16
24 @@ -1,6 +1,15 @@
25 # ChangeLog for dev-ruby/coderay
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v 1.15 2010/01/24 14:00:59 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/ChangeLog,v 1.16 2010/02/19 10:32:59 flameeyes Exp $
29 +
30 +*coderay-0.9.2_pre455 (19 Feb 2010)
31 +
32 + 19 Feb 2010; Diego E. Pettenò <flameeyes@g.o>
33 + +coderay-0.9.2_pre455.ebuild:
34 + Version bump, don't mask as it seems to work oute quite fine anyway. We
35 + still don't have tests, but we unbundle term-ansicolor at least. Upstream
36 + has been contacted to see for a full tarball release for tests and
37 + documentation.
38
39 24 Jan 2010; Hans de Graaff <graaff@g.o> -coderay-0.8.312.ebuild,
40 -coderay-0.8.357.ebuild, -coderay-0.8.357-r1.ebuild:
41
42
43
44 1.1 dev-ruby/coderay/coderay-0.9.2_pre455.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/coderay/coderay-0.9.2_pre455.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/coderay/coderay-0.9.2_pre455.ebuild?rev=1.1&content-type=text/plain
48
49 Index: coderay-0.9.2_pre455.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/coderay/coderay-0.9.2_pre455.ebuild,v 1.1 2010/02/19 10:32:59 flameeyes Exp $
54
55 EAPI=2
56
57 USE_RUBY="ruby18 ruby19 jruby"
58
59 if [ ${PV/_pre} != ${PV} ]; then
60 # Instead of the standard X.Y.Z.preT form, coderay is released as
61 # X.Y.Z.T.pre… since we need something sane for our versioning, we
62 # have to play with it around… sigh!
63 inherit versionator
64
65 prever=$(get_version_component_range 4)
66 RUBY_FAKEGEM_VERSION="$(get_version_component_range 1-3).${prever#pre}.pre"
67 fi
68
69 RUBY_FAKEGEM_TASK_DOC=""
70 RUBY_FAKEGEM_TASK_TEST=""
71
72 RUBY_FAKEGEM_EXTRADOC="lib/README"
73
74 inherit ruby-fakegem
75
76 DESCRIPTION="A Ruby library for syntax highlighting."
77 HOMEPAGE="http://coderay.rubychan.de/"
78
79 LICENSE="LGPL-2.1"
80 SLOT="0"
81 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
82 IUSE=""
83
84 all_ruby_prepare() {
85 # By default coderay seems to bundle an unused copy of
86 # term-ansicolor; we remove it so that we don't clutter with
87 # bundled libraries, but we don't depend on it since it's
88 # otherwise unused.
89 rm -r lib/term || die
90 }