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-serialport: ChangeLog ruby-serialport-0.7.0.ebuild
Date: Mon, 24 Aug 2009 20:21:55
Message-Id: E1Mfg37-0008U1-Ku@stork.gentoo.org
1 graaff 09/08/24 20:21:53
2
3 Modified: ChangeLog
4 Added: ruby-serialport-0.7.0.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 dev-ruby/ruby-serialport/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 8 Feb 2009 19:55:33 -0000 1.8
23 +++ ChangeLog 24 Aug 2009 20:21:53 -0000 1.9
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ruby/ruby-serialport
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog,v 1.8 2009/02/08 19:55:33 a3li Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-serialport/ChangeLog,v 1.9 2009/08/24 20:21:53 graaff Exp $
30 +
31 +*ruby-serialport-0.7.0 (24 Aug 2009)
32 +
33 + 24 Aug 2009; Hans de Graaff <graaff@g.o>
34 + +ruby-serialport-0.7.0.ebuild:
35 + Version bump.
36
37 08 Feb 2009; Alex Legler <a3li@g.o> ruby-serialport-0.6.ebuild:
38 Removing ruby16 and ruby19 from USE_RUBY and depending explicitly on
39
40
41
42 1.1 dev-ruby/ruby-serialport/ruby-serialport-0.7.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-serialport/ruby-serialport-0.7.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/ruby-serialport/ruby-serialport-0.7.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ruby-serialport-0.7.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-serialport/ruby-serialport-0.7.0.ebuild,v 1.1 2009/08/24 20:21:53 graaff Exp $
52
53 inherit ruby
54
55 DESCRIPTION="a library for serial port (rs232) access in ruby"
56 HOMEPAGE="http://rubyforge.org/projects/ruby-serialport/"
57 SRC_URI="mirror://rubyforge/${PN}/${P}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~ia64 ~ppc ~x86"
61 IUSE=""
62 USE_RUBY="ruby18"
63 DEPEND="=dev-lang/ruby-1.8*"
64 RDEPEND="${DEPEND}"
65
66 src_compile() {
67 cd ext
68 ruby18 extconf.rb || die
69 emake || die
70 }
71
72 src_install() {
73 cd ext
74 emake DESTDIR="${D}" install || die
75 cd "${S}"
76 dodoc ChangeLog README
77 }