[Bug 1855963] bug in perl prevents bugzilla checksetup.pl script from working

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963



--- Comment #2 from Sjoerd Mullender  ---
I can't provide a reproducer.  I haven't done any serious Perl programming
since about 1988 and have no intention of starting now.
A simple google search on utf8::SWASHNEW shows quite a few instances of this
problem, but they all involve checksetup.pl in bugzilla.


-- 
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 1856074] perl-Log-Handler-0.89 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856074

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   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 1855963] bug in perl prevents bugzilla checksetup.pl script from working

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED



--- Comment #3 from Petr Pisar  ---
I managed to minimize it; main.pl:

#!/usr/bin/perl
BEGIN {
require Safe;
Safe->new;
}
tr/\x{100}//;

$ perl main.pl 
Undefined subroutine utf8::SWASHNEW called at main.pl line 6.

It happens when a tr/// with a 255-above code point is compiled after creating
a Safe object. (Bugzilla checksetup.pl has "new Safe" in
Bugzilla::Install::Util::_get_string_from_file() and tr/// in Bugzilla::Util.)

In my opinion it's an unintended effect of the Safe implementation. Safe should
affect only a code ($unsafe_code) compiled (reval()) inside a Safe object
($compartment) as read in the documentation:

  use Safe;
  $compartment = new Safe;
  $compartment->permit(qw(time sort :browse));
  $result = $compartment->reval($unsafe_code);


-- 
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 1855963] bug in perl prevents bugzilla checksetup.pl script from working

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963

Petr Pisar  changed:

   What|Removed |Added

   Doc Type|--- |If docs needed, set a value



--- Comment #1 from Petr Pisar  ---
The Perl bug is still open and the fix was not merged into Perl sources.
Bugzilla bug is closed.
Can you please provide a minimal Perl reproducer that does not involve
installing Bugzilla?


-- 
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 1855963] bug in perl prevents bugzilla checksetup.pl script from working

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963



--- Comment #4 from Petr Pisar  ---
perl-libs-5.30.3-452.fc31 is affected.
perl-libs-5.32.0-456.fc33 is not affected, because utf8_heavy.pl whose loading
is prevented by Safe was removed in perl 5.31.6 and is not loaded anymore.
That's probably the reason why Perl upstream has never fixed 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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-5.30.3-455.fc32




-- 
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 1856319] New: perl-Compress-Raw-Bzip2-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856319

Bug ID: 1856319
   Summary: perl-Compress-Raw-Bzip2-2.094 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Compress-Raw-Bzip2
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, ka...@ucw.cz, p...@city-fan.org,
perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 2.094
Current version/release in rawhide: 2.093-2.fc32
URL: http://search.cpan.org/dist/Compress-Raw-Bzip2/

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/2711/


-- 
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 1856320] perl-Compress-Raw-Zlib-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856320

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Compress-Raw-Zlib-2.09
   ||4-1.fc33
 Resolution|--- |RAWHIDE
Last Closed||2020-07-13 12:54:14




-- 
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 1856363] New: Upgrade perl-HTTP-Entity-Parser to 0.23

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856363

Bug ID: 1856363
   Summary: Upgrade perl-HTTP-Entity-Parser to 0.23
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-HTTP-Entity-Parser
  Assignee: rc040...@freenet.de
  Reporter: jples...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de
  Target Milestone: ---
Classification: Fedora



Latest Fedora delivers 0.22 version. Upstream released 0.23. 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 1856362] New: Upgrade perl-Hash-Merge to 0.301

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856362

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



Latest Fedora delivers 0.300 version. Upstream released 0.301. 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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963



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


-- 
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 1856367] New: Upgrade perl-Text-Template to 1.59

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856367

Bug ID: 1856367
   Summary: Upgrade perl-Text-Template to 1.59
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Text-Template
  Assignee: spo...@gmail.com
  Reporter: jples...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: jose.p.oliveira@gmail.com,
perl-devel@lists.fedoraproject.org, spo...@gmail.com
  Target Milestone: ---
Classification: Fedora



Latest Fedora delivers 1.58 version. Upstream released 1.59. 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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-59f945f4be has been submitted as an update to Fedora 32.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-59f945f4be


-- 
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 1856319] perl-Compress-Raw-Bzip2-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856319

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   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 1856320] perl-Compress-Raw-Zlib-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856320

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   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 1856074] perl-Log-Handler-0.89 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856074

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Log-Handler-0.90-1.fc3
   ||3
 Resolution|--- |RAWHIDE
Last Closed||2020-07-13 12:25:40




-- 
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 1850793] Add perl-Time-Duration-Parse to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850793



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2020-93edf0c8b8 has been submitted as an update to Fedora EPEL 8.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-93edf0c8b8


-- 
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 1856359] New: Upgrade perl-DBIx-SearchBuilder to 1.68

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856359

Bug ID: 1856359
   Summary: Upgrade perl-DBIx-SearchBuilder to 1.68
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-DBIx-SearchBuilder
  Assignee: rc040...@freenet.de
  Reporter: jples...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: lxt...@gmail.com, perl-devel@lists.fedoraproject.org,
