summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-06-14 11:20:53 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-06-14 11:20:53 +0000
commit0a128473a8c5c7b71393c4a329de522fa49b5d3d (patch)
treed6918882f867b57381cd3ede8f1b976f01c0c560 /dev-ruby/erubis
parentx86 stable wrt bug #504314 (diff)
downloadgentoo-2-0a128473a8c5c7b71393c4a329de522fa49b5d3d.tar.gz
gentoo-2-0a128473a8c5c7b71393c4a329de522fa49b5d3d.tar.bz2
gentoo-2-0a128473a8c5c7b71393c4a329de522fa49b5d3d.zip
Cleanup old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/erubis')
-rw-r--r--dev-ruby/erubis/ChangeLog5
-rw-r--r--dev-ruby/erubis/erubis-2.7.0.ebuild52
2 files changed, 4 insertions, 53 deletions
diff --git a/dev-ruby/erubis/ChangeLog b/dev-ruby/erubis/ChangeLog
index 9ecd0aa346f2..7ec44301c104 100644
--- a/dev-ruby/erubis/ChangeLog
+++ b/dev-ruby/erubis/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/erubis
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/erubis/ChangeLog,v 1.30 2014/06/14 11:19:35 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/erubis/ChangeLog,v 1.31 2014/06/14 11:20:53 mrueg Exp $
+
+ 14 Jun 2014; Manuel Rüger <mrueg@gentoo.org> -erubis-2.7.0.ebuild:
+ Cleanup old.
14 Jun 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> erubis-2.7.0-r1.ebuild:
x86 stable wrt bug #504312
diff --git a/dev-ruby/erubis/erubis-2.7.0.ebuild b/dev-ruby/erubis/erubis-2.7.0.ebuild
deleted file mode 100644
index 9d0b3e84e82e..000000000000
--- a/dev-ruby/erubis/erubis-2.7.0.ebuild
+++ /dev/null
@@ -1,52 +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/erubis/erubis-2.7.0.ebuild,v 1.13 2014/04/05 14:19:29 mrueg Exp $
-
-EAPI="2"
-
-USE_RUBY="ruby19 jruby"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_TASK_TEST=""
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.txt"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Erubis is an implementation of eRuby"
-HOMEPAGE="http://www.kuwata-lab.com/erubis/"
-
-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/abstract-1.0.0"
-
-each_ruby_prepare() {
- # Fix case so that the associated test will work. Reported as http://rubyforge.org/tracker/index.php?func=detail&aid=27330&group_id=1320&atid=5201
- mv test/data/users-guide/Example.ejava test/data/users-guide/example.ejava || die
-
- # jruby seems to have a different ordering of variables.
- # http://rubyforge.org/tracker/?func=detail&aid=28555&group_id=1320&atid=5201
- case ${RUBY} in
- *jruby)
- sed -i -e 's/"x", "_buf"/"_buf", "x"/' test/data/users-guide/main_program2.result
- ;;
- *)
- ;;
- esac
-}
-
-each_ruby_test() {
- case ${RUBY} in
- # http://rubyforge.org/tracker/index.php?func=detail&aid=29484&group_id=1320&atid=5201
- *ruby19)
- einfo "Tests are not compatible with ruby 1.9.3 with Psych as YAML module."
- ;;
- *)
- PATH="${S}/bin:${PATH}" RUBYLIB="${S}/lib" ${RUBY} -I. test/test.rb || die
- ;;
- esac
-}