graaff 14/11/02 10:08:05 Modified: ChangeLog Added: celluloid-0.15.2-r3.ebuild Removed: celluloid-0.15.2-r2.ebuild Log: Fix timers slot to match the gemspec file and make sure we use this slot during testing. (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.12 dev-ruby/celluloid/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/celluloid/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/celluloid/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/celluloid/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/celluloid/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 8 Oct 2014 23:18:55 -0000 1.11 +++ ChangeLog 2 Nov 2014 10:08:05 -0000 1.12 @@ -1,6 +1,13 @@ # ChangeLog for dev-ruby/celluloid # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/celluloid/ChangeLog,v 1.11 2014/10/08 23:18:55 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/celluloid/ChangeLog,v 1.12 2014/11/02 10:08:05 graaff Exp $ + +*celluloid-0.15.2-r3 (02 Nov 2014) + + 02 Nov 2014; Hans de Graaff <[email protected]> -celluloid-0.15.2-r2.ebuild, + +celluloid-0.15.2-r3.ebuild: + Fix timers slot to match the gemspec file and make sure we use this slot + during testing. 08 Oct 2014; Manuel RĂ¼ger <[email protected]> celluloid-0.15.2-r2.ebuild: Fix dependency on dev-ruby/timers. Fixes bug #524782. 1.1 dev-ruby/celluloid/celluloid-0.15.2-r3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/celluloid/celluloid-0.15.2-r3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/celluloid/celluloid-0.15.2-r3.ebuild?rev=1.1&content-type=text/plain Index: celluloid-0.15.2-r3.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/celluloid/celluloid-0.15.2-r3.ebuild,v 1.1 2014/11/02 10:08:05 graaff Exp $ EAPI=5 # rbx or jruby recommended, but only in 1.9 mode. USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_TEST="rspec" #Needed by dev-ruby/listen RUBY_FAKEGEM_EXTRAINSTALL="spec" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md" inherit ruby-fakegem DESCRIPTION="Celluloid provides a simple and natural way to build fault-tolerant concurrent programs in Ruby" HOMEPAGE="https://github.com/celluloid/celluloid" SRC_URI="https://github.com/celluloid/celluloid/archive/v${PV}.tar.gz -> ${P}-git.tgz" IUSE="" SLOT="0" LICENSE="MIT" KEYWORDS="~amd64 ~ppc ~ppc64" ruby_add_rdepend ">=dev-ruby/timers-1.1.0:0" all_ruby_prepare() { rm Gemfile .rspec || die sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb || die # Force loading of the correct timers slot to avoid a bundler dependency. sed -i -e '3igem "timers", "~>1.1.0"' spec/spec_helper.rb || die }
