From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mini_magick/
Date: Mon, 25 Feb 2019 06:55:51 +0000 (UTC) [thread overview]
Message-ID: <1551076861.8b00d657777dab3eda205bf623e251a2800ca06b.graaff@gentoo> (raw)
commit: 8b00d657777dab3eda205bf623e251a2800ca06b
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 25 06:38:56 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Feb 25 06:41:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b00d657
dev-ruby/mini_magick: add 4.9.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
dev-ruby/mini_magick/Manifest | 1 +
dev-ruby/mini_magick/mini_magick-4.9.3.ebuild | 70 +++++++++++++++++++++++++++
2 files changed, 71 insertions(+)
diff --git a/dev-ruby/mini_magick/Manifest b/dev-ruby/mini_magick/Manifest
index 1f2007a647b..14c414de159 100644
--- a/dev-ruby/mini_magick/Manifest
+++ b/dev-ruby/mini_magick/Manifest
@@ -1,2 +1,3 @@
DIST mini_magick-4.8.0.tar.gz 1184374 BLAKE2B 9949cb8b668d5b31c8a9b19ac1b68147e4865cebb2d51b75c01dad11bf98a64609acb90a08f08867f173424bfa720f83e475ab08853c11fff29e86e7af5bcba2 SHA512 7c582c967480f51114c42eec2f8c260713755fa3e6078eaf5a296b0cb4502f2edd1dd65d5ef46409226943913b81e8818fc3066a09879e9da7dcb0f9f732f6d4
DIST mini_magick-4.9.2.tar.gz 1187916 BLAKE2B f619bc6fd559f76ecd45b91bce4ef8e75ec67e65f0e1a8c00d785e49491b9de81e320a3496f3ab5729f0ffe33e18afbaab762767b0835dc0af8bee0ec55cbd28 SHA512 c0747ddfdd304f9f9a820dd45e27d09ce723689dd989f036194c9177c7f9fe746dc85c2fc97a858c679a1cdf31d0fbacd50f6f927fd0d1905f5edbe3df2972ff
+DIST mini_magick-4.9.3.tar.gz 1187910 BLAKE2B d0eaa19da0d7310316ed6c11befa2e48ba75f441021f3ecd6533b0e04d9a44cc6da18c867cec87198abd3e433d63643ab61e21bd3c8b059a757634445f718207 SHA512 4a8cd953a8281229c36cb2482115a8fd127099729fbffd4be7db8967da90916e07c062c96ee066d9740d7261c07f263db8f020eabae59cf10fa6043e4be590c8
diff --git a/dev-ruby/mini_magick/mini_magick-4.9.3.ebuild b/dev-ruby/mini_magick/mini_magick-4.9.3.ebuild
new file mode 100644
index 00000000000..719b20c834f
--- /dev/null
+++ b/dev-ruby/mini_magick/mini_magick-4.9.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="Manipulate images with minimal use of memory"
+HOMEPAGE="https://github.com/minimagick/minimagick"
+SRC_URI="https://github.com/minimagick/minimagick/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+RUBY_S="minimagick-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+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? ( virtual/imagemagick-tools[jpeg,png,tiff] )"
+
+USE_RUBY="ruby23 ruby24 ruby25" ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/posix-spawn dev-ruby/webmock )"
+
+all_ruby_prepare() {
+ # remove executable bit from all files
+ find "${S}" -type f -exec chmod -x {} +
+
+ sed -i -e '/\([Bb]undler\|pry\)/ s:^:#:' spec/spec_helper.rb || die
+
+ # Don't force a specific formatter but use overall Gentoo defaults.
+ sed -i -e '/config.formatter/d' spec/spec_helper.rb || die
+
+ # Avoid broken spec that does not assume . in path name
+ sed -i -e '/reformats a layer/,/end/ s:^:#:' spec/lib/mini_magick/image_spec.rb || die
+
+ # Avoid failing spec that also fails in upstream Travis
+ sed -i -e '/returns a hash of verbose information/,/^ end/ s:^:#:' spec/lib/mini_magick/image_spec.rb || die
+
+ # Make spec more lenient to imagemagick quoting
+ sed -i -e "/unable to open image/ s/'foo'/.foo./" spec/lib/mini_magick/shell_spec.rb || die
+
+ # Avoid graphicsmagick tests because installing both in parallel for
+ # tests is hard.
+ sed -i -e 's/:graphicsmagick//' spec/spec_helper.rb || die
+ sed -i -e '/identifies when gm exists/,/^ end/ s:^:#:' spec/lib/mini_magick/utilities_spec.rb || die
+ sed -i -e '/returns GraphicsMagick/,/^ end/ s:^:#:' spec/lib/mini_magick_spec.rb || die
+}
+
+each_ruby_test() {
+ case ${RUBY} in
+ *ruby23|*ruby24|*ruby25)
+ each_fakegem_test
+ ;;
+ *)
+ einfo "Skipping tests due to circular dependencies with Rails"
+ ;;
+ esac
+}
next reply other threads:[~2019-02-25 6:55 UTC|newest]
Thread overview: 59+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-25 6:55 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-06-03 10:53 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mini_magick/ Hans de Graaff
2025-06-03 10:53 Hans de Graaff
2025-04-26 5:27 Hans de Graaff
2025-04-26 5:27 Hans de Graaff
2025-02-23 8:40 Hans de Graaff
2025-02-03 6:43 Hans de Graaff
2025-02-02 7:04 Hans de Graaff
2025-02-02 7:04 Hans de Graaff
2025-01-13 7:09 Hans de Graaff
2024-09-01 6:34 Hans de Graaff
2024-08-21 9:19 Joonas Niilola
2024-07-15 7:47 Hans de Graaff
2024-07-15 7:47 Hans de Graaff
2024-06-28 4:31 Hans de Graaff
2024-06-28 4:31 Hans de Graaff
2024-06-14 4:52 Hans de Graaff
2024-05-18 17:23 Hans de Graaff
2023-07-02 10:24 Hans de Graaff
2023-04-07 18:25 Sam James
2023-03-28 20:20 Sam James
2023-03-28 20:16 Sam James
2023-03-21 5:21 Hans de Graaff
2022-12-11 6:27 Hans de Graaff
2022-12-04 15:08 Hans de Graaff
2022-07-29 4:48 Hans de Graaff
2022-06-13 8:06 Yixun Lan
2022-04-09 7:38 Hans de Graaff
2021-07-07 8:31 Hans de Graaff
2021-02-18 7:30 Hans de Graaff
2020-11-08 6:33 Hans de Graaff
2020-09-11 6:58 Hans de Graaff
2020-05-23 17:41 Hans de Graaff
2020-01-07 6:08 Hans de Graaff
2020-01-07 6:08 Hans de Graaff
2019-08-30 6:39 Hans de Graaff
2019-07-16 6:56 Hans de Graaff
2019-05-04 19:14 Hans de Graaff
2019-04-13 6:34 Hans de Graaff
2019-01-03 19:23 Sergei Trofimovich
2019-01-03 19:23 Sergei Trofimovich
2018-09-22 5:47 Hans de Graaff
2018-08-06 8:16 Sergei Trofimovich
2018-06-12 11:36 Thomas Deutschmann
2018-05-19 7:51 Hans de Graaff
2018-04-29 17:09 Hans de Graaff
2018-02-04 15:15 Hans de Graaff
2017-07-19 6:55 Hans de Graaff
2017-05-30 4:30 Hans de Graaff
2016-10-31 1:29 Manuel Rüger
2016-08-06 9:26 Hans de Graaff
2016-03-22 21:56 Manuel Rüger
2016-02-07 7:22 Hans de Graaff
2016-02-07 7:22 Hans de Graaff
2015-10-21 5:19 Hans de Graaff
2015-10-04 6:54 Hans de Graaff
2015-10-04 6:54 Hans de Graaff
2015-09-12 5:19 Hans de Graaff
2015-08-19 18:27 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=1551076861.8b00d657777dab3eda205bf623e251a2800ca06b.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