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/attic: ChangeLog attic-0.5.3.ebuild
Date: Wed, 25 Dec 2013 07:07:32
Message-Id: 20131225070728.B44A82004C@flycatcher.gentoo.org
1 graaff 13/12/25 07:07:28
2
3 Modified: ChangeLog
4 Added: attic-0.5.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.10 dev-ruby/attic/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/attic/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/attic/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/attic/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/attic/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 9 Sep 2010 18:02:09 -0000 1.9
24 +++ ChangeLog 25 Dec 2013 07:07:28 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/attic
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/attic/ChangeLog,v 1.9 2010/09/09 18:02:09 flameeyes Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/attic/ChangeLog,v 1.10 2013/12/25 07:07:28 graaff Exp $
31 +
32 +*attic-0.5.3 (25 Dec 2013)
33 +
34 + 25 Dec 2013; Hans de Graaff <graaff@g.o> +attic-0.5.3.ebuild:
35 + Version bump.
36
37 09 Sep 2010; Diego E. Pettenò <flameeyes@g.o> attic-0.5.2.ebuild:
38 Remove JRuby support.
39
40
41
42 1.1 dev-ruby/attic/attic-0.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/attic/attic-0.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/attic/attic-0.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: attic-0.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/attic/attic-0.5.3.ebuild,v 1.1 2013/12/25 07:07:28 graaff Exp $
52
53 EAPI=5
54
55 USE_RUBY="ruby18 ruby19"
56
57 RUBY_FAKEGEM_TASK_TEST=""
58
59 RUBY_FAKEGEM_TASK_DOC="rdoc"
60 RUBY_FAKEGEM_DOCDIR="doc"
61 RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.rdoc"
62
63 RUBY_FAKEGEM_BINWRAP=""
64
65 inherit ruby-fakegem eutils
66
67 DESCRIPTION="A place for Ruby objects to hide instance variables"
68 HOMEPAGE="http://solutious.com/"
69
70 SRC_URI="https://github.com/delano/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}.tgz"
71
72 LICENSE="MIT"
73 SLOT="0"
74 KEYWORDS="~amd64 ~x86"
75 IUSE="test"
76
77 ruby_add_bdepend "test? ( dev-ruby/tryouts:2 )"
78
79 each_ruby_prepare() {
80 case ${RUBY} in
81 *ruby18)
82 # Remove tests failing on ruby18 due to string/symbol
83 # differences: https://github.com/delano/attic/issues/1
84 rm try/01_mixins_tryouts.rb try/30_nometaclass_tryouts.rb || die
85 ;;
86 esac
87 }
88
89 each_ruby_test() {
90 ${RUBY} -Ilib -S try || die "tests failed"
91 }