Re: Comp groups

2024-05-15 Thread Petr Pisar
V Wed, May 15, 2024 at 12:13:16AM +0200, Emmanuel Seyman napsal(a):
> Both of these require a pretty significant overhaul, IMHO. Unless
> someone has any objections, I will file a PR on the fedora-comps repo
> replacing the contents of the perl group with the following:
> 
>  Mandatory Packages:
>perl
>  Default Packages:
>git-cpan-patch
>perl-CPAN-Uploader
>perl-Data-Printer
>perl-Devel-Confess
>perl-Devel-NYTProf
>perl-Dist-Zilla
>perl-Module-Build-Tiny
>perl-Perl-Critic
>perl-Pod-Readme
>perl-Software-License
>perltidy
>  Optional Packages:
>cpanspec
>perl-Code-TidyAll
>perl-Modern-Perl
>vim-perl-support
>  
> Another commit will make perl-web the following group:
> 
>  Mandatory Packages:
>   perl
>  Default Packages:
>   perl-CGI-Formbuilder
>   perl-HTML-FormHandler
>   perl-HTTP-BrowserDetect
>   perl-MIME-Types
>   perl-Plack
>   perl-XML-Atom
>   perl-XML-RSS
>  Optional Packages:
>   perl-Attean
>   perl-Dancer2
>   perl-Mojolicious
>   perl-Task-Catalyst
>   perl-Template
> 
> Thoughts? Suggestions?
> 
That looks good.

-- Petr


signature.asc
Description: PGP signature
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Task-Catalyst] PR #1: Stop building for 32-bit x86

2024-04-15 Thread Petr Pisar

ppisar commented on the pull-request: `Stop building for 32-bit x86` that you 
are following:
``
I see. Could you please mention flamegraph in the commit message? E.g. "Stop 
building for 32-bit x86 because of flamegraph".
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Task-Catalyst/pull-request/1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Task-Catalyst] PR #1: Stop building for 32-bit x86

2024-04-10 Thread Petr Pisar

ppisar commented on the pull-request: `Stop building for 32-bit x86` that you 
are following:
``
Indeed. perl-Devel-NYTProf is fullarch. @jjames, what's the problem with 
flamegraph?
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Task-Catalyst/pull-request/1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Task-Catalyst] PR #1: Stop building for 32-bit x86

2024-04-10 Thread Petr Pisar

ppisar commented on the pull-request: `Stop building for 32-bit x86` that you 
are following:
``
perl-Task-Catalyst is noarch. What's the point of ExcludeArch? Preventing from 
building it on i686 builders because perl-Devel-NYTProf requires flamegraph 
which wont be there? Could you please write this reason to a commit message?

Also if you convert License tag, also convert the comment above.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Task-Catalyst/pull-request/1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Module needs a non-packaged module, how to?

2024-01-22 Thread Petr Pisar
V Tue, Dec 26, 2023 at 02:03:50PM -, Johan Vromans napsal(a):
> For the next release of my ChordPro application (fedora package `chordpro`,
> CPAN module `App::Music::ChordPro`) it needs a CPAN module that is not
> packaged: `JavaScript::QuickJS`.
> 
> How to proceed? I have no intentions to become package maintainer for this
> module. 

From engineering point of view, packaging JavaScript::QuickJS would be the
best option.

> Can I add the module source as `Source1` and build it together with the rest
> of ChordPro?

You can. But you need to follow
.

Also don't miss that if you install bundled JavaScript::QuickJS into standard
Perl paths (e.g. /usr/share/perl5/vendor_perl) it will become available to
other Perl code and users and you will get into same troubles as if you
packaged it separately.

> Should I use a `cpan` command to add it?

Do you mean when building chordpro in Fedora Koji? No, because Koji has no
access to the Internet.

Do you mean after installing chordpro on a user's systems when a user execute
the application? Not that it would be impossible, but it's against Fedora's
spirit (and maybe some rules) that packages that Fedora delivers are usable
per se without third-party artifacts.

> Or is there a better way?

lib/ChordPro/Delegate/ABC.pm shows that there more options than
JavaScript::QuickJS. But the other options are also not packaged in Fedora.

Maybe removing ChordPro::Delegate::ABC module from chordpro RPM package could
be an option. The module is only used from a single place and the use is
guarded with an eval block. If chordpro is usable without ABC support, then it
could be the way.

-- Petr


signature.asc
Description: PGP signature
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Font-AFM] PR #4: Do not depend on files from /usr/share

2024-01-18 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Font-AFM` that you 
are following:
``
Do not depend on files from /usr/share
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Font-AFM/pull-request/4
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Convert-Color] PR #1: Do not depend on files from /usr/share

2024-01-18 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Convert-Color` that 
you are following:
``
Do not depend on files from /usr/share
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Convert-Color/pull-request/1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


License of perl metapackage should be LicenseRef-Not-Copyrightable

