Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/archive-tar-minitar: archive-tar-minitar-0.5.4-r1.ebuild ChangeLog
Date: Tue, 05 Nov 2013 03:27:20
Message-Id: 20131105032713.C4D4420035@flycatcher.gentoo.org
1 mrueg 13/11/05 03:27:13
2
3 Modified: ChangeLog
4 Added: archive-tar-minitar-0.5.4-r1.ebuild
5 Log:
6 Add ruby20 support. Tests still broken, but no difference to ruby19.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.51 dev-ruby/archive-tar-minitar/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 4 Sep 2013 13:34:05 -0000 1.50
24 +++ ChangeLog 5 Nov 2013 03:27:13 -0000 1.51
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/archive-tar-minitar
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog,v 1.50 2013/09/04 13:34:05 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/archive-tar-minitar/ChangeLog,v 1.51 2013/11/05 03:27:13 mrueg Exp $
30 +
31 +*archive-tar-minitar-0.5.4-r1 (05 Nov 2013)
32 +
33 + 05 Nov 2013; Manuel Rüger <mrueg@g.o>
34 + +archive-tar-minitar-0.5.4-r1.ebuild:
35 + Add ruby20 support. Tests still broken, but no difference to ruby19.
36
37 04 Sep 2013; Manuel Rüger <mrueg@g.o>
38 -archive-tar-minitar-0.5.2-r2.ebuild:
39
40
41
42 1.1 dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/archive-tar-minitar/archive-tar-minitar-0.5.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: archive-tar-minitar-0.5.4-r1.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/archive-tar-minitar/archive-tar-minitar-0.5.4-r1.ebuild,v 1.1 2013/11/05 03:27:13 mrueg Exp $
52
53 EAPI=5
54 USE_RUBY="ruby18 ruby19 ruby20 jruby"
55
56 RUBY_FAKEGEM_TASK_TEST=""
57 RUBY_FAKEGEM_TASK_DOC=""
58
59 RUBY_FAKEGEM_EXTRADOC="README ChangeLog"
60
61 # We don't use RUBY_FAKEGEM_NAME here since for now we want to keep the
62 # same gem name.
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="Provides POSIX tarchive management from Ruby programs."
67 HOMEPAGE="http://rubyforge.org/projects/ruwiki/"
68 SRC_URI="mirror://rubygems/minitar-${PV}.gem"
69
70 LICENSE="|| ( GPL-2 Ruby )"
71 SLOT="0"
72 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
73 IUSE=""
74
75 # Tests are broken but this was already the case with 0.5.2 and it seems
76 # that only the test case is broken:
77 # https://github.com/halostatue/minitar/issues/9
78 #RESTRICT="test"
79
80 RUBY_PATCHES=(
81 ${PN}-0.5.2-gentoo.patch
82 ${PN}-0.5.3-pipes.patch
83 )
84
85 all_ruby_prepare() {
86 # ignore faulty metadata
87 rm ../metadata || die
88 }
89
90 each_ruby_test() {
91 ${RUBY} -Itests -Ctests testall.rb || die
92 }