diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-01-14 19:35:38 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-01-14 19:35:38 +0000 |
commit | b204e2d43ea7e50179b1a5fbb6440d9b4d9810f9 (patch) | |
tree | d90be42556f0adce9362a5499f0ac03fdb6ee454 /dev-ruby | |
parent | Initial import in main tree (diff) | |
download | gentoo-2-b204e2d43ea7e50179b1a5fbb6440d9b4d9810f9.tar.gz gentoo-2-b204e2d43ea7e50179b1a5fbb6440d9b4d9810f9.tar.bz2 gentoo-2-b204e2d43ea7e50179b1a5fbb6440d9b4d9810f9.zip |
Cleanup old.
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/little-plugger/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/little-plugger/files/little-plugger-1.1.2-rubylib.patch | 36 | ||||
-rw-r--r-- | dev-ruby/little-plugger/little-plugger-1.1.3.ebuild | 31 |
3 files changed, 6 insertions, 69 deletions
diff --git a/dev-ruby/little-plugger/ChangeLog b/dev-ruby/little-plugger/ChangeLog index d0b42c61522f..e785077888ea 100644 --- a/dev-ruby/little-plugger/ChangeLog +++ b/dev-ruby/little-plugger/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/little-plugger -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/little-plugger/ChangeLog,v 1.11 2013/12/14 13:51:01 graaff Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/little-plugger/ChangeLog,v 1.12 2014/01/14 19:35:38 mrueg Exp $ + + 14 Jan 2014; Manuel Rüger <mrueg@gentoo.org> + -files/little-plugger-1.1.2-rubylib.patch, -little-plugger-1.1.3.ebuild: + Cleanup old. *little-plugger-1.1.3-r1 (14 Dec 2013) diff --git a/dev-ruby/little-plugger/files/little-plugger-1.1.2-rubylib.patch b/dev-ruby/little-plugger/files/little-plugger-1.1.2-rubylib.patch deleted file mode 100644 index 438a05ce38b1..000000000000 --- a/dev-ruby/little-plugger/files/little-plugger-1.1.2-rubylib.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 20803ae92c846590640c7213b43138022bfe912f Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Diego=20Elio=20'Flameeyes'=20Petten=C3=B2?= <flameeyes@gmail.com> -Date: Mon, 19 Apr 2010 21:49:17 +0200 -Subject: [PATCH] Search within the Ruby library path before the gems. - -Older RubyGems versions as shipped with Ruby 1.9 will not search within -paths provided as library paths (RUBYLIB environment variable or -I -option), so will be unable to find locally-present libraries. - -To avoid bad interactions with those versions, explicitly search the -library path first, and only then run the command through Gem. ---- - lib/little-plugger.rb | 7 +++++++ - 1 files changed, 7 insertions(+), 0 deletions(-) - -diff --git a/lib/little-plugger.rb b/lib/little-plugger.rb -index 17e1be3..fc95adb 100644 ---- a/lib/little-plugger.rb -+++ b/lib/little-plugger.rb -@@ -188,6 +188,13 @@ module LittlePlugger - @loaded ||= {} - found = {} - -+ $:.each do |libdir| -+ Dir.glob(File.join(libdir, plugin_path, '*.rb')).each do |path| -+ name = File.basename(path, '.rb').to_sym -+ found[name] = path unless found.key? name -+ end -+ end -+ - Gem.find_files(File.join(plugin_path, '*.rb')).each do |path| - name = File.basename(path, '.rb').to_sym - found[name] = path unless found.key? name --- -1.7.0.4 - diff --git a/dev-ruby/little-plugger/little-plugger-1.1.3.ebuild b/dev-ruby/little-plugger/little-plugger-1.1.3.ebuild deleted file mode 100644 index b6adf2ecbaaf..000000000000 --- a/dev-ruby/little-plugger/little-plugger-1.1.3.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/little-plugger/little-plugger-1.1.3.ebuild,v 1.3 2012/08/14 01:14:19 flameeyes Exp $ - -EAPI=4 - -USE_RUBY="ruby18 ruby19 jruby ree18" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_TASK_DOC="doc:rdoc" -RUBY_FAKEGME_DOCDIR="doc" - -RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" - -inherit ruby-fakegem eutils - -DESCRIPTION="Module that provides Gem based plugin management" -HOMEPAGE="http://github.com/TwP/${PN}" - -IUSE="test" -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -ruby_add_bdepend "doc? ( dev-ruby/bones )" - -all_ruby_prepare() { - # Remove default metadata because it confused jruby. - rm ../metadata || die -} |