graaff 15/01/26 07:05:05 Modified: ChangeLog Added: rake-compiler-0.9.5.ebuild Log: Version bump. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.91 dev-ruby/rake-compiler/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.91&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?rev=1.91&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/ChangeLog?r1=1.90&r2=1.91 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v retrieving revision 1.90 retrieving revision 1.91 diff -u -r1.90 -r1.91 --- ChangeLog 17 Jan 2015 20:09:28 -0000 1.90 +++ ChangeLog 26 Jan 2015 07:05:05 -0000 1.91 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/rake-compiler # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.90 2015/01/17 20:09:28 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/ChangeLog,v 1.91 2015/01/26 07:05:05 graaff Exp $ + +*rake-compiler-0.9.5 (26 Jan 2015) + + 26 Jan 2015; Hans de Graaff <gra...@gentoo.org> +rake-compiler-0.9.5.ebuild: + Version bump. 17 Jan 2015; Manuel RĂ¼ger <mr...@gentoo.org> -rake-compiler-0.9.3.ebuild: Remove old. 1.1 dev-ruby/rake-compiler/rake-compiler-0.9.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.5.ebuild?rev=1.1&content-type=text/plain Index: rake-compiler-0.9.5.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rake-compiler/rake-compiler-0.9.5.ebuild,v 1.1 2015/01/26 07:05:05 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="none" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" inherit ruby-fakegem eutils DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions" HOMEPAGE="https://github.com/luislavena/rake-compiler" LICENSE="MIT" SRC_URI="https://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" ruby_add_rdepend "dev-ruby/rake" ruby_add_bdepend "test? ( dev-ruby/rspec:3 )" USE_RUBY="ruby19 ruby20" ruby_add_bdepend "test? ( dev-util/cucumber )" all_ruby_prepare() { # Make sure the right rspec version is used in cucumber. sed -i -e "1igem 'rspec', '~>2.0'" features/support/env.rb || die } each_ruby_prepare() { case ${RUBY} in *ruby19) # Remove this task so that it won't load on Ruby 1.9 # that lack the package_task file. It is, though, needed for the # tests rm tasks/gem.rake || die # Remove specs aimed at a C-compiling ruby implementation. rm spec/lib/rake/extensiontask_spec.rb || die ;; *) ;; esac } each_ruby_test() { # Skip cucumber for ruby21 (not ready yet) case ${RUBY} in *ruby19|*ruby20) ruby-ng_rspec ruby-ng_cucumber ;; *) ruby-ng_rspec ;; esac }