From: Michael Mair-Keimberger Date: Sat, 25 Apr 2020 15:51:33 +0000 (+0200) Subject: dev-perl/Params-Classify: remove unused patch(es) X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e2702035597468865b525a6014990c432d2d4dc2;p=gentoo.git dev-perl/Params-Classify: remove unused patch(es) Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger Signed-off-by: Kent Fredric --- diff --git a/dev-perl/Params-Classify/files/Params-Classify-0.13.0-no-dot-inc.patch b/dev-perl/Params-Classify/files/Params-Classify-0.13.0-no-dot-inc.patch deleted file mode 100644 index 06cf4f49cbbb..000000000000 --- a/dev-perl/Params-Classify/files/Params-Classify-0.13.0-no-dot-inc.patch +++ /dev/null @@ -1,101 +0,0 @@ -From d612219a1a3bfe14f0cd1de59709724b35d7f21c Mon Sep 17 00:00:00 2001 -From: Kent Fredric -Date: Tue, 20 Jun 2017 05:45:39 +1200 -Subject: [PATCH] Fix for '.' in @INC - ---- - t/blessed_pp.t | 4 ++-- - t/check_pp.t | 4 ++-- - t/classify_pp.t | 4 ++-- - t/error_pp.t | 4 ++-- - t/pod_cvg_pp.t | 4 ++-- - t/ref_pp.t | 4 ++-- - 6 files changed, 12 insertions(+), 12 deletions(-) - -diff --git a/t/blessed_pp.t b/t/blessed_pp.t -index 84caf74..e6d1865 100644 ---- a/t/blessed_pp.t -+++ b/t/blessed_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/blessed.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/blessed.t" or die $@ || $!; - - 1; -diff --git a/t/check_pp.t b/t/check_pp.t -index ce2ef1d..5564360 100644 ---- a/t/check_pp.t -+++ b/t/check_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/check.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/check.t" or die $@ || $!; - - 1; -diff --git a/t/classify_pp.t b/t/classify_pp.t -index facdab2..1dd9cbc 100644 ---- a/t/classify_pp.t -+++ b/t/classify_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/classify.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/classify.t" or die $@ || $!; - - 1; -diff --git a/t/error_pp.t b/t/error_pp.t -index 6473533..a018e32 100644 ---- a/t/error_pp.t -+++ b/t/error_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/error.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/error.t" or die $@ || $!; - - 1; -diff --git a/t/pod_cvg_pp.t b/t/pod_cvg_pp.t -index 960bc4f..8503674 100644 ---- a/t/pod_cvg_pp.t -+++ b/t/pod_cvg_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/pod_cvg.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/pod_cvg.t" or die $@ || $!; - - 1; -diff --git a/t/ref_pp.t b/t/ref_pp.t -index f3b5941..55f487d 100644 ---- a/t/ref_pp.t -+++ b/t/ref_pp.t -@@ -1,7 +1,7 @@ - use warnings; - use strict; - --do "t/setup_pp.pl" or die $@ || $!; --do "t/ref.t" or die $@ || $!; -+do "./t/setup_pp.pl" or die $@ || $!; -+do "./t/ref.t" or die $@ || $!; - - 1; --- -2.13.1 - diff --git a/dev-perl/Params-Classify/files/Params-Classify-0.13.0-op_sibling.patch b/dev-perl/Params-Classify/files/Params-Classify-0.13.0-op_sibling.patch deleted file mode 100644 index a7c6adac0e9a..000000000000 --- a/dev-perl/Params-Classify/files/Params-Classify-0.13.0-op_sibling.patch +++ /dev/null @@ -1,82 +0,0 @@ -https://rt.cpan.org/Ticket/Display.html?id=114490 - - ---- Params-Classify-0.013a/lib/Params/Classify.xs 2010-11-16 15:35:47.000000000 -0500 -+++ Params-Classify-0.013b/lib/Params/Classify.xs 2017-03-26 15:38:12.384693301 -0400 -@@ -41,6 +41,26 @@ - # define FPTR2DPTR(t,x) ((t)(UV)(x)) - #endif /* !FPTR2DPTR */ - -+#ifndef OpHAS_SIBLING -+# define OpHAS_SIBLING(o) (cBOOL((o)->op_sibling)) -+#endif -+ -+#ifndef OpSIBLING -+# define OpSIBLING(o) (0 + (o)->op_sibling) -+#endif -+ -+#ifndef OpMORESIB_set -+# define OpMORESIB_set(o, sib) ((o)->op_sibling = (sib)) -+#endif -+ -+#ifndef OpLASTSIB_set -+# define OpLASTSIB_set(o, parent) ((o)->op_sibling = NULL) -+#endif -+ -+#ifndef OpMAYBESIB_set -+# define OpMAYBESIB_set(o, sib, parent) ((o)->op_sibling = (sib)) -+#endif -+ - #ifndef ptr_table_new - - struct q_ptr_tbl_ent { -@@ -625,8 +645,8 @@ - OP *(*ppfunc)(pTHX); - I32 cvflags; - pushop = cUNOPx(op)->op_first; -- if(!pushop->op_sibling) pushop = cUNOPx(pushop)->op_first; -- for(cvop = pushop; cvop->op_sibling; cvop = cvop->op_sibling) ; -+ if(!OpHAS_SIBLING(pushop)) pushop = cUNOPx(pushop)->op_first; -+ for(cvop = pushop; OpHAS_SIBLING(cvop); cvop = OpSIBLING(cvop)) ; - if(!(cvop->op_type == OP_RV2CV && - !(cvop->op_private & OPpENTERSUB_AMPER) && - (cv = rvop_cv(cUNOPx(cvop)->op_first)) && -@@ -635,20 +655,20 @@ - return nxck_entersub(aTHX_ op); - cvflags = CvXSUBANY(cv).any_i32; - op = nxck_entersub(aTHX_ op); /* for prototype checking */ -- aop = pushop->op_sibling; -- bop = aop->op_sibling; -+ aop = OpSIBLING(pushop); -+ bop = OpSIBLING(aop); - if(bop == cvop) { - if(!(cvflags & PC_ALLOW_UNARY)) return op; - unary: -- pushop->op_sibling = bop; -- aop->op_sibling = NULL; -+ OpLASTSIB_set(pushop, bop); -+ OpLASTSIB_set(aop, NULL); - op_free(op); - op = newUNOP(OP_NULL, 0, aop); - op->op_type = OP_RAND; - op->op_ppaddr = ppfunc; - op->op_private = (U8)cvflags; - return op; -- } else if(bop && bop->op_sibling == cvop) { -+ } else if(bop && OpSIBLING(op) == cvop) { - if(!(cvflags & PC_ALLOW_BINARY)) return op; - if(ppfunc == THX_pp_check_sclass && - (cvflags & PC_TYPE_MASK) == SCLASS_REF) { -@@ -667,9 +687,9 @@ - cvflags &= ~PC_TYPE_MASK; - ppfunc = THX_pp_check_dyn_battr; - } -- pushop->op_sibling = cvop; -- aop->op_sibling = NULL; -- bop->op_sibling = NULL; -+ OpLASTSIB_set(pushop, cvop); -+ OpLASTSIB_set(aop, NULL); -+ OpLASTSIB_set(bop, NULL); - op_free(op); - op = newBINOP(OP_NULL, 0, aop, bop); - op->op_type = OP_RAND;