2024-01-09 Thread Petr Pisar
V Fri, Dec 08, 2023 at 07:11:09AM +0100, Miroslav Suchý napsal(a):
> We added new license LicenseRef-Not-Copyrightable that should be used for
> packages like foo-filesystem that e.g., create just directories and does not
> have copyrightable code nor content.
> 
I believe all metapackages, i.e. packages without files which only require
another packages, fall into this category.

Therefore I believe that a binary "perl" package should:

-License:GPL-1.0-or-later OR Artistic-1.0-Perl
+License:LicenseRef-Not-Copyrightable

First, I wanted to write to legal list, to ask them whether
LicenseRef-Not-Copyrightable also applies to metapackages with a proper
upstream. But when I tried to formulate what binary "perl" means, I realized
that because of dual-lived modules, it is not all libraries, tools,
documentation and features you get by compiling perl sources. We transitively
install software built from different sources.  Also we cannot predict
dual-lived packages to comes with a new license. And we even do not want to
track the changes in perl package. Those are the reasons why we do not list
licenses of all 190 dependent packages in "perl".

Therefore I believe that "GPL-1.0-or-later OR Artistic-1.0-Perl" at "perl" is
an overly simplified statement that it's a lie.

By the way, if you want to list all the licenses used in the perl sources, RPM
has a new "SourceLicense" tag for that.

-- Petr



signature.asc
Description: PGP signature
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-local-lib] PR #2: Ensure csh syntax is used for C shell even if SHELL env var is unset.

2023-11-27 Thread Petr Pisar

ppisar commented on the pull-request: `Ensure csh syntax is used for C shell 
even if SHELL env var is unset.` that you are following:
``
The AVC failure is tracked at . 
It won't block perl-local-lib because it does not enforce 
fedora-ci.koji-build.installability.functional test 
.

This change will get info Fedora when a maintainer of this package builds it. A 
Fedora version after another. If this package is distributed in EPEL, then 
likewise. If it is distributed in RHEL, you need to go to Red Hat support and 
ask them to include this change.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-local-lib/pull-request/2
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-local-lib] PR #2: Ensure csh syntax is used for C shell even if SHELL env var is unset.

2023-11-22 Thread Petr Pisar

ppisar commented on the pull-request: `Ensure csh syntax is used for C shell 
even if SHELL env var is unset.` that you are following:
``
Just a nit pick: If SHELL is not set, Perl local::lib is not fooled into sh 
syntax. It's a documented feature:

   *   Rather basic shell detection. Right now anything with csh in its
name is assumed to be a C shell or something compatible, and
everything else is assumed to be Bourne, except on Win32 systems. If
the "SHELL" environment variable is not set, a Bourne-compatible
shell is assumed.

But I agree that your fix is appropriate.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-local-lib/pull-request/2
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-HTTP-Tiny] PR #3: Add perl-HTTP-Tiny-https package for delivering of HTTPs support

2023-08-10 Thread Petr Pisar

ppisar commented on the pull-request: `Add perl-HTTP-Tiny-https package for 
delivering of HTTPs support` that you are following:
``
This patch makes https tests optional in perl-HTTP-Tiny-tests. That goes 
against current practice we (at least I) have in tests subpackages: We tend to 
enforce all test features in tests subpackages. My approach has two advantages: 
The tests are deterministic and the https feature can be controlled with 
perl_bootstrap macro.

When you add a hard dependency on perl-HTTP-Tiny-https into many packages, it 
could happen that you make the packages uninstallable while bootstrapping and 
that would lead to build cycles as Jitka pointed. I'd rather wrap the hard 
Requires on IO::Socket::SSL in perl-HTTP-Tiny-https with perl_boostrap 
condition. On one hand, that would make the perl-HTTP-Tiny-https dummy while 
bootstrapping. On the other hand, it would centralize the boostrapping to 
perl-HTTP-Tiny.spec. With your current approach you will have to go after every 
of the hard Requires and condition them with perl_bootstrap on case-by-case 
basis.

I don't say that your approach is utterly wrong, it has it's own potential. I 
only say that I would use a different approach.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-HTTP-Tiny/pull-request/3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-WWW-Mechanize] PR #1: Updated Source0 to the URL that works

2023-06-27 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-WWW-Mechanize` that you
are following.

Closed pull-request:

``
Updated Source0 to the URL that works
``

https://src.fedoraproject.org/rpms/perl-WWW-Mechanize/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-WWW-Mechanize] PR #1: Updated Source0 to the URL that works

2023-06-27 Thread Petr Pisar

ppisar commented on the pull-request: `Updated Source0 to the URL that works` 
that you are following:
``
Thanks for the patch. I've merged it. I will modernize the spec file and built 
it soon.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-WWW-Mechanize/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Devel-CheckLib] PR #3: Requires: redhat-rpm-config for tests

2023-06-23 Thread Petr Pisar

ppisar commented on the pull-request: `Requires: redhat-rpm-config for tests` 
that you are following:
``
I think the dependency should go to perl-Devel-CheckLib package. 
Devel::Checklib::_findcc() defaults compiler flags to $Config(cflags).
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Devel-CheckLib/pull-request/3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-FCGI] PR #2: Conditionalize client tests

2023-06-12 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: `perl-FCGI` 
that you
are following.

Closed pull-request:

``
Conditionalize client tests
``

https://src.fedoraproject.org/rpms/perl-FCGI/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-FCGI] PR #2: Conditionalize client tests

2023-06-12 Thread Petr Pisar

ppisar commented on the pull-request: `Conditionalize client tests` that you 
are following:
``
I applied this, slightly modified, patch. It removes the tests which require 
FCGI::Client on RHEL.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-FCGI/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-PPI-PowerToys] PR #1: Update Makefile.PL to not use Module::Install::DSL

2023-05-16 Thread Petr Pisar

ppisar commented on the pull-request: `Update Makefile.PL to not use 
Module::Install::DSL` that you are following:
``
Thanks. I merged it.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-PPI-PowerToys/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-PPI-PowerToys] PR #1: Update Makefile.PL to not use Module::Install::DSL

2023-05-16 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-PPI-PowerToys` that you
are following.

