From: Alexander Kanavin <[email protected]>

liburi-perl was added in 2010 to support lsb testing, never had
any other consumers in core, and since 2019 lsb testing is gone as well:
https://git.yoctoproject.org/poky/commit/?h=master-next&id=bac4bc9aa6a1f2fcf2ce9644925615185cc8e847

Signed-off-by: Alexander Kanavin <[email protected]>
---
 meta/conf/distro/include/maintainers.inc      |   1 -
 .../distro/include/ptest-packagelists.inc     |   1 -
 .../0001-Skip-TODO-test-cases-that-fail.patch | 109 ------------------
 .../recipes-devtools/perl/liburi-perl_5.31.bb |  56 ---------
 4 files changed, 167 deletions(-)
 delete mode 100644 
meta/recipes-devtools/perl/liburi-perl/0001-Skip-TODO-test-cases-that-fail.patch
 delete mode 100644 meta/recipes-devtools/perl/liburi-perl_5.31.bb

diff --git a/meta/conf/distro/include/maintainers.inc 
b/meta/conf/distro/include/maintainers.inc
index d61b88f7de6..fa2bca8358e 100644
--- a/meta/conf/distro/include/maintainers.inc
+++ b/meta/conf/distro/include/maintainers.inc
@@ -409,7 +409,6 @@ RECIPE_MAINTAINER:pn-libucontext = "Khem Raj 
<[email protected]>"
 RECIPE_MAINTAINER:pn-libunistring = "Anuj Mittal <[email protected]>"
 RECIPE_MAINTAINER:pn-libunwind = "Bruce Ashfield <[email protected]>"
 RECIPE_MAINTAINER:pn-liburcu = "Wang Mingyu <[email protected]>"
-RECIPE_MAINTAINER:pn-liburi-perl = "Tim Orling <[email protected]>"
 RECIPE_MAINTAINER:pn-libusb1 = "Anuj Mittal <[email protected]>"
 RECIPE_MAINTAINER:pn-libubootenv = "Stefano Babic <[email protected]>"
 RECIPE_MAINTAINER:pn-libuv = "Unassigned <[email protected]>"
diff --git a/meta/conf/distro/include/ptest-packagelists.inc 
b/meta/conf/distro/include/ptest-packagelists.inc
index 2a4acb02b0d..e2a90c1c2ef 100644
--- a/meta/conf/distro/include/ptest-packagelists.inc
+++ b/meta/conf/distro/include/ptest-packagelists.inc
@@ -38,7 +38,6 @@ PTESTS_FAST = "\
     libtest-warnings-perl \
     libtimedate-perl \
     libtry-tiny-perl \
-    liburi-perl \
     libusb1 \
     libxml-namespacesupport-perl \
     libxml-parser-perl \
diff --git 
a/meta/recipes-devtools/perl/liburi-perl/0001-Skip-TODO-test-cases-that-fail.patch
 
