[Bug 1878987] New: Upgrade perl-Crypt-SMIME to 0.27

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878987

Bug ID: 1878987
   Summary: Upgrade perl-Crypt-SMIME to 0.27
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Crypt-SMIME
  Assignee: steve.tray...@cern.ch
  Reporter: jples...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
steve.tray...@cern.ch, xav...@bachelot.org
  Target Milestone: ---
Classification: Fedora



Latest Fedora delivers 0.26 version. Upstream released 0.27. When you have free
time, please upgrade it.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460



--- Comment #4 from Petr Pisar  ---
This could be triggered by a "Fix setting a non-blocking mode in
IO::Socket::UNIX" patch I applied from upstream to perl in Fedora ≥ 33.
Previously, setting a blocking mode for UNIX sockets in Perl was ignored. Now
it is respected.

The t/64_pending_events_destroyed.t test creates a UNIX stream server and
spawns a UNIX stream client. Both of them in a non-blocking mode. Then it
connects the client to the server, and then it lets the client to write
"foobar", and read any response three times, then it connects for the second
time and again does the write and read three times. The server checks that it
received "foobar", then sends some data and it repeats it 6 times. The clients
uses a plain Perl, the server uses the Event library. The client interleaves
few sleeps, the server performs everything as fast as possible.

I can see the test does not perform any other synchronization. Especially it
blindly reads and writes without checking for the success and without verifying
it read and wrote everything to be written or to be expected to read. I believe
that the non-blocking mode coalesces the adjacent messages and that triggers
two failures: The server reads all three "foobar" in one read, and reports the
unexpected value "foobarfoobarfoobar". Then the server blocks indefinitely,
because it waits for another 5 messages that will never arrive, because the
client finished.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879033] perl-XML-LibXML-2.0206 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879033

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-XML-LibXML-2.0206-1.fc
   ||34
 Resolution|--- |RAWHIDE
Last Closed||2020-09-15 10:11:36




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1878992] New: Upgrade perl-Test-MockModule to 0.174.0

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878992

Bug ID: 1878992
   Summary: Upgrade perl-Test-MockModule to 0.174.0
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Test-MockModule
  Assignee: spo...@gmail.com
  Reporter: jples...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, spo...@gmail.com
  Target Milestone: ---
Classification: Fedora



Latest Fedora delivers 0.173.0 version. Upstream released 0.174.0. When you
have free time, please upgrade it.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1874449] Upgrade perl-Type-Tiny to 1.010006

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1874449

Jitka Plesnikova  changed:

   What|Removed |Added

Summary|Upgrade perl-Type-Tiny to   |Upgrade perl-Type-Tiny to
   |1.010005|1.010006



--- Comment #1 from Jitka Plesnikova  ---
Latest Fedora delivers 1.010004 version. Upstream released 1.010006. When you
have free time, please upgrade it.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460



--- Comment #3 from Ondřej Lysoněk  ---
(In reply to Nicolas Chauvet (kwizart) from comment #2)
> Well, It seems like I'm assignee by miss-take on this package, 
> 
> Free free to maintain, rebuild anything, specially take-over the package.

Ok, thanks for the info!

You seem to be listed as the maintainer in Pagure, so if you're not interested
in maintaining the package, I believe you should orphan it.
https://fedoraproject.org/wiki/Orphaned_package_that_need_new_maintainers#Orphaning_Procedure


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879033] New: perl-XML-LibXML-2.0206 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879033

Bug ID: 1879033
   Summary: perl-XML-LibXML-2.0206 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-XML-LibXML
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: caillon+fedoraproj...@gmail.com, jples...@redhat.com,
ka...@ucw.cz, perl-devel@lists.fedoraproject.org,
rhug...@redhat.com, rstr...@redhat.com,
sandm...@redhat.com
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 2.0206
Current version/release in rawhide: 2.0205-3.fc33
URL: https://metacpan.org/release/XML-LibXML

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from anitya:
https://release-monitoring.org/project/3527/


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879033] perl-XML-LibXML-2.0206 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879033

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC|caillon+fedoraproject@gmail |
   |.com, ka...@ucw.cz, |
   |rhug...@redhat.com, |
   |rstr...@redhat.com, |
   |sandm...@redhat.com |
   Doc Type|--- |If docs needed, set a value




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1878992] Upgrade perl-Test-MockModule to 0.174.0

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878992

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED



--- Comment #1 from Fedora Update System  ---
FEDORA-2020-669342571e has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-669342571e


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1878992] Upgrade perl-Test-MockModule to 0.174.0

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878992