Closed pull-request:

``
Update Makefile.PL to not use Module::Install::DSL
``

https://src.fedoraproject.org/rpms/perl-PPI-PowerToys/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Crypt-URandom] PR #1: Test CI with 0.36 code

2023-05-16 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-Crypt-URandom` that you
are following.

Closed pull-request:

``
Test CI with 0.36 code
``

https://src.fedoraproject.org/rpms/perl-Crypt-URandom/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Crypt-URandom] PR #1: Test CI with 0.36 code

2023-05-16 Thread Petr Pisar

ppisar commented on the pull-request: `Test CI with 0.36 code` that you are 
following:
``
This was a bug perl-POSIX. Fixed in perl-5.36.1-497.fc39.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Crypt-URandom/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Crypt-URandom] PR #1: Test CI with 0.36 code

2023-05-15 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Crypt-URandom` that 
you are following:
``
Test CI with 0.36 code
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Crypt-URandom/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Net-Amazon-S3] PR #2: Backport patch to make mutlipart uploads work

2023-03-23 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-Net-Amazon-S3` that you
are following.

Closed pull-request:

``
Backport patch to make mutlipart uploads work
``

https://src.fedoraproject.org/rpms/perl-Net-Amazon-S3/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-Net-Amazon-S3] PR #2: Backport patch to make mutlipart uploads work

2023-03-23 Thread Petr Pisar

ppisar commented on the pull-request: `Backport patch to make mutlipart uploads 
work` that you are following:
``
Thanks for the patch. I slightly reworded the changes in spec file and applied 
to Fedora 39–36 and and EPEL 9.

I looked at EPEL 7 and there is Net-Amazon-S3-0.89 which is much different from 
0.911: It has put_part() method which probably carries the two default 
arguments acl_short and copy_source using same-named roles of 
Net::Amazon::S3::Request::PutPart class. Those roles could be removed from the 
class. Regarding the is_xml_content(), the only similar check for XML content 
type is in _send_request().

Because I don't know anything about S3 and I don't have any account at Amazon 
to test it, I don't feel qualified to backport the patch to Net-Amazon-S3-0.89 
in EPEL87 So I'm going to skip EPEL7. If you provide a tested patch, I'll be 
happy to apply it.

EPEL 7 was not updated to the latest Net-Amazon-S3 because 0.90 removed a 
documentation and 0.92 brought significant changes. There were also problems 
with tests which already in 0.89 required changes to work with other EPEL-7 
packages. So unless somebody indicates that 0.89 does not work at all with 
current S3 servers, I'm hesitant to rebase it to the latest upstream version.

``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Net-Amazon-S3/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/biber] PR #3: Add an integration test with BibLaTeX

2022-09-20 Thread Petr Pisar

ppisar commented on the pull-request: `Add an integration test with BibLaTeX` 
that you are following:
``
A surprise! I did not expect anybody to merge it. I only wanted to see whether 
the new test passes before I merge it. Nevertheless, it passed and it's merged 
now. Exactly what I would do. I only wonder that somebody follows this package.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/biber/pull-request/3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/biber] PR #3: Add an integration test with BibLaTeX

2022-09-20 Thread Petr Pisar

ppisar opened a new pull-request against the project: `biber` that you are 
following:
``
Add an integration test with BibLaTeX
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/biber/pull-request/3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[rpms/perl-CPAN-FindDependencies] PR #2: Debug gating

2022-06-02 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-CPAN-FindDependencies` that you
are following.

Closed pull-request:

``
Debug gating
``

https://src.fedoraproject.org/rpms/perl-CPAN-FindDependencies/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-CPAN-FindDependencies] PR #2: Debug gating

2022-06-02 Thread Petr Pisar

ppisar commented on the pull-request: `Debug gating` that you are following:
``
Applied to rawhide.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-CPAN-FindDependencies/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-CPAN-FindDependencies] PR #2: Debug gating

