diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-01-22 15:21:00 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-01-22 15:21:00 +0000 |
commit | d244d8c27677c967eacdf37388eb25c64f6ca1cc (patch) | |
tree | 79b4159715d1c930ef6ea77ac0716e11cb6f38ed | |
parent | Remove old version. (diff) | |
download | historical-d244d8c27677c967eacdf37388eb25c64f6ca1cc.tar.gz historical-d244d8c27677c967eacdf37388eb25c64f6ca1cc.tar.bz2 historical-d244d8c27677c967eacdf37388eb25c64f6ca1cc.zip |
Remove old versions.
Package-Manager: portage-2.1.9.25/cvs/Linux x86_64
-rw-r--r-- | dev-ruby/i18n/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ruby/i18n/i18n-0.3.3.ebuild | 42 | ||||
-rw-r--r-- | dev-ruby/i18n/i18n-0.4.1.ebuild | 75 | ||||
-rw-r--r-- | dev-ruby/parsetree/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/parsetree/parsetree-3.0.5-r1.ebuild | 76 | ||||
-rw-r--r-- | dev-ruby/parsetree/parsetree-3.0.5-r2.ebuild | 77 |
6 files changed, 11 insertions, 273 deletions
diff --git a/dev-ruby/i18n/ChangeLog b/dev-ruby/i18n/ChangeLog index 157dc27c3a94..47c48f3da398 100644 --- a/dev-ruby/i18n/ChangeLog +++ b/dev-ruby/i18n/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/i18n # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.27 2011/01/10 18:24:58 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/ChangeLog,v 1.28 2011/01/22 15:17:26 graaff Exp $ + + 22 Jan 2011; Hans de Graaff <graaff@gentoo.org> -i18n-0.3.3.ebuild, + -i18n-0.4.1.ebuild: + Remove old versions. 10 Jan 2011; Hans de Graaff <graaff@gentoo.org> i18n-0.4.2.ebuild: Keyword ~x86-macos. diff --git a/dev-ruby/i18n/i18n-0.3.3.ebuild b/dev-ruby/i18n/i18n-0.3.3.ebuild deleted file mode 100644 index 0e352f87497a..000000000000 --- a/dev-ruby/i18n/i18n-0.3.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.3.3.ebuild,v 1.10 2010/07/29 00:12:23 flameeyes Exp $ - -EAPI=2 - -USE_RUBY="ruby18" - -RUBY_FAKEGEM_EXTRAINSTALL="vendor" - -# doc regeneration seem to need Jeweler, which is not currently -# available -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile" - -inherit ruby-fakegem versionator - -DESCRIPTION="Add Internationalization support to your Ruby application." -HOMEPAGE="http://rails-i18n.org/" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~ppc-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -# This is an optional runtime dependency, for now consider it only a -# dependency for tests. -ruby_add_bdepend test dev-ruby/activerecord - -src_prepare() { - ruby-ng_src_prepare - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" -} - -src_test() { - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" - ruby-ng_src_test -} diff --git a/dev-ruby/i18n/i18n-0.4.1.ebuild b/dev-ruby/i18n/i18n-0.4.1.ebuild deleted file mode 100644 index 96df4decb241..000000000000 --- a/dev-ruby/i18n/i18n-0.4.1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/i18n/i18n-0.4.1.ebuild,v 1.4 2011/01/07 09:19:11 graaff Exp $ - -EAPI=2 - -USE_RUBY="ruby18 jruby ree18" - -# doc regeneration seem to need Jeweler, which is not currently -# available -RUBY_FAKEGEM_TASK_DOC="" - -RUBY_FAKEGEM_EXTRADOC="README.textile CHANGELOG.textile" - -inherit ruby-fakegem versionator - -DESCRIPTION="Add Internationalization support to your Ruby application." -HOMEPAGE="http://rails-i18n.org/" - -SRC_URI="http://github.com/svenfuchs/${PN}/tarball/v${PV} -> ${PN}-git-${PV}.tgz" -S="${WORKDIR}/svenfuchs-${PN}-*" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-2)" -KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -# The testsuite uses the activerecord gem to run some tests; they -# require sqlite3-ruby, and that is not available on JRuby. -USE_RUBY="${USE_RUBY/jruby/}" \ - ruby_add_bdepend " - test? ( - dev-ruby/activerecord - dev-ruby/sqlite3-ruby - dev-ruby/ruby2ruby - )" - -# mocha is optionally used by the testsuite, try to increase coverage -# of testing by depending on it; when mocha is used, though, -# test-unit:2 cannot be merged at the same time (mocha problem?) -# -# One further test dependency would be ruby-cldr -# (http://rubygems.org/gems/ruby-cldr) but we don't have it in tree -# yet. -ruby_add_bdepend " - test? ( - dev-ruby/mocha - !!dev-ruby/test-unit:2 - )" - -src_compile() { - # permissions need to be stricter for Ruby-Inline to work properly. - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" - ruby-ng_src_compile -} - -src_test() { - # permissions need to be stricter for Ruby-Inline to work properly. - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" - ruby-ng_src_test -} - -each_ruby_test() { - # Make sure the optional activerecord tests are not run for jruby - # because we don't ship a compatible sqlite3 - case ${RUBY} in - *jruby) - ;; - *) - each_fakegem_test - esac -} diff --git a/dev-ruby/parsetree/ChangeLog b/dev-ruby/parsetree/ChangeLog index 8c74e9ce0093..2c8271ec2da1 100644 --- a/dev-ruby/parsetree/ChangeLog +++ b/dev-ruby/parsetree/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/parsetree -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.35 2010/12/27 21:15:51 graaff Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/ChangeLog,v 1.36 2011/01/22 15:21:00 graaff Exp $ + + 22 Jan 2011; Hans de Graaff <graaff@gentoo.org> + -parsetree-3.0.5-r1.ebuild, -parsetree-3.0.5-r2.ebuild: + Remove old versions. 27 Dec 2010; Fabian Groffen <grobian@gentoo.org> parsetree-3.0.5-r2.ebuild: diff --git a/dev-ruby/parsetree/parsetree-3.0.5-r1.ebuild b/dev-ruby/parsetree/parsetree-3.0.5-r1.ebuild deleted file mode 100644 index 8b522f637bc4..000000000000 --- a/dev-ruby/parsetree/parsetree-3.0.5-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.5-r1.ebuild,v 1.3 2010/08/23 13:48:30 flameeyes Exp $ - -EAPI=2 - -USE_RUBY="ruby18" - -RUBY_FAKEGEM_NAME="ParseTree" - -RUBY_FAKEGEM_TASK_DOC="docs" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="README.txt History.txt" - -inherit ruby-fakegem - -DESCRIPTION="ParseTree extracts the parse tree for a Class or method and returns it as a s-expression." -HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" -IUSE="" - -ruby_add_rdepend ' - >=dev-ruby/ruby-inline-3.8.4-r1 - >=dev-ruby/sexp-processor-3.0.0' -ruby_add_bdepend " - test? ( - dev-ruby/hoe - dev-ruby/hoe-seattlerb - dev-ruby/minitest - dev-ruby/ruby2ruby - ) - doc? ( - dev-ruby/hoe - dev-ruby/hoe-seattlerb - )" - -src_compile() { - chmod 0755 ${WORKDIR/work/homedir} || die "Failed to fix permissions on home" - ruby-ng_src_compile -} - -each_ruby_compile() { - # The ruby extension uses RubyInline to use C code within Ruby; - # since it causes us no little pain, we'll do our best here to - # prebuild the extensions. - local orig_HOME="${HOME}" - export HOME="${T}/$(basename ${RUBY})" - mkdir -p "$HOME" - - ${RUBY} -Ilib -rparse_tree -e '' || die "Unable to load ${PN}" - - mkdir lib/inline - cp "$HOME"/.ruby_inline/*.so lib/inline/ || die - - export HOME="$orig_home" -} - -src_test() { - chmod 0755 ${WORKDIR/work/homedir} || die "Failed to fix permissions on home" - ruby-ng_src_test -} - -pkg_postinst() { - elog "${CATEGORY}/${PN} uses the RubyInline library to build its parser." - elog "RubyInline builds loadable extensions at runtime in your home" - elog "directory if they are not supplied by the gems." - elog "" - elog "We are currently providing you with pre-built extensions for" - elog "the Ruby implementations you're using. Unfortunately these are" - elog "different from version to version, so you might have to" - elog "rebuild ${CATEGORY}/${PN} after each update to dev-lang/ruby or" - elog "dev-lang/ruby-enterprise." -} diff --git a/dev-ruby/parsetree/parsetree-3.0.5-r2.ebuild b/dev-ruby/parsetree/parsetree-3.0.5-r2.ebuild deleted file mode 100644 index d6eb80ebefc6..000000000000 --- a/dev-ruby/parsetree/parsetree-3.0.5-r2.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/parsetree/parsetree-3.0.5-r2.ebuild,v 1.6 2010/12/27 21:11:22 grobian Exp $ - -EAPI=2 - -USE_RUBY="ruby18 ree18" - -RUBY_FAKEGEM_NAME="ParseTree" - -RUBY_FAKEGEM_TASK_DOC="docs" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="README.txt History.txt" - -inherit multilib ruby-fakegem - -DESCRIPTION="ParseTree extracts the parse tree for a Class or method and returns it as a s-expression." -HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend ' - >=dev-ruby/ruby-inline-3.8.4-r1 - >=dev-ruby/sexp-processor-3.0.0' -ruby_add_bdepend " - test? ( - dev-ruby/hoe - dev-ruby/hoe-seattlerb - dev-ruby/minitest - dev-ruby/ruby2ruby - ) - doc? ( - dev-ruby/hoe - dev-ruby/hoe-seattlerb - )" - -all_ruby_prepare() { - # Fix USE=doc by removing the path that triggers running the tests - # and thus building the extensions in the wrong way. - sed -i -e '/require_paths/d' Rakefile || die -} - -src_compile() { - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" - ruby-ng_src_compile -} - -each_ruby_compile() { - # The ruby extension uses RubyInline to use C code within Ruby; - # since it causes us no little pain, we'll do our best here to - # prebuild the extensions. - - INLINEDIR="${PWD}" ${RUBY} -Ilib -rparse_tree -e '' || die "Unable to load ${PN}" - - mkdir lib/inline - cp .ruby_inline/*$(get_modname) lib/inline/ || die -} - -src_test() { - chmod 0755 "${HOME}" || die "Failed to fix permissions on home" - ruby-ng_src_test -} - -pkg_postinst() { - elog "${CATEGORY}/${PN} uses the RubyInline library to build its parser." - elog "RubyInline builds loadable extensions at runtime in your home" - elog "directory if they are not supplied by the gems." - elog "" - elog "We are currently providing you with pre-built extensions for" - elog "the Ruby implementations you're using. Unfortunately these are" - elog "different from version to version, so you might have to" - elog "rebuild ${CATEGORY}/${PN} after each update to dev-lang/ruby or" - elog "dev-lang/ruby-enterprise." -} |