summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2017-05-30 06:23:50 +0200
committerHans de Graaff <graaff@gentoo.org>2017-05-30 06:23:50 +0200
commita75421901547de92b66f8e9570192c55b162c4e9 (patch)
tree4a62da6fcb3bc34f4389292c687954364ef0f624 /dev-ruby/activeresource/activeresource-4.0.0.ebuild
parentdev-ruby/builder: remove masked slot (diff)
downloadgentoo-a75421901547de92b66f8e9570192c55b162c4e9.tar.gz
gentoo-a75421901547de92b66f8e9570192c55b162c4e9.tar.bz2
gentoo-a75421901547de92b66f8e9570192c55b162c4e9.zip
dev-ruby/activeresource: remove masked slot
Package-Manager: Portage-2.3.5, Repoman-2.3.1
Diffstat (limited to 'dev-ruby/activeresource/activeresource-4.0.0.ebuild')
-rw-r--r--dev-ruby/activeresource/activeresource-4.0.0.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/dev-ruby/activeresource/activeresource-4.0.0.ebuild b/dev-ruby/activeresource/activeresource-4.0.0.ebuild
deleted file mode 100644
index 0d648dd378d9..000000000000
--- a/dev-ruby/activeresource/activeresource-4.0.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="activeresource.gemspec"
-
-inherit ruby-fakegem versionator
-
-DESCRIPTION="Think Active Record for web resources"
-HOMEPAGE="http://rubyforge.org/projects/activeresource/"
-SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64"
-IUSE=""
-
-#RUBY_S="rails-${PV}/${PN}"
-
-ruby_add_rdepend "=dev-ruby/activesupport-4*
- =dev-ruby/activemodel-4*
- >=dev-ruby/rails-observers-0.1.1:0.1"
-
-ruby_add_bdepend "
- test? (
- dev-ruby/test-unit:2
- >=dev-ruby/mocha-0.13.0:0.13
- )"
-
-all_ruby_prepare() {
- # Set test environment to our hand.
- rm Gemfile || die "Unable to remove Gemfile"
-
- # Pull in the correct version of minitest since we don't use bundler.
- sed -i -e '1igem "minitest", "~>4.0"' \
- -e '2igem "activemodel", "~>4.0.0"' test/abstract_unit.rb || die
-
-}