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: ruby-oci8-2.1.8.ebuild ChangeLog
Date: Fri, 31 Jul 2015 05:24:23
Message-Id: 20150731052418.59C28113@oystercatcher.gentoo.org
1 graaff 15/07/31 05:24:18
2
3 Modified: ChangeLog
4 Added: ruby-oci8-2.1.8.ebuild
5 Log:
6 Version bump (untested).
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.37 dev-ruby/ruby-oci8/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 11 Apr 2015 15:35:26 -0000 1.36
24 +++ ChangeLog 31 Jul 2015 05:24:18 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ruby-oci8
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.36 2015/04/11 15:35:26 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-oci8/ChangeLog,v 1.37 2015/07/31 05:24:18 graaff Exp $
30 +
31 +*ruby-oci8-2.1.8 (31 Jul 2015)
32 +
33 + 31 Jul 2015; Hans de Graaff <graaff@g.o> +ruby-oci8-2.1.8.ebuild:
34 + Version bump (untested).
35
36 11 Apr 2015; Hans de Graaff <graaff@g.o> ruby-oci8-2.1.7-r1.ebuild:
37 Add ruby22.
38
39
40
41 1.1 dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ruby-oci8-2.1.8.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.1.8.ebuild,v 1.1 2015/07/31 05:24:18 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
54
55 inherit multilib ruby-fakegem
56
57 RUBY_FAKEGEM_EXTRADOC="NEWS README.md ChangeLog"
58
59 DESCRIPTION="A Ruby library for Oracle OCI8"
60 HOMEPAGE="https://rubygems.org/gems/ruby-oci8/"
61
62 LICENSE="Ruby"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND+=" dev-db/oracle-instantclient-basic"
68 DEPEND+=" dev-db/oracle-instantclient-basic"
69
70 EXT_DIR="ext/oci8"
71
72 each_ruby_configure() {
73 # configure the native libraries
74 ${RUBY} -C${EXT_DIR} extconf.rb --prefix="${D}/usr" || die "configure failed"
75 }
76
77 each_ruby_compile() {
78 # compile the native libraries
79 emake -C ${EXT_DIR} V=1 || die "could not compile native library"
80 }
81
82 each_ruby_install() {
83 # install the native libraries
84 emake -C ${EXT_DIR} install DESTDIR="${D}" || die "could not install native library"
85 # install the gem files
86 each_fakegem_install
87 }