summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2010-10-31 08:28:41 +0000
committerHans de Graaff <graaff@gentoo.org>2010-10-31 08:28:41 +0000
commitd02e27f104fbc5481bb95d7eafd2b496344b6aa8 (patch)
tree9e9196ca4e96dcd8d9e491ad6c1e31a7615ac7b0 /dev-ruby
parentRemove old version. (diff)
downloadgentoo-2-d02e27f104fbc5481bb95d7eafd2b496344b6aa8.tar.gz
gentoo-2-d02e27f104fbc5481bb95d7eafd2b496344b6aa8.tar.bz2
gentoo-2-d02e27f104fbc5481bb95d7eafd2b496344b6aa8.zip
Remove old version.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/json/ChangeLog5
-rw-r--r--dev-ruby/json/json-1.4.3-r2.ebuild65
2 files changed, 4 insertions, 66 deletions
diff --git a/dev-ruby/json/ChangeLog b/dev-ruby/json/ChangeLog
index 52b7bd9d919c..bd6114991c0c 100644
--- a/dev-ruby/json/ChangeLog
+++ b/dev-ruby/json/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/json
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.46 2010/10/10 13:06:44 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.47 2010/10/31 08:28:41 graaff Exp $
+
+ 31 Oct 2010; Hans de Graaff <graaff@gentoo.org> -json-1.4.3-r2.ebuild:
+ Remove old version.
10 Oct 2010; Tobias Klausmann <klausman@gentoo.org> json-1.4.6.ebuild:
Keyworded on alpha, bug #325465
diff --git a/dev-ruby/json/json-1.4.3-r2.ebuild b/dev-ruby/json/json-1.4.3-r2.ebuild
deleted file mode 100644
index 1bf02dfa329b..000000000000
--- a/dev-ruby/json/json-1.4.3-r2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r2.ebuild,v 1.2 2010/08/05 17:07:39 maekke Exp $
-
-EAPI=2
-USE_RUBY="ruby18 ree18 ruby19 jruby"
-
-RUBY_FAKEGEM_TASK_DOC="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES TODO README"
-RUBY_FAKEGEM_DOCDIR="doc"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A JSON implementation as a Ruby extension."
-HOMEPAGE="http://json.rubyforge.org/"
-LICENSE="|| ( Ruby GPL-2 )"
-SRC_URI="mirror://rubygems/${P}.gem"
-
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
-SLOT="0"
-IUSE=""
-
-RDEPEND="${RDEPEND}"
-DEPEND="${DEPEND}
- dev-util/ragel"
-
-ruby_add_bdepend "dev-ruby/rake
- test? ( virtual/ruby-test-unit )"
-
-all_ruby_prepare() {
- # Avoid building the extension twice!
- sed -i \
- -e 's| => :compile_ext||' \
- -e 's| => :clean||' \
- Rakefile || die "rakefile fix failed"
-}
-
-each_ruby_compile() {
- if [[ $(basename ${RUBY}) != "jruby" ]]; then
- ${RUBY} -S rake compile_ext || die "extension compile failed"
- fi
-}
-
-each_ruby_test() {
- # We have to set RUBYLIB because otherwise the tests will run
- # against the sytem-installed json; at the same time, we cannot
- # use the -I parameter because rake won't let it pass to the
- # testrb call that is executed down the road.
-
- RUBYLIB="${RUBYLIB}${RUBYLIB+:}lib:ext/json/ext" \
- ${RUBY} -S rake test_pure || die "pure ruby tests failed"
-
- if [[ $(basename ${RUBY}) != "jruby" ]]; then
- RUBYLIB="${RUBYLIB}${RUBYLIB+:}lib:ext" \
- ${RUBY} -Ilib:ext -S rake test_ext || die " ruby extension tests failed"
- fi
-}
-
-each_ruby_install() {
- each_fakegem_install
- if [[ $(basename ${RUBY}) != "jruby" ]]; then
- ruby_fakegem_newins ext/json/ext/generator$(get_modname) lib/json/ext/generator$(get_modname)
- ruby_fakegem_newins ext/json/ext/parser$(get_modname) lib/json/ext/parser$(get_modname)
- fi
-}