From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/gpgme/
Date: Thu, 02 Oct 2025 18:06:36 +0000 (UTC) [thread overview]
Message-ID: <1759428375.3862b2bb2ef5d4614ddfff5d1a6423cd93d60dd1.asturm@gentoo> (raw)
commit: 3862b2bb2ef5d4614ddfff5d1a6423cd93d60dd1
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 2 16:48:27 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Oct 2 18:06:15 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3862b2bb
dev-ruby/gpgme: drop 2.0.24-r1, 2.0.24-r2
Broken with app-arch/gpgme-2.
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-ruby/gpgme/gpgme-2.0.24-r1.ebuild | 55 ----------------------------------
dev-ruby/gpgme/gpgme-2.0.24-r2.ebuild | 56 -----------------------------------
2 files changed, 111 deletions(-)
diff --git a/dev-ruby/gpgme/gpgme-2.0.24-r1.ebuild b/dev-ruby/gpgme/gpgme-2.0.24-r1.ebuild
deleted file mode 100644
index 6e8a78c3d103..000000000000
--- a/dev-ruby/gpgme/gpgme-2.0.24-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby31 ruby32"
-
-RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/gpgme/extconf.rb)
-
-inherit 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 ~arm64 ~x86"
-IUSE="test"
-
-RDEPEND="
- >=app-crypt/gpgme-1.18.0:=
- >=dev-libs/libassuan-2.5.6:=
- >=dev-libs/libgpg-error-1.47
-"
-DEPEND="${RDEPEND}"
-
-ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 dev-ruby/minitest:5.15 )"
-
-all_ruby_prepare() {
- sed -i -e '/\(coverall\|bundler\|ruby-debug\|byebug\)/I s:^:#:' \
- -e '3igem "mocha", "~> 0.14"; gem "minitest", "~> 5.15.0"' \
- 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
- each_fakegem_configure
-}
-
-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
-}
diff --git a/dev-ruby/gpgme/gpgme-2.0.24-r2.ebuild b/dev-ruby/gpgme/gpgme-2.0.24-r2.ebuild
deleted file mode 100644
index ef05262646c7..000000000000
--- a/dev-ruby/gpgme/gpgme-2.0.24-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby32"
-
-RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-RUBY_FAKEGEM_EXTENSIONS=(ext/gpgme/extconf.rb)
-
-inherit 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 ~arm64 ~x86"
-IUSE="test"
-
-RDEPEND="
- >=app-crypt/gpgme-1.18.0:= =app-crypt/gpgme-1*
- >=dev-libs/libassuan-2.5.6:=
- >=dev-libs/libgpg-error-1.47
-"
-DEPEND="${RDEPEND}"
-
-ruby_add_bdepend "test? ( dev-ruby/mocha:0.14 dev-ruby/minitest:5.15 )"
-
-all_ruby_prepare() {
- sed -i -e '/\(coverall\|bundler\|ruby-debug\|byebug\)/I s:^:#:' \
- -e '3igem "mocha", "~> 0.14"; gem "minitest", "~> 5.15.0"' \
- 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
- each_fakegem_configure
-}
-
-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
-}
next reply other threads:[~2025-10-02 18:06 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-02 18:06 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-08-12 11:34 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/gpgme/ Hans de Graaff
2024-11-08 8:59 Hans de Graaff
2024-06-23 1:49 Sam James
2024-02-01 7:11 Hans de Graaff
2023-09-09 10:34 Hans de Graaff
2023-07-05 4:40 Hans de Graaff
2023-07-05 4:40 Hans de Graaff
2023-04-13 6:11 Sam James
2022-12-27 6:56 Hans de Graaff
2022-11-08 6:12 Hans de Graaff
2022-06-25 8:55 Hans de Graaff
2022-05-06 7:13 Hans de Graaff
2022-02-16 22:11 David Seifert
2021-10-31 5:57 Hans de Graaff
2020-09-15 6:00 Hans de Graaff
2020-02-19 18:59 Hans de Graaff
2019-10-05 6:02 Hans de Graaff
2019-07-17 7:04 Hans de Graaff
2019-06-01 8:20 Hans de Graaff
2019-04-09 17:05 Hans de Graaff
2018-01-22 19:49 Hans de Graaff
2017-12-28 23:00 Robin H. Johnson
2016-03-21 21:55 Manuel Rüger
2016-01-20 6:03 Hans de Graaff
2015-12-16 6:48 Hans de Graaff
2015-12-16 6:48 Hans de Graaff
2015-08-27 6:00 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=1759428375.3862b2bb2ef5d4614ddfff5d1a6423cd93d60dd1.asturm@gentoo \
--to=asturm@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