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/sass: sass-3.1.20.ebuild ChangeLog
Date: Thu, 05 Jul 2012 22:53:24
Message-Id: 20120705225314.38AA72004B@flycatcher.gentoo.org
1 flameeyes 12/07/05 22:53:14
2
3 Modified: ChangeLog
4 Added: sass-3.1.20.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.18 dev-ruby/sass/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 25 Jun 2012 17:46:48 -0000 1.17
24 +++ ChangeLog 5 Jul 2012 22:53:14 -0000 1.18
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/sass
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.17 2012/06/25 17:46:48 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sass/ChangeLog,v 1.18 2012/07/05 22:53:14 flameeyes Exp $
30 +
31 +*sass-3.1.20 (05 Jul 2012)
32 +
33 + 05 Jul 2012; Diego E. Pettenò <flameeyes@g.o> +sass-3.1.20.ebuild:
34 + Version bump.
35
36 *sass-3.1.19 (25 Jun 2012)
37
38 @@ -81,4 +86,3 @@
39 +metadata.xml:
40 Initial import from graaff overlay. Forthcoming dependency of
41 dev-ruby/haml (currently bundled).
42 -
43
44
45
46 1.1 dev-ruby/sass/sass-3.1.20.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/sass-3.1.20.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sass/sass-3.1.20.ebuild?rev=1.1&content-type=text/plain
50
51 Index: sass-3.1.20.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/sass/sass-3.1.20.ebuild,v 1.1 2012/07/05 22:53:14 flameeyes Exp $
56
57 EAPI=2
58
59 USE_RUBY="ruby18 ruby19 ree18 jruby"
60
61 RUBY_FAKEGEM_TASK_DOC=""
62 RUBY_FAKEGEM_DOCDIR="doc"
63 RUBY_FAKEGEM_EXTRADOC="README.md"
64
65 RUBY_FAKEGEM_EXTRAINSTALL="rails init.rb VERSION VERSION_NAME"
66
67 inherit ruby-fakegem
68
69 DESCRIPTION="An extension of CSS3, adding nested rules, variables, mixins, selector inheritance, and more."
70 HOMEPAGE="http://sass-lang.com/"
71 LICENSE="MIT"
72
73 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos"
74 SLOT="0"
75 IUSE=""
76
77 ruby_add_bdepend "doc? ( >=dev-ruby/yard-0.5.3 >=dev-ruby/maruku-0.5.9 )"
78
79 ruby_add_rdepend "dev-ruby/fssm !!<dev-ruby/haml-3.1"
80
81 # tests could use `less` if we had it
82
83 all_ruby_prepare() {
84 rm -rf vendor/listen
85 }
86
87 each_ruby_prepare() {
88 case ${RUBY} in
89 *jruby)
90 # tests fail with JRuby, and that's a given for now; it's
91 # not a bug in the code as much as it is relying on a detail
92 # of the implementation of CRuby. We remove failing files
93 # for now, this could probably be narrowed down more so that
94 # we could run more tests.
95 rm test/sass/script_test.rb test/sass/util_test.rb test/sass/engine_test.rb test/sass/scss/scss_test.rb || die
96 ;;
97 *)
98 ;;
99 esac
100 }