dev-perl/Parallel-Iterator: Drop old versions

Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Matt Turner
2024-03-14 12:43:50 -04:00
parent fa731b267d
commit 5627f8356b
3 changed files with 0 additions and 85 deletions

View File

@@ -1,2 +1 @@
DIST Parallel-Iterator-1.00.tar.gz 15227 BLAKE2B 9ebfea3c67627d7f85d688f4adbe6bdca497f656789704c4567c306dd3530f2306bba4a38cd506da65e941483cbc68cf3b1d262daeb9cbf8f1e6141db64e6c9b SHA512 3027434d08da0750f33ad2cc10b1c00b18ac0f626af5aa1f9d5d94711e433c7e313e04106e5307d5a498ae65ebf577dfd83c669ecf5414bbe04d87c862b2a511
DIST Parallel-Iterator-1.002.tar.gz 21436 BLAKE2B d401dae09ba3c3ef8a2df05bf40f3c12dde455a6af0ccbce39c6a47448a9421d7eeb744ccf86da1ec46e6b7a0a6ff71a5b34653788136107aaef0dd8e35eb596 SHA512 69158a4f9ce16fc674f4a1639b4b2e9d426a9d6bf323225dde263dd81abbd319757049d0d94bacf38ab735b69592ab54ef8770eca4d776a6ebba1ab48626ca30

View File

@@ -1,27 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=ANDYA
DIST_VERSION=1.00
DIST_EXAMPLES=( "examples/*" )
inherit perl-module
DESCRIPTION="Simple parallel execution"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
virtual/perl-IO
virtual/perl-Storable
"
BDEPEND="${RDEPEND}
dev-perl/Module-Build
test? (
virtual/perl-Test-Simple
)
"
PATCHES=("${FILESDIR}/${PN}-1.00-perl-5.26.patch")

View File

@@ -1,57 +0,0 @@
From 3cf3250d8d62b93b83a34df309d1181f36a5e2ab Mon Sep 17 00:00:00 2001
From: Kent Fredric <kentnl@gentoo.org>
Date: Sat, 23 Dec 2017 12:40:14 +1300
Subject: Fix test failures without '.' in @INC
Bug: https://rt.cpan.org/Public/Bug/Display.html?id=120543
Bug: https://bugs.gentoo.org/615726
---
t/050-nofork-basic.t | 2 +-
t/060-nofork-data.t | 2 +-
t/070-nofork-block.t | 2 +-
t/080-nofork-batch.t | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/t/050-nofork-basic.t b/t/050-nofork-basic.t
index 1409174..2d2e454 100644
--- a/t/050-nofork-basic.t
+++ b/t/050-nofork-basic.t
@@ -3,4 +3,4 @@ use strict;
use lib 't/lib';
use NoFork;
-require 't/020-data.t';
+require './t/020-data.t';
diff --git a/t/060-nofork-data.t b/t/060-nofork-data.t
index 281cd07..1654671 100644
--- a/t/060-nofork-data.t
+++ b/t/060-nofork-data.t
@@ -3,4 +3,4 @@ use strict;
use lib 't/lib';
use NoFork;
-require 't/020-data.t';
+require './t/020-data.t';
diff --git a/t/070-nofork-block.t b/t/070-nofork-block.t
index a3dfb52..40b7342 100644
--- a/t/070-nofork-block.t
+++ b/t/070-nofork-block.t
@@ -3,4 +3,4 @@ use strict;
use lib 't/lib';
use NoFork;
-require 't/030-block.t';
+require './t/030-block.t';
diff --git a/t/080-nofork-batch.t b/t/080-nofork-batch.t
index 5d66b5c..d7c7165 100644
--- a/t/080-nofork-batch.t
+++ b/t/080-nofork-batch.t
@@ -3,4 +3,4 @@ use strict;
use lib 't/lib';
use NoFork;
-require 't/040-batch.t';
+require './t/040-batch.t';
--
2.15.1