graaff 14/07/13 07:11:25 Modified: ChangeLog Added: rb-gsl-1.16.0.2.ebuild Log: Version bump. Add ruby21. Install documentation. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.6 dev-ruby/rb-gsl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 3 May 2014 23:28:01 -0000 1.5 +++ ChangeLog 13 Jul 2014 07:11:25 -0000 1.6 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/rb-gsl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v 1.5 2014/05/03 23:28:01 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/ChangeLog,v 1.6 2014/07/13 07:11:25 graaff Exp $ + +*rb-gsl-1.16.0.2 (13 Jul 2014) + + 13 Jul 2014; Hans de Graaff <gra...@gentoo.org> +rb-gsl-1.16.0.2.ebuild: + Version bump. Add ruby21. Install documentation. *rb-gsl-1.16.0.1 (03 May 2014) 1.1 dev-ruby/rb-gsl/rb-gsl-1.16.0.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.2.ebuild?rev=1.1&content-type=text/plain Index: rb-gsl-1.16.0.2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rb-gsl/rb-gsl-1.16.0.2.ebuild,v 1.1 2014/07/13 07:11:25 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" inherit ruby-fakegem multilib RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="ChangeLog README" RUBY_FAKEGEM_TASK_TEST="test:libs" DESCRIPTION="Ruby interface to GNU Scientific Library" HOMEPAGE="https://github.com/david-macmahon/rb-gsl" #SRC_URI="https://github.com/david-macmahon/${PN}/archive/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="doc" DEPEND+=" sci-libs/gsl" RDEPEND+=" sci-libs/gsl" RUBY_S="${PN}-${P}" ruby_add_rdepend "dev-ruby/narray" each_ruby_prepare() { sed -i -e '/$CPPFLAGS =/a \$LDFLAGS = " -L#{narray_config} -l:narray.so "+$LDFLAGS' -e 's/src/lib/' ext/gsl/extconf.rb || die } each_ruby_configure() { ${RUBY} -Cext/gsl extconf.rb || die } each_ruby_compile() { emake -Cext/gsl V=1 cp ext/gsl/*$(get_modname) lib/gsl || die } each_ruby_test() { ${RUBY} -S testrb -Ilib -Itest test/*.rb test/*/*.rb || die }