Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/ruby-oci8: ChangeLog ruby-oci8-2.0.3.ebuild
Date: Wed, 10 Feb 2010 21:07:57
Message-Id: E1NfJmk-0000Rc-5E@stork.gentoo.org
1 graaff 10/02/10 21:07:46
2
3 Modified: ChangeLog
4 Added: ruby-oci8-2.0.3.ebuild
5 Log:
6 Version bump to the new feature branch thanks to Troy Bowman in #303415, with some minor edits.
7 (Portage version: 2.1.7.16/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-ruby/ruby-oci8/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 6 Feb 2010 16:29:46 -0000 1.13
23 +++ ChangeLog 10 Feb 2010 21:07:45 -0000 1.14
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/ruby-oci8
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.13 2010/02/06 16:29:46 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.14 2010/02/10 21:07:45 graaff Exp $
29 +
30 +*ruby-oci8-2.0.3 (10 Feb 2010)
31 +
32 + 10 Feb 2010; Hans de Graaff <graaff@g.o> +ruby-oci8-2.0.3.ebuild:
33 + Version bump to the new feature branch thanks to Troy Bowman in #303415,
34 + with some minor edits.
35
36 *ruby-oci8-1.0.7-r1 (06 Feb 2010)
37
38
39
40
41 1.1 dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ruby-oci8-2.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.0.3.ebuild,v 1.1 2010/02/10 21:07:45 graaff Exp $
51
52 EAPI="2"
53 USE_RUBY="ruby18 ruby19"
54
55 inherit ruby-ng
56
57 DESCRIPTION="A Ruby library for Oracle"
58 HOMEPAGE="http://rubyforge.org/projects/ruby-oci8/"
59 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
60 LICENSE="Ruby"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND="dev-db/oracle-instantclient-basic"
66 DEPEND="${RDEPEND}"
67
68 each_ruby_configure() {
69 ${RUBY} setup.rb config --prefix="${D}/usr" || die "configure failed"
70 }
71
72 each_ruby_compile() {
73 ${RUBY} setup.rb setup || die "compile failed"
74 }
75
76 each_ruby_install() {
77 ${RUBY} setup.rb install || die "install failed"
78 }
79
80 all_ruby_install() {
81 for i in NEWS README ChangeLog
82 do test -e $i && dodoc $i
83 done
84 }
85
86 pkg_postinst() {
87 test -e "/usr/share/doc/${PF}/NEWS.bz2" && \
88 elog "Please read /usr/share/doc/${PF}/NEWS.bz2 for major change information in ${P}"
89 }