[Bug 1100595] New: perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595

Bug ID: 1100595
   Summary: perl-Net-DNS-0.75 -  not working properly
   Product: Fedora
   Version: 19
 Component: perl-Net-DNS
  Severity: medium
  Assignee: psab...@redhat.com
  Reporter: luk...@wsisiz.edu.pl
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, psab...@redhat.com



Description of problem:

perl-Net-DNS-0.75 - problem with resolver

Version-Release number of selected component (if applicable):


How reproducible:


Steps to Reproduce:
1. Upgrade to perl-Net-DNS-0.75
2. put several line nameserver to /etc/resolver.conf
3.

Actual results:

oceanic:/usr/share/doc/perl-Net-DNS-0.75/demo# perl mx wsisiz.edu.pl

time out

Expected results:

oceanic:/usr/share/doc/perl-Net-DNS-0.75/demo# perl mx wsisiz.edu.pl
0   dervish.wsisiz.edu.pl


Additional info:

Works correctly only with one resolver in /etc/resolver.conf

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=ZoI9aitj5K&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100595] perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595



--- Comment #1 from Lukasz Trabinski  ---
Please upgrade package to
http://www.cpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-0.75_1.tar.gz

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=YokdOh5Div&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100595] perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595

Petr Šabata  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
External Bug ID||CPAN 95596



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=l4D9PPsnpa&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1094442] perl-libwww-perl: incorrect handling of SSL certificate verification [fedora-all]

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094442



--- Comment #6 from Jan Pazdziora  ---
The patch used between -3 and -4 is

-$ssl_opts{SSL_verify_mode} = 0;
+if ( $Net::HTTPS::SSL_SOCKET_CLASS eq 'Net::SSL' ) {
+$ssl_opts{SSL_verifycn_scheme} = '';
+} else {
+$ssl_opts{SSL_verifycn_scheme} = 'none';
+}

Not sure what the intention was but with the 6.04-4 and website with
self-signed certificate like,

PERL_LWP_SSL_VERIFY_HOSTNAME=0 HEAD -Se https://www.pcwebshop.co.uk/ ; echo $?

is now broken:

HEAD https://www.pcwebshop.co.uk/
500 Can't connect to www.pcwebshop.co.uk:443
Content-Type: text/plain
Client-Date: Fri, 23 May 2014 09:36:01 GMT
Client-Warning: Internal response

1

This used to work with 6.04-3:

# PERL_LWP_SSL_VERIFY_HOSTNAME=0 HEAD -Se https://www.pcwebshop.co.uk/ ; echo
$?
HEAD https://www.pcwebshop.co.uk/
200 OK
Connection: close
Date: Fri, 23 May 2014 09:36:12 GMT
Server: Apache
Content-Type: text/html; charset=UTF-8
Client-Date: Fri, 23 May 2014 09:36:12 GMT
Client-Peer: 217.160.239.225:443
Client-Response-Num: 1
Client-SSL-Cert-Issuer: /C=US/ST=Virginia/L=Herndon/O=Parallels/OU=Parallels
Panel/CN=Parallels Panel/emailAddress=i...@parallels.com
Client-SSL-Cert-Subject: /C=US/ST=Virginia/L=Herndon/O=Parallels/OU=Parallels
Panel/CN=Parallels Panel/emailAddress=i...@parallels.com
Client-SSL-Cipher: DHE-RSA-AES256-SHA
Client-SSL-Socket-Class: IO::Socket::SSL
Client-SSL-Warning: Peer certificate not verified
Set-Cookie: wptouch-pro-cache-state=desktop; expires=Fri, 23-May-2014 10:36:12
GMT; path=/
X-Pingback: https://www.pcwebshop.co.uk/xmlrpc.php
X-Powered-By: PleskLin

0

It's because it gets translated to call

# perl -le 'use LWP::Protocol::https; my $sock =
LWP::Protocol::https::Socket->new(Timeout => 180, PeerAddr =>
"www.pcwebshop.co.uk", SSL_verify_mode => 0, PeerPort => "443"); print $sock;
print $IO::Socket::SSL::SSL_ERROR;'
LWP::Protocol::https::Socket=GLOB(0x10b1a98)
SSL wants a read first
#

in 6.04-3 (note the SSL_verify_mode => 0) but to

# perl -le 'use LWP::Protocol::https; my $sock =
LWP::Protocol::https::Socket->new(Timeout => 180, PeerAddr =>
"www.pcwebshop.co.uk", SSL_verifycn_schema => "none", PeerPort => "443"); print
$sock; print $IO::Socket::SSL::SSL_ERROR;'

IO::Socket::IP configuration failed SSL connect attempt failed with unknown
error error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate
verify failed

in 6.04-4 -- note there is no SSL_verify_mode => 0 there in the parameters,
just SSL_verifycn_schema => "none".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=dboXiUt0fO&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1094442] perl-libwww-perl: incorrect handling of SSL certificate verification [fedora-all]

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094442