2022-05-27 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-CPAN-FindDependencies` that you are following:
``
Debug gating
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-CPAN-FindDependencies/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-HTTP-Daemon] PR #13: Remove dependency to Module::Build::Tiny (patched by patch0)

2022-04-25 Thread Petr Pisar

ppisar commented on the pull-request: `Remove dependency to Module::Build::Tiny 
(patched by patch0)` that you are following:
``
Good catch. One writes so many patches to remove the unwanted dependencies and 
then he forgets to remove a declaration of the dependency.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-HTTP-Daemon/pull-request/13
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dumbbench] PR #2: Add gating

2022-04-21 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-Dumbbench` that you
are following.

Closed pull-request:

``
Add gating
``

https://src.fedoraproject.org/rpms/perl-Dumbbench/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dumbbench] PR #2: Add gating

2022-04-21 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Dumbbench` that you 
are following:
``
Add gating
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Dumbbench/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Review Request: perl-Alien-libmaxminddb and perl-IP-Geolocation-MMDB

2022-04-07 Thread Petr Pisar
V Thu, Apr 07, 2022 at 02:40:42PM +0200, Andreas Vögele napsal(a):
> I've created review requests for two of my Perl distributions:
> 
> * https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2072968
> Alien::libmaxminddb provides the C library libmaxminddb to other Perl
> modules.
> 
> * https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2072972
> IP::Geolocation::MMDB reads MaxMind DB files and maps IP addresses to
> location information such as country and city names. The module is an
> alternative to the deprecated MaxMind::DB::Reader module.
> 
> These are my first Fedora packages. I am the upstream author of both
> modules. I am looking for a sponsor.
> 
Great. I hope some of the Perl maintainers will help you with the review.
Unfortunately, I believe that none of them have a permission to sponsor new
packagers. Your packages can be used for the sponsoring, but you will need to
find someone else who can do sponsoring. A list of sponsors should be visible
in Fedora Account system, under sponsors section of "packager" group
.

> There are broken links at the bottom of
> https://fedoraproject.org/wiki/Packaging:Perl?rd=Packaging/Perl to the
> "Fedora Perl SIG mailing list" with uppercase "Perl-devel". Can somebody
> with editing permissions fix these links?
> 
Thanks for the report. The Wiki page is obsolete and should have been
redirected to a new location
. I filed
a request to people permitted to edit the Wiki page to do it
.

> I've created my requests via the review form
> https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Fedora=fedora-review.
> Is there a keyword for initial CCs that can be added to this form?
>
I think an address of this mailing list can be added to CC of a particular
review.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-HTTP-Daemon] PR #9: Fix cycle dependencies

2022-03-22 Thread Petr Pisar

ppisar commented on the pull-request: `Fix cycle dependencies` that you are 
following:
``
Better. The best would be move "%end" after "# CPAN::Meta::Prereqs not helpful".
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-HTTP-Daemon/pull-request/9
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-HTTP-Daemon] PR #9: Fix cycle dependencies

2022-03-22 Thread Petr Pisar

ppisar commented on the pull-request: `Fix cycle dependencies` that you are 
following:
``
It indeed fix the problem. Just it would be stylistically better to move the 
block down to an already existing "Optional tests" comment:


# Tests only:
BuildRequires:  perl(Config)
BuildRequires:  perl(File::Spec)
BuildRequires:  perl(HTTP::Tiny) >= 0.042
BuildRequires:  perl(LWP::RobotUA)
BuildRequires:  perl(LWP::UserAgent)
BuildRequires:  perl(Module::Metadata)
BuildRequires:  perl(Test)
BuildRequires:  perl(Test::More) >= 0.98
BuildRequires:  perl(Test::Needs)
BuildRequires:  perl(URI)
# Optional tests: ←
# CPAN::Meta not helpful
# CPAN::Meta::Prereqs not helpful

``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-HTTP-Daemon/pull-request/9
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Alien-ROOT] PR #1: Tests

2021-09-14 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Alien-ROOT` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Alien-ROOT/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Alien-ROOT] PR #1: Tests

2021-09-14 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Alien-ROOT` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Alien-ROOT/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Coro-Multicore] PR #1: Tests

2021-08-04 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Coro-Multicore` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Coro-Multicore/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Coro-Multicore] PR #1: Tests

2021-08-03 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Coro-Multicore` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Coro-Multicore/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Log-Report] PR #1: Tests

2021-07-19 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Log-Report` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Log-Report/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Log-Report] PR #1: Tests

2021-07-19 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Log-Report` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Log-Report/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-DateTimeX-Easy] PR #1: Tests

2021-07-15 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-DateTimeX-Easy` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-DateTimeX-Easy/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-DateTimeX-Easy] PR #1: Tests

2021-07-15 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-DateTimeX-Easy` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-DateTimeX-Easy/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dist-Zilla-Plugin-Git] PR #1: Tests

2021-07-12 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Dist-Zilla-Plugin-Git` 
that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Dist-Zilla-Plugin-Git/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dist-Zilla-Plugin-Git] PR #1: Tests

2021-07-12 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Dist-Zilla-Plugin-Git` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Dist-Zilla-Plugin-Git/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-POE-Component-IRC] PR #2: Remove obsolete require for Socket6

2021-07-08 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-POE-Component-IRC` that 
you are following.