Paul Howarth  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||p...@city-fan.org
   Fixed In Version||perl-Test-MockModule-0.174.
   ||0-1.fc34
   Assignee|spo...@gmail.com|p...@city-fan.org




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Event-Lib-1.03-46.fc34




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
Link ID||CPAN 133340
   Assignee|kwiz...@gmail.com   |ppi...@redhat.com




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879100] New: Please build an EPEL8 build for perl-File-Find-Rule-Age

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879100

Bug ID: 1879100
   Summary: Please build an EPEL8 build for
perl-File-Find-Rule-Age
   Product: Fedora EPEL
   Version: epel8
Status: NEW
 Component: perl-File-Find-Rule-Age
  Assignee: ticot...@gmail.com
  Reporter: t.h.amund...@usit.uio.no
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ticot...@gmail.com
  Target Milestone: ---
Classification: Fedora



Please build an EPEL8 build for perl-File-Find-Rule-Age.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460

Petr Pisar  changed:

   What|Removed |Added

 CC||ppi...@redhat.com



--- Comment #5 from Petr Pisar  ---
I corrected reading to the expected sizes (6 and 2 bytes), added some debugging
and it's like I said. (CLIENT debugging is not serialized to SERVER debugging):

$ perl -Iblib/{lib,arch} t/64_pending_events_destroyed.t
1..6
# Running under perl version 5.032000 for linux
# Current time local: Tue Sep 15 13:09:52 2020
# Current time GMT:   Tue Sep 15 11:09:52 2020
# Using Test.pm version 1.31
CLIENT 1:1 wrote 6 B at t/64_pending_events_destroyed.t line 39.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 1:1 read  B at t/64_pending_events_destroyed.t line 41.
CLIENT 1:2 wrote 6 B at t/64_pending_events_destroyed.t line 39.
SERVER accepted. at t/64_pending_events_destroyed.t line 74.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 1:2 read  B at t/64_pending_events_destroyed.t line 41.
CLIENT 1:3 wrote 6 B at t/64_pending_events_destroyed.t line 39.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 1:3 read  B at t/64_pending_events_destroyed.t line 41.
Use of uninitialized value $ok in concatenation (.) or string at
t/64_pending_events_destroyed.t line 88.
SERVER  read 6 B at t/64_pending_events_destroyed.t line 88.
CLIENT 1 closed at t/64_pending_events_destroyed.t line 44.
ok 1
SERVER 1 wrote an error: Broken pipe at t/64_pending_events_destroyed.t line
109.
CLIENT 2:1 wrote 6 B at t/64_pending_events_destroyed.t line 39.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 2:1 read  B at t/64_pending_events_destroyed.t line 41.
CLIENT 2:2 wrote 6 B at t/64_pending_events_destroyed.t line 39.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 2:2 read  B at t/64_pending_events_destroyed.t line 41.
SERVER accepted. at t/64_pending_events_destroyed.t line 74.
CLIENT 2:3 wrote 6 B at t/64_pending_events_destroyed.t line 39.
Use of uninitialized value $read in concatenation (.) or string at
t/64_pending_events_destroyed.t line 41.
CLIENT 2:3 read  B at t/64_pending_events_destroyed.t line 41.
CLIENT 2 closed at t/64_pending_events_destroyed.t line 44.
SERVER 1 read 6 B at t/64_pending_events_destroyed.t line 88.
ok 2
SERVER 2 wrote an error: Broken pipe at t/64_pending_events_destroyed.t line
109.
^C

The client sends all data, reads nothing (because of non-blocking), and closes
the connection. Then server reads a response, attempts to write, but that fails
and the server in case of write failure does simply resets and waits for a new
connection. But client is programmed to perform two connections, while the
server expects 6 cycles.

I will try to patch the test to work under a condition of a smooth timing.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460