--- Comment #7 from Jan Pazdziora  ---
Man page of IO::Socket::SSL does not list the SSL_verifycn_schema option at
all, just SSL_verify_mode with the default of SSL_VERIFY_PEER, which sadly the
new code in perl-LWP-Protocol-https no longer changes.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Wx6gt5Vbv4&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100698] New: perl-CGI-4.00 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100698

Bug ID: 1100698
   Summary: perl-CGI-4.00 is available
   Product: Fedora
   Version: rawhide
 Component: perl-CGI
  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



Latest upstream release: 4.00
Current version/release in Fedora Rawhide: 3.65-1.fc21
URL: http://search.cpan.org/dist/CGI/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=TCO2FQOHws&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100699] New: perl-Dancer-1.3124 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100699

Bug ID: 1100699
   Summary: perl-Dancer-1.3124 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Dancer
  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



Latest upstream release: 1.3124
Current version/release in Fedora Rawhide: 1.3123-1.fc21
URL: http://search.cpan.org/dist/Dancer/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Jbzr5qJGNx&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1074948] perl-DateTime-TimeZone-1.69 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1074948

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-DateTime-TimeZone-1.65 |perl-DateTime-TimeZone-1.69
   |is available|is available



--- Comment #1 from Upstream Release Monitoring 
 ---
Latest upstream release: 1.69
Current version/release in Fedora Rawhide: 1.64-1.fc21
URL: http://search.cpan.org/dist/DateTime-TimeZone/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=jFWwS6ma8t&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100701] New: perl-DBD-Pg-3.2.1 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100701

Bug ID: 1100701
   Summary: perl-DBD-Pg-3.2.1 is available
   Product: Fedora
   Version: rawhide
 Component: perl-DBD-Pg
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: dev...@gunduz.org, jples...@redhat.com,
mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 3.2.1
Current version/release in Fedora Rawhide: 3.1.1-1.fc21
URL: http://search.cpan.org/dist/DBD-Pg/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=0e4mLuc5lg&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100702] New: perl-Digest-SHA-5.91 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100702

Bug ID: 1100702
   Summary: perl-Digest-SHA-5.91 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Digest-SHA
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 5.91
Current version/release in Fedora Rawhide: 5.90-1.fc21
URL: http://search.cpan.org/dist/Digest-SHA/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=v4DY8igXPA&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100705] New: perl-File-ShareDir-1.102 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100705

Bug ID: 1100705
   Summary: perl-File-ShareDir-1.102 is available
   Product: Fedora
   Version: rawhide
 Component: perl-File-ShareDir
  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,
trem...@tremble.org.uk



Latest upstream release: 1.102
Current version/release in Fedora Rawhide: 1.03-10.fc20
URL: http://search.cpan.org/dist/File-ShareDir/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=MQzBrBXE5j&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100704] New: perl-File-MimeInfo-0.26 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100704

Bug ID: 1100704
   Summary: perl-File-MimeInfo-0.26 is available
   Product: Fedora
   Version: rawhide
 Component: perl-File-MimeInfo
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, ktdre...@ktdreyer.com,
perl-devel@lists.fedoraproject.org, pertu...@free.fr



Latest upstream release: 0.26
Current version/release in Fedora Rawhide: 0.25-1.fc21
URL: http://search.cpan.org/dist/File-MimeInfo/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=VnJ7FZa4iO&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100706] New: perl-Glib-Object-Introspection-0.023 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100706

Bug ID: 1100706
   Summary: perl-Glib-Object-Introspection-0.023 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Glib-Object-Introspection
  Keywords: FutureFeature, Triaged
  Assignee: berra...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: berra...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 0.023
Current version/release in Fedora Rawhide: 0.022-1.fc21
URL: http://search.cpan.org/dist/Glib-Object-Introspection/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=JsKu6193L4&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100708] New: perl-JSON-Pointer-0.04 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100708

Bug ID: 1100708
   Summary: perl-JSON-Pointer-0.04 is available
   Product: Fedora
   Version: rawhide
 Component: perl-JSON-Pointer
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 0.04
Current version/release in Fedora Rawhide: 0.03-1.fc21
URL: http://search.cpan.org/dist/JSON-Pointer/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=V80QMWSAb4&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100709] New: perl-Log-Log4perl-1.44 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100709

Bug ID: 1100709
   Summary: perl-Log-Log4perl-1.44 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Log-Log4perl
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 1.44
Current version/release in Fedora Rawhide: 1.43-1.fc21
URL: http://search.cpan.org/dist/Log-Log4perl/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=xZ6fmsS4kl&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100710] New: perl-Log-Report-1.03 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100710

Bug ID: 1100710
   Summary: perl-Log-Report-1.03 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Log-Report
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@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