Merged pull-request:

``
Remove obsolete require for Socket6
``

https://src.fedoraproject.org/rpms/perl-POE-Component-IRC/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Path-Tiny] PR #1: Remove runtime depencendy for Digest::MD5

2021-06-24 Thread Petr Pisar

ppisar commented on the pull-request: `Remove runtime depencendy for 
Digest::MD5` that you are following:
``
I also recommend moving "BuildRequires:  perl(Digest::MD5)" from "Module 
Runtime" to "Test Suite" section in the spec file. In the end, that's the 
reason for the explicit "use Digest:MD5" at t/digest.t:11.
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Path-Tiny/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-XML-Hash-LX] PR #1: Tests

2021-06-23 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-XML-Hash-LX` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-XML-Hash-LX/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-XML-Hash-LX] PR #1: Tests

2021-06-23 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-XML-Hash-LX` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-XML-Hash-LX/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Config-INI-Reader-Ordered] PR #1: Tests

2021-06-21 Thread Petr Pisar

ppisar merged a pull-request against the project: 
`perl-Config-INI-Reader-Ordered` that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Config-INI-Reader-Ordered/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Config-INI-Reader-Ordered] PR #1: Tests

2021-06-21 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Config-INI-Reader-Ordered` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Config-INI-Reader-Ordered/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dist-Zilla-Plugin-PodWeaver] PR #1: Tests

2021-06-21 Thread Petr Pisar

ppisar merged a pull-request against the project: 
`perl-Dist-Zilla-Plugin-PodWeaver` that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Dist-Zilla-Plugin-PodWeaver/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Dist-Zilla-Plugin-PodWeaver] PR #1: Tests

2021-06-21 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Dist-Zilla-Plugin-PodWeaver` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Dist-Zilla-Plugin-PodWeaver/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Alien-SDL] PR #1: Tests

2021-06-10 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Alien-SDL` that you are 
following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Alien-SDL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Alien-SDL] PR #1: Tests

2021-06-10 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Alien-SDL` that you 
are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Alien-SDL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-POE-Component-IRC] PR #1: Tests

2021-06-07 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-POE-Component-IRC` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-POE-Component-IRC/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-POE-Component-IRC] PR #1: Tests

2021-06-07 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-POE-Component-IRC` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-POE-Component-IRC/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-DateTime-Format-Flexible] PR #1: Tests

2021-05-27 Thread Petr Pisar

ppisar merged a pull-request against the project: 
`perl-DateTime-Format-Flexible` that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-DateTime-Format-Flexible/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-DateTime-Format-Flexible] PR #1: Tests

2021-05-27 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-DateTime-Format-Flexible` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-DateTime-Format-Flexible/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Perl 5.34 upgrade

2021-05-26 Thread Petr Pisar
V Wed, May 26, 2021 at 08:52:19AM +0200, Jitka Plesnikova napsal(a):
> On 21/05/2021 07:24, Jitka Plesnikova - Gmail wrote:
> > Hello,
> >
> > Perl 5.34 was released on May 20 2021 and Perl 5.34 change was approved
> > by FESCo [1].
> >
> > I have required `f35-perl' build-root for this purpose [2] and it was
> > created.
> >
> > I will start the rebuild on Friday morning and you can be notified via mail
> > about commits/builds in next days.
> >
> > Please do not build anything into `f35-perl'. Boot-strapping core modules
> > is very peculiar. I also track all changes. You can do your upgrades into
> > rawhide freely in parallel.
> >
> > You can check status on Perl 5.34 change page [3]
> >
> > Regards,
> > Jitka Plesnikova
> >
> > [1] https://pagure.io/fesco/issue/2609
> > [2] https://pagure.io/releng/issue/10119
> > [3] https://fedoraproject.org/wiki/Changes/perl5.34#Current_status
> I have successfully built all packages except 16 of them. The f35-perl tag
> was merged back into f35 tag [1].
> 
> Perl 5.34.0 is available in Fedora 35. You can look at final lists of
> results [2]
> 
> I rebuilt all updated packages with new Perl.
> 
Thanks. That was fast.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-FFI-CheckLib] PR #1: Tests

2021-05-19 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-FFI-CheckLib` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-FFI-CheckLib/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-FFI-CheckLib] PR #1: Tests

2021-05-19 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-FFI-CheckLib` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-FFI-CheckLib/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/biber] PR #2: Tests

2021-05-18 Thread Petr Pisar

ppisar merged a pull-request against the project: `biber` that you are 
following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/biber/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/biber] PR #2: Tests

2021-05-18 Thread Petr Pisar

ppisar opened a new pull-request against the project: `biber` that you are 
following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/biber/pull-request/2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Mango] PR #1: Tests

2021-05-10 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Mango` that you are 
following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Mango/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Mango] PR #1: Tests

2021-05-10 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Mango` that you are 
following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Mango/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Pod-Weaver] PR #1: Tests

2021-04-19 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Pod-Weaver` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Pod-Weaver/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Pod-Weaver] PR #1: Tests

