public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jitka Plesnikova <jplesnik@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/perl-Object-Remote] epel10: 0.004001 bump
Date: Mon, 03 Aug 2026 13:33:45 GMT	[thread overview]
Message-ID: <178576402543.1.2865251179279431114.rpms-perl-Object-Remote-49449dbd37a0@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/perl-Object-Remote
Branch : epel10
Commit : 49449dbd37a07931a2483413e643588eff2e57a1
Author : Jitka Plesnikova <jplesnik@redhat.com>
Date   : 2019-11-28T09:05:44+01:00
Stats  : +14/-56 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/perl-Object-Remote/c/49449dbd37a07931a2483413e643588eff2e57a1?branch=epel10

Log:
0.004001 bump

---
diff --git a/.gitignore b/.gitignore
index 872b32c..ea55bf6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Object-Remote-0.003005.tar.gz
 /Object-Remote-0.003006.tar.gz
 /Object-Remote-0.004000.tar.gz
+/Object-Remote-0.004001.tar.gz

diff --git a/Object-Remote-0.004000-Adapt-to-Moo-2.003006-that-does-not-load-Devel-Globa.patch b/Object-Remote-0.004000-Adapt-to-Moo-2.003006-that-does-not-load-Devel-Globa.patch
deleted file mode 100644
index a3498ff..0000000
--- a/Object-Remote-0.004000-Adapt-to-Moo-2.003006-that-does-not-load-Devel-Globa.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 2a843fe62d990851cf544214ace1be8e0c51e851 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
-Date: Tue, 26 Nov 2019 10:52:50 +0100
-Subject: [PATCH] Adapt to Moo-2.003006 that does not load
- Devel::GlobalDestruction
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Moo-2.003006 stopped loading Devel::GlobalDestruction on recent Perls.
-As a result Object-Remote tests failed because:
-
-$ perl -Ilib -e 'require Object::Remote::FatNode'
-Use of uninitialized value $_ in hash element at lib/Object/Remote/FatNode.pm line 127.
-Compilation failed in require at -e line 1.
-
-Object::Remote::FatNode expected that Devel/GlobalDestruction.pm was
-always presented in @INC and created an undefined entry in
-@non_core_non_arch since Moo-2.003006.
-
-This patch fixes it.
-
-CPAN RT#130885
-
-Signed-off-by: Petr Písař <ppisar@redhat.com>
----
- lib/Object/Remote/FatNode.pm | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/lib/Object/Remote/FatNode.pm b/lib/Object/Remote/FatNode.pm
-index 8b143b8..d0cf133 100644
---- a/lib/Object/Remote/FatNode.pm
-+++ b/lib/Object/Remote/FatNode.pm
-@@ -63,7 +63,8 @@ foreach(keys(%mods)) {
-   }
- }
- 
--my @non_core_non_arch = ( $file_names{'Devel/GlobalDestruction.pm'} );
-+my @non_core_non_arch = exists $file_names{'Devel/GlobalDestruction.pm'} ?
-+  ($file_names{'Devel/GlobalDestruction.pm'}) : ();
- push @non_core_non_arch, grep +(
-   not (
-     #some of the config variables can be empty which will eval as a matching regex
--- 
-2.21.0
-

diff --git a/perl-Object-Remote.spec b/perl-Object-Remote.spec
index b4f4a7d..3247af0 100644
--- a/perl-Object-Remote.spec
+++ b/perl-Object-Remote.spec
@@ -1,12 +1,10 @@
 Name:           perl-Object-Remote
-Version:        0.004000
-Release:        11%{?dist}
+Version:        0.004001
+Release:        1%{?dist}
 Summary:        Call methods on objects in other processes or on other hosts
 License:        GPL+ or Artistic
 URL:            https://metacpan.org/release/Object-Remote
-Source0:        https://cpan.metacpan.org/authors/id/M/MS/MSTROUT/Object-Remote-%{version}.tar.gz
-# Adapt to changes in Moo-2.003006, CPAN RT#130885
-Patch0:         Object-Remote-0.004000-Adapt-to-Moo-2.003006-that-does-not-load-Devel-Globa.patch
+Source0:        https://cpan.metacpan.org/authors/id/H/HA/HAARG/Object-Remote-%{version}.tar.gz
 BuildArch:      noarch
 BuildRequires:  make
 BuildRequires:  perl-interpreter
@@ -23,6 +21,7 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(Class::C3)
 # Class::C3::next - the part of perl-Class-C3, but it isn't listed in provides
 BuildRequires:  perl(Config)
+BuildRequires:  perl(Devel::GlobalDestruction)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(Exporter::Declare)
 BuildRequires:  perl(File::Spec)
@@ -63,6 +62,7 @@ BuildRequires:  perl(Tie::Hash)
 Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:       perl(Algorithm::C3)
 Requires:       perl(Class::C3)
+Requires:       perl(Devel::GlobalDestruction)
 Requires:       perl(Future) >= 0.29
 Requires:       perl(Log::Contextual) >= 0.005
 Requires:       perl(Log::Contextual::Role::Router)
@@ -90,27 +90,30 @@ are other connection mechanisms available.
 
 %prep
 %setup -q -n Object-Remote-%{version}
-%patch0 -p1
 sed -i -e '1s|#!/usr/bin/env perl|#!perl|' bin/*
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
-make %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
+%{make_build}
 
 %install
-make pure_install DESTDIR=$RPM_BUILD_ROOT
+%{make_install}
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
 %files
+%license LICENSE
 %doc Changes README
 %{_bindir}/*
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Nov 28 2019 Jitka Plesnikova <jplesnik@redhat.com> - 0.004001-1
+- 0.004001 bump
+
 * Tue Nov 26 2019 Petr Pisar <ppisar@redhat.com> - 0.004000-11
 - Adapt to changes in Moo-2.003006 (CPAN RT#130885)
 

diff --git a/sources b/sources
index 7292c4c..1d2b9a5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-87d5d2faf5243a04e888c1727a4a3f19  Object-Remote-0.004000.tar.gz
+SHA512 (Object-Remote-0.004001.tar.gz) = 40f23d4c3846e46280643a34d98c67a330a80b35419d10f6b8f1a6bc520c4b1dae7a42f54b94b22e88ddba83ba1bafa40ffa8994f9a0133082cab663cfafcf7a

                 reply	other threads:[~2026-08-03 13:33 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178576402543.1.2865251179279431114.rpms-perl-Object-Remote-49449dbd37a0@fedoraproject.org \
    --to=jplesnik@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox