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/abstract: metadata.xml ChangeLog abstract-1.0.0.ebuild
Date: Thu, 28 Jan 2010 23:44:59
Message-Id: E1Nae2j-0008Tu-CQ@stork.gentoo.org
1 flameeyes 10/01/28 23:44:57
2
3 Added: metadata.xml ChangeLog abstract-1.0.0.ebuild
4 Log:
5 Initial import of abstract, not to be confused with the copy previously in the Ruby overlay, based on the old eclasses.
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ruby/abstract/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/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/abstract/ChangeLog
25
26 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/ChangeLog?rev=1.1&view=markup
27 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/ChangeLog?rev=1.1&content-type=text/plain
28
29 Index: ChangeLog
30 ===================================================================
31 # ChangeLog for dev-ruby/abstract
32 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
33 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/abstract/ChangeLog,v 1.1 2010/01/28 23:44:56 flameeyes Exp $
34
35 *abstract-1.0.0 (28 Jan 2010)
36
37 28 Jan 2010; Diego E. Pettenò <flameeyes@g.o>
38 +abstract-1.0.0.ebuild, +metadata.xml:
39 Initial import of abstract, not to be confused with the copy previously in
40 the Ruby overlay, based on the old eclasses.
41
42
43
44
45 1.1 dev-ruby/abstract/abstract-1.0.0.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/abstract-1.0.0.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ruby/abstract/abstract-1.0.0.ebuild?rev=1.1&content-type=text/plain
49
50 Index: abstract-1.0.0.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/abstract/abstract-1.0.0.ebuild,v 1.1 2010/01/28 23:44:56 flameeyes Exp $
55
56 EAPI=2
57 USE_RUBY="ruby18 ruby19 jruby"
58
59 RUBY_FAKEGEM_TASK_TEST=""
60 RUBY_FAKEGEM_TASK_DOC=""
61 RUBY_FAKEGEM_EXTRADOC="README.txt"
62
63 inherit ruby-fakegem
64
65 DESCRIPTION="Library which enable you to define abstract method in Ruby."
66 HOMEPAGE="http://rubyforge.org/projects/abstract"
67
68 LICENSE="Ruby"
69 SLOT="0"
70 KEYWORDS="~amd64"
71 IUSE="test"
72
73 each_ruby_test() {
74 ${RUBY} -Ilib test/test.rb || die "tests failed"
75 }