b/meta/recipes-devtools/perl/liburi-perl/0001-Skip-TODO-test-cases-that-fail.patch
deleted file mode 100644
index c15c3be93a6..00000000000
--- 
a/meta/recipes-devtools/perl/liburi-perl/0001-Skip-TODO-test-cases-that-fail.patch
+++ /dev/null
@@ -1,109 +0,0 @@
-From c424e6118d3bd836939ce39c70ee9e6bbd984028 Mon Sep 17 00:00:00 2001
-From: Tim Orling <[email protected]>
-Date: Thu, 17 Nov 2022 16:33:20 -0800
-Subject: [PATCH] Skip TODO test cases that fail
-
-TODO cases report as "not ok" with ptest-runner
-
-Upstream-Status: Inappropriate [ptest-runner specific]
-
-Signed-off-by: Tim Orling <[email protected]>
----
- t/escape-char.t | 20 ++++++++++----------
- t/iri.t         | 18 +++++++++---------
- t/mailto.t      | 12 ++++++------
- 3 files changed, 25 insertions(+), 25 deletions(-)
-
-diff --git a/t/escape-char.t b/t/escape-char.t
-index c6ce79c..5e62ad5 100644
---- a/t/escape-char.t
-+++ b/t/escape-char.t
-@@ -6,16 +6,16 @@ use warnings;
- use Test::More;
- use URI ();
- 
--TODO: {
--    my $str = "http://foo/\xE9";;
--    utf8::upgrade($str);
--    my $uri = URI->new($str);
--
--    local $TODO = 'URI::Escape::escape_char misunderstands utf8';
--
--    # http://foo/%C3%A9
--    is("$uri", 'http://foo/%E9', 'correctly created a URI from a 
utf8-upgraded string');
--}
-+#TODO: {
-+#    my $str = "http://foo/\xE9";;
-+#    utf8::upgrade($str);
-+#    my $uri = URI->new($str);
-+#
-+#    local $TODO = 'URI::Escape::escape_char misunderstands utf8';
-+#
-+#    # http://foo/%C3%A9
-+#    is("$uri", 'http://foo/%E9', 'correctly created a URI from a 
utf8-upgraded string');
-+#}
- 
- {
-     my $str = "http://foo/\xE9";;
-diff --git a/t/iri.t b/t/iri.t
-index cf983d6..884b36e 100644
---- a/t/iri.t
-+++ b/t/iri.t
-@@ -6,7 +6,7 @@ use Test::More;
- use Config qw( %Config );
- 
- if (defined $Config{useperlio}) {
--    plan tests=>30;
-+    plan tests=>28;
- } else {
-     plan skip_all=>"this perl doesn't support PerlIO layers";
- }
-@@ -67,17 +67,17 @@ is $u->as_iri, "http://➡.ws/";;
- # draft-duerst-iri-bis.txt examples (section 3.7.1):
- is(URI->new("http://www.example.org/D%C3%BCrst";)->as_iri, 
"http://www.example.org/D\xFCrst";);
- is(URI->new("http://www.example.org/D%FCrst";)->as_iri, 
"http://www.example.org/D%FCrst";);
--TODO: {
--    local $TODO = "some chars (like U+202E, RIGHT-TO-LEFT OVERRIDE) need to 
stay escaped";
--is(URI->new("http://xn--99zt52a.example.org/%e2%80%ae";)->as_iri, 
"http://\x{7D0D}\x{8C46}.example.org/%e2%80%ae";);
--}
-+#TODO: {
-+#    local $TODO = "some chars (like U+202E, RIGHT-TO-LEFT OVERRIDE) need to 
stay escaped";
-+#is(URI->new("http://xn--99zt52a.example.org/%e2%80%ae";)->as_iri, 
"http://\x{7D0D}\x{8C46}.example.org/%e2%80%ae";);
-+#}
- 
- # try some URLs that can't be IDNA encoded (fallback to encoded UTF8 bytes)
- $u = URI->new("http://"; . ("ü" x 128));
- is $u, "http://"; . ("%C3%BC" x 128);
- is $u->host, ("\xC3\xBC" x 128);
--TODO: {
--    local $TODO = "should ihost decode UTF8 bytes?";
--    is $u->ihost, ("ü" x 128);
--}
-+#TODO: {
-+#    local $TODO = "should ihost decode UTF8 bytes?";
-+#    is $u->ihost, ("ü" x 128);
-+#}
- is $u->as_iri, "http://"; . ("ü" x 128);
-diff --git a/t/mailto.t b/t/mailto.t
-index 79e9a13..c68cfb2 100644
---- a/t/mailto.t
-+++ b/t/mailto.t
-@@ -48,12 +48,12 @@ $u = URI->new('mailto:[email protected]');
- is $u->to, '[email protected]', 'subaddress with `+` parsed correctly';
- is $u, 'mailto:[email protected]', '... and stringification works';
- 
--TODO: {
--    local $TODO = "We can't handle quoted local parts without properly 
parsing the email addresses";
--    $u = URI->new('mailto:"foo bar+baz"@example.com');
--    is $u->to, '"foo bar+baz"@example.com', 'address with quoted local part 
containing spaces is parsed correctly';
--    is $u, 'mailto:%22foo%[email protected]', '... and stringification 
works';
--}
-+#TODO: {
-+#    local $TODO = "We can't handle quoted local parts without properly 
parsing the email addresses";
-+#    $u = URI->new('mailto:"foo bar+baz"@example.com');
-+#    is $u->to, '"foo bar+baz"@example.com', 'address with quoted local part 
containing spaces is parsed correctly';
-+#    is $u, 'mailto:%22foo%[email protected]', '... and 
stringification works';
-+#}
- 
- # RFC 5321 (4.1.3) - Address Literals
- 
diff --git a/meta/recipes-devtools/perl/liburi-perl_5.31.bb 
b/meta/recipes-devtools/perl/liburi-perl_5.31.bb
deleted file mode 100644
index e23942b81e8..00000000000
--- a/meta/recipes-devtools/perl/liburi-perl_5.31.bb
+++ /dev/null
@@ -1,56 +0,0 @@
-SUMMARY = "Perl module to manipulate and access URI strings"
-DESCRIPTION = "This package contains the URI.pm module with friends. \
-The module implements the URI class. URI objects can be used to access \
-and manipulate the various components that make up these strings."
-HOMEPAGE = "https://metacpan.org/dist/URI";
-SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0-or-later"
-
-LIC_FILES_CHKSUM = "file://LICENSE;md5=9944b87af51186f848ae558344aded9f"
-
-SRC_URI = "${CPAN_MIRROR}/authors/id/O/OA/OALDERS/URI-${PV}.tar.gz \
-           file://0001-Skip-TODO-test-cases-that-fail.patch \
-           "
-
-SRC_URI[sha256sum] = 
"b9c4d58b2614b8611ae03a95a6d60ed996f4b311ef3cd5a937b92f1825ecc564"
-
-S = "${WORKDIR}/URI-${PV}"
-
-EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} 
EXPATINCPATH=${STAGING_INCDIR}"
-
-inherit cpan ptest-perl
-
-do_compile() {
-       export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 
'libc-*.so')"
-       cpan_do_compile
-}
-
-do_install:prepend() {
-       # these tests require "-T" (taint) command line option
-       rm -rf ${B}/t/cwd.t
-       rm -rf ${B}/t/file.t
-}
-
-RDEPENDS:${PN} += "\
-    perl-module-integer \
-    perl-module-mime-base64 \
-"
-
-RDEPENDS:${PN}-ptest += " \
-    libtest-fatal-perl \
-    libtest-needs-perl \
-    libtest-warnings-perl \
-    perl-module-encode \
-    perl-module-encode-encoding \
-    perl-module-extutils-makemaker \
-    perl-module-extutils-mm-unix \
-    perl-module-file-spec-functions \
-    perl-module-net-domain \
-    perl-module-perlio \
-    perl-module-perlio-encoding \
-    perl-module-test \
-    perl-module-test-more \
-    perl-module-utf8 \
-"
-
-BBCLASSEXTEND = "native"
-- 
2.39.5

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#207783): 
https://lists.openembedded.org/g/openembedded-core/message/207783
Mute This Topic: https://lists.openembedded.org/mt/109769696/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to