--- Comment #6 from Fedora Update System  ---
FEDORA-2020-492e6416b1 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-492e6416b1


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1878775] perl-SQL-Translator-1.62 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878775

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System  ---
FEDORA-2020-0c1f74b564 has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing
--advisory=FEDORA-2020-0c1f74b564`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-0c1f74b564

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876156] perl-Module-Starter-1.77 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876156

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-Module-Starter-1.77-1. |perl-Module-Starter-1.77-1.
   |fc34|fc34
   ||perl-Module-Starter-1.77-1.
   ||fc32
 Resolution|--- |ERRATA
Last Closed||2020-09-15 16:16:32



--- Comment #10 from Fedora Update System  ---
FEDORA-2020-867a507b12 has been pushed to the Fedora 32 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879217] New: perl-IO-Socket-IP-0.41 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879217

Bug ID: 1879217
   Summary: perl-IO-Socket-IP-0.41 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-IO-Socket-IP
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, n...@fedoraproject.org,
perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 0.41
Current version/release in rawhide: 0.39-458.fc33
URL: http://search.cpan.org/dist/IO-Socket-IP/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from anitya:
https://release-monitoring.org/project/2999/


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876124] perl-Log-Log4perl-1.52 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876124

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-Log-Log4perl-1.52-1.fc |perl-Log-Log4perl-1.52-1.fc
   |34  |34
   ||perl-Log-Log4perl-1.52-1.fc
   ||32
 Resolution|--- |ERRATA
Last Closed||2020-09-15 16:16:35



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-e6c820fbab has been pushed to the Fedora 32 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876273] perltidy-20200907 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876273

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perltidy-20200907-1.fc34|perltidy-20200907-1.fc34
   ||perltidy-20200907-1.fc32
 Resolution|--- |ERRATA
Last Closed||2020-09-15 16:16:29



--- Comment #6 from Fedora Update System  ---
FEDORA-2020-d686d9f25e has been pushed to the Fedora 32 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1870754] EPEL8 Branch Request: perl-Data-Dumper-Concise

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1870754

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2020-97732a2b90 has been pushed to the Fedora EPEL 8 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-97732a2b90

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1870746] EPEL8 Branch Request: perl-Test-TempDir

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1870746

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2020-97732a2b90 has been pushed to the Fedora EPEL 8 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-97732a2b90

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876160] perl-List-AllUtils-0.18 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876160

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-List-AllUtils-0.18-1.f |perl-List-AllUtils-0.18-1.f
   |c34 |c34
   |perl-List-AllUtils-0.18-1.f |perl-List-AllUtils-0.18-1.f
   |c32 |c32
   ||perl-List-AllUtils-0.18-1.f
   ||c31



--- Comment #9 from Fedora Update System  ---
FEDORA-2020-e7d27e09b4 has been pushed to the Fedora 31 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879188] New: perl-Search-Elasticsearch-7.30 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879188

Bug ID: 1879188
   Summary: perl-Search-Elasticsearch-7.30 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Search-Elasticsearch
  Keywords: FutureFeature, Triaged
  Assignee: emman...@seyman.fr
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: emman...@seyman.fr, perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 7.30
Current version/release in rawhide: 6.81-3.fc33
URL: http://search.cpan.org/dist/Search-Elasticsearch/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from anitya:
https://release-monitoring.org/project/10543/


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876460] perl-Event-Lib FTBFS in F33 and Rawhide

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876460

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #7 from Fedora Update System  ---
FEDORA-2020-492e6416b1 has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing
--advisory=FEDORA-2020-492e6416b1`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-492e6416b1

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1878992] Upgrade perl-Test-MockModule to 0.174.0

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1878992

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System  ---
FEDORA-2020-669342571e has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf upgrade --enablerepo=updates-testing
--advisory=FEDORA-2020-669342571e`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-669342571e

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876160] perl-List-AllUtils-0.18 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876160

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-List-AllUtils-0.18-1.f |perl-List-AllUtils-0.18-1.f
   |c34 |c34
   ||perl-List-AllUtils-0.18-1.f
   ||c32
 Resolution|--- |ERRATA
Last Closed||2020-09-15 16:16:33



--- Comment #8 from Fedora Update System  ---
FEDORA-2020-aafebc3e82 has been pushed to the Fedora 32 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1879289] New: perl-ExtUtils-Install-2.18 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1879289

Bug ID: 1879289
   Summary: perl-ExtUtils-Install-2.18 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-ExtUtils-Install
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 2.18
Current version/release in rawhide: 2.16-3.fc33
URL: http://search.cpan.org/dist/ExtUtils-Install/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from anitya:
https://release-monitoring.org/project/15262/


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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


[Bug 1876156] perl-Module-Starter-1.77 is available

2020-09-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876156

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-Module-Starter-1.77-1. |perl-Module-Starter-1.77-1.
   |fc34|fc34
   |perl-Module-Starter-1.77-1. |perl-Module-Starter-1.77-1.
   |fc32|fc32
   ||perl-Module-Starter-1.77-1.
   ||fc31



--- Comment #11 from Fedora Update System  ---
FEDORA-2020-84ea84a57f has been pushed to the Fedora 31 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
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