From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4D66E1381F3 for ; Sun, 6 Oct 2013 11:17:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4F9AE0943; Sun, 6 Oct 2013 11:17:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 806E9E0943 for ; Sun, 6 Oct 2013 11:17:45 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 42B8133EEDB for ; Sun, 6 Oct 2013 11:17:44 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2345) id F37122004C; Sun, 6 Oct 2013 11:17:42 +0000 (UTC) From: "Manuel Rueger (mrueg)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mrueg@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/tidy-ext: tidy-ext-0.1.14-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: tidy-ext-0.1.14-r1.ebuild ChangeLog X-VCS-Directories: dev-ruby/tidy-ext X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rueger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131006111742.F37122004C@flycatcher.gentoo.org> Date: Sun, 6 Oct 2013 11:17:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 67d9de83-e05b-4cd3-8af4-957030fba4aa X-Archives-Hash: c0221802b8d51b5557dfdb12288d64e2 mrueg 13/10/06 11:17:42 Modified: ChangeLog Added: tidy-ext-0.1.14-r1.ebuild Log: Add ruby20 target. (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key ) Revision Changes Path 1.26 dev-ruby/tidy-ext/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?rev=1.26&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?rev=1.26&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/ChangeLog?r1=1.25&r2=1.26 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/ChangeLog,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- ChangeLog 15 Jan 2013 05:26:23 -0000 1.25 +++ ChangeLog 6 Oct 2013 11:17:42 -0000 1.26 @@ -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.25 2013/01/15 05:26:23 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/tidy-ext/ChangeLog,v 1.26 2013/10/06 11:17:42 mrueg Exp $ + +*tidy-ext-0.1.14-r1 (06 Oct 2013) + + 06 Oct 2013; Manuel RĂ¼ger +tidy-ext-0.1.14-r1.ebuild: + Add ruby20 target. 15 Jan 2013; Rick Farina tidy-ext-0.1.14.ebuild: adding ~arm keywords to net-analyzer/metasploit rdeps 1.1 dev-ruby/tidy-ext/tidy-ext-0.1.14-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/tidy-ext-0.1.14-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/tidy-ext/tidy-ext-0.1.14-r1.ebuild?rev=1.1&content-type=text/plain Index: tidy-ext-0.1.14-r1.ebuild =================================================================== # Copyright 1999-2013 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-r1.ebuild,v 1.1 2013/10/06 11:17:42 mrueg Exp $ EAPI=5 USE_RUBY="ruby18 ruby19 ruby20" 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="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" all_ruby_prepare() { mkdir lib || die # Remove reference to rspec 1 sed -i -e '/spec/d' spec/spec_helper.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." }