* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Event-RPC/files/, dev-perl/Event-RPC/
@ 2017-10-20 21:32 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2017-10-20 21:32 UTC (permalink / raw
To: gentoo-commits
commit: b1b117a727197875e43711d269f8f1ba042aa690
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 20 21:31:52 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Oct 20 21:32:23 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b117a7
dev-perl/Event-RPC: Fix tests for dot-in-inc bug #615834
Closes: https://bugs.gentoo.org/615834
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild | 3 +-
.../files/Event-RPC-1.80.0-no-dot-inc.patch | 203 +++++++++++++++++++++
2 files changed, 205 insertions(+), 1 deletion(-)
diff --git a/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild b/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild
index a94c5818c9e..0dfa5ab83be 100644
--- a/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild
+++ b/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -33,3 +33,4 @@ DEPEND="${RDEPEND}
# Before disabling test here again, please file a bug and help kentnl
# track it down, so we can at least run some tests where its sensible.
#SRC_TEST=skip
+PATCHES=("${FILESDIR}/${P}-no-dot-inc.patch")
diff --git a/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch b/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch
new file mode 100644
index 00000000000..9db111d68ea
--- /dev/null
+++ b/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch
@@ -0,0 +1,203 @@
+From d0ac39cd738065a8f157dade0da743fd2c80960b Mon Sep 17 00:00:00 2001
+From: Kent Fredric <kentnl@gentoo.org>
+Date: Sat, 21 Oct 2017 10:17:48 +1300
+Subject: Fix test failures without '.' in @INC on Perl 5.26
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=121204
+Bug: https://bugs.gentoo.org/615834
+---
+ MANIFEST | 6 +++---
+ t/02.cnct.t | 3 ++-
+ t/03.cnct-auth.t | 3 ++-
+ t/04.cnct-auth-ssl-verifypeer-noca.t | 3 ++-
+ t/04.cnct-auth-ssl-verifypeer-wrongca.t | 3 ++-
+ t/04.cnct-auth-ssl-verifypeer.t | 3 ++-
+ t/04.cnct-auth-ssl.t | 4 ++--
+ t/05.func.t | 3 ++-
+ t/06.object2.t | 4 ++--
+ t/07.maxpacket.t | 4 ++--
+ t/08.msg_formats.t | 4 ++--
+ t/{ => lib}/Event_RPC_Test.pm | 0
+ t/{ => lib}/Event_RPC_Test2.pm | 0
+ t/{ => lib}/Event_RPC_Test_Server.pm | 0
+ 14 files changed, 23 insertions(+), 17 deletions(-)
+ rename t/{ => lib}/Event_RPC_Test.pm (100%)
+ rename t/{ => lib}/Event_RPC_Test2.pm (100%)
+ rename t/{ => lib}/Event_RPC_Test_Server.pm (100%)
+
+diff --git a/MANIFEST b/MANIFEST
+index fa86a36..4c5f709 100644
+--- a/MANIFEST
++++ b/MANIFEST
+@@ -32,9 +32,9 @@ t/05.func.t
+ t/06.object2.t
+ t/07.maxpacket.t
+ t/08.msg_formats.t
+-t/Event_RPC_Test.pm
+-t/Event_RPC_Test2.pm
+-t/Event_RPC_Test_Server.pm
++t/lib/Event_RPC_Test.pm
++t/lib/Event_RPC_Test2.pm
++t/lib/Event_RPC_Test_Server.pm
+ t/ssl/ca.crt
+ t/ssl/ca.key
+ t/ssl/ca-wrong.crt
+diff --git a/t/02.cnct.t b/t/02.cnct.t
+index 3ed842c..c23aa06 100644
+--- a/t/02.cnct.t
++++ b/t/02.cnct.t
+@@ -16,7 +16,8 @@ if ( not $depend_modules ) {
+
+ plan tests => 5;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ # load client class
+diff --git a/t/03.cnct-auth.t b/t/03.cnct-auth.t
+index 6f782f9..06cf939 100644
+--- a/t/03.cnct-auth.t
++++ b/t/03.cnct-auth.t
+@@ -15,7 +15,8 @@ if ( not $depend_modules ) {
+
+ plan tests => 6;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ my $AUTH_USER = "foo";
+diff --git a/t/04.cnct-auth-ssl-verifypeer-noca.t b/t/04.cnct-auth-ssl-verifypeer-noca.t
+index 0a2502e..bafafff 100644
+--- a/t/04.cnct-auth-ssl-verifypeer-noca.t
++++ b/t/04.cnct-auth-ssl-verifypeer-noca.t
+@@ -20,7 +20,8 @@ if ( $@ ) {
+
+ plan tests => 4;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib "t/lib";
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ my $AUTH_USER = "foo";
+diff --git a/t/04.cnct-auth-ssl-verifypeer-wrongca.t b/t/04.cnct-auth-ssl-verifypeer-wrongca.t
+index 48d7bdf..e34265d 100644
+--- a/t/04.cnct-auth-ssl-verifypeer-wrongca.t
++++ b/t/04.cnct-auth-ssl-verifypeer-wrongca.t
+@@ -20,7 +20,8 @@ if ( $@ ) {
+
+ plan tests => 5;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ my $AUTH_USER = "foo";
+diff --git a/t/04.cnct-auth-ssl-verifypeer.t b/t/04.cnct-auth-ssl-verifypeer.t
+index 6dc7816..93bc077 100644
+--- a/t/04.cnct-auth-ssl-verifypeer.t
++++ b/t/04.cnct-auth-ssl-verifypeer.t
+@@ -20,7 +20,8 @@ if ( $@ ) {
+
+ plan tests => 6;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ my $AUTH_USER = "foo";
+diff --git a/t/04.cnct-auth-ssl.t b/t/04.cnct-auth-ssl.t
+index 2b1eda4..0d9528e 100644
+--- a/t/04.cnct-auth-ssl.t
++++ b/t/04.cnct-auth-ssl.t
+@@ -19,8 +19,8 @@ if ( $@ ) {
+ }
+
+ plan tests => 6;
+-
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ my $AUTH_USER = "foo";
+diff --git a/t/05.func.t b/t/05.func.t
+index 88fbe28..bd095b1 100644
+--- a/t/05.func.t
++++ b/t/05.func.t
+@@ -14,7 +14,8 @@ if ( not $depend_modules ) {
+
+ plan tests => 18;
+
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ # load client class
+diff --git a/t/06.object2.t b/t/06.object2.t
+index 62fcaca..7475a9d 100644
+--- a/t/06.object2.t
++++ b/t/06.object2.t
+@@ -16,8 +16,8 @@ if ( not $depend_modules ) {
+ }
+
+ plan tests => 10;
+-
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ # load client class
+diff --git a/t/07.maxpacket.t b/t/07.maxpacket.t
+index 88f8893..4b4e5e4 100644
+--- a/t/07.maxpacket.t
++++ b/t/07.maxpacket.t
+@@ -14,8 +14,8 @@ if ( not $depend_modules ) {
+ }
+
+ plan tests => 9;
+-
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ # load client class
+diff --git a/t/08.msg_formats.t b/t/08.msg_formats.t
+index f4a93c9..a875d8e 100644
+--- a/t/08.msg_formats.t
++++ b/t/08.msg_formats.t
+@@ -15,8 +15,8 @@ eval { require Glib } && ++$depend_modules;
+ if ( not $depend_modules ) {
+ plan skip_all => "Neither AnyEvent, Event nor Glib installed";
+ }
+-
+-require "t/Event_RPC_Test_Server.pm";
++use lib 't/lib';
++require Event_RPC_Test_Server;
+ my $PORT = Event_RPC_Test_Server->port;
+
+ # determine available message formats (including the insecure)
+diff --git a/t/Event_RPC_Test.pm b/t/lib/Event_RPC_Test.pm
+similarity index 100%
+rename from t/Event_RPC_Test.pm
+rename to t/lib/Event_RPC_Test.pm
+diff --git a/t/Event_RPC_Test2.pm b/t/lib/Event_RPC_Test2.pm
+similarity index 100%
+rename from t/Event_RPC_Test2.pm
+rename to t/lib/Event_RPC_Test2.pm
+diff --git a/t/Event_RPC_Test_Server.pm b/t/lib/Event_RPC_Test_Server.pm
+similarity index 100%
+rename from t/Event_RPC_Test_Server.pm
+rename to t/lib/Event_RPC_Test_Server.pm
+--
+2.14.2
+
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Event-RPC/files/, dev-perl/Event-RPC/
@ 2020-08-14 18:43 Kent Fredric
0 siblings, 0 replies; 2+ messages in thread
From: Kent Fredric @ 2020-08-14 18:43 UTC (permalink / raw
To: gentoo-commits
commit: 12c4c516216ae6e4f93c07d2a560623e3da8e936
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 14 18:41:31 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Aug 14 18:43:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c4c516
dev-perl/Event-RPC: Cleanup old 1.80.0
Newer versions stable for at least a month
Closes: https://bugs.gentoo.org/661300
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild | 37 ----
dev-perl/Event-RPC/Manifest | 1 -
.../files/Event-RPC-1.80.0-no-dot-inc.patch | 203 ---------------------
3 files changed, 241 deletions(-)
diff --git a/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild b/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild
deleted file mode 100644
index e7e72847fb2..00000000000
--- a/dev-perl/Event-RPC/Event-RPC-1.80.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=JRED
-DIST_VERSION=1.08
-DIST_EXAMPLES=("examples/*")
-inherit perl-module
-
-DESCRIPTION="Event based transparent Client/Server RPC framework"
-
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-# Note: Storable not listed in final alternation like it is
-# upstream as storable alone is inherently insecure, so we force
-# availability of at least one secure option
-RDEPEND="|| ( dev-perl/Event dev-perl/glib-perl dev-perl/AnyEvent )
- dev-perl/IO-Socket-SSL
- dev-perl/Net-SSLeay
- || ( >=dev-perl/Sereal-3.0.0 dev-perl/CBOR-XS >=dev-perl/JSON-XS-3.0.0 )
-"
-DEPEND="${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
- test? (
- virtual/perl-Test-Simple
- virtual/perl-Storable
- virtual/perl-IO
- )
-"
-# Before disabling test here again, please file a bug and help kentnl
-# track it down, so we can at least run some tests where its sensible.
-#SRC_TEST=skip
-PATCHES=("${FILESDIR}/${P}-no-dot-inc.patch")
diff --git a/dev-perl/Event-RPC/Manifest b/dev-perl/Event-RPC/Manifest
index cc57d260f0c..6c65caade1f 100644
--- a/dev-perl/Event-RPC/Manifest
+++ b/dev-perl/Event-RPC/Manifest
@@ -1,2 +1 @@
-DIST Event-RPC-1.08.tar.gz 57504 BLAKE2B 2dcd0c1807ec1c7823ea4a27f7acfc010cc83068152ae054d25d3814021e34aa301e9eb7a8c90468ad05f0f43e3e89c229893c51e012126084014e1519a884d7 SHA512 39de9feb1e958c8834e6492cf7d6d237892e8b4ea54e534af6d0a92dddae9126766872e46b9222f00deb24309981a4459b84cb37bc8ea74e7d62e4112b1fe317
DIST Event-RPC-1.10.tar.gz 51373 BLAKE2B 8c100acbdcdb777239a9e82668ff17201721b346b9646ba144b86ac716095923464f9c0da1ce8012ec5dc87756e881b4c1d4f3ec67bf90e0148980bd816376f1 SHA512 bc824ef779c0814ebac096e4152f239c6d3216e358d20491843e46d33f71d5eda4609abc3ee7ed6b3ae96c3689a8cf23f931630cd15bd660213bd41628a7c479
diff --git a/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch b/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch
deleted file mode 100644
index 9db111d68ea..00000000000
--- a/dev-perl/Event-RPC/files/Event-RPC-1.80.0-no-dot-inc.patch
+++ /dev/null
@@ -1,203 +0,0 @@
-From d0ac39cd738065a8f157dade0da743fd2c80960b Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Sat, 21 Oct 2017 10:17:48 +1300
-Subject: Fix test failures without '.' in @INC on Perl 5.26
-
-Bug: https://rt.cpan.org/Ticket/Display.html?id=121204
-Bug: https://bugs.gentoo.org/615834
----
- MANIFEST | 6 +++---
- t/02.cnct.t | 3 ++-
- t/03.cnct-auth.t | 3 ++-
- t/04.cnct-auth-ssl-verifypeer-noca.t | 3 ++-
- t/04.cnct-auth-ssl-verifypeer-wrongca.t | 3 ++-
- t/04.cnct-auth-ssl-verifypeer.t | 3 ++-
- t/04.cnct-auth-ssl.t | 4 ++--
- t/05.func.t | 3 ++-
- t/06.object2.t | 4 ++--
- t/07.maxpacket.t | 4 ++--
- t/08.msg_formats.t | 4 ++--
- t/{ => lib}/Event_RPC_Test.pm | 0
- t/{ => lib}/Event_RPC_Test2.pm | 0
- t/{ => lib}/Event_RPC_Test_Server.pm | 0
- 14 files changed, 23 insertions(+), 17 deletions(-)
- rename t/{ => lib}/Event_RPC_Test.pm (100%)
- rename t/{ => lib}/Event_RPC_Test2.pm (100%)
- rename t/{ => lib}/Event_RPC_Test_Server.pm (100%)
-
-diff --git a/MANIFEST b/MANIFEST
-index fa86a36..4c5f709 100644
---- a/MANIFEST
-+++ b/MANIFEST
-@@ -32,9 +32,9 @@ t/05.func.t
- t/06.object2.t
- t/07.maxpacket.t
- t/08.msg_formats.t
--t/Event_RPC_Test.pm
--t/Event_RPC_Test2.pm
--t/Event_RPC_Test_Server.pm
-+t/lib/Event_RPC_Test.pm
-+t/lib/Event_RPC_Test2.pm
-+t/lib/Event_RPC_Test_Server.pm
- t/ssl/ca.crt
- t/ssl/ca.key
- t/ssl/ca-wrong.crt
-diff --git a/t/02.cnct.t b/t/02.cnct.t
-index 3ed842c..c23aa06 100644
---- a/t/02.cnct.t
-+++ b/t/02.cnct.t
-@@ -16,7 +16,8 @@ if ( not $depend_modules ) {
-
- plan tests => 5;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- # load client class
-diff --git a/t/03.cnct-auth.t b/t/03.cnct-auth.t
-index 6f782f9..06cf939 100644
---- a/t/03.cnct-auth.t
-+++ b/t/03.cnct-auth.t
-@@ -15,7 +15,8 @@ if ( not $depend_modules ) {
-
- plan tests => 6;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- my $AUTH_USER = "foo";
-diff --git a/t/04.cnct-auth-ssl-verifypeer-noca.t b/t/04.cnct-auth-ssl-verifypeer-noca.t
-index 0a2502e..bafafff 100644
---- a/t/04.cnct-auth-ssl-verifypeer-noca.t
-+++ b/t/04.cnct-auth-ssl-verifypeer-noca.t
-@@ -20,7 +20,8 @@ if ( $@ ) {
-
- plan tests => 4;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib "t/lib";
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- my $AUTH_USER = "foo";
-diff --git a/t/04.cnct-auth-ssl-verifypeer-wrongca.t b/t/04.cnct-auth-ssl-verifypeer-wrongca.t
-index 48d7bdf..e34265d 100644
---- a/t/04.cnct-auth-ssl-verifypeer-wrongca.t
-+++ b/t/04.cnct-auth-ssl-verifypeer-wrongca.t
-@@ -20,7 +20,8 @@ if ( $@ ) {
-
- plan tests => 5;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- my $AUTH_USER = "foo";
-diff --git a/t/04.cnct-auth-ssl-verifypeer.t b/t/04.cnct-auth-ssl-verifypeer.t
-index 6dc7816..93bc077 100644
---- a/t/04.cnct-auth-ssl-verifypeer.t
-+++ b/t/04.cnct-auth-ssl-verifypeer.t
-@@ -20,7 +20,8 @@ if ( $@ ) {
-
- plan tests => 6;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- my $AUTH_USER = "foo";
-diff --git a/t/04.cnct-auth-ssl.t b/t/04.cnct-auth-ssl.t
-index 2b1eda4..0d9528e 100644
---- a/t/04.cnct-auth-ssl.t
-+++ b/t/04.cnct-auth-ssl.t
-@@ -19,8 +19,8 @@ if ( $@ ) {
- }
-
- plan tests => 6;
--
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- my $AUTH_USER = "foo";
-diff --git a/t/05.func.t b/t/05.func.t
-index 88fbe28..bd095b1 100644
---- a/t/05.func.t
-+++ b/t/05.func.t
-@@ -14,7 +14,8 @@ if ( not $depend_modules ) {
-
- plan tests => 18;
-
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- # load client class
-diff --git a/t/06.object2.t b/t/06.object2.t
-index 62fcaca..7475a9d 100644
---- a/t/06.object2.t
-+++ b/t/06.object2.t
-@@ -16,8 +16,8 @@ if ( not $depend_modules ) {
- }
-
- plan tests => 10;
--
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- # load client class
-diff --git a/t/07.maxpacket.t b/t/07.maxpacket.t
-index 88f8893..4b4e5e4 100644
---- a/t/07.maxpacket.t
-+++ b/t/07.maxpacket.t
-@@ -14,8 +14,8 @@ if ( not $depend_modules ) {
- }
-
- plan tests => 9;
--
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- # load client class
-diff --git a/t/08.msg_formats.t b/t/08.msg_formats.t
-index f4a93c9..a875d8e 100644
---- a/t/08.msg_formats.t
-+++ b/t/08.msg_formats.t
-@@ -15,8 +15,8 @@ eval { require Glib } && ++$depend_modules;
- if ( not $depend_modules ) {
- plan skip_all => "Neither AnyEvent, Event nor Glib installed";
- }
--
--require "t/Event_RPC_Test_Server.pm";
-+use lib 't/lib';
-+require Event_RPC_Test_Server;
- my $PORT = Event_RPC_Test_Server->port;
-
- # determine available message formats (including the insecure)
-diff --git a/t/Event_RPC_Test.pm b/t/lib/Event_RPC_Test.pm
-similarity index 100%
-rename from t/Event_RPC_Test.pm
-rename to t/lib/Event_RPC_Test.pm
-diff --git a/t/Event_RPC_Test2.pm b/t/lib/Event_RPC_Test2.pm
-similarity index 100%
-rename from t/Event_RPC_Test2.pm
-rename to t/lib/Event_RPC_Test2.pm
-diff --git a/t/Event_RPC_Test_Server.pm b/t/lib/Event_RPC_Test_Server.pm
-similarity index 100%
-rename from t/Event_RPC_Test_Server.pm
-rename to t/lib/Event_RPC_Test_Server.pm
---
-2.14.2
-
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-08-14 18:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-14 18:43 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Event-RPC/files/, dev-perl/Event-RPC/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2017-10-20 21:32 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox