diff options
author | 2012-04-05 19:40:37 +0000 | |
---|---|---|
committer | 2012-04-05 19:40:37 +0000 | |
commit | d79ee7457a02ed497b627e4cc5406a6cdec5d770 (patch) | |
tree | 747bd9ce4ed1a9f402008272cc7a54f2087ba251 /dev-ruby/mongo | |
parent | Version bump. (diff) | |
download | gentoo-2-d79ee7457a02ed497b627e4cc5406a6cdec5d770.tar.gz gentoo-2-d79ee7457a02ed497b627e4cc5406a6cdec5d770.tar.bz2 gentoo-2-d79ee7457a02ed497b627e4cc5406a6cdec5d770.zip |
Version bump.
(Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/mongo')
-rw-r--r-- | dev-ruby/mongo/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/mongo/mongo-1.6.2.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-ruby/mongo/ChangeLog b/dev-ruby/mongo/ChangeLog index 9190a1654fce..f6f35f2f1cce 100644 --- a/dev-ruby/mongo/ChangeLog +++ b/dev-ruby/mongo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/mongo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v 1.3 2012/03/08 01:31:47 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v 1.4 2012/04/05 19:40:37 flameeyes Exp $ + +*mongo-1.6.2 (05 Apr 2012) + + 05 Apr 2012; Diego E. Pettenò <flameeyes@gentoo.org> +mongo-1.6.2.ebuild: + Version bump. *mongo-1.6.1 (08 Mar 2012) diff --git a/dev-ruby/mongo/mongo-1.6.2.ebuild b/dev-ruby/mongo/mongo-1.6.2.ebuild new file mode 100644 index 000000000000..82a33afb9228 --- /dev/null +++ b/dev-ruby/mongo/mongo-1.6.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/mongo-1.6.2.ebuild,v 1.1 2012/04/05 19:40:37 flameeyes Exp $ + +EAPI=4 + +USE_RUBY="ruby18 ree18" + +RUBY_FAKEGEM_TASK_TEST="test:unit" + +RUBY_FAKEGEM_TASK_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="html" +RUBY_FAKEGEM_EXTRADOC="" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +GITHUB_USER="mongodb" +GITHUB_PROJECT="mongo-ruby-driver" +RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby driver for MongoDB." +HOMEPAGE="http://www.mongodb.org/" +SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/tarball/${PV} -> ${GITHUB_PROJECT}-${PV}.tar.gz" + +LICENSE="APSL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +# This is the same source package as bson, so keep them the same +# version, but not revision +ruby_add_rdepend "~dev-ruby/bson-${PV}" + +ruby_add_bdepend \ + "test? ( + dev-ruby/rake + dev-ruby/shoulda + dev-ruby/mocha + )" + +all_ruby_prepare() { + # remove the stuff that is actually part of dev-ruby/bson + rm -rf lib/bson* bin/{b2j,j2b}son +} |