summaryrefslogtreecommitdiff
path: root/dev-perl/Net-IDN-Encode
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-perl/Net-IDN-Encode
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-perl/Net-IDN-Encode')
-rw-r--r--dev-perl/Net-IDN-Encode/Manifest1
-rw-r--r--dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r3.ebuild25
-rw-r--r--dev-perl/Net-IDN-Encode/files/2.500.0-use-uvchr_to_utf8_flags-instead-of-uvuni_to_utf8_fla.patch41
-rw-r--r--dev-perl/Net-IDN-Encode/metadata.xml15
4 files changed, 0 insertions, 82 deletions
diff --git a/dev-perl/Net-IDN-Encode/Manifest b/dev-perl/Net-IDN-Encode/Manifest
deleted file mode 100644
index cd56e0ad855f..000000000000
--- a/dev-perl/Net-IDN-Encode/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Net-IDN-Encode-2.500.tar.gz 648108 BLAKE2B 04ad7d093d4e296d12e7f1c6effe3d39bd96e4b748e28bbf54f73832470dfa1fc49e1c6bec089196f9543e7e129c8d02870ce01695503d473258d3e0a934506b SHA512 3537309ea391e4f762eb8ce43929bfa024d63ee59c94f8d2ea16179aa6ad66ecef29188551749593302f14dc5b3182dbce18ebaf5176a34b40d6fa5b7e5763fb
diff --git a/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r3.ebuild b/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r3.ebuild
deleted file mode 100644
index c5de2ca51382..000000000000
--- a/dev-perl/Net-IDN-Encode/Net-IDN-Encode-2.500.0-r3.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=CFAERBER
-DIST_VERSION=2.500
-DIST_EXAMPLES=("eg/*")
-inherit perl-module
-
-DESCRIPTION="Internationalizing Domain Names in Applications (IDNA)"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
-
-BDEPEND="
- >=dev-perl/Module-Build-0.420.0
- test? (
- dev-perl/Test-NoWarnings
- )
-"
-
-PATCHES=(
- "${FILESDIR}"/${PV}-use-uvchr_to_utf8_flags-instead-of-uvuni_to_utf8_fla.patch
-)
diff --git a/dev-perl/Net-IDN-Encode/files/2.500.0-use-uvchr_to_utf8_flags-instead-of-uvuni_to_utf8_fla.patch b/dev-perl/Net-IDN-Encode/files/2.500.0-use-uvchr_to_utf8_flags-instead-of-uvuni_to_utf8_fla.patch
deleted file mode 100644
index a8eff51ffd03..000000000000
--- a/dev-perl/Net-IDN-Encode/files/2.500.0-use-uvchr_to_utf8_flags-instead-of-uvuni_to_utf8_fla.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-https://bugs.gentoo.org/912440
-https://github.com/cfaerber/Net-IDN-Encode/pull/11
-
-From: Shin Kojima <shin@kojima.org>
-Date: Sun, 23 Jul 2023 13:15:59 +0900
-Subject: [PATCH] use uvchr_to_utf8_flags instead of uvuni_to_utf8_flags (which
- is removed in perl 5.38.0)
-
-https://perldoc.perl.org/5.36.0/perlintern#uvuni_to_utf8_flags
-Signed-off-by: Shin Kojima <shin@kojima.org>
----
- lib/Net/IDN/Punycode.xs | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/lib/Net/IDN/Punycode.xs b/lib/Net/IDN/Punycode.xs
-index 211ef9c..36530dd 100644
---- a/lib/Net/IDN/Punycode.xs
-+++ b/lib/Net/IDN/Punycode.xs
-@@ -24,6 +24,10 @@
- #define utf8_to_uvchr_buf(in_p,in_e,u8) utf8_to_uvchr(in_p,u8);
- #endif
-
-+#ifndef uvchr_to_utf8_flags
-+#define uvchr_to_utf8_flags(d, uv, flags) uvuni_to_utf8_flags(d, uv, flags);
-+#endif
-+
- static char enc_digit[BASE] = {
- 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
- 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
-@@ -253,7 +257,7 @@ decode_punycode(input)
- if(skip_p < re_p) /* move succeeding chars */
- Move(skip_p, skip_p + u8, re_p - skip_p, char);
- re_p += u8;
-- uvuni_to_utf8_flags((U8*)skip_p, n, UNICODE_ALLOW_ANY);
-+ uvchr_to_utf8_flags((U8*)skip_p, n, UNICODE_ALLOW_ANY);
- }
-
- if(!first) SvUTF8_on(RETVAL); /* UTF-8 chars have been inserted */
---
-2.41.0
-
diff --git a/dev-perl/Net-IDN-Encode/metadata.xml b/dev-perl/Net-IDN-Encode/metadata.xml
deleted file mode 100644
index edf9ed522ec0..000000000000
--- a/dev-perl/Net-IDN-Encode/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>perl@gentoo.org</email>
- <name>Gentoo Perl Project</name>
- </maintainer>
- <upstream>
- <remote-id type="cpan">Net-IDN-Encode</remote-id>
- <remote-id type="cpan-module">Net::IDN::Encode</remote-id>
- <remote-id type="cpan-module">Net::IDN::Punycode</remote-id>
- <remote-id type="cpan-module">Net::IDN::Punycode::PP</remote-id>
- <remote-id type="cpan-module">Net::IDN::UTS46</remote-id>
- </upstream>
-</pkgmetadata>