public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
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: Sat, 12 Sep 2015 05:19:32 +0000 (UTC)	[thread overview]
Message-ID: <1442035122.cf9dfec15b0981a19ef859cdd1949f1b29d06f87.graaff@gentoo> (raw)

commit:     cf9dfec15b0981a19ef859cdd1949f1b29d06f87
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 12 05:18:42 2015 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Sep 12 05:18:42 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9dfec1

dev-ruby/mini_magick: version bump

Package-Manager: portage-2.2.20.1

 dev-ruby/mini_magick/Manifest                 |  1 +
 dev-ruby/mini_magick/mini_magick-4.3.3.ebuild | 45 +++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/mini_magick/Manifest b/dev-ruby/mini_magick/Manifest
index 3a563f6..0c6fded 100644
--- a/dev-ruby/mini_magick/Manifest
+++ b/dev-ruby/mini_magick/Manifest
@@ -1,3 +1,4 @@
 DIST mini_magick-4.2.10.tar.gz 1060057 SHA256 b8f694648ff15729338f7534b057bc1be3fa47bc73fd935f78f872e2f6186996 SHA512 90ac378d7e9b4eb2fef7d2f036e90ea17e7b1fb42e4f022dd9921af818becbb7041e82796e84cefc05f25e42c1705bd9d623f28d9cda437821d0f7801f731168 WHIRLPOOL 9f96b85b3af696a65c80ca5ef4e3754ae993af86532bf624ee351c428c7faca14415e03a4eb7747bcff1a45fc60b7889e31eb0d98c715d29834ac9db9fe0ae4f
 DIST mini_magick-4.2.7.tar.gz 1059704 SHA256 55c829cbbc09020a7e48864374341b09c25700f343e6f443248bf99b906ed88c SHA512 172e71d3d9286d92541951d83a67e3be05ff207e27502472426fab10ca92339c371f52ca85790300bdb881b10470ed7810e01a85d3b4e1a2ed4e89dc0f117493 WHIRLPOOL 90d8a7544d11699724b873b30cdc9243d5c388ddb4216577119770ea38ac1d336a5af2853861a9a6dd957f1f0a17af363446882ebaae19853f20dbf10398f66e
 DIST mini_magick-4.2.9.tar.gz 1059967 SHA256 f168e4683a38209ec0298d94678b493c793fb785e657d850a08dff3ab461464e SHA512 d3ffc33d14030b27d106930dbf7183eb7884646103f063361e798670929c37bac36bed08cfd4e9c6128c51f8c6b05a3e2eeb440d01abe7f0b788211ede4e4c26 WHIRLPOOL cf5e7d76105f2d446917eea3596d6b4413700aa202e4124b29a233371125a397251ef2bdb3d7ee8f66272bf584e18933510e7290bf7c7d9a6f1f26d6991e1dd1
+DIST mini_magick-4.3.3.tar.gz 1106623 SHA256 1ec9ee60cdd88839a958a1fccc82db20887607dc385d618aefcb81cdc577c33e SHA512 e451d5fc3fe6331698858350d1c6b704f6f3e601228b635a2469403f2b4457606144e04b5020daf67a21ff055d6aed4b138a1f107dc29cc02613541411ed0872 WHIRLPOOL f0783edc683931521a2dcd0f0d4594cc61e65a411650bbbc5223c33da80f9455087127bce4f1f36b0889b6d98ccaeda90b956bb59c789dde171cf8e28186118c

diff --git a/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild b/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild
new file mode 100644
index 0000000..4de4e09
--- /dev/null
+++ b/dev-ruby/mini_magick/mini_magick-4.3.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+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"
+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,png] >=media-gfx/graphicsmagick-1.3.20[tiff,jpeg,png] )"
+
+ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/posix-spawn )"
+
+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
+}


             reply	other threads:[~2015-09-12  5:19 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-12  5:19 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-23  8:40 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mini_magick/ 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-02-25  6:55 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-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=1442035122.cf9dfec15b0981a19ef859cdd1949f1b29d06f87.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