rc040...@freenet.de
  Target Milestone: ---
Classification: Fedora



Latest Fedora delivers 1.67 version. Upstream released 1.68. 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 1856320] New: perl-Compress-Raw-Zlib-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856320

Bug ID: 1856320
   Summary: perl-Compress-Raw-Zlib-2.094 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-Compress-Raw-Zlib
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, ka...@ucw.cz, p...@city-fan.org,
perl-devel@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 2.094
Current version/release in rawhide: 2.093-2.fc32
URL: http://search.cpan.org/dist/Compress-Raw-Zlib/

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/2712/


-- 
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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963

Petr Pisar  changed:

   What|Removed |Added

   Assignee|jples...@redhat.com |ppi...@redhat.com
Summary|bug in perl prevents|Safe in Perl 5.30 does not
   |bugzilla checksetup.pl  |preload utf8_heavy.pl
   |script from working |preventing from running
   ||Bugzilla checksetup.pl
   ||script: Undefined
   ||subroutine utf8::SWASHNEW




-- 
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 1856319] perl-Compress-Raw-Bzip2-2.094 is available

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1856319

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Compress-Raw-Bzip2-2.0
   ||94-1.fc33
 Resolution|--- |RAWHIDE
Last Closed||2020-07-13 12:39:40




-- 
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 1850793] Add perl-Time-Duration-Parse to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850793

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Time-Duration-Parse-0.
   ||15-5.el8
   ||perl-Time-Duration-Parse-0.
   ||15-5.epel8.playground




-- 
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 1852414] perl-Email-MIME-ContentType 1.024.1 appears to break bugzilla

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1852414



--- Comment #3 from Frank Ch. Eigler  ---
(In reply to Paul Howarth from comment #2)
> Looks like Bug #1855962, which would be a bugzilla bug rather than one in 
> perl-Email-MIME-ContentType.

Arguably, infrastructure code should not add new assertions ("croak") that
result in program crashes for API usage that was formerly acceptable.  Perhaps
consider turning that into a warning, if the Email-MIME code can tolerate the
previous usage?


-- 
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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963



--- Comment #8 from Fedora Update System  ---
FEDORA-2020-54c4dc151a has been pushed to the Fedora 31 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-54c4dc151a`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-54c4dc151a

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 1855963] Safe in Perl 5.30 does not preload utf8_heavy.pl preventing from running Bugzilla checksetup.pl script: Undefined subroutine utf8::SWASHNEW

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1855963

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #7 from Fedora Update System  ---
FEDORA-2020-59f945f4be has been pushed to the Fedora 32 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-59f945f4be`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-59f945f4be

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 1850792] Add perl-MooseX-Types-DateTime to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850792

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2020-07-14 01:29:26



--- Comment #5 from Fedora Update System  ---
FEDORA-EPEL-2020-36ca843a52 has been pushed to the Fedora EPEL 8 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 1850971] Add perl-Module-Util to EPEL8

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850971

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2020-07-14 01:29:19



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2020-5edd6c3d7c has been pushed to the Fedora EPEL 8 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 1850795] Add perl-DateTimeX-Easy to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850795
Bug 1850795 depends on bug 1850915, which changed state.

Bug 1850915 Summary: Add perl-DateTime-Format-Natural to EPEL8
https://bugzilla.redhat.com/show_bug.cgi?id=1850915

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA




-- 
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 1850915] Add perl-DateTime-Format-Natural to EPEL8

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850915

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2020-07-14 01:29:24



--- Comment #5 from Fedora Update System  ---
FEDORA-EPEL-2020-529c8da501 has been pushed to the Fedora EPEL 8 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 1850915] Add perl-DateTime-Format-Natural to EPEL8

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850915
Bug 1850915 depends on bug 1850971, which changed state.

Bug 1850971 Summary: Add perl-Module-Util to EPEL8
https://bugzilla.redhat.com/show_bug.cgi?id=1850971

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA




-- 
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 1850776] Add perl-MooseX-Types-DateTime-MoreCoercions to EPEL8

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850776
Bug 1850776 depends on bug 1850792, which changed state.

Bug 1850792 Summary: Add perl-MooseX-Types-DateTime to EPEL8 / co-maintainer 
request
https://bugzilla.redhat.com/show_bug.cgi?id=1850792

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA




-- 
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 1850793] Add perl-Time-Duration-Parse to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850793

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2020-93edf0c8b8 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-93edf0c8b8

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 1850913] Add perl-DateTime-Format-Flexible to EPEL8

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850913

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2020-07-14 01:29:21



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2020-1a09a7141a has been pushed to the Fedora EPEL 8 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 1850795] Add perl-DateTimeX-Easy to EPEL8 / co-maintainer request

2020-07-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1850795
Bug 1850795 depends on bug 1850913, which changed state.

Bug 1850913 Summary: Add perl-DateTime-Format-Flexible to EPEL8
https://bugzilla.redhat.com/show_bug.cgi?id=1850913

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA




-- 
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