Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/dbd-sqlite: metadata.xml dbd-sqlite-0.1.2.ebuild ChangeLog
Date: Wed, 26 Aug 2009 20:31:59
Message-Id: E1MgRYI-0003DJ-PI@stork.gentoo.org
1 a3li 09/08/26 23:05:14
2
3 Added: metadata.xml dbd-sqlite-0.1.2.ebuild ChangeLog
4 Log:
5 Initial import, ebuild by /me.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/dbd-sqlite/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>ruby</herd>
20 </pkgmetadata>
21
22
23
24 1.1 dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild?rev=1.1&content-type=text/plain
28
29 Index: dbd-sqlite-0.1.2.ebuild
30 ===================================================================
31 # Copyright 1999-2009 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite/dbd-sqlite-0.1.2.ebuild,v 1.1 2009/08/26 23:05:14 a3li Exp $
34
35 inherit "ruby"
36
37 DESCRIPTION="The SQLite database driver (DBD) for Ruby/DBI"
38 HOMEPAGE="http://ruby-dbi.rubyforge.org"
39 SRC_URI="mirror://rubyforge/ruby-dbi/${P}.tar.gz"
40
41 LICENSE="BSD"
42 SLOT="0"
43 KEYWORDS="~amd64 ~x86"
44 IUSE="test"
45
46 DEPEND="virtual/ruby"
47 RDEPEND="${DEPEND}
48 >=dev-ruby/ruby-dbi-0.4.2
49 dev-ruby/sqlite-ruby"
50
51 USE_RUBY="ruby18"
52
53 src_test() {
54 elog "The tests require additional configuration."
55 elog "You will find them in /usr/share/${PN}/test/"
56 elog "Be sure to read the file called DBD_TESTS."
57 }
58
59 src_install() {
60 ruby setup.rb install \
61 --prefix="${D}" || die "setup.rb install failed"
62
63 if use test; then
64 dodir /usr/share/${PN}
65 cp -pPR test "${D}/usr/share/${PN}" || die "couldn't copy tests"
66 fi
67 }
68
69
70
71 1.1 dev-ruby/dbd-sqlite/ChangeLog
72
73 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/ChangeLog?rev=1.1&view=markup
74 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/dbd-sqlite/ChangeLog?rev=1.1&content-type=text/plain
75
76 Index: ChangeLog
77 ===================================================================
78 # ChangeLog for dev-ruby/dbd-sqlite
79 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
80 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/dbd-sqlite/ChangeLog,v 1.1 2009/08/26 23:05:14 a3li Exp $
81
82 *dbd-sqlite-0.1.2 (26 Aug 2009)
83
84 26 Aug 2009; Alex Legler <a3li@g.o> +dbd-sqlite-0.1.2.ebuild,
85 +metadata.xml:
86 Initial commit, ebuild done by /me.