summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-08-27 23:32:56 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-08-27 23:32:56 +0000
commit1f5880b41c993b9899de89b9cabc31f7a8d89fee (patch)
tree51062935dccaa2980b0b7fcf695bccc5e0696a92 /dev-ruby/locale
parentAdd ruby21 target. (diff)
downloadgentoo-2-1f5880b41c993b9899de89b9cabc31f7a8d89fee.tar.gz
gentoo-2-1f5880b41c993b9899de89b9cabc31f7a8d89fee.tar.bz2
gentoo-2-1f5880b41c993b9899de89b9cabc31f7a8d89fee.zip
Cleanup old.
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/locale')
-rw-r--r--dev-ruby/locale/ChangeLog6
-rw-r--r--dev-ruby/locale/locale-2.0.5-r4.ebuild55
-rw-r--r--dev-ruby/locale/locale-2.1.0.ebuild63
3 files changed, 5 insertions, 119 deletions
diff --git a/dev-ruby/locale/ChangeLog b/dev-ruby/locale/ChangeLog
index b8f5fdcf5b70..614bcb226fad 100644
--- a/dev-ruby/locale/ChangeLog
+++ b/dev-ruby/locale/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-ruby/locale
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.71 2014/08/25 15:59:41 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/locale/ChangeLog,v 1.72 2014/08/27 23:32:56 mrueg Exp $
+
+ 27 Aug 2014; Manuel Rüger <mrueg@gentoo.org> -locale-2.0.5-r4.ebuild,
+ -locale-2.1.0.ebuild:
+ Cleanup old.
25 Aug 2014; Manuel Rüger <mrueg@gentoo.org> locale-2.1.0-r1.ebuild:
Mark amd64 stable. Bug #505920.
diff --git a/dev-ruby/locale/locale-2.0.5-r4.ebuild b/dev-ruby/locale/locale-2.0.5-r4.ebuild
deleted file mode 100644
index 736ba4376d36..000000000000
--- a/dev-ruby/locale/locale-2.0.5-r4.ebuild
+++ /dev/null
@@ -1,55 +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/locale/locale-2.0.5-r4.ebuild,v 1.2 2014/08/05 16:00:38 mrueg Exp $
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20 jruby"
-
-RUBY_FAKEGEM_TASK_DOC="rerdoc"
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.rdoc"
-
-RUBY_FAKEGEM_TASK_TEST="test"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure ruby library which provides basic APIs for localization"
-HOMEPAGE="http://locale.rubyforge.org/"
-LICENSE="|| ( Ruby GPL-2 )"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
-SLOT="0"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )"
-
-RUBY_PATCHES=( "${FILESDIR}/${PN}-language-fixes.patch" )
-
-all_ruby_prepare() {
- # Avoid automagic dependency on allison, bug 334937
- sed -i -e '/allison/ s:^:#:' Rakefile || die
-
- sed -i -e 's:rake/rdoctask:rdoc/task:' \
- -e '/gempackagetask/d' \
- -e '/GemPackageTask/,/end/ d' Rakefile || die
-}
-
-each_ruby_prepare() {
- case ${RUBY} in
- *jruby)
- # Remove broken test. It's not clear if the test or code is
- # broken... https://github.com/mutoh/locale/issues/2
- rm test/test_detect_general.rb || die
- ;;
- *)
- ;;
- esac
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- insinto /usr/share/doc/${PF}
- doins -r samples || die
-}
diff --git a/dev-ruby/locale/locale-2.1.0.ebuild b/dev-ruby/locale/locale-2.1.0.ebuild
deleted file mode 100644
index 413bc5c69fa6..000000000000
--- a/dev-ruby/locale/locale-2.1.0.ebuild
+++ /dev/null
@@ -1,63 +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/locale/locale-2.1.0.ebuild,v 1.4 2014/08/05 16:00:38 mrueg Exp $
-
-EAPI=5
-
-USE_RUBY="ruby19 jruby"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR="doc/reference"
-RUBY_FAKEGEM_EXTRADOC="ChangeLog README.rdoc doc/text/news.md"
-
-RUBY_FAKEGEM_TASK_TEST="test"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure ruby library which provides basic APIs for localization"
-HOMEPAGE="https://github.com/ruby-gettext/locale"
-LICENSE="|| ( Ruby GPL-2 )"
-SRC_URI="https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz -> ${P}-git.tgz"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
-SLOT="0"
-IUSE=""
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )"
-
-ruby_add_bdepend "test? ( dev-ruby/test-unit:2 dev-ruby/test-unit-rr )"
-
-all_ruby_prepare() {
- sed -i -e '/notify/ s:^:#:' test/run-test.rb || die
-}
-
-each_ruby_prepare() {
- case ${RUBY} in
- *jruby)
- # Avoid failing tests in the partial jruby
- # implementation. This may be dependeny on the specific
- # locales available or it may be an issue with Gentoo still
- # using jruby 1.6.
- sed -i -e '/test_locales/,/end/ s:^:#:' test/test_driver_jruby.rb || die
- ;;
- esac
-}
-
-all_ruby_compile() {
- all_fakegem_compile
-
- if use doc ; then
- yard || die
- fi
-}
-
-each_ruby_test() {
- ${RUBY} test/run-test.rb || die
-}
-
-all_ruby_install() {
- all_fakegem_install
-
- insinto /usr/share/doc/${PF}
- doins -r samples || die
-}