diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /dev-ruby/globalid | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'dev-ruby/globalid')
| -rw-r--r-- | dev-ruby/globalid/Manifest | 2 | ||||
| -rw-r--r-- | dev-ruby/globalid/files/globalid-1.2.1-ruby34.patch | 45 | ||||
| -rw-r--r-- | dev-ruby/globalid/globalid-1.2.1-r1.ebuild | 46 | ||||
| -rw-r--r-- | dev-ruby/globalid/globalid-1.2.1.ebuild | 35 | ||||
| -rw-r--r-- | dev-ruby/globalid/globalid-1.3.0.ebuild | 40 | ||||
| -rw-r--r-- | dev-ruby/globalid/metadata.xml | 9 |
6 files changed, 0 insertions, 177 deletions
diff --git a/dev-ruby/globalid/Manifest b/dev-ruby/globalid/Manifest deleted file mode 100644 index 96f4055f6459..000000000000 --- a/dev-ruby/globalid/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST globalid-1.2.1.tar.gz 24210 BLAKE2B 0cd47d65b6af78b9201ba4300820f94c126e5e69683b87503967a8b7887b9638693d51a9a1d20277dc5678ca925c567d29ed21dc1805825386fe028ddc475074 SHA512 35f3252afd41226a3dd728238be226a1f2ebb62ca853874fdf35e296dd807603319105117d4585df98cdb577efda9166fc5e5733b7af5bea7073d5c44ddec2c1 -DIST globalid-1.3.0.tar.gz 24179 BLAKE2B 3e5e361850c7bec75ac25d1afb7528c0d4b759122d7b8b89cf164c4fef16432f2bbf346c59d8b4482e5ed82bfadc8cacca799dc82d89c7bbc402d1b11acb2cab SHA512 fc23616850a6500e6774c8cb6755f8bce08eca2516b8d03d1036c5e371eba682aca760996b8262cfac98ab3dd61c9fbceea875c7a6dfafdbd0989a6bd9cdfb60 diff --git a/dev-ruby/globalid/files/globalid-1.2.1-ruby34.patch b/dev-ruby/globalid/files/globalid-1.2.1-ruby34.patch deleted file mode 100644 index 57e46dd73dc3..000000000000 --- a/dev-ruby/globalid/files/globalid-1.2.1-ruby34.patch +++ /dev/null @@ -1,45 +0,0 @@ -From d3075330a6be4d7a5013c2ebdd39e97678c3ac8d Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?V=C3=ADt=20Ondruch?= <vondruch@redhat.com> -Date: Fri, 13 Dec 2024 13:36:55 +0100 -Subject: [PATCH] Keep using URI RFC2396 parser - -The default parser in URI 1.0.0 / Ruby 3.4 has been changed to RFC3986 -[[1]]. This causes test failures such as: - -~~~ -... snip ... - -Failure: -GlobalIDTest#test_invalid_app_name [test/cases/global_id_test.rb:13]: -ArgumentError expected but nothing was raised. - -rails test test/cases/global_id_test.rb:8 - -F - -... snip ... -~~~ - -where underscores / ampersands are now allowed in host. Keep using URI -RFC2396 parser for compatibility. - -Fixes #190 - -[1]: https://github.com/ruby/uri/pull/107 ---- - lib/global_id/uri/gid.rb | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/lib/global_id/uri/gid.rb b/lib/global_id/uri/gid.rb -index 20a22a7..8af8feb 100644 ---- a/lib/global_id/uri/gid.rb -+++ b/lib/global_id/uri/gid.rb -@@ -62,7 +62,7 @@ def validate_app(app) - # URI.parse('gid://bcx') # => URI::GID instance - # URI::GID.parse('gid://bcx/') # => raises URI::InvalidComponentError - def parse(uri) -- generic_components = URI.split(uri) << nil << true # nil parser, true arg_check -+ generic_components = URI.split(uri) << URI::RFC2396_Parser.new << true # nil parser, true arg_check - new(*generic_components) - end - diff --git a/dev-ruby/globalid/globalid-1.2.1-r1.ebuild b/dev-ruby/globalid/globalid-1.2.1-r1.ebuild deleted file mode 100644 index 34aec584d1ea..000000000000 --- a/dev-ruby/globalid/globalid-1.2.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="globalid.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Reference models by URI" -HOMEPAGE="https://github.com/rails/globalid" -SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test" - -PATCHES=( "${FILESDIR}/${P}-ruby34.patch" ) - -ruby_add_bdepend "test? ( - dev-ruby/bundler - <dev-ruby/activemodel-8.1 - <dev-ruby/railties-8.1 -)" -ruby_add_rdepend ">=dev-ruby/activesupport-6.1:*" - -all_ruby_prepare() { - rm -f Gemfile.lock || die - - # Ensure a version of rails compatible with the tests. - sed -e '/^gem / s/$/, "<8.1"/' \ - -i Gemfile || die - - # Avoid the assumption that the cache format matches the rails version. - sed -e '/cache_format/ s/Rails::VERSION::STRING.to_f/7.1/' \ - -i test/cases/railtie_test.rb || die - - # Work around a bug in Rails: https://github.com/rails/rails/pull/55227 - sed -e '3irequire "action_controller"' \ - -i test/cases/railtie_test.rb || die -} diff --git a/dev-ruby/globalid/globalid-1.2.1.ebuild b/dev-ruby/globalid/globalid-1.2.1.ebuild deleted file mode 100644 index 6d425d0050e4..000000000000 --- a/dev-ruby/globalid/globalid-1.2.1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby31 ruby32 ruby33" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="globalid.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Reference models by URI" -HOMEPAGE="https://github.com/rails/globalid" -SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test" - -ruby_add_bdepend "test? ( - dev-ruby/bundler - <dev-ruby/activemodel-7.2 - <dev-ruby/railties-7.2 -)" -ruby_add_rdepend ">=dev-ruby/activesupport-6.1:*" - -all_ruby_prepare() { - rm -f Gemfile.lock || die - - # Ensure a version of rails compatible with the tests. - sed -e '/^gem / s/$/, "<7.2"/' \ - -i Gemfile || die -} diff --git a/dev-ruby/globalid/globalid-1.3.0.ebuild b/dev-ruby/globalid/globalid-1.3.0.ebuild deleted file mode 100644 index 6cacf7956aed..000000000000 --- a/dev-ruby/globalid/globalid-1.3.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="globalid.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Reference models by URI" -HOMEPAGE="https://github.com/rails/globalid" -SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test" - -ruby_add_bdepend "test? ( - dev-ruby/bundler - <dev-ruby/activemodel-8.1 - <dev-ruby/railties-8.1 -)" -ruby_add_rdepend ">=dev-ruby/activesupport-6.1:*" - -all_ruby_prepare() { - rm -f Gemfile.lock || die - - # Ensure a version of rails compatible with the tests. - sed -e '/^gem / s/$/, "<8.1"/' \ - -i Gemfile || die - - # Work around a bug in Rails: https://github.com/rails/rails/pull/55227 - sed -e '3irequire "action_controller"' \ - -i test/cases/railtie_test.rb || die -} diff --git a/dev-ruby/globalid/metadata.xml b/dev-ruby/globalid/metadata.xml deleted file mode 100644 index c685ebad7e3a..000000000000 --- a/dev-ruby/globalid/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>ruby@gentoo.org</email> - <name>Gentoo Ruby Project</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> |
