diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2013-11-05 00:40:23 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2013-11-05 00:40:23 +0000 |
commit | a009f7416ad874724c274bac24b6da64d2b8e6ec (patch) | |
tree | a5e07febb1511190f0f70a33167808b34db12c39 /dev-ruby/mini_magick | |
parent | Add ruby20 target. Cleanup old. (diff) | |
download | gentoo-2-a009f7416ad874724c274bac24b6da64d2b8e6ec.tar.gz gentoo-2-a009f7416ad874724c274bac24b6da64d2b8e6ec.tar.bz2 gentoo-2-a009f7416ad874724c274bac24b6da64d2b8e6ec.zip |
Cleanup old.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-ruby/mini_magick')
-rw-r--r-- | dev-ruby/mini_magick/ChangeLog | 6 | ||||
-rw-r--r-- | dev-ruby/mini_magick/mini_magick-1.3.3-r2.ebuild | 54 | ||||
-rw-r--r-- | dev-ruby/mini_magick/mini_magick-3.4.ebuild | 45 |
3 files changed, 5 insertions, 100 deletions
diff --git a/dev-ruby/mini_magick/ChangeLog b/dev-ruby/mini_magick/ChangeLog index 480771b096c6..b5f888d5c255 100644 --- a/dev-ruby/mini_magick/ChangeLog +++ b/dev-ruby/mini_magick/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-ruby/mini_magick # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/ChangeLog,v 1.16 2013/05/30 17:42:34 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/ChangeLog,v 1.17 2013/11/05 00:40:23 mrueg Exp $ + + 05 Nov 2013; Manuel Rüger <mrueg@gentoo.org> -mini_magick-1.3.3-r2.ebuild, + -mini_magick-3.4.ebuild: + Cleanup old. *mini_magick-3.6.0 (30 May 2013) diff --git a/dev-ruby/mini_magick/mini_magick-1.3.3-r2.ebuild b/dev-ruby/mini_magick/mini_magick-1.3.3-r2.ebuild deleted file mode 100644 index 511bef7f4b90..000000000000 --- a/dev-ruby/mini_magick/mini_magick-1.3.3-r2.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/mini_magick-1.3.3-r2.ebuild,v 1.1 2012/05/12 17:34:41 flameeyes Exp $ - -EAPI=4 - -# jruby → test_tempfile_at_path_after_format fails with jruby 1.3.1, -# sounds like a bug in JRuby itself, or the code not being compatible. -USE_RUBY="ruby18 ruby19" - -RUBY_FAKEGEM_DOCDIR="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem eutils - -DESCRIPTION="Manipulate images with minimal use of memory." -HOMEPAGE="http://github.com/probablycorey/mini_magick" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -# It's only used at runtime in this case because this extension only -# _calls_ the commands. But when we run tests we're going to need tiff -# and jpeg support at a minimum. -RDEPEND="media-gfx/imagemagick" -DEPEND="test? ( media-gfx/imagemagick[tiff,jpeg] )" - -# tests are known to fail under imagemagick 6.5 at least, reported upstream: -# http://github.com/probablycorey/mini_magick/issues/#issue/2 -# update: still fails with imagemagick 6.6. -ruby_add_bdepend "test? ( virtual/ruby-test-unit )" - -ruby_add_rdepend ">=dev-ruby/subexec-0.0.4" - -all_ruby_prepare() { - # remove executable bit from all files - find "${S}" -type f -exec chmod -x {} + - - # Remove spec definition part because the gemspec file is not included - sed -i -e '/gemspec/,$ d' Rakefile || die - - # convert the metadata to gemspec for easier editing; this has to be - # executed — this requires a ruby interpreter to be set - RUBY=ruby \ - ruby_fakegem_metadata_gemspec ../metadata "${PN}.gemspec" || die - - # fix dependency over subexec, so that 0.1.x is also accepted (tests - # pass just fine, package works). - sed -i -e 's:~>:>=:' "${PN}.gemspec" -} diff --git a/dev-ruby/mini_magick/mini_magick-3.4.ebuild b/dev-ruby/mini_magick/mini_magick-3.4.ebuild deleted file mode 100644 index d4b28e79a0aa..000000000000 --- a/dev-ruby/mini_magick/mini_magick-3.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mini_magick/mini_magick-3.4.ebuild,v 1.1 2012/01/15 12:30:59 graaff Exp $ - -EAPI=2 - -# jruby → test_tempfile_at_path_after_format fails with jruby 1.3.1, -# sounds like a bug in JRuby itself, or the code not being compatible. -USE_RUBY="ruby18 ruby19 ree18" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.rdoc" - -inherit ruby-fakegem eutils - -DESCRIPTION="Manipulate images with minimal use of memory." -HOMEPAGE="http://github.com/probablycorey/mini_magick" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -# It's only used at runtime in this case because this extension only -# _calls_ the commands. But when we run tests we're going to need tiff -# and jpeg support at a minimum. -RDEPEND="media-gfx/imagemagick" -DEPEND="test? ( media-gfx/imagemagick[tiff,jpeg] )" - -# tests are known to fail under imagemagick 6.5 at least, reported upstream: -# http://github.com/probablycorey/mini_magick/issues/#issue/2 -# update: still fails with imagemagick 6.6. -ruby_add_bdepend "test? ( virtual/ruby-test-unit )" - -ruby_add_rdepend ">=dev-ruby/subexec-0.1.0" - -all_ruby_prepare() { - # remove executable bit from all files - find "${S}" -type f -exec chmod -x {} + - - # Remove spec definition part because the gemspec file is not included - sed -i -e '/gemspec/,$ d' Rakefile || die - - sed -i -e '/[Bb]undler/ s:^:#:' Rakefile || die -} |