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