summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2014-01-18 09:57:00 +0000
committerHans de Graaff <graaff@gentoo.org>2014-01-18 09:57:00 +0000
commit385e4f13431034b76c74437fdaae9763742b094a (patch)
tree8af921b7637cf5378de8ce0d08874114897fee33 /dev-ruby/i18n
parentRemove masked package actionwebservice. (diff)
downloadgentoo-2-385e4f13431034b76c74437fdaae9763742b094a.tar.gz
gentoo-2-385e4f13431034b76c74437fdaae9763742b094a.tar.bz2
gentoo-2-385e4f13431034b76c74437fdaae9763742b094a.zip
Remove masked version.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/i18n')
-rw-r--r--dev-ruby/i18n/ChangeLog7
-rw-r--r--dev-ruby/i18n/i18n-0.4.2.ebuild74
2 files changed, 5 insertions, 76 deletions
diff --git a/dev-ruby/i18n/ChangeLog b/dev-ruby/i18n/ChangeLog
index f280348cb204..cce12cb5b2b0 100644
--- a/dev-ruby/i18n/ChangeLog
+++ b/dev-ruby/i18n/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/i18n
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.58 2013/12/25 09:43:34 graaff Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.59 2014/01/18 09:57:00 graaff Exp $
+
+ 18 Jan 2014; Hans de Graaff <graaff@gentoo.org> -i18n-0.4.2.ebuild:
+ Remove masked version.
*i18n-0.6.9-r1 (25 Dec 2013)
diff --git a/dev-ruby/i18n/i18n-0.4.2.ebuild b/dev-ruby/i18n/i18n-0.4.2.ebuild
deleted file mode 100644
index 6410c5aa9b58..000000000000
--- a/dev-ruby/i18n/i18n-0.4.2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.2.ebuild,v 1.11 2013/01/16 01:08:23 zerochaos Exp $
-
-EAPI=2
-
-USE_RUBY="ruby18 jruby ree18"
-
-# doc regeneration seem to need Jeweler, which is not currently
-# available
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Add Internationalization support to your Ruby application."
-HOMEPAGE="http://rails-i18n.org/"
-
-SRC_URI="http://github.com/svenfuchs/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz"
-S="${WORKDIR}/svenfuchs-${PN}-*"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-# The testsuite uses the activerecord gem to run some tests; they
-# require sqlite3-ruby, and that is not available on JRuby.
-USE_RUBY="${USE_RUBY/jruby/}" \
- ruby_add_bdepend "
- test? (
- dev-ruby/activerecord
- dev-ruby/sqlite3
- dev-ruby/ruby2ruby
- )"
-
-# mocha is optionally used by the testsuite, try to increase coverage
-# of testing by depending on it.
-#
-# One further test dependency would be ruby-cldr
-# (http://rubygems.org/gems/ruby-cldr) but we don't have it in tree
-# yet.
-ruby_add_bdepend "test? ( dev-ruby/mocha )"
-
-all_ruby_prepare() {
- sed -i '/bundler/d' test/test_setup/bundle.rb || die "Unable to remove Bundler support"
-}
-
-src_compile() {
- # permissions need to be stricter for Ruby-Inline to work properly.
- chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
- ruby-ng_src_compile
-}
-
-src_test() {
- # permissions need to be stricter for Ruby-Inline to work properly.
- chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
- ruby-ng_src_test
-}
-
-each_ruby_test() {
- # Make sure the optional activerecord tests are not run for jruby
- # because we don't ship a compatible sqlite3
- case ${RUBY} in
- *jruby)
- ;;
- *)
- each_fakegem_test
- esac
-}