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 1477D158094 for ; Sat, 25 Jun 2022 08:55:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 549FDE0877; Sat, 25 Jun 2022 08:55:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 3EF92E0877 for ; Sat, 25 Jun 2022 08:55:56 +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 822203418EB for ; Sat, 25 Jun 2022 08:55:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 172BA456 for ; Sat, 25 Jun 2022 08:55:54 +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: <1656147350.d1dcc16babadc24cb5075fbb609f2d1b1169d1f6.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/gpgme/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild X-VCS-Directories: dev-ruby/gpgme/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: d1dcc16babadc24cb5075fbb609f2d1b1169d1f6 X-VCS-Branch: master Date: Sat, 25 Jun 2022 08:55:54 +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: 75066769-2944-4ec7-8ed0-1f7f9afee6f9 X-Archives-Hash: 441d902ce2da833c8890346fc4dd95e9 commit: d1dcc16babadc24cb5075fbb609f2d1b1169d1f6 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jun 25 08:04:11 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jun 25 08:55:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1dcc16b dev-ruby/gpgme: drop 2.0.20-r2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild | 55 ----------------------------------- 1 file changed, 55 deletions(-) diff --git a/dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild b/dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild deleted file mode 100644 index 5b45be052d93..000000000000 --- a/dev-ruby/gpgme/gpgme-2.0.20-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-ng ruby-fakegem flag-o-matic - -DESCRIPTION="Ruby language binding for GnuPG Made Easy" -HOMEPAGE="https://github.com/ueno/ruby-gpgme" -SRC_URI="https://github.com/ueno/ruby-gpgme/archive/v${PV}.tar.gz -> ruby-${P}.tar.gz" -RUBY_S="ruby-${P}" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - app-crypt/gpgme:=" -DEPEND="${RDEPEND}" - -ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 )" - -all_ruby_prepare() { - sed -i -e '/\(coverall\|bundler\|ruby-debug\|byebug\)/I s:^:#:' \ - -e '3igem "mocha", "~> 0.14"' \ - test/test_helper.rb || die - - # Remove failing tests for now. This package was added without - # running any tests :-( - rm -f test/{ctx,crypto}_test.rb || die - - sed -i -e '/portile/d ; /rubyforge/d' ${RUBY_FAKEGEM_GEMSPEC} || die -} - -each_ruby_configure() { - append-flags -fPIC - export RUBY_GPGME_USE_SYSTEM_LIBRARIES=1 - ${RUBY} -C ext "${S}/ext/gpgme/extconf.rb" || die "extconf.rb failed" -} - -each_ruby_compile() { - emake V=1 -C ext archflag="${LDFLAGS}" - cp -f "${S}/ext/gpgme_n.so" "${S}/lib" || die -} - -each_ruby_test() { - unset DISPLAY GPG_AGENT_INFO GPG_TTY - MT_NO_PLUGINS=true ${RUBY} -Ilib:test:. -e 'Dir["test/*_test.rb"].each{|f| require f}' || die -}