From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rmagick/
Date: Sun, 25 Oct 2015 08:30:51 +0000 (UTC) [thread overview]
Message-ID: <1445761847.893241a7f7517b08ace60574944406b4d645154b.graaff@gentoo> (raw)
commit: 893241a7f7517b08ace60574944406b4d645154b
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 25 08:29:58 2015 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 25 08:30:47 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=893241a7
dev-ruby/rmagick: add 2.15.4
Drop restriction on imagemagick[-hdri] since this now seems
to work correctly.
Add rspec specs since rmagick is moving its tests there.
Drop mips keyword due to the new dependency, bug 564030
Package-Manager: portage-2.2.20.1
dev-ruby/rmagick/Manifest | 1 +
dev-ruby/rmagick/rmagick-2.15.4.ebuild | 71 ++++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/dev-ruby/rmagick/Manifest b/dev-ruby/rmagick/Manifest
index 923c6d1..d372646 100644
--- a/dev-ruby/rmagick/Manifest
+++ b/dev-ruby/rmagick/Manifest
@@ -1,2 +1,3 @@
DIST RMagick-2.13.2.tar.bz2 1208478 SHA256 a8c2df101549f74c66f687eceada6b703183234d7ce67dc84d85d16745a638e3 SHA512 b7e9111b9221467f827e57e1d3113d714dcc5cfd32483a2a3aefc5a59fe7f98efae612145db097c3837ef55c2acd0cdde6638a94ffb595a0fba412edeb469530 WHIRLPOOL 4d89bd1a1fa341b83b539437b8a4893f955d2b196e4469d106acb49b6eac28f6777a82e4120f6a88ffc06e0d2d84e40531f713cd39388584d70ff992422b2a75
DIST rmagick-2.13.4.gem 1539584 SHA256 7877ce2fe1b05e51e62b0a4f5d17ecae6223c17bdb61c9b4e1715dd74d541afa SHA512 c458867654af82adf10e74408055920e01963292c7890b581f473f30a8b090998f085f1701e42190ee1f62de44fcecb5e593df74e68c9d7a8fc8050f359ff643 WHIRLPOOL 2aa5fc6dbc7787d41b46ec36c6e85540aa85e020c9e060df6d2ea22c74e80665f68c32e07d70a10a3a95911943c25724c92730f1edd05c7ccda3867bb725d239
+DIST rmagick-2.15.4.gem 1545216 SHA256 69db6635c2630ffd63c1858646cbc280226f31a7bc34e1c9d1322c2c73e1e386 SHA512 9cb43632e510e3592e3a643117d61020d6cbec932acecc19c1e977cca001ccc04bae46669895fa2f5f0e8d43c09f1c2c429595a9358a4a74cbdbb4ecd8957b80 WHIRLPOOL 92e62fe057c6cd918577ef4a5d54021514d12cb631f7e6debbbb44f2260f361f719a03e973905552dd54089ac65f51926177de43024d0734ff0557cc1e0e0d62
diff --git a/dev-ruby/rmagick/rmagick-2.15.4.ebuild b/dev-ruby/rmagick/rmagick-2.15.4.ebuild
new file mode 100644
index 0000000..704882d
--- /dev/null
+++ b/dev-ruby/rmagick/rmagick-2.15.4.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.textile"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="An interface between Ruby and the ImageMagick(TM) image processing library"
+HOMEPAGE="https://github.com/gemhome/rmagick"
+
+LICENSE="Artistic"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-macos"
+IUSE="doc"
+
+RDEPEND+=" >=media-gfx/imagemagick-6.4.9:="
+DEPEND+=" >=media-gfx/imagemagick-6.4.9:=[jpeg]"
+
+ruby_add_bdepend "test? ( dev-ruby/rspec:3 )"
+
+all_ruby_prepare() {
+ # Avoid unused dependency on rake-compiler. This also avoids an
+ # extra compile during tests.
+ sed -i -e '/extensiontask/ s:^:#:' \
+ -e '/ExtensionTask/,/end/ s:^:#:' \
+ -e '/compile/ s:^:#:' Rakefile || die
+
+ # Avoid simplecov dependency
+ sed -i -e '/simplecov/ s:^:#:' Rakefile test/test_all_basic.rb || die
+
+ # Squelch harmless warning about imagemagick installation.
+ sed -i -e '/prefix/ s:ImageMagick:ImageMagick-6:' ext/RMagick/extconf.rb || die
+
+ # Avoid some tests that seem to be very dependent on specific
+ # imagemagick versions. color defs?
+ sed -i -e '/test_gray/,/^ end/ s:^:#:' test/Image2.rb || die
+ sed -i -e '/test_\(delete_if\|reject\)/,/^ end/ s:^:#:' test/ImageList1.rb || die
+ sed -i -e '/test_optimize_layers/,/^ end/ s:^:#:' test/ImageList2.rb || die
+ sed -i -e '/test_\(background\|border\)_color/,/^ end/ s:^:#:' test/Image_attributes.rb || die
+}
+
+each_ruby_configure() {
+ ${RUBY} -Cext/RMagick extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+ emake -Cext/RMagick V=1
+ cp ext/RMagick/RMagick2$(get_modname) lib/ || die
+}
+
+each_ruby_test() {
+ ${RUBY} -S rake test || die
+ RSPEC_VERSION=3 ruby-ng_rspec spec || die
+}
+
+all_ruby_install() {
+ all_fakegem_install
+
+ docinto examples
+ dodoc examples/*
+
+ if use doc ; then
+ dohtml -r doc
+ fi
+}
next reply other threads:[~2015-10-25 8:30 UTC|newest]
Thread overview: 115+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-25 8:30 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-11-09 10:31 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rmagick/ Agostino Sarubbo
2015-11-11 9:12 Agostino Sarubbo
2015-11-12 7:58 Jeroen Roovers
2015-11-12 9:40 Agostino Sarubbo
2015-12-13 7:52 Hans de Graaff
2016-11-29 23:47 Manuel Rüger
2017-05-03 5:35 Hans de Graaff
2017-05-26 7:14 Hans de Graaff
2017-05-27 16:39 Agostino Sarubbo
2017-08-06 6:28 Hans de Graaff
2017-11-10 7:35 Hans de Graaff
2018-02-25 6:47 Hans de Graaff
2018-04-15 5:38 Hans de Graaff
2018-04-16 15:37 Hans de Graaff
2018-04-26 4:21 Matt Turner
2018-04-26 4:57 Hans de Graaff
2018-08-06 19:11 Hans de Graaff
2018-12-13 8:09 Hans de Graaff
2019-02-16 12:02 Hans de Graaff
2019-04-17 5:48 Hans de Graaff
2019-06-17 5:32 Hans de Graaff
2019-06-17 5:32 Hans de Graaff
2019-06-18 18:24 Thomas Deutschmann
2019-06-19 5:22 Hans de Graaff
2019-06-19 5:22 Hans de Graaff
2019-07-12 5:07 Hans de Graaff
2019-08-28 6:54 Sergei Trofimovich
2019-08-28 7:22 Sergei Trofimovich
2019-09-02 17:12 Hans de Graaff
2020-03-28 7:05 Hans de Graaff
2020-03-29 7:43 Hans de Graaff
2020-04-02 2:11 Matt Turner
2020-04-02 2:11 Matt Turner
2020-04-14 5:31 Hans de Graaff
2020-05-02 6:53 Hans de Graaff
2020-05-13 14:52 Agostino Sarubbo
2020-05-14 8:03 Agostino Sarubbo
2020-05-16 5:46 Hans de Graaff
2021-07-07 6:53 Hans de Graaff
2021-07-15 8:17 Hans de Graaff
2021-07-18 5:40 Hans de Graaff
2021-09-18 8:14 Sam James
2021-10-02 20:29 Sam James
2021-10-02 20:37 Sam James
2021-10-02 20:37 Sam James
2021-10-02 20:38 Sam James
2021-10-02 20:41 Sam James
2021-10-03 6:30 Hans de Graaff
2021-10-08 10:49 Hans de Graaff
2021-10-12 5:44 Hans de Graaff
2021-12-01 13:36 Jakov Smolić
2021-12-30 6:34 Hans de Graaff
2022-07-16 6:26 Hans de Graaff
2022-07-16 6:26 Hans de Graaff
2022-07-16 8:17 Arthur Zamarin
2022-07-16 8:44 Arthur Zamarin
2022-07-17 9:10 Agostino Sarubbo
2022-07-17 9:11 Agostino Sarubbo
2022-10-01 7:06 Hans de Graaff
2022-10-07 6:12 Hans de Graaff
2022-10-07 6:12 Hans de Graaff
2022-10-07 6:12 Hans de Graaff
2022-11-15 6:24 Hans de Graaff
2022-12-03 15:29 Hans de Graaff
2023-03-14 6:33 Hans de Graaff
2023-03-14 6:33 Hans de Graaff
2023-03-28 22:54 Sam James
2023-03-29 0:16 Sam James
2023-03-29 0:48 Sam James
2023-03-29 0:48 Sam James
2023-07-20 6:22 Hans de Graaff
2023-08-29 14:26 Hans de Graaff
2023-08-29 16:53 Hans de Graaff
2023-08-31 5:05 Hans de Graaff
2023-12-31 10:29 Hans de Graaff
2024-02-05 7:21 Hans de Graaff
2024-02-07 7:36 Hans de Graaff
2024-02-07 10:24 Hans de Graaff
2024-02-07 10:24 Hans de Graaff
2024-02-08 10:21 Arthur Zamarin
2024-02-13 10:32 Hans de Graaff
2024-02-16 7:11 Hans de Graaff
2024-02-17 21:17 Sam James
2024-02-18 10:24 Hans de Graaff
2024-04-13 6:24 Hans de Graaff
2024-05-03 5:11 Hans de Graaff
2024-05-03 5:11 Hans de Graaff
2024-05-03 5:11 Hans de Graaff
2024-05-03 6:36 Sam James
2024-05-03 6:36 Sam James
2024-05-15 5:29 Hans de Graaff
2024-06-18 12:18 Hans de Graaff
2024-06-18 18:12 Arthur Zamarin
2024-06-18 18:12 Arthur Zamarin
2024-06-18 18:12 Arthur Zamarin
2024-06-18 18:12 Arthur Zamarin
2024-07-17 9:38 Hans de Graaff
2024-10-06 11:35 Sam James
2024-10-06 12:01 Sam James
2024-10-06 12:01 Sam James
2024-10-09 2:53 Jakov Smolić
2025-01-18 6:17 Hans de Graaff
2025-02-02 7:04 Hans de Graaff
2025-04-01 18:06 Hans de Graaff
2025-05-18 17:57 Arthur Zamarin
2025-05-18 17:57 Arthur Zamarin
2025-05-20 19:29 Sam James
2025-05-21 9:20 Sam James
2025-06-02 5:24 Hans de Graaff
2025-07-17 5:51 Hans de Graaff
2025-08-09 15:52 Hans de Graaff
2025-08-09 15:52 Hans de Graaff
2025-08-17 7:35 Hans de Graaff
2025-08-24 7:17 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1445761847.893241a7f7517b08ace60574944406b4d645154b.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox