Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/mongo: metadata.xml mongo-1.5.2.ebuild ChangeLog
Date: Wed, 28 Dec 2011 23:56:16
Message-Id: 20111228235606.336FA2004B@flycatcher.gentoo.org
1 flameeyes 11/12/28 23:56:06
2
3 Added: metadata.xml mongo-1.5.2.ebuild ChangeLog
4 Log:
5 Initial import of ebuild for mongo driver.
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-ruby/mongo/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>ruby</herd>
21 </pkgmetadata>
22
23
24
25 1.1 dev-ruby/mongo/mongo-1.5.2.ebuild
26
27 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/mongo-1.5.2.ebuild?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/mongo-1.5.2.ebuild?rev=1.1&content-type=text/plain
29
30 Index: mongo-1.5.2.ebuild
31 ===================================================================
32 # Copyright 1999-2011 Gentoo Foundation
33 # Distributed under the terms of the GNU General Public License v2
34 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/mongo-1.5.2.ebuild,v 1.1 2011/12/28 23:56:06 flameeyes Exp $
35
36 EAPI=4
37
38 USE_RUBY="ruby18 ree18"
39
40 RUBY_FAKEGEM_TASK_TEST="test:unit"
41
42 RUBY_FAKEGEM_TASK_DOC="rdoc"
43 RUBY_FAKEGEM_DOCDIR="html"
44 RUBY_FAKEGEM_EXTRADOC=""
45
46 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
47
48 GITHUB_USER="mongodb"
49 GITHUB_PROJECT="mongo-ruby-driver"
50 RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*"
51
52 inherit ruby-fakegem
53
54 DESCRIPTION="A Ruby driver for MongoDB."
55 HOMEPAGE="http://www.mongodb.org/"
56 SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/tarball/${PV} -> ${GITHUB_PROJECT}-${PV}.tar.gz"
57
58 LICENSE="APSL-2"
59 SLOT="0"
60 KEYWORDS="~amd64"
61 IUSE="test"
62
63 # This is the same source package as bson, so keep them the same
64 # version, but not revision
65 ruby_add_rdepend "~dev-ruby/bson-${PV}"
66
67 ruby_add_bdepend \
68 "test? (
69 dev-ruby/rake
70 dev-ruby/shoulda
71 dev-ruby/mocha
72 )"
73
74 all_ruby_prepare() {
75 # remove the stuff that is actually part of dev-ruby/bson
76 rm -rf lib/bson* bin/{b2j,j2b}son
77 }
78
79
80
81 1.1 dev-ruby/mongo/ChangeLog
82
83 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/ChangeLog?rev=1.1&view=markup
84 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mongo/ChangeLog?rev=1.1&content-type=text/plain
85
86 Index: ChangeLog
87 ===================================================================
88 # ChangeLog for dev-ruby/mongo
89 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
90 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/mongo/ChangeLog,v 1.1 2011/12/28 23:56:06 flameeyes Exp $
91
92 *mongo-1.5.2 (28 Dec 2011)
93
94 28 Dec 2011; Diego E. Pettenò <flameeyes@g.o> +metadata.xml,
95 +mongo-1.5.2.ebuild:
96 Initial import of ebuild for mongo driver.