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/mini_magick: ChangeLog mini_magick-1.3.2.ebuild
Date: Tue, 03 Aug 2010 06:04:31
Message-Id: 20100803054918.414E42CE15@corvid.gentoo.org
1 graaff 10/08/03 05:49:17
2
3 Modified: ChangeLog
4 Added: mini_magick-1.3.2.ebuild
5 Log:
6 Version bump. Test failure has been fixed upstream.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-ruby/mini_magick/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mini_magick/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mini_magick/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mini_magick/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 21 Jul 2010 07:17:30 -0000 1.3
23 +++ ChangeLog 3 Aug 2010 05:49:17 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ruby/mini_magick
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/ChangeLog,v 1.3 2010/07/21 07:17:30 graaff Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/ChangeLog,v 1.4 2010/08/03 05:49:17 graaff Exp $
29 +
30 +*mini_magick-1.3.2 (03 Aug 2010)
31 +
32 + 03 Aug 2010; Hans de Graaff <graaff@g.o> +mini_magick-1.3.2.ebuild:
33 + Version bump. Test failure has been fixed upstream.
34
35 *mini_magick-1.3.1 (21 Jul 2010)
36
37
38
39
40 1.1 dev-ruby/mini_magick/mini_magick-1.3.2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mini_magick/mini_magick-1.3.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/mini_magick/mini_magick-1.3.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mini_magick-1.3.2.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/mini_magick-1.3.2.ebuild,v 1.1 2010/08/03 05:49:17 graaff Exp $
50
51 EAPI=2
52
53 # jruby → test_tempfile_at_path_after_format fails with jruby 1.3.1,
54 # sounds like a bug in JRuby itself, or the code not being compatible.
55 USE_RUBY="ruby18 ruby19"
56
57 RUBY_FAKEGEM_DOCDIR="rdoc"
58 RUBY_FAKEGEM_EXTRADOC="README.rdoc"
59
60 inherit ruby-fakegem eutils
61
62 DESCRIPTION="Manipulate images with minimal use of memory."
63 HOMEPAGE="http://github.com/probablycorey/mini_magick"
64
65 LICENSE="MIT"
66 SLOT="0"
67 KEYWORDS="~amd64"
68 IUSE=""
69
70 # It's only used at runtime in this case because this extension only
71 # _calls_ the commands. But when we run tests we're going to need tiff
72 # and jpeg support at a minimum.
73 RDEPEND="media-gfx/imagemagick"
74 DEPEND="test? ( media-gfx/imagemagick[tiff,jpeg] )"
75
76 # tests are known to fail under imagemagick 6.5 at least, reported upstream:
77 # http://github.com/probablycorey/mini_magick/issues/#issue/2
78 # update: still fails with imagemagick 6.6.
79 ruby_add_bdepend "test? ( virtual/ruby-test-unit )"
80
81 ruby_add_rdepend ">=dev-ruby/subexec-0.0.4"
82
83 all_ruby_prepare() {
84 # remove executable bit from all files
85 find "${S}" -type f -exec chmod -x {} +
86
87 # Remove spec definition part because the gemspec file is not included
88 sed -i -e '/gemspec/,$ d' Rakefile || die
89 }