summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2014-01-18 09:53:32 +0000
committerHans de Graaff <graaff@gentoo.org>2014-01-18 09:53:32 +0000
commit75599da8ce70271c8f2f0dd4bb860b63fe859342 (patch)
treec64f1832d417ccc6054955e1964deaf1fc0fb5d8 /dev-ruby/rails
parentAdd ruby21. (diff)
downloadgentoo-2-75599da8ce70271c8f2f0dd4bb860b63fe859342.tar.gz
gentoo-2-75599da8ce70271c8f2f0dd4bb860b63fe859342.tar.bz2
gentoo-2-75599da8ce70271c8f2f0dd4bb860b63fe859342.zip
Remove masked version.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/rails')
-rw-r--r--dev-ruby/rails/ChangeLog7
-rw-r--r--dev-ruby/rails/rails-2.3.18.ebuild69
2 files changed, 5 insertions, 71 deletions
diff --git a/dev-ruby/rails/ChangeLog b/dev-ruby/rails/ChangeLog
index c821096ae94e..9d3b3cd1b73f 100644
--- a/dev-ruby/rails/ChangeLog
+++ b/dev-ruby/rails/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/rails
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.279 2013/12/16 20:09:17 graaff Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rails/ChangeLog,v 1.280 2014/01/18 09:53:32 graaff Exp $
+
+ 18 Jan 2014; Hans de Graaff <graaff@gentoo.org> -rails-2.3.18.ebuild:
+ Remove masked version.
16 Dec 2013; Hans de Graaff <graaff@gentoo.org> -rails-3.2.15.ebuild,
-rails-4.0.0.ebuild:
diff --git a/dev-ruby/rails/rails-2.3.18.ebuild b/dev-ruby/rails/rails-2.3.18.ebuild
deleted file mode 100644
index c39a8381d4b3..000000000000
--- a/dev-ruby/rails/rails-2.3.18.ebuild
+++ /dev/null
@@ -1,69 +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/rails/rails-2.3.18.ebuild,v 1.5 2013/04/01 14:53:27 ago Exp $
-
-EAPI=2
-USE_RUBY="ruby18"
-
-RUBY_FAKEGEM_EXTRAINSTALL="builtin configs doc dispatches environments fresh_rakefile helpers html README"
-RUBY_FAKEGEM_EXTRADOC="README CHANGELOG"
-
-RUBY_FAKEGEM_BINWRAP=""
-
-# gem lacks tests
-RUBY_FAKEGEM_TASK_TEST=""
-
-inherit ruby-fakegem
-
-DESCRIPTION="ruby on rails is a web-application and persistance framework"
-HOMEPAGE="http://www.rubyonrails.org"
-
-LICENSE="MIT"
-SLOT="2.3"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
-
-IUSE=""
-
-RDEPEND=">=app-admin/eselect-rails-0.15"
-
-ruby_add_rdepend ">=dev-ruby/rake-0.8.3
- dev-ruby/rdoc
- ~dev-ruby/activerecord-${PV}
- ~dev-ruby/activeresource-${PV}
- ~dev-ruby/activesupport-${PV}
- ~dev-ruby/actionmailer-${PV}
- ~dev-ruby/actionpack-${PV}"
-ruby_add_bdepend "doc? ( dev-ruby/redcloth )"
-
-all_ruby_prepare() {
- sed -i -e '/horo/d' Rakefile || die "Could not remove reference to unavailable documentation template."
-
- # Create the documentation that we create on the fly in a separate
- # directory, since we need to install the doc directory for the
- # rails script.
- sed -i -e "s/rdoc_dir = 'doc'/rdoc_dir = 'rdoc'/" Rakefile || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- ruby_fakegem_binwrapper rails rails-${PV}
-
- if use doc; then
- pushd rdoc
- docinto api
- dohtml -r *
- popd
- fi
-}
-
-pkg_postinst() {
- elog "To select between slots of rails, use:"
- elog "\teselect rails"
-
- eselect rails update
-}
-
-pkg_postrm() {
- eselect rails update
-}