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.2: Initial import
Date: Mon, 03 Aug 2026 13:37:05 GMT	[thread overview]
Message-ID: <178576422564.1.10697073273898000385.rpms-perl-Object-Remote-a8c95f14ed49@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/perl-Object-Remote
Branch : epel10.2
Commit : a8c95f14ed49e88d822cf0163ce6cc4a7129317b
Author : Jitka Plesnikova <jplesnik@redhat.com>
Date   : 2016-01-13T09:37:25+01:00
Stats  : +113/-0 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/perl-Object-Remote/c/a8c95f14ed49e88d822cf0163ce6cc4a7129317b?branch=epel10.2

Log:
Initial import

---
diff --git a/.gitignore b/.gitignore
index e69de29..892b82f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Object-Remote-0.003005.tar.gz

diff --git a/perl-Object-Remote.spec b/perl-Object-Remote.spec
new file mode 100644
index 0000000..4ab4869
--- /dev/null
+++ b/perl-Object-Remote.spec
@@ -0,0 +1,111 @@
+Name:           perl-Object-Remote
+Version:        0.003005
+Release:        2%{?dist}
+Summary:        Call methods on objects in other processes or on other hosts
+License:        GPL+ or Artistic
+URL:            http://search.cpan.org/dist/Object-Remote/
+Source0:        http://www.cpan.org/authors/id/M/MS/MSTROUT/Object-Remote-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+BuildRequires:  sed
+# Run-time
+BuildRequires:  perl(Algorithm::C3)
+BuildRequires:  perl(B)
+BuildRequires:  perl(base)
+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(Exporter)
+BuildRequires:  perl(Exporter::Declare)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(FileHandle)
+BuildRequires:  perl(Future) >= 0.29
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IO::Select)
+BuildRequires:  perl(IO::Socket::UNIX)
+BuildRequires:  perl(IPC::Open3)
+BuildRequires:  perl(JSON::PP)
+BuildRequires:  perl(List::Util)
+BuildRequires:  perl(Log::Contextual) >= 0.005
+BuildRequires:  perl(Log::Contextual::Role::Router)
+BuildRequires:  perl(Method::Generate::BuildAll)
+BuildRequires:  perl(Method::Generate::DemolishAll)
+BuildRequires:  perl(Module::Runtime)
+BuildRequires:  perl(Moo) >= 1.006
+BuildRequires:  perl(Moo::HandleMoose::_TypeMap)
+BuildRequires:  perl(Moo::Role)
+BuildRequires:  perl(MRO::Compat)
+BuildRequires:  perl(POSIX)
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(strictures) >= 1
+BuildRequires:  perl(String::ShellQuote)
+BuildRequires:  perl(Symbol)
+BuildRequires:  perl(Sys::Hostname)
+BuildRequires:  perl(Tie::Handle)
+BuildRequires:  perl(Time::HiRes)
+# Tests
+BuildRequires:  perl(FindBin)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Tie::Array)
+BuildRequires:  perl(Tie::Hash)
+Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:       perl(Algorithm::C3)
+Requires:       perl(Class::C3)
+Requires:       perl(Future) >= 0.29
+Requires:       perl(Log::Contextual) >= 0.005
+Requires:       perl(Log::Contextual::Role::Router)
+Requires:       perl(Method::Generate::BuildAll)
+Requires:       perl(Method::Generate::DemolishAll)
+Requires:       perl(Moo) >= 1.006
+Requires:       perl(Moo::HandleMoose::_TypeMap)
+Requires:       perl(MRO::Compat)
+Requires:       openssh-clients
+Requires:       sudo
+
+%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Future\\)$
+%global __requires_exclude %__requires_exclude|^perl\\(Moo\\)$
+%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(maybe\\)$
+%global __provides_exclude %__provides_exclude|^perl\\(maybe::start\\)$
+%global __provides_exclude %__provides_exclude|^perl\\(start\\)$
+%global __provides_exclude %__provides_exclude|^perl\\(then\\)$
+
+%description
+Object::Remote allows you to create an object in another process - usually
+one running on another machine you can connect to via ssh, although there
+are other connection mechanisms available.
+
+%prep
+%setup -q -n Object-Remote-%{version}
+sed -i -e '1s|#!/usr/bin/env perl|#!perl|' bin/*
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%doc Changes README
+%{_bindir}/*
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Jan 07 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.003005-2
+- Update list of dependencies
+
+* Wed Dec 16 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.003005-1
+- Initial release

diff --git a/sources b/sources
index e69de29..9009176 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+1eb920b0e0579bb3e351ab44986e9a60  Object-Remote-0.003005.tar.gz

                 reply	other threads:[~2026-08-03 13:37 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=178576422564.1.10697073273898000385.rpms-perl-Object-Remote-a8c95f14ed49@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