diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-06-05 09:10:10 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-06-05 09:10:10 +0000 |
commit | a0ac1c7a7b8355f92f7873645b2f5fe36c8597fb (patch) | |
tree | 01989de29e6a16a2f3177cec3dd0e195c9e65828 /virtual | |
parent | Add virtual/ruby-threads to the ruby 1.9 mask. (diff) | |
download | gentoo-2-a0ac1c7a7b8355f92f7873645b2f5fe36c8597fb.tar.gz gentoo-2-a0ac1c7a7b8355f92f7873645b2f5fe36c8597fb.tar.bz2 gentoo-2-a0ac1c7a7b8355f92f7873645b2f5fe36c8597fb.zip |
Virtual to be able to request a version of the ruby interpreter with threads enabled.
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'virtual')
-rw-r--r-- | virtual/ruby-threads/ChangeLog | 15 | ||||
-rw-r--r-- | virtual/ruby-threads/metadata.xml | 5 | ||||
-rw-r--r-- | virtual/ruby-threads/ruby-threads-0.ebuild | 45 | ||||
-rw-r--r-- | virtual/ruby-threads/ruby-threads-1.ebuild | 45 | ||||
-rw-r--r-- | virtual/ruby-threads/ruby-threads-2.ebuild | 45 | ||||
-rw-r--r-- | virtual/ruby-threads/ruby-threads-3.ebuild | 45 |
6 files changed, 200 insertions, 0 deletions
diff --git a/virtual/ruby-threads/ChangeLog b/virtual/ruby-threads/ChangeLog new file mode 100644 index 000000000000..1d517d7b1f49 --- /dev/null +++ b/virtual/ruby-threads/ChangeLog @@ -0,0 +1,15 @@ +# ChangeLog for virtual/ruby-threads +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ChangeLog,v 1.1 2011/06/05 09:10:10 graaff Exp $ + +*ruby-threads-3 (05 Jun 2011) +*ruby-threads-2 (05 Jun 2011) +*ruby-threads-1 (05 Jun 2011) +*ruby-threads-0 (05 Jun 2011) + + 05 Jun 2011; Hans de Graaff <graaff@gentoo.org> +ruby-threads-0.ebuild, + +ruby-threads-1.ebuild, +ruby-threads-2.ebuild, +ruby-threads-3.ebuild, + +metadata.xml: + Virtual to be able to request a version of the ruby interpreter with threads + enabled. + diff --git a/virtual/ruby-threads/metadata.xml b/virtual/ruby-threads/metadata.xml new file mode 100644 index 000000000000..852136183369 --- /dev/null +++ b/virtual/ruby-threads/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ruby</herd> +</pkgmetadata> diff --git a/virtual/ruby-threads/ruby-threads-0.ebuild b/virtual/ruby-threads/ruby-threads-0.ebuild new file mode 100644 index 000000000000..baf9abe914b5 --- /dev/null +++ b/virtual/ruby-threads/ruby-threads-0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ruby-threads-0.ebuild,v 1.1 2011/06/05 09:10:10 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby18" + +inherit ruby-ng + +DESCRIPTION="Virtual ebuild for a ruby interpreter with threading enabled." +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="${USE_RUBY}" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="" + +RDEPEND="dev-lang/ruby:1.8[threads]" + +pkg_setup() { :; } +src_unpack() { :; } +src_prepare() { :; } +src_compile() { :; } +src_install() { :; } +pkg_preinst() { :; } +pkg_postinst() { :; } + +# DEVELOPERS' NOTE! +# +# This virtual has multiple version that ties one-by-one with the Ruby +# implementation they provide the value for; this is to simplify +# keywording practise that has been shown to be very messy for other +# virtuals. +# +# Make sure that you DO NOT change the version of the virtual's +# ebuilds unless you're adding a new implementation; instead simply +# revision-bump it. +# +# A reference to ~${PV} for each of the version has to be added to +# profiles/base/package.use.force to make sure that they are always +# used with their own implementation. +# +# ruby_add_[br]depend will take care of depending on multiple versions +# without any frown. diff --git a/virtual/ruby-threads/ruby-threads-1.ebuild b/virtual/ruby-threads/ruby-threads-1.ebuild new file mode 100644 index 000000000000..095564c97334 --- /dev/null +++ b/virtual/ruby-threads/ruby-threads-1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ruby-threads-1.ebuild,v 1.1 2011/06/05 09:10:10 graaff Exp $ + +EAPI=2 +USE_RUBY="ruby19" + +inherit ruby-ng + +DESCRIPTION="Virtual ebuild for a ruby interpreter with threading enabled." +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="${USE_RUBY}" +KEYWORDS="~amd64 ~hppa ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="dev-lang/ruby:1.9" + +pkg_setup() { :; } +src_unpack() { :; } +src_prepare() { :; } +src_compile() { :; } +src_install() { :; } +pkg_preinst() { :; } +pkg_postinst() { :; } + +# DEVELOPERS' NOTE! +# +# This virtual has multiple version that ties one-by-one with the Ruby +# implementation they provide the value for; this is to simplify +# keywording practise that has been shown to be very messy for other +# virtuals. +# +# Make sure that you DO NOT change the version of the virtual's +# ebuilds unless you're adding a new implementation; instead simply +# revision-bump it. +# +# A reference to ~${PV} for each of the version has to be added to +# profiles/base/package.use.force to make sure that they are always +# used with their own implementation. +# +# ruby_add_[br]depend will take care of depending on multiple versions +# without any frown. diff --git a/virtual/ruby-threads/ruby-threads-2.ebuild b/virtual/ruby-threads/ruby-threads-2.ebuild new file mode 100644 index 000000000000..3b597094823c --- /dev/null +++ b/virtual/ruby-threads/ruby-threads-2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ruby-threads-2.ebuild,v 1.1 2011/06/05 09:10:10 graaff Exp $ + +EAPI=2 +USE_RUBY="jruby" + +inherit ruby-ng + +DESCRIPTION="Virtual ebuild for a ruby interpreter with threading enabled." +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="${USE_RUBY}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-java/jruby" + +pkg_setup() { :; } +src_unpack() { :; } +src_prepare() { :; } +src_compile() { :; } +src_install() { :; } +pkg_preinst() { :; } +pkg_postinst() { :; } + +# DEVELOPERS' NOTE! +# +# This virtual has multiple version that ties one-by-one with the Ruby +# implementation they provide the value for; this is to simplify +# keywording practise that has been shown to be very messy for other +# virtuals. +# +# Make sure that you DO NOT change the version of the virtual's +# ebuilds unless you're adding a new implementation; instead simply +# revision-bump it. +# +# A reference to ~${PV} for each of the version has to be added to +# profiles/base/package.use.force to make sure that they are always +# used with their own implementation. +# +# ruby_add_[br]depend will take care of depending on multiple versions +# without any frown. diff --git a/virtual/ruby-threads/ruby-threads-3.ebuild b/virtual/ruby-threads/ruby-threads-3.ebuild new file mode 100644 index 000000000000..0b2d862aa051 --- /dev/null +++ b/virtual/ruby-threads/ruby-threads-3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/virtual/ruby-threads/ruby-threads-3.ebuild,v 1.1 2011/06/05 09:10:10 graaff Exp $ + +EAPI=2 +USE_RUBY="ree18" + +inherit ruby-ng + +DESCRIPTION="Virtual ebuild for a ruby interpreter with threading enabled." +HOMEPAGE="" +SRC_URI="" + +LICENSE="" +SLOT="${USE_RUBY}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-lang/ruby-enterprise:1.8[threads]" + +pkg_setup() { :; } +src_unpack() { :; } +src_prepare() { :; } +src_compile() { :; } +src_install() { :; } +pkg_preinst() { :; } +pkg_postinst() { :; } + +# DEVELOPERS' NOTE! +# +# This virtual has multiple version that ties one-by-one with the Ruby +# implementation they provide the value for; this is to simplify +# keywording practise that has been shown to be very messy for other +# virtuals. +# +# Make sure that you DO NOT change the version of the virtual's +# ebuilds unless you're adding a new implementation; instead simply +# revision-bump it. +# +# A reference to ~${PV} for each of the version has to be added to +# profiles/base/package.use.force to make sure that they are always +# used with their own implementation. +# +# ruby_add_[br]depend will take care of depending on multiple versions +# without any frown. |