summaryrefslogtreecommitdiff
path: root/app-text/ronn-ng
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/ronn-ng')
-rw-r--r--app-text/ronn-ng/Manifest1
-rw-r--r--app-text/ronn-ng/files/ronn-ng-0.9.1-psych-4-tests.patch40
2 files changed, 0 insertions, 41 deletions
diff --git a/app-text/ronn-ng/Manifest b/app-text/ronn-ng/Manifest
index 1e4ea37c668c..ad126f793cfd 100644
--- a/app-text/ronn-ng/Manifest
+++ b/app-text/ronn-ng/Manifest
@@ -1,4 +1,3 @@
-AUX ronn-ng-0.9.1-psych-4-tests.patch 1640 BLAKE2B 52ec0e314d9253c06874ce95ab5be8bb9fa9e5ff8b04b6df385a7e14c3edb919b0f2b9a7e2048552cf235c91d77877485e4fb3239eb222c99f53c412a46983d8 SHA512 803f7f4368599e8b55ed78d8444d585bc9f7568af4f9ab3d4b53c12d31fdc412776c259bff91a9b905b3482c68ce29ed2827682d2d7541669b9e5a4bdf1ebe3b
DIST ronn-ng-0.10.1.tar.gz 78696 BLAKE2B 1e56b90c5919e0a1af317da78161b34124268521fbc379fbba09ff9cb344073665460abc53fd961e4773ee444f33fba7e72ae3f6af84f8a170cfb1e89e557922 SHA512 3f6ee5355c7a19d5cb04c1b677028dd13ad2ff620acdb2e83d9b6f154a7b1e7b5a77ea0bcfbcef4bbb46a60b1c0fbc52fda079ff860c83a71f89b8fed0b83665
EBUILD ronn-ng-0.10.1.ebuild 1295 BLAKE2B d94ceff24db5bd831637f1c493217db58d0695ae95a14f78199efff8d55de904ee79a85b2d0265cd48d9d0df0040ab3473735371362f77538e57d694d4e70bf6 SHA512 bebc4d3578a342e7d420431bd2fe788b834267c1bd414077063a5cdf70d58b90074533d413104f6b1eb14d292dd432ac819391f7590258f0d44a8306b15211fe
MISC metadata.xml 342 BLAKE2B 71ab5a2d2a9e2d20165f54c1cf79f483768c3637cc87a32acf80708d79b3be9d24408a330ed23ad837848933b0a40f1165f60d7b7e08146a28088a4d9d558630 SHA512 92e6778f8a2f44a81dfdbbd6699ce2186cc48b801f5c462c99b4bc35f79806ff154d72bec2916d79dc7435c1a9b75f2bf3842b7dba2b132335afc38d00d22780
diff --git a/app-text/ronn-ng/files/ronn-ng-0.9.1-psych-4-tests.patch b/app-text/ronn-ng/files/ronn-ng-0.9.1-psych-4-tests.patch
deleted file mode 100644
index b9e05cfff455..000000000000
--- a/app-text/ronn-ng/files/ronn-ng-0.9.1-psych-4-tests.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-https://github.com/apjanke/ronn-ng/commit/e194bf62b1d0c0828cc83405e60dc5ece829e62f
-
-From e194bf62b1d0c0828cc83405e60dc5ece829e62f Mon Sep 17 00:00:00 2001
-From: Andrew Janke <andrew@apjanke.net>
-Date: Fri, 6 Jan 2023 07:25:48 -0500
-Subject: [PATCH] Workaround for Psych 4.0+ in tests
-
-Psych 4.0, shipped with Ruby 3.1, switched to a "safe load" by default, and requires you to explicitly set allowed classes. But previous Psych versions didn't support this kwarg, so the call needs to be made differently depending on which version of Psych/Ruby this is running under.
-
-Co-authored-by: Takuya Noguchi <takninnovationresearch@gmail.com>
----
- test/test_ronn_document.rb | 7 ++++++-
- 2 files changed, 7 insertions(+), 6 deletions(-)
-
-diff --git a/test/test_ronn_document.rb b/test/test_ronn_document.rb
-index 75788dc..cd573fe 100644
---- a/test/test_ronn_document.rb
-+++ b/test/test_ronn_document.rb
-@@ -137,6 +137,11 @@ def canonicalize(text)
-
- test 'converting to yaml' do
- require 'yaml'
-+ actual = begin
-+ YAML.load(@doc.to_yaml, permitted_classes: [Time])
-+ rescue ArgumentError # Remove this line when Ruby 3.0.x support is dropped
-+ YAML.load(@doc.to_yaml)
-+ end
- assert_equal({
- 'section' => '1',
- 'name' => 'hello',
-@@ -146,7 +151,7 @@ def canonicalize(text)
- 'toc' => [['NAME', 'NAME']],
- 'organization' => nil,
- 'manual' => nil
-- }, YAML.load(@doc.to_yaml))
-+ }, actual)
- end
-
- test 'converting to json' do
-