diff options
author | Hans de Graaff <graaff@gentoo.org> | 2010-10-06 17:58:15 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2010-10-06 17:58:15 +0000 |
commit | fb5e345156796348fbe0c069552b84ff00389b0f (patch) | |
tree | cf3fa34e310bab879a5b5c9c29fa2db48ba8818b /dev-ruby/text-format | |
parent | Fixed the PyQt4 dependency so we really get the patched version (diff) | |
download | historical-fb5e345156796348fbe0c069552b84ff00389b0f.tar.gz historical-fb5e345156796348fbe0c069552b84ff00389b0f.tar.bz2 historical-fb5e345156796348fbe0c069552b84ff00389b0f.zip |
Revision bump to create a revision ready for stabilization without ruby19.
Package-Manager: portage-2.1.8.3/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/text-format')
-rw-r--r-- | dev-ruby/text-format/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/text-format/text-format-1.0.0-r2.ebuild | 4 | ||||
-rw-r--r-- | dev-ruby/text-format/text-format-1.0.0-r3.ebuild | 28 |
3 files changed, 37 insertions, 3 deletions
diff --git a/dev-ruby/text-format/ChangeLog b/dev-ruby/text-format/ChangeLog index e1e392ca6150..22a5fb0f72f1 100644 --- a/dev-ruby/text-format/ChangeLog +++ b/dev-ruby/text-format/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/text-format # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text-format/ChangeLog,v 1.42 2010/08/29 18:03:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text-format/ChangeLog,v 1.43 2010/10/06 17:50:22 graaff Exp $ + +*text-format-1.0.0-r3 (06 Oct 2010) + + 06 Oct 2010; Hans de Graaff <graaff@gentoo.org> + text-format-1.0.0-r2.ebuild, +text-format-1.0.0-r3.ebuild: + Revision bump to create a revision ready for stabilization without ruby19. 29 Aug 2010; Raúl Porcel <armin76@gentoo.org> text-format-1.0.0-r1.ebuild: diff --git a/dev-ruby/text-format/text-format-1.0.0-r2.ebuild b/dev-ruby/text-format/text-format-1.0.0-r2.ebuild index 8336acb4b1de..4d6f11f0918d 100644 --- a/dev-ruby/text-format/text-format-1.0.0-r2.ebuild +++ b/dev-ruby/text-format/text-format-1.0.0-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text-format/text-format-1.0.0-r2.ebuild,v 1.2 2010/08/01 18:30:47 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text-format/text-format-1.0.0-r2.ebuild,v 1.3 2010/10/06 17:50:22 graaff Exp $ EAPI=2 -USE_RUBY="ruby18 ree18 ruby19 jruby" +USE_RUBY="ruby18 ree18 jruby" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="README Changelog ToDo" diff --git a/dev-ruby/text-format/text-format-1.0.0-r3.ebuild b/dev-ruby/text-format/text-format-1.0.0-r3.ebuild new file mode 100644 index 000000000000..ad8c8f22dc98 --- /dev/null +++ b/dev-ruby/text-format/text-format-1.0.0-r3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/text-format/text-format-1.0.0-r3.ebuild,v 1.1 2010/10/06 17:50:22 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18 ree18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README Changelog ToDo" + +inherit ruby-fakegem + +DESCRIPTION="Text::Format provides strong text formatting capabilities to Ruby" +HOMEPAGE="http://rubyforge.org/projects/text-format/" +SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-solaris" +IUSE="" + +ruby_add_rdepend '>=dev-ruby/text-hyphen-1.0.0' +ruby_add_bdepend "test? ( dev-ruby/archive-tar-minitar )" + +all_ruby_prepare() { + # Fix rakefile for new rake versions + sed -i -e 's: if t\.verbose::' Rakefile || die +} |