summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-07-25 15:24:06 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-07-25 15:24:06 +0000
commitf0f440601339233695d7fdbd8dab187bf80101c3 (patch)
tree5f24a41ce88f6525c14dadb0278ac15c6420ff1f /dev-ruby
parentAdd some missing dies. Closes bug #555870. (diff)
downloadgentoo-2-f0f440601339233695d7fdbd8dab187bf80101c3.tar.gz
gentoo-2-f0f440601339233695d7fdbd8dab187bf80101c3.tar.bz2
gentoo-2-f0f440601339233695d7fdbd8dab187bf80101c3.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/sinatra/ChangeLog5
-rw-r--r--dev-ruby/sinatra/sinatra-1.4.5.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-ruby/sinatra/ChangeLog b/dev-ruby/sinatra/ChangeLog
index ee46e33bde52..060f6f2a29c3 100644
--- a/dev-ruby/sinatra/ChangeLog
+++ b/dev-ruby/sinatra/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/sinatra
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/ChangeLog,v 1.54 2015/07/08 06:53:04 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/ChangeLog,v 1.55 2015/07/25 15:24:06 mrueg Exp $
+
+ 25 Jul 2015; Manuel Rüger <mrueg@gentoo.org> -sinatra-1.4.5.ebuild:
+ Remove old.
08 Jul 2015; Hans de Graaff <graaff@gentoo.org> sinatra-1.4.6.ebuild:
Make slot dependencies explicit.
diff --git a/dev-ruby/sinatra/sinatra-1.4.5.ebuild b/dev-ruby/sinatra/sinatra-1.4.5.ebuild
deleted file mode 100644
index 82e99811ac89..000000000000
--- a/dev-ruby/sinatra/sinatra-1.4.5.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sinatra/sinatra-1.4.5.ebuild,v 1.4 2014/08/15 14:01:51 blueness Exp $
-
-EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21"
-
-# no documentation is generable, it needs hanna, which is broken
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS CHANGES"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort"
-HOMEPAGE="http://www.sinatrarb.com/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-ruby_add_rdepend "=dev-ruby/rack-1* >=dev-ruby/rack-1.4
- >=dev-ruby/rack-protection-1.4:1
- =dev-ruby/tilt-1* >=dev-ruby/tilt-1.3.4"
-ruby_add_bdepend "test? ( >=dev-ruby/rack-test-0.5.6 dev-ruby/erubis dev-ruby/builder )"
-
-# haml tests are optional and not yet marked for ruby20.
-USE_RUBY="ruby19" ruby_add_bdepend "test? ( >=dev-ruby/haml-3.0 )"
-
-all_ruby_prepare() {
- # Remove slim tests since only version 1.x is supported and we only
- # have version 2.x
- rm test/slim_test.rb || die
-
- # Remove markdown tests since these fail due to encoding issues. Not
- # clear where the actual problem is.
- rm test/markdown_test.rb || die
-
- # Remove implicit build dependency on git.
- sed -i -e '/\(s.files\|s.test_files\|s.extra_rdoc_files\)/d' sinatra.gemspec || die
-}