Latest upstream release: 1.03
Current version/release in Fedora Rawhide: 1.02-1.fc21
URL: http://search.cpan.org/dist/Log-Report/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=Syqow1ODGY&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100711] New: perl-Module-Install-GithubMeta-0.28 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100711

Bug ID: 1100711
   Summary: perl-Module-Install-GithubMeta-0.28 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Module-Install-GithubMeta
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com, mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 0.28
Current version/release in Fedora Rawhide: 0.26-1.fc21
URL: http://search.cpan.org/dist/Module-Install-GithubMeta/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=tSWuG0idhb&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100712] New: perl-Net-GitHub-0.60 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100712

Bug ID: 1100712
   Summary: perl-Net-GitHub-0.60 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Net-GitHub
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 0.60
Current version/release in Fedora Rawhide: 0.59-1.fc21
URL: http://search.cpan.org/dist/Net-GitHub/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=KuIdlrLDY4&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100713] New: perl-PAR-Packer-1.018 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100713

Bug ID: 1100713
   Summary: perl-PAR-Packer-1.018 is available
   Product: Fedora
   Version: rawhide
 Component: perl-PAR-Packer
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 1.018
Current version/release in Fedora Rawhide: 1.017-1.fc21
URL: http://search.cpan.org/dist/PAR-Packer/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=3VKp81lo3b&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100714] New: perl-RT-Client-REST-0.49 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100714

Bug ID: 1100714
   Summary: perl-RT-Client-REST-0.49 is available
   Product: Fedora
   Version: rawhide
 Component: perl-RT-Client-REST
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com,
psab...@redhat.com



Latest upstream release: 0.49
Current version/release in Fedora Rawhide: 0.48-1.fc21
URL: http://search.cpan.org/dist/RT-Client-REST/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=l0aMJePn7G&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100715] New: perl-TermReadKey-2.32 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100715

Bug ID: 1100715
   Summary: perl-TermReadKey-2.32 is available
   Product: Fedora
   Version: rawhide
 Component: perl-TermReadKey
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 2.32
Current version/release in Fedora Rawhide: 2.30-20.fc21
URL: http://search.cpan.org/dist/TermReadKey/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=NzTjdfXQcN&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100716] New: perl-Test-Moose-More-0.024 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100716

Bug ID: 1100716
   Summary: perl-Test-Moose-More-0.024 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Test-Moose-More
  Keywords: FutureFeature, Triaged
  Assignee: ppi...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com



Latest upstream release: 0.024
Current version/release in Fedora Rawhide: 0.023-1.fc21
URL: http://search.cpan.org/dist/Test-Moose-More/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=yaSFWoncKN&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100717] New: perl-Text-CSV_XS-1.08 is available

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100717

Bug ID: 1100717
   Summary: perl-Text-CSV_XS-1.08 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Text-CSV_XS
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, psab...@redhat.com



Latest upstream release: 1.08
Current version/release in Fedora Rawhide: 1.07-1.fc21
URL: http://search.cpan.org/dist/Text-CSV_XS/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

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

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=QtGQSWVAhv&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100595] perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595

Petr Šabata  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-Net-DNS-0.75_1-1.fc21



-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=IlJrzec0CK&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100595] perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595



--- Comment #2 from Fedora Update System  ---
perl-Net-DNS-0.75_1-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/perl-Net-DNS-0.75_1-1.fc20

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=U2UDNmhMsT&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1100595] perl-Net-DNS-0.75 - not working properly

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1100595



--- Comment #3 from Fedora Update System  ---
perl-Net-DNS-0.75_1-1.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/perl-Net-DNS-0.75_1-1.fc19

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=zEtkRJDcUY&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1097055] Upgrade to new upstream version

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||stompclt-1.2-1.fc19
 Resolution|--- |ERRATA
Last Closed||2014-05-23 14:56:01



--- Comment #6 from Fedora Update System  ---
stompclt-1.2-1.fc19 has been pushed to the Fedora 19 stable repository.  If
problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=6YmINZ2DPn&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1094440] CVE-2014-3230 perl-libwww-perl: incorrect handling of SSL certificate verification

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094440



--- Comment #13 from Fedora Update System  ---
perl-LWP-Protocol-https-6.04-2.fc19 has been pushed to the Fedora 19 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=BOHNWHBrGm&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1097055] Upgrade to new upstream version

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|stompclt-1.2-1.fc19 |stompclt-1.2-1.fc20



--- Comment #7 from Fedora Update System  ---
stompclt-1.2-1.fc20 has been pushed to the Fedora 20 stable repository.  If
problems still persist, please make note of it in this bug report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=777WqgYm2l&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1094442] perl-libwww-perl: incorrect handling of SSL certificate verification [fedora-all]

2014-05-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094442



--- Comment #8 from Fedora Update System  ---
perl-LWP-Protocol-https-6.04-2.fc19 has been pushed to the Fedora 19 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug 
https://bugzilla.redhat.com/token.cgi?t=bpyGtLTu91&a=cc_unsubscribe
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel