From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 138A2158020 for ; Sun, 4 Dec 2022 15:08:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E52ADE088B; Sun, 4 Dec 2022 15:08:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE58BE088B for ; Sun, 4 Dec 2022 15:08:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F8C1341339 for ; Sun, 4 Dec 2022 15:08:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E965777 for ; Sun, 4 Dec 2022 15:08:01 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1670166319.7976a9ece1a3ff2752ab1f98a50c34960f56a8ee.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/mini_magick/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/mini_magick/mini_magick-4.11.0.ebuild X-VCS-Directories: dev-ruby/mini_magick/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7976a9ece1a3ff2752ab1f98a50c34960f56a8ee X-VCS-Branch: master Date: Sun, 4 Dec 2022 15:08:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 56381b4c-2575-4eb2-82d4-0d15fc8f177b X-Archives-Hash: c7e7ddf5193125a9f14e66aca19984d9 commit: 7976a9ece1a3ff2752ab1f98a50c34960f56a8ee Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 4 11:12:08 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 4 15:05:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7976a9ec dev-ruby/mini_magick: drop 4.11.0 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/mini_magick/mini_magick-4.11.0.ebuild | 57 -------------------------- 1 file changed, 57 deletions(-) diff --git a/dev-ruby/mini_magick/mini_magick-4.11.0.ebuild b/dev-ruby/mini_magick/mini_magick-4.11.0.ebuild deleted file mode 100644 index 4617f26bb68d..000000000000 --- a/dev-ruby/mini_magick/mini_magick-4.11.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem - -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] )" - -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 spec broken by recent imagemagick updates - sed -i -e '/cache files generated from .mpc/askip' spec/lib/mini_magick/image_spec.rb || die - sed -i -e '/does not hang when parsing verbose data/askip' spec/lib/mini_magick/image_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 - sed -i -e 's/"GraphicsMagick"//' spec/lib/mini_magick/image_spec.rb || die -}