mrueg 15/01/18 03:06:39 Modified: ChangeLog Added: psych-2.0.10.ebuild Removed: psych-2.0.8.ebuild Log: Version bump. Remove old. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.6 dev-ruby/psych/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?rev=1.6&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?rev=1.6&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/ChangeLog?r1=1.5&r2=1.6 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- ChangeLog 10 Jan 2015 22:01:21 -0000 1.5 +++ ChangeLog 18 Jan 2015 03:06:39 -0000 1.6 @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/psych # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v 1.5 2015/01/10 22:01:21 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/ChangeLog,v 1.6 2015/01/18 03:06:39 mrueg Exp $ + +*psych-2.0.10 (18 Jan 2015) + + 18 Jan 2015; Manuel RĂ¼ger <mr...@gentoo.org> +psych-2.0.10.ebuild, + -psych-2.0.8.ebuild: + Version bump. Remove old. *psych-2.0.9 (10 Jan 2015) 1.1 dev-ruby/psych/psych-2.0.10.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/psych-2.0.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/psych/psych-2.0.10.ebuild?rev=1.1&content-type=text/plain Index: psych-2.0.10.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/psych/psych-2.0.10.ebuild,v 1.1 2015/01/18 03:06:39 mrueg Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc" inherit multilib ruby-fakegem DESCRIPTION="A libyaml wrapper for Ruby" HOMEPAGE="https://github.com/tenderlove/psych" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND+=" >=dev-libs/libyaml-0.1.6" ruby_add_bdepend "test? ( >=dev-ruby/minitest-4.0:0 )" all_ruby_prepare() { sed -i -e '1igem "minitest", "~>4.0"' test/psych/helper.rb || die } each_ruby_configure() { ${RUBY} -Cext/${PN} extconf.rb || die } each_ruby_compile() { emake V=1 -Cext/${PN} cp ext/${PN}/${PN}$(get_modname) lib/ || die } each_ruby_test() { ${RUBY} -Ilib:test:test/${PN} -S testrb test/${PN}/test_*.rb test/${PN}/{nodes,visitors,json}/test_*.rb || die }