2021-04-19 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Pod-Weaver` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Pod-Weaver/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Crypt-OpenSSL-ECDSA] PR #1: Tests

2021-04-14 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Crypt-OpenSSL-ECDSA` 
that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Crypt-OpenSSL-ECDSA/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Crypt-OpenSSL-ECDSA] PR #1: Tests

2021-04-14 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Crypt-OpenSSL-ECDSA` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Crypt-OpenSSL-ECDSA/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Log-Agent] PR #1: Tests

2021-04-12 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Log-Agent` that you are 
following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Log-Agent/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Log-Agent] PR #1: Tests

2021-04-12 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Log-Agent` that you 
are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Log-Agent/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Retiring from Perl maintenance

2021-04-12 Thread Petr Pisar
V Sun, Apr 11, 2021 at 04:04:19PM +0200, Emmanuel Seyman napsal(a):
> I will gladly take ownership of the following:
> 
> * perl-CGI-FastTemplate
> * perl-CGI-FormBuilder
> * perl-Dancer-Session-Cookie
> * perl-HTML-Escape
> * perl-HTML-FormatExternal
> * perl-HTML-FormFu-Element-reCAPTCHA
> * perl-HTML-FormFu-MultiForm
> * perl-HTML-HTML5-Entities
> * perl-HTML-HTML5-Parser
> * perl-HTML-HTML5-Sanity
> * perl-HTML-HTML5-Writer
> * perl-MooseX-ArrayRef
> * perl-MooseX-AttributeShortcuts
> * perl-MooseX-CoercePerAttribute
> * perl-MooseX-MarkAsMethods
> * perl-MooseX-Meta-TypeConstraint-Mooish
> * perl-MooseX-TraitFor-Meta-Class-BetterAnonClassNames
> * perl-MooseX-Types-DateTime-MoreCoercions
> * perl-MooseX-Util
> * perl-MooX-Struct
> * perl-MouseX-Foreign
> 
Moved.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Retiring from Perl maintenance

2021-04-12 Thread Petr Pisar
V Sun, Apr 11, 2021 at 11:20:52AM +0100, Paul Howarth napsal(a):
> I'm happy to take the following:
> 
> perl-Function-Parameters
> perl-Math-Random-MT-Auto
> perl-Object-InsideOut
> perl-Perl-Critic-Deprecated
> perl-Perl-Critic-Lax
> perl-Perl-Critic-Pulp
> perl-PPIx-QuoteLike
> perl-Sereal
> perl-Sereal-Decoder
> perl-Sereal-Encoder
> perl-Test-UseAllModules
> 
Tranferred. You should be warned that Sereal (optionally?) requires miniz
which sufferes from a security issue which upstream is not willing to
address (bug #1597487). It's a pitty that Sereal, which was designed to
replace unsafe Storable, is also not safe for this reason.

-- Petr



signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Retiring from Perl maintenance

2021-04-09 Thread Petr Pisar
V Tue, Apr 06, 2021 at 12:21:46PM +0200, Petr Pisar napsal(a):
> I found a different role in Red Hat which is incompatible with maintaining
> hundreds of packages. As a result, I will reassign my packages with a Red
> Hat's interrest to Michal Spacek (mspacek) who replaces me at Red Hat.

I've just given 88 packages and 259 admin roles to mspacek. I wish him happy
days with their maintenance.

> The rest of my packages will be orphaned and available for anyone to take.
> 
The rest counts for 526 packages. Those are Fedora Perl packages I'm the
owner. The list is attached for your reference.

I will retain them for some time to see how large work load they will
generate.  According to a sample probe, an average year of my last commit to
them is 2016.  If the workload will be larger than negligable, I will orphan
them and post a list on Fedora devel mailing list.

Nevertheless, if you are interested to any of them, don't hesitate and contact
me and I will reassign them to you.

-- Petr

mod_perl
perl-Acme-Alien-DontPanic
perl-Alien-Base-ModuleBuild
perl-Alien-Build
perl-Alien-cmake3
perl-Alien-FFI
perl-Alien-PCRE2
perl-Alien-pkgconf
perl-Alien-ProtoBuf
perl-Alien-ROOT
perl-Alien-ZMQ
perl-AnyEvent-CacheDNS
perl-App-FatPacker
perl-App-grindperl
perl-App-mymeta_requires
perl-App-p
perl-App-Rad
perl-Array-RefElem
perl-asa
perl-Attean
perl-AtteanX-Compatibility-Trine
perl-Authen-OATH
perl-Authen-SASL-SASLprep
perl-Authen-SCRAM
perl-autobox-Junctions
perl-bareword-filehandles
perl-Beanstalk-Client
perl-Bencode
perl-Best
perl-B-Hooks-OP-Check-EntersubForCV
perl-BibTeX-Parser
perl-Bisect-Perl-UsingGit
perl-Boost-Geometry-Utils
perl-Bot-BasicBot
perl-BSON
perl-Business-CreditCard
perl-Business-Stripe
perl-Bytes-Random-Secure
perl-Captcha-reCAPTCHA
perl-CBOR-XS
perl-CDDB_get
perl-CGI-FastTemplate
perl-CGI-FormBuilder
perl-Class-AutoClass
perl-Class-Factory
perl-Class-Iterator
perl-Class-Measure
perl-Class-Prototyped
perl-Class-Refresh
perl-Clownfish
perl-Clownfish-CFC
perl-Color-Library
perl-Config-ApacheFormat
perl-Config-INI-Reader-Multiline
perl-Config-INI-Reader-Ordered
perl-Config-MVP-Slicer
perl-Config-ZOMG
perl-constant-defer
perl-constant-tiny
perl-Convert-Age
perl-Coro-Multicore
perl-CPAN-Plugin-Sysdeps
perl-CPAN-Releases-Latest
perl-CPAN-02Packages-Search
perl-criticism
perl-Crypt-GCrypt
perl-Crypt-OpenSSL-EC
perl-Crypt-OpenSSL-ECDSA
perl-Crypt-Random-Seed
perl-Crypt-RC4
perl-Crypt-URandom
perl-CryptX
perl-Cwd-utf8
perl-Dancer-Session-Cookie
perl-Data-Float
perl-Data-IEEE754
perl-Data-Rmap
perl-Date-Handler
perl-Date-HolidayParser
perl-DateTime-Format-Atom
perl-DateTime-Format-DateManip
perl-DateTime-Format-Duration
perl-DateTime-Format-Flexible
perl-DateTimeX-Easy
perl-DBD-Mock
perl-DBIx-Admin-TableInfo
perl-DepGen-Perl-Tests
perl-Devel-ArgNames
perl-Devel-Autoflush
perl-Devel-Comments
perl-Devel-DProf
perl-Devel-Gladiator
perl-Devel-OverrideGlobalRequire
perl-Devel-Pragma
perl-Devel-Profiler
perl-Devel-REPL
perl-Devel-SimpleTrace
perl-Dist-Milla
perl-Dist-Zilla-Config-Slicer
perl-Dist-Zilla-Plugin-Config-Git
perl-Dist-Zilla-Plugin-CopyFilesFromBuild
perl-Dist-Zilla-Plugin-CopyFilesFromRelease
perl-Dist-Zilla-Plugin-Git
perl-Dist-Zilla-Plugin-Git-Contributors
perl-Dist-Zilla-Plugin-CheckChangesHasContent
perl-Dist-Zilla-Plugin-LicenseFromModule
perl-Dist-Zilla-Plugin-ModuleBuildTiny
perl-Dist-Zilla-Plugin-NameFromDirectory
perl-Dist-Zilla-Plugin-PodWeaver
perl-Dist-Zilla-Plugin-Prereqs-FromCPANfile
perl-Dist-Zilla-Plugin-ReadmeAnyFromPod
perl-Dist-Zilla-Plugin-ReadmeFromPod
perl-Dist-Zilla-Plugin-ReversionOnRelease
perl-Dist-Zilla-Plugins-CJM
perl-Dist-Zilla-Plugin-StaticInstall
perl-Dist-Zilla-Plugin-VersionFromMainModule
perl-Dist-Zilla-Role-FileWatcher
perl-Dist-Zilla-Role-ModuleMetadata
perl-Dist-Zilla-Role-PluginBundle-PluginRemover
perl-Dumbbench
perl-Encode-ISO2022
perl-Encode-JISX0213
perl-Encode-JP-Mobile
perl-Env-ShellWords
perl-Event-RPC
perl-ExtUtils-TBone
perl-Fedora-Rebuild
perl-FFI-CheckLib
perl-FFI-Platypus
perl-File-Find-Iterator
perl-File-Find-utf8
perl-File-PathList
perl-Filesys-Df
perl-Filter-Encoding
perl-forks
perl-Function-Parameters
perl-Future-AsyncAwait
perl-Gearman
perl-Gearman-Client-Async
perl-Gearman-Server
perl-Geo-Distance
perl-Geo-IPfree
perl-GeoIP2
perl-Geo-METAR
perl-Geo-Point
perl-Geo-Proj4
perl-Getopt-Lucid
perl-GIS-Distance
perl-GIS-Distance-Fast
perl-Git-Wrapper
perl-Gnome2
perl-Gnome2-Canvas
perl-Gnome2-GConf
perl-Gnome2-Vte
perl-GooCanvas2
perl-goto-file
perl-Graphics-TIFF
perl-grpc-xs
perl-GStreamer1
perl-Gtk2-AppIndicator
perl-Gtk2-Ex-CalendarButton
perl-Gtk2-Ex-Carp
perl-Gtk2-Ex-FormFactory
perl-Gtk2-Ex-PodViewer
perl-Gtk2-Ex-Utils
perl-Gtk2-GladeXML
perl-Gtk2-Notify
perl-Gtk2-Sexy
perl-Gtk2-Spell
perl-Gtk2-TrayIcon
perl-Gtk3-ImageView
perl-Gtk3-SimpleList
perl-Ham-Reference-QRZ
perl-Hash-AutoHash
perl-Hash-AutoHash-Args
perl-HTML-Escape
perl-HTML-FormatExternal
perl-HTML-FormFu-Element-reCAPTCHA
perl-HTML-FormFu-MultiForm
perl-HTML-HTML5-Entities

[rpms/perl-Captcha-reCAPTCHA] PR #1: Tests

2021-04-07 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Captcha-reCAPTCHA` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Captcha-reCAPTCHA/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Captcha-reCAPTCHA] PR #1: Tests

