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/rubyzip: ChangeLog rubyzip-1.1.6.ebuild
Date: Tue, 28 Oct 2014 18:10:14
Message-Id: 20141028181009.BDD198F2D@oystercatcher.gentoo.org
1 graaff 14/10/28 18:10:09
2
3 Modified: ChangeLog
4 Added: rubyzip-1.1.6.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.42 dev-ruby/rubyzip/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubyzip/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubyzip/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubyzip/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 28 Oct 2014 18:08:35 -0000 1.41
24 +++ ChangeLog 28 Oct 2014 18:10:09 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/rubyzip
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v 1.41 2014/10/28 18:08:35 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/ChangeLog,v 1.42 2014/10/28 18:10:09 graaff Exp $
30 +
31 +*rubyzip-1.1.6 (28 Oct 2014)
32 +
33 + 28 Oct 2014; Hans de Graaff <graaff@g.o> +rubyzip-1.1.6.ebuild:
34 + Version bump.
35
36 28 Oct 2014; Hans de Graaff <graaff@g.o> rubyzip-1.1.3.ebuild:
37 Fix test failures due to random ordering of tests with newer minitest, bug
38
39
40
41 1.1 dev-ruby/rubyzip/rubyzip-1.1.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubyzip/rubyzip-1.1.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/rubyzip/rubyzip-1.1.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rubyzip-1.1.6.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/rubyzip/rubyzip-1.1.6.ebuild,v 1.1 2014/10/28 18:10:09 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21"
55
56 RUBY_FAKEGEM_TASK_DOC=""
57 RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md TODO"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="A ruby library for reading and writing zip files"
62 HOMEPAGE="https://github.com/rubyzip/rubyzip"
63 # Tests are not included in the gem.
64 SRC_URI="https://github.com/rubyzip/rubyzip/archive/v${PV}.tar.gz -> ${P}-git.tgz"
65
66 LICENSE="Ruby"
67 SLOT="1"
68 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
69 IUSE=""
70
71 RDEPEND=""
72 DEPEND="${DEPEND} test? ( app-arch/zip )"
73
74 ruby_add_bdepend "test? ( dev-ruby/minitest:0 )"
75
76 all_ruby_install() {
77 all_fakegem_install
78
79 docinto examples
80 dodoc samples/*
81 }
82
83 all_ruby_prepare() {
84 # Avoid dependencies on simplecov and coveralls
85 sed -i -e '/simplecov/ s:^:#:' test/test_helper.rb || die
86
87 # Avoid dependency on bundler
88 sed -i -e '/bundler/ s:^:#:' Rakefile || die
89
90 # rubyzip's tests will fail when run in random order, so require a
91 # minitest version that still preserves ordering.
92 sed -i -e '2igem "minitest", "~> 4.0"' test/test_helper.rb || die
93 }