graaff 15/04/19 06:05:27 Modified: ChangeLog rack-1.6.0.ebuild Log: Avoid unneeded dependency on git. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.142 dev-ruby/rack/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.142&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?rev=1.142&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/ChangeLog?r1=1.141&r2=1.142 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v retrieving revision 1.141 retrieving revision 1.142 diff -u -r1.141 -r1.142 --- ChangeLog 3 Jan 2015 01:25:03 -0000 1.141 +++ ChangeLog 19 Apr 2015 06:05:27 -0000 1.142 @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/rack # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.141 2015/01/03 01:25:03 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/ChangeLog,v 1.142 2015/04/19 06:05:27 graaff Exp $ + + 19 Apr 2015; Hans de Graaff <[email protected]> rack-1.6.0.ebuild: + Avoid unneeded dependency on git. 03 Jan 2015; Manuel RĂ¼ger <[email protected]> -files/rack-1.0.1-gentoo.patch, -files/rack-1.1.0-gentoo.patch, -files/rack-1.4.3-tmpdir.patch: 1.4 dev-ruby/rack/rack-1.6.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild?r1=1.3&r2=1.4 Index: rack-1.6.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- rack-1.6.0.ebuild 3 Jan 2015 01:22:18 -0000 1.3 +++ rack-1.6.0.ebuild 19 Apr 2015 06:05:27 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild,v 1.3 2015/01/03 01:22:18 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rack/rack-1.6.0.ebuild,v 1.4 2015/04/19 06:05:27 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21 ruby22" @@ -30,6 +30,12 @@ # Block against versions in older slots that also try to install a binary. RDEPEND="${RDEPEND} !<dev-ruby/rack-1.4.5-r1:1.4 !<dev-ruby/rack-1.5.2-r4:1.5" +all_ruby_prepare() { + # The build system tries to generate the ChangeLog from git. Create + # an empty file to avoid a needless dependency on git. + touch ChangeLog || die +} + each_ruby_test() { # Since the Rakefile calls specrb directly rather than loading it, we # cannot use it to launch the tests or only the currently-selected