2021-04-07 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Captcha-reCAPTCHA` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Captcha-reCAPTCHA/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Retiring from Perl maintenance

2021-04-06 Thread Petr Pisar
Hello,

here is as a brief announcement with a certain impact on Perl packaging in
Fedora:

I found a different role in Red Hat which is incompatible with maintaining
hundreds of packages. As a result, I will reassign my packages with a Red
Hat's interrest to Michal Spacek (mspacek) who replaces me at Red Hat. The
rest of my packages will be orphaned and available for anyone to take.

I will transfer the packages once I figure out the exact set of them, and how
to do it in Pagure without destroying my already worn-out mouse. I will also
send a list of the packages here.

It was my pleasure to cooperate with all of you over the last decade.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-PPIx-Regexp] PR #1: Tests

2021-03-26 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-PPIx-Regexp` that you
are following.

Closed pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-PPIx-Regexp/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-PPIx-Regexp] PR #1: Tests

2021-03-26 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-PPIx-Regexp` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-PPIx-Regexp/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Session-Storage-Secure] PR #1: Tests

2021-03-24 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Session-Storage-Secure` 
that you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Session-Storage-Secure/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Net-Amazon-S3] PR #1: Tests

2021-03-24 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Net-Amazon-S3` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Net-Amazon-S3/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Session-Storage-Secure] PR #1: Tests

2021-03-24 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Session-Storage-Secure` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Session-Storage-Secure/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Net-Amazon-S3] PR #1: Tests

