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/rb-gsl: rb-gsl-1.16.0.6.ebuild ChangeLog
Date: Sat, 04 Jul 2015 08:43:58
Message-Id: 20150704084355.600EF74D@oystercatcher.gentoo.org
1 mrueg 15/07/04 08:43:55
2
3 Modified: ChangeLog
4 Added: rb-gsl-1.16.0.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.13 dev-ruby/rb-gsl/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 3 Jul 2015 06:40:21 -0000 1.12
24 +++ ChangeLog 4 Jul 2015 08:43:55 -0000 1.13
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/rb-gsl
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v 1.12 2015/07/03 06:40:21 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v 1.13 2015/07/04 08:43:55 mrueg Exp $
30 +
31 +*rb-gsl-1.16.0.6 (04 Jul 2015)
32 +
33 + 04 Jul 2015; Manuel RĂ¼ger <mrueg@g.o> +rb-gsl-1.16.0.6.ebuild:
34 + Version bump.
35
36 03 Jul 2015; Hans de Graaff <graaff@g.o> -rb-gsl-1.15.3.1.ebuild:
37 Cleanup.
38
39
40
41 1.1 dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rb-gsl-1.16.0.6.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.6.ebuild,v 1.1 2015/07/04 08:43:55 mrueg Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
54
55 RUBY_FAKEGEM_NAME="gsl"
56 inherit ruby-fakegem multilib
57
58 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
59 RUBY_FAKEGEM_EXTRADOC="ChangeLog README.md"
60
61 RUBY_FAKEGEM_TASK_TEST="test:libs"
62 DESCRIPTION="Ruby interface to GNU Scientific Library"
63 HOMEPAGE="https://github.com/SciRuby/rb-gsl"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE="doc"
69
70 DEPEND+=" >=sci-libs/gsl-1.15"
71 RDEPEND+=" >=sci-libs/gsl-1.15"
72
73 RUBY_S="${PN}-${P}"
74
75 ruby_add_bdepend "dev-ruby/narray"
76 ruby_add_rdepend "dev-ruby/narray"
77
78 each_ruby_prepare() {
79 sed -i -e '/$CPPFLAGS =/a \$LDFLAGS = " -L#{narray_config} -l:narray.so "+$LDFLAGS' -e 's/src/lib/' ext/gsl_native/extconf.rb || die
80 }
81
82 each_ruby_configure() {
83 ${RUBY} -Cext/gsl_native extconf.rb || die
84 }
85
86 each_ruby_compile() {
87 emake -Cext/gsl_native V=1
88 cp ext/gsl_native/*$(get_modname) lib/ || die
89 }
90
91 each_ruby_test() {
92 ${RUBY} -Ilib:test:. -e 'Dir["test/**/*_test.rb"].each{|f| require f}' || die
93 }