graaff 15/01/16 07:52:28 Modified: ChangeLog Added: git-1.2.9.1.ebuild Log: Version bump. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.7 dev-ruby/git/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/git/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/git/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/git/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/git/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 16 Jan 2015 07:42:32 -0000 1.6 +++ ChangeLog 16 Jan 2015 07:52:28 -0000 1.7 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/git # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/git/ChangeLog,v 1.6 2015/01/16 07:42:32 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/git/ChangeLog,v 1.7 2015/01/16 07:52:28 graaff Exp $ + +*git-1.2.9.1 (16 Jan 2015) + + 16 Jan 2015; Hans de Graaff <gra...@gentoo.org> +git-1.2.9.1.ebuild: + Version bump. 16 Jan 2015; Hans de Graaff <gra...@gentoo.org> -git-1.2.6.ebuild, -git-1.2.7.ebuild: 1.1 dev-ruby/git/git-1.2.9.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/git/git-1.2.9.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/git/git-1.2.9.1.ebuild?rev=1.1&content-type=text/plain Index: git-1.2.9.1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/git/git-1.2.9.1.ebuild,v 1.1 2015/01/16 07:52:28 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md" RUBY_FAKEGEM_GEMSPEC="git.gemspec" inherit ruby-fakegem DESCRIPTION="Library for using Git in Ruby" HOMEPAGE="http://github.com/schacon/ruby-git" SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> ${P}.tar.gz" RUBY_S="ruby-git-${PV}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64" IUSE="test" DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )" RDEPEND+=">=dev-vcs/git-1.6.0.0" ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" all_ruby_prepare() { # Needs test-unit, the test-unit version distributed with ruby19 is # not good enough. sed -i -e '3igem "test-unit"' Rakefile || die # Don't use hardcoded /tmp directory. sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb tests/test_helper.rb || die }