2021-03-24 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Net-Amazon-S3` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Net-Amazon-S3/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Template-Alloy] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Template-Alloy` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Template-Alloy/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Template-Alloy] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Template-Alloy` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Template-Alloy/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Perl-Metrics-Simple] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-Perl-Metrics-Simple` that you
are following.

Closed pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Perl-Metrics-Simple/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Perl-Metrics-Simple] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-Perl-Metrics-Simple` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Perl-Metrics-Simple/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-PkgConfig-LibPkgConf] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-PkgConfig-LibPkgConf` that you
are following.

Closed pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-PkgConfig-LibPkgConf/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-PkgConfig-LibPkgConf] PR #1: Tests

2021-03-23 Thread Petr Pisar

ppisar opened a new pull-request against the project: 
`perl-PkgConfig-LibPkgConf` that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-PkgConfig-LibPkgConf/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Net-HTTP] PR #1: Tests

2021-03-19 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Net-HTTP` that you are 
following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Net-HTTP/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Net-HTTP] PR #1: Tests

2021-03-19 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Net-HTTP` that you 
are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Net-HTTP/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-re-engine-RE2] PR #1: Tests

2021-03-12 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-re-engine-RE2` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-re-engine-RE2/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-re-engine-RE2] PR #1: Tests

2021-03-12 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-re-engine-RE2` that 
you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-re-engine-RE2/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Orphaning perl-re-engine-RE2

2021-03-12 Thread Petr Pisar
V Fri, Mar 12, 2021 at 08:34:30AM +0100, Emmanuel Seyman napsal(a):
> I've just orphaned the perl-re-engine-RE2 package. If someone wishes to
> take it up, it's yours.
> 
I took it.

-- Petr


signature.asc
Description: PGP signature
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Test-PostgreSQL] PR #1: Tests

2021-03-12 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-Test-PostgreSQL` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-Test-PostgreSQL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-Test-PostgreSQL] PR #1: Tests

2021-03-12 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-Test-PostgreSQL` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-Test-PostgreSQL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-IPTables-libiptc] PR #1: Tests

2021-03-10 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-IPTables-libiptc` that 
you are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-IPTables-libiptc/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-IPTables-libiptc] PR #1: Tests

2021-03-10 Thread Petr Pisar

ppisar opened a new pull-request against the project: `perl-IPTables-libiptc` 
that you are following:
``
Tests
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-IPTables-libiptc/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-libwww-perl] PR #1: Tests

2021-03-09 Thread Petr Pisar

ppisar merged a pull-request against the project: `perl-libwww-perl` that you 
are following.

Merged pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-libwww-perl/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[rpms/perl-App-cpanminus] PR #1: Tests

2021-03-09 Thread Petr Pisar

ppisar closed without merging a pull-request against the project: 
`perl-App-cpanminus` that you
are following.

Closed pull-request:

``
Tests
``

https://src.fedoraproject.org/rpms/perl-App-cpanminus/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


  1   2   3   4   5   6   7   8   9   10   >