graaff 14/04/01 19:27:39 Modified: ChangeLog Added: tidy-ext-0.1.14-r2.ebuild Log: Add ruby21. Drop alpha, sparc keywords: bug 465948. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Revision Changes Path 1.29 dev-ruby/tidy-ext/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?rev=1.29&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?rev=1.29&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?r1=1.28&r2=1.29 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/ChangeLog,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- ChangeLog 26 Dec 2013 15:56:22 -0000 1.28 +++ ChangeLog 1 Apr 2014 19:27:39 -0000 1.29 @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/tidy-ext -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/ChangeLog,v 1.28 2013/12/26 15:56:22 maekke Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/ChangeLog,v 1.29 2014/04/01 19:27:39 graaff Exp $ + +*tidy-ext-0.1.14-r2 (01 Apr 2014) + + 01 Apr 2014; Hans de Graaff <gra...@gentoo.org> +tidy-ext-0.1.14-r2.ebuild: + Add ruby21. Drop alpha, sparc keywords: bug 465948. 26 Dec 2013; Markus Meier <mae...@gentoo.org> tidy-ext-0.1.14.ebuild: arm stable, bug #493780 1.1 dev-ruby/tidy-ext/tidy-ext-0.1.14-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/tidy-ext-0.1.14-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/tidy-ext-0.1.14-r2.ebuild?rev=1.1&content-type=text/plain Index: tidy-ext-0.1.14-r2.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/tidy-ext-0.1.14-r2.ebuild,v 1.1 2014/04/01 19:27:39 graaff Exp $ EAPI=5 USE_RUBY="ruby19 ruby20 ruby21" RUBY_FAKEGEM_DOCDIR="rdoc" RUBY_FAKEGEM_RECIPE_TEST="rspec" inherit ruby-fakegem eutils DESCRIPTION="W3C HTML Tidy library implemented as a Ruby extension." HOMEPAGE="http://github.com/carld/tidy" LICENSE="HTML-Tidy" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86" IUSE="" all_ruby_prepare() { mkdir lib || die # Remove reference to rspec 1 sed -i -e '/spec/d' spec/spec_helper.rb || die # Avoid spec that needs network connectivity. rm spec/tidy/remote_uri_spec.rb || die } each_ruby_configure() { ${RUBY} -Cext/tidy extconf.rb || die "Unable to configure extension." } each_ruby_compile() { emake -Cext/tidy V=1 cp ext/tidy/tidy$(get_modname) lib/ || die "Unable to copy extension." }