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-perl/Net-IDN-Encode | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'dev-perl/Net-IDN-Encode')
4 files changed, 0 insertions, 76 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 89c67f49bdb9..000000000000 --- a/dev-perl/Net-IDN-Encode/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>perl@gentoo.org</email> - <name>Gentoo Perl Project</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> |
