diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-02-20 20:04:58 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-02-20 20:04:58 +0000 |
commit | ea8e163cc6c59949e2e088d11bc7af9b447c6242 (patch) | |
tree | e0cc8e546324eff441107506caa7762069d98809 /dev-ruby/annoy | |
parent | Fix for as-needed building by Yuri Vasilevski, fixes #305449 (diff) | |
download | historical-ea8e163cc6c59949e2e088d11bc7af9b447c6242.tar.gz historical-ea8e163cc6c59949e2e088d11bc7af9b447c6242.tar.bz2 historical-ea8e163cc6c59949e2e088d11bc7af9b447c6242.zip |
Version bump.
Package-Manager: portage-2.2_rc63/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/annoy')
-rw-r--r-- | dev-ruby/annoy/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/annoy/annoy-0.5.6.ebuild (renamed from dev-ruby/annoy/annoy-0.5.5.ebuild) | 6 | ||||
-rw-r--r-- | dev-ruby/annoy/files/annoy-0.5.5-hanna.patch | 40 |
3 files changed, 8 insertions, 46 deletions
diff --git a/dev-ruby/annoy/ChangeLog b/dev-ruby/annoy/ChangeLog index ea23e6b38ed7..97efe8cad4dc 100644 --- a/dev-ruby/annoy/ChangeLog +++ b/dev-ruby/annoy/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/annoy # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/annoy/ChangeLog,v 1.1 2010/02/14 20:44:52 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/annoy/ChangeLog,v 1.2 2010/02/20 20:04:57 flameeyes Exp $ + +*annoy-0.5.6 (20 Feb 2010) + + 20 Feb 2010; Diego E. Pettenò <flameeyes@gentoo.org> -annoy-0.5.5.ebuild, + -files/annoy-0.5.5-hanna.patch, +annoy-0.5.6.ebuild: + Version bump. *annoy-0.5.5 (14 Feb 2010) diff --git a/dev-ruby/annoy/annoy-0.5.5.ebuild b/dev-ruby/annoy/annoy-0.5.6.ebuild index fc6bde0c5ec0..581bed8b6cba 100644 --- a/dev-ruby/annoy/annoy-0.5.5.ebuild +++ b/dev-ruby/annoy/annoy-0.5.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/annoy/annoy-0.5.5.ebuild,v 1.1 2010/02/14 20:44:52 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/annoy/annoy-0.5.6.ebuild,v 1.1 2010/02/20 20:04:57 flameeyes Exp $ EAPI=2 @@ -26,7 +26,3 @@ KEYWORDS="~amd64 ~x86" IUSE="" ruby_add_rdepend '>=dev-ruby/highline-1.5.0' - -all_ruby_prepare() { - epatch "${FILESDIR}"/${P}-hanna.patch -} diff --git a/dev-ruby/annoy/files/annoy-0.5.5-hanna.patch b/dev-ruby/annoy/files/annoy-0.5.5-hanna.patch deleted file mode 100644 index eaff019208ae..000000000000 --- a/dev-ruby/annoy/files/annoy-0.5.5-hanna.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 4ab673e77653d2342556c1c7495cbeac59887557 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= <flameeyes@gmail.com> -Date: Sun, 14 Feb 2010 21:22:30 +0100 -Subject: [PATCH] Don't force Hanna usage for documentation building. - -Since Hanna is not always available (and requires a specific version of -RDoc gem), don't force to use it with no alternative. Instead, if not -available, fallback to the standard rdoc support within rake. ---- - Rakefile | 7 ++++++- - 1 files changed, 6 insertions(+), 1 deletions(-) - -diff --git a/Rakefile b/Rakefile -index 85d1c50..d1a2721 100644 ---- a/Rakefile -+++ b/Rakefile -@@ -1,7 +1,6 @@ - require 'rubygems' - require 'rake/clean' - require 'rake/gempackagetask' --require 'hanna/rdoctask' - require 'fileutils' - include FileUtils - -@@ -66,6 +65,12 @@ end - - # RUBY DOCS TASK ================================== - -+begin -+ require 'hanna/rdoctask' -+rescue LoadError -+ require 'rake/rdoctask' -+end -+ - Rake::RDocTask.new do |t| - t.rdoc_dir = 'doc' - t.title = @spec.summary --- -1.7.0 - |