corsepiu pushed to rt (f25). "Merge remote-tracking branch 'origin/f26' into f25"

2017-07-25 Thread notifications
From 2007349b05d68c71976b7d74d86c0cb846c0c001 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 7 Jun 2017 15:25:16 +0200
Subject: Perl 5.26 re-rebuild of bootstrapped packages

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index a775e74..2eab3ab 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
+- Perl 5.26 re-rebuild of bootstrapped packages
+
 * Wed Mar 15 2017 Ralf Corsépius  - 4.4.1-5
 - Fix testsuite failure in t/web/cf_groupings.t caused by Mojolicious >= 7.0
   incompatibilty (Add 0005-Fix-tests-for-Mojolicious-7.0.patch).
-- 
cgit v1.1


From fbd5094e453ab143a1a013a353fa8731fe72dc22 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Thu, 15 Jun 2017 14:10:42 +0200
Subject: Perl 5.26 rebuild

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index 2eab3ab..a964124 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   6%{?dist}
+Release:   7%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Thu Jun 15 2017 Jitka Plesnikova  - 4.4.1-7
+- Perl 5.26 rebuild
+
 * Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
 - Perl 5.26 re-rebuild of bootstrapped packages
 
-- 
cgit v1.1


From eae995f90717eaffc27afbfc57ccaf0dd40aee36 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:32:17 +0200
Subject: Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
 (RHBZ#1475084).   Supposed to address CVE-2016-6127, CVE-2017-5361,
 CVE-2017-5943,   CVE-2017-5944. Update README.fedora.

---
 ...-Apply-security-2017-06-15-rt-4.4.1.patch.patch | 339 +
 README.fedora.in   |   4 +-
 rt.spec|  13 +-
 3 files changed, 352 insertions(+), 4 deletions(-)
 create mode 100644 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch

diff --git a/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch 
b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
new file mode 100644
index 000..5f27b02
--- /dev/null
+++ b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
@@ -0,0 +1,339 @@
+From 2181f98c8834ba1e77149c6d3e44aa798b80babd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
+Date: Wed, 26 Jul 2017 08:06:07 +0200
+Subject: [PATCH 6/6] Apply security-2017-06-15/rt-4.4.1.patch
+
+---
+ lib/RT.pm   |  4 +++
+ lib/RT/Authen/ExternalAuth/DBI.pm   | 17 +--
+ lib/RT/Config.pm|  8 +
+ lib/RT/Interface/Web.pm |  4 +--
+ lib/RT/User.pm  | 38 +--
+ lib/RT/Util.pm  | 54 +
+ sbin/rt-test-dependencies.in|  2 +-
+ share/html/Dashboards/Subscription.html |  2 +-
+ share/html/Ticket/Attachment/dhandler   |  6 ++--
+ 9 files changed, 118 insertions(+), 17 deletions(-)
+
+diff --git a/lib/RT.pm b/lib/RT.pm
+index ccf3c5432..80d2b61cd 100644
+--- a/lib/RT.pm
 b/lib/RT.pm
+@@ -81,6 +81,10 @@ use vars qw($BasePath
+  $MasonDataDir
+  $MasonSessionDir);
+ 
++# Set Email::Address module var before anything else loads.
++# This avoids an algorithmic complexity denial of service vulnerability.
++# See T#157608 and CVE-2015-7686 for more information.
++$Email::Address::COMMENT_NEST_LEVEL = 1;
+ 
+ RT->LoadGeneratedData();
+ 
+diff --git a/lib/RT/Authen/ExternalAuth/DBI.pm 
b/lib/RT/Authen/ExternalAuth/DBI.pm
+index 42a157fb4..4c7f0f3dc 100644
+--- a/lib/RT/Authen/ExternalAuth/DBI.pm
 b/lib/RT/Authen/ExternalAuth/DBI.pm
+@@ -50,6 +50,7 @@ package RT::Authen::ExternalAuth::DBI;
+ 
+ use DBI;
+ use RT::Authen::ExternalAuth::DBI::Cookie;
++use RT::Util;
+ 
+ use warnings;
+ use strict;
+@@ -81,6 +82,7 @@ Provides the database implementation for 
L.
+ 'p_field'   =>  'password',
+ 
+ # Example of custom hashed password check
++# (See below for security concerns with this implementation)
+ #'p_check'   =>  sub {
+ #my ($hash_from_db, $password) = @_;
+ #return $hash_from_db eq function($password);
+@@ -170,6 +172,17 @@ An example, where C is some external hashing 
function:
+ Importantly, the C subroutine allows for arbitrarily complex password
+ checking unlike C and C.
+ 
++Please note, the use of the C operator in the C example above
++introduces a timing sidechannel vulnerability. (It was left there for clarity
++of the example.) There is a comparison function available in RT that is
++hard

corsepiu pushed to rt (f25). "Perl 5.26 re-rebuild of bootstrapped packages"

2017-07-25 Thread notifications
From 2007349b05d68c71976b7d74d86c0cb846c0c001 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 7 Jun 2017 15:25:16 +0200
Subject: Perl 5.26 re-rebuild of bootstrapped packages

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index a775e74..2eab3ab 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
+- Perl 5.26 re-rebuild of bootstrapped packages
+
 * Wed Mar 15 2017 Ralf Corsépius  - 4.4.1-5
 - Fix testsuite failure in t/web/cf_groupings.t caused by Mojolicious >= 7.0
   incompatibilty (Add 0005-Fix-tests-for-Mojolicious-7.0.patch).
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f25&id=2007349b05d68c71976b7d74d86c0cb846c0c001
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (f25). "Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch (RHBZ#1475084). (..more)"

2017-07-25 Thread notifications
From eae995f90717eaffc27afbfc57ccaf0dd40aee36 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:32:17 +0200
Subject: Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
 (RHBZ#1475084).   Supposed to address CVE-2016-6127, CVE-2017-5361,
 CVE-2017-5943,   CVE-2017-5944. Update README.fedora.

---
 ...-Apply-security-2017-06-15-rt-4.4.1.patch.patch | 339 +
 README.fedora.in   |   4 +-
 rt.spec|  13 +-
 3 files changed, 352 insertions(+), 4 deletions(-)
 create mode 100644 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch

diff --git a/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch 
b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
new file mode 100644
index 000..5f27b02
--- /dev/null
+++ b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
@@ -0,0 +1,339 @@
+From 2181f98c8834ba1e77149c6d3e44aa798b80babd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
+Date: Wed, 26 Jul 2017 08:06:07 +0200
+Subject: [PATCH 6/6] Apply security-2017-06-15/rt-4.4.1.patch
+
+---
+ lib/RT.pm   |  4 +++
+ lib/RT/Authen/ExternalAuth/DBI.pm   | 17 +--
+ lib/RT/Config.pm|  8 +
+ lib/RT/Interface/Web.pm |  4 +--
+ lib/RT/User.pm  | 38 +--
+ lib/RT/Util.pm  | 54 +
+ sbin/rt-test-dependencies.in|  2 +-
+ share/html/Dashboards/Subscription.html |  2 +-
+ share/html/Ticket/Attachment/dhandler   |  6 ++--
+ 9 files changed, 118 insertions(+), 17 deletions(-)
+
+diff --git a/lib/RT.pm b/lib/RT.pm
+index ccf3c5432..80d2b61cd 100644
+--- a/lib/RT.pm
 b/lib/RT.pm
+@@ -81,6 +81,10 @@ use vars qw($BasePath
+  $MasonDataDir
+  $MasonSessionDir);
+ 
++# Set Email::Address module var before anything else loads.
++# This avoids an algorithmic complexity denial of service vulnerability.
++# See T#157608 and CVE-2015-7686 for more information.
++$Email::Address::COMMENT_NEST_LEVEL = 1;
+ 
+ RT->LoadGeneratedData();
+ 
+diff --git a/lib/RT/Authen/ExternalAuth/DBI.pm 
b/lib/RT/Authen/ExternalAuth/DBI.pm
+index 42a157fb4..4c7f0f3dc 100644
+--- a/lib/RT/Authen/ExternalAuth/DBI.pm
 b/lib/RT/Authen/ExternalAuth/DBI.pm
+@@ -50,6 +50,7 @@ package RT::Authen::ExternalAuth::DBI;
+ 
+ use DBI;
+ use RT::Authen::ExternalAuth::DBI::Cookie;
++use RT::Util;
+ 
+ use warnings;
+ use strict;
+@@ -81,6 +82,7 @@ Provides the database implementation for 
L.
+ 'p_field'   =>  'password',
+ 
+ # Example of custom hashed password check
++# (See below for security concerns with this implementation)
+ #'p_check'   =>  sub {
+ #my ($hash_from_db, $password) = @_;
+ #return $hash_from_db eq function($password);
+@@ -170,6 +172,17 @@ An example, where C is some external hashing 
function:
+ Importantly, the C subroutine allows for arbitrarily complex password
+ checking unlike C and C.
+ 
++Please note, the use of the C operator in the C example above
++introduces a timing sidechannel vulnerability. (It was left there for clarity
++of the example.) There is a comparison function available in RT that is
++hardened against timing attacks. The comparison from the above example could
++be re-written with it like this:
++
++p_check => sub {
++my ($hash_from_db, $password) = @_;
++return RT::Util::constant_time_eq($hash_from_db, FooBar($password));
++},
++
+ =item p_enc_pkg, p_enc_sub
+ 
+ The Perl package and subroutine used to encrypt passwords from the
+@@ -298,7 +311,7 @@ sub GetAuth {
+ # Jump to the next external authentication service if they don't match
+ if(defined($db_p_salt)) {
+ $RT::Logger->debug("Using salt:",$db_p_salt);
+-if(${encrypt}->($password,$db_p_salt) ne $pass_from_db){
++unless 
(RT::Util::constant_time_eq(${encrypt}->($password,$db_p_salt), $pass_from_db)) 
{
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+@@ -306,7 +319,7 @@ sub GetAuth {
+ return 0;
+ }
+ } else {
+-if(${encrypt}->($password) ne $pass_from_db){
++unless (RT::Util::constant_time_eq(${encrypt}->($password), 
$pass_from_db)) {
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+diff --git a/lib/RT/Config.pm b/lib/RT/Config.pm
+index 70df38f24..81a95f744 100644
+--- a/lib/RT/Config.pm
 b/lib/RT/Config.pm
+@@ -147,6 +147,14 @@ can be set for each config optin:
+ our %META;
+ %META = (
+ # General user overridable options
++RestrictReferrerLogin => {
++PostLoadC

corsepiu pushed to rt (f25). "Cleanup git merger."

2017-07-25 Thread notifications
From d632230f8af0f287896c2f22bdb6ecff778c81cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:34:54 +0200
Subject: Cleanup git merger.

---
 rt.spec | 6 --
 1 file changed, 6 deletions(-)

diff --git a/rt.spec b/rt.spec
index b37a2d7..84fe43b 100644
--- a/rt.spec
+++ b/rt.spec
@@ -619,12 +619,6 @@ fi
   CVE-2017-5944.
 - Update README.fedora.
 
-* Thu Jun 15 2017 Jitka Plesnikova  - 4.4.1-7
-- Perl 5.26 rebuild
-
-* Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
-- Perl 5.26 re-rebuild of bootstrapped packages
-
 * Wed Mar 15 2017 Ralf Corsépius  - 4.4.1-5
 - Fix testsuite failure in t/web/cf_groupings.t caused by Mojolicious >= 7.0
   incompatibilty (Add 0005-Fix-tests-for-Mojolicious-7.0.patch).
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f25&id=d632230f8af0f287896c2f22bdb6ecff778c81cd
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to dspam (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 4cdd042de3c68011c333c393e8ee2238e6a6e7b9 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 06:49:19 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 dspam.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dspam.spec b/dspam.spec
index 34b65e3..3ca0f4e 100644
--- a/dspam.spec
+++ b/dspam.spec
@@ -12,7 +12,7 @@
 Summary:A library and Mail Delivery Agent for Bayesian SPAM 
filtering
 Name:   dspam
 Version:3.10.2
-Release:22%{?dist}
+Release:23%{?dist}
 License:GPLv2
 Group:  System Environment/Daemons
 Source0:
http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
@@ -377,6 +377,9 @@ exit 0
 %config(noreplace) %{_sysconfdir}/httpd/conf.d/dspam-web.conf
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
3.10.2-23
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Sat Jul 15 2017 Nathanael Noblet  - 3.10.2-22
 - Fixed FTBFS Bug #1467703 when compiling against mariadb
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/dspam.git/commit/?h=master&id=4cdd042de3c68011c333c393e8ee2238e6a6e7b9
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (f25). "Perl 5.26 rebuild"

2017-07-25 Thread notifications
From fbd5094e453ab143a1a013a353fa8731fe72dc22 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Thu, 15 Jun 2017 14:10:42 +0200
Subject: Perl 5.26 rebuild

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index 2eab3ab..a964124 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   6%{?dist}
+Release:   7%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Thu Jun 15 2017 Jitka Plesnikova  - 4.4.1-7
+- Perl 5.26 rebuild
+
 * Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
 - Perl 5.26 re-rebuild of bootstrapped packages
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f25&id=fbd5094e453ab143a1a013a353fa8731fe72dc22
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (f26). "Cleanup git merger."

2017-07-25 Thread notifications
From d632230f8af0f287896c2f22bdb6ecff778c81cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:34:54 +0200
Subject: Cleanup git merger.

---
 rt.spec | 6 --
 1 file changed, 6 deletions(-)

diff --git a/rt.spec b/rt.spec
index b37a2d7..84fe43b 100644
--- a/rt.spec
+++ b/rt.spec
@@ -619,12 +619,6 @@ fi
   CVE-2017-5944.
 - Update README.fedora.
 
-* Thu Jun 15 2017 Jitka Plesnikova  - 4.4.1-7
-- Perl 5.26 rebuild
-
-* Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
-- Perl 5.26 re-rebuild of bootstrapped packages
-
 * Wed Mar 15 2017 Ralf Corsépius  - 4.4.1-5
 - Fix testsuite failure in t/web/cf_groupings.t caused by Mojolicious >= 7.0
   incompatibilty (Add 0005-Fix-tests-for-Mojolicious-7.0.patch).
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f26&id=d632230f8af0f287896c2f22bdb6ecff778c81cd
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (f26). "Perl 5.26 rebuild"

2017-07-25 Thread notifications
From fbd5094e453ab143a1a013a353fa8731fe72dc22 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Thu, 15 Jun 2017 14:10:42 +0200
Subject: Perl 5.26 rebuild

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index 2eab3ab..a964124 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   6%{?dist}
+Release:   7%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Thu Jun 15 2017 Jitka Plesnikova  - 4.4.1-7
+- Perl 5.26 rebuild
+
 * Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
 - Perl 5.26 re-rebuild of bootstrapped packages
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f26&id=fbd5094e453ab143a1a013a353fa8731fe72dc22
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (f26). "Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch (RHBZ#1475084). (..more)"

2017-07-25 Thread notifications
From eae995f90717eaffc27afbfc57ccaf0dd40aee36 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:32:17 +0200
Subject: Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
 (RHBZ#1475084).   Supposed to address CVE-2016-6127, CVE-2017-5361,
 CVE-2017-5943,   CVE-2017-5944. Update README.fedora.

---
 ...-Apply-security-2017-06-15-rt-4.4.1.patch.patch | 339 +
 README.fedora.in   |   4 +-
 rt.spec|  13 +-
 3 files changed, 352 insertions(+), 4 deletions(-)
 create mode 100644 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch

diff --git a/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch 
b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
new file mode 100644
index 000..5f27b02
--- /dev/null
+++ b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
@@ -0,0 +1,339 @@
+From 2181f98c8834ba1e77149c6d3e44aa798b80babd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
+Date: Wed, 26 Jul 2017 08:06:07 +0200
+Subject: [PATCH 6/6] Apply security-2017-06-15/rt-4.4.1.patch
+
+---
+ lib/RT.pm   |  4 +++
+ lib/RT/Authen/ExternalAuth/DBI.pm   | 17 +--
+ lib/RT/Config.pm|  8 +
+ lib/RT/Interface/Web.pm |  4 +--
+ lib/RT/User.pm  | 38 +--
+ lib/RT/Util.pm  | 54 +
+ sbin/rt-test-dependencies.in|  2 +-
+ share/html/Dashboards/Subscription.html |  2 +-
+ share/html/Ticket/Attachment/dhandler   |  6 ++--
+ 9 files changed, 118 insertions(+), 17 deletions(-)
+
+diff --git a/lib/RT.pm b/lib/RT.pm
+index ccf3c5432..80d2b61cd 100644
+--- a/lib/RT.pm
 b/lib/RT.pm
+@@ -81,6 +81,10 @@ use vars qw($BasePath
+  $MasonDataDir
+  $MasonSessionDir);
+ 
++# Set Email::Address module var before anything else loads.
++# This avoids an algorithmic complexity denial of service vulnerability.
++# See T#157608 and CVE-2015-7686 for more information.
++$Email::Address::COMMENT_NEST_LEVEL = 1;
+ 
+ RT->LoadGeneratedData();
+ 
+diff --git a/lib/RT/Authen/ExternalAuth/DBI.pm 
b/lib/RT/Authen/ExternalAuth/DBI.pm
+index 42a157fb4..4c7f0f3dc 100644
+--- a/lib/RT/Authen/ExternalAuth/DBI.pm
 b/lib/RT/Authen/ExternalAuth/DBI.pm
+@@ -50,6 +50,7 @@ package RT::Authen::ExternalAuth::DBI;
+ 
+ use DBI;
+ use RT::Authen::ExternalAuth::DBI::Cookie;
++use RT::Util;
+ 
+ use warnings;
+ use strict;
+@@ -81,6 +82,7 @@ Provides the database implementation for 
L.
+ 'p_field'   =>  'password',
+ 
+ # Example of custom hashed password check
++# (See below for security concerns with this implementation)
+ #'p_check'   =>  sub {
+ #my ($hash_from_db, $password) = @_;
+ #return $hash_from_db eq function($password);
+@@ -170,6 +172,17 @@ An example, where C is some external hashing 
function:
+ Importantly, the C subroutine allows for arbitrarily complex password
+ checking unlike C and C.
+ 
++Please note, the use of the C operator in the C example above
++introduces a timing sidechannel vulnerability. (It was left there for clarity
++of the example.) There is a comparison function available in RT that is
++hardened against timing attacks. The comparison from the above example could
++be re-written with it like this:
++
++p_check => sub {
++my ($hash_from_db, $password) = @_;
++return RT::Util::constant_time_eq($hash_from_db, FooBar($password));
++},
++
+ =item p_enc_pkg, p_enc_sub
+ 
+ The Perl package and subroutine used to encrypt passwords from the
+@@ -298,7 +311,7 @@ sub GetAuth {
+ # Jump to the next external authentication service if they don't match
+ if(defined($db_p_salt)) {
+ $RT::Logger->debug("Using salt:",$db_p_salt);
+-if(${encrypt}->($password,$db_p_salt) ne $pass_from_db){
++unless 
(RT::Util::constant_time_eq(${encrypt}->($password,$db_p_salt), $pass_from_db)) 
{
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+@@ -306,7 +319,7 @@ sub GetAuth {
+ return 0;
+ }
+ } else {
+-if(${encrypt}->($password) ne $pass_from_db){
++unless (RT::Util::constant_time_eq(${encrypt}->($password), 
$pass_from_db)) {
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+diff --git a/lib/RT/Config.pm b/lib/RT/Config.pm
+index 70df38f24..81a95f744 100644
+--- a/lib/RT/Config.pm
 b/lib/RT/Config.pm
+@@ -147,6 +147,14 @@ can be set for each config optin:
+ our %META;
+ %META = (
+ # General user overridable options
++RestrictReferrerLogin => {
++PostLoadC

corsepiu pushed to rt (f26). "Perl 5.26 re-rebuild of bootstrapped packages"

2017-07-25 Thread notifications
From 2007349b05d68c71976b7d74d86c0cb846c0c001 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 7 Jun 2017 15:25:16 +0200
Subject: Perl 5.26 re-rebuild of bootstrapped packages

---
 rt.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/rt.spec b/rt.spec
index a775e74..2eab3ab 100644
--- a/rt.spec
+++ b/rt.spec
@@ -39,7 +39,7 @@
 
 Name:  rt
 Version:   4.4.1
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Request tracker
 
 Group: Applications/Internet
@@ -610,6 +610,9 @@ fi
 %endif
 
 %changelog
+* Wed Jun 07 2017 Jitka Plesnikova  - 4.4.1-6
+- Perl 5.26 re-rebuild of bootstrapped packages
+
 * Wed Mar 15 2017 Ralf Corsépius  - 4.4.1-5
 - Fix testsuite failure in t/web/cf_groupings.t caused by Mojolicious >= 7.0
   incompatibilty (Add 0005-Fix-tests-for-Mojolicious-7.0.patch).
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/rt.git/commit/?h=f26&id=2007349b05d68c71976b7d74d86c0cb846c0c001
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to dropbox-api-command (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 036670c8b8706d65d909ad505ce94f23da874ef3 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 06:35:14 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 dropbox-api-command.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 8b50079..bda5afc 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -3,7 +3,7 @@
 
 Name:   dropbox-api-command
 Version:2.09
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Dropbox API wrapper command
 
 License:MIT
@@ -56,6 +56,9 @@ A command line tool to manage a directory synced with Dropbox.
 
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
2.09-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Sun Jun 04 2017 Jitka Plesnikova  - 2.09-3
 - Perl 5.26 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=036670c8b8706d65d909ad505ce94f23da874ef3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


corsepiu pushed to rt (master). "Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch (RHBZ#1475084). (..more)"

2017-07-25 Thread notifications
From eae995f90717eaffc27afbfc57ccaf0dd40aee36 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
Date: Wed, 26 Jul 2017 08:32:17 +0200
Subject: Add 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
 (RHBZ#1475084).   Supposed to address CVE-2016-6127, CVE-2017-5361,
 CVE-2017-5943,   CVE-2017-5944. Update README.fedora.

---
 ...-Apply-security-2017-06-15-rt-4.4.1.patch.patch | 339 +
 README.fedora.in   |   4 +-
 rt.spec|  13 +-
 3 files changed, 352 insertions(+), 4 deletions(-)
 create mode 100644 0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch

diff --git a/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch 
b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
new file mode 100644
index 000..5f27b02
--- /dev/null
+++ b/0006-Apply-security-2017-06-15-rt-4.4.1.patch.patch
@@ -0,0 +1,339 @@
+From 2181f98c8834ba1e77149c6d3e44aa798b80babd Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ralf=20Cors=C3=A9pius?= 
+Date: Wed, 26 Jul 2017 08:06:07 +0200
+Subject: [PATCH 6/6] Apply security-2017-06-15/rt-4.4.1.patch
+
+---
+ lib/RT.pm   |  4 +++
+ lib/RT/Authen/ExternalAuth/DBI.pm   | 17 +--
+ lib/RT/Config.pm|  8 +
+ lib/RT/Interface/Web.pm |  4 +--
+ lib/RT/User.pm  | 38 +--
+ lib/RT/Util.pm  | 54 +
+ sbin/rt-test-dependencies.in|  2 +-
+ share/html/Dashboards/Subscription.html |  2 +-
+ share/html/Ticket/Attachment/dhandler   |  6 ++--
+ 9 files changed, 118 insertions(+), 17 deletions(-)
+
+diff --git a/lib/RT.pm b/lib/RT.pm
+index ccf3c5432..80d2b61cd 100644
+--- a/lib/RT.pm
 b/lib/RT.pm
+@@ -81,6 +81,10 @@ use vars qw($BasePath
+  $MasonDataDir
+  $MasonSessionDir);
+ 
++# Set Email::Address module var before anything else loads.
++# This avoids an algorithmic complexity denial of service vulnerability.
++# See T#157608 and CVE-2015-7686 for more information.
++$Email::Address::COMMENT_NEST_LEVEL = 1;
+ 
+ RT->LoadGeneratedData();
+ 
+diff --git a/lib/RT/Authen/ExternalAuth/DBI.pm 
b/lib/RT/Authen/ExternalAuth/DBI.pm
+index 42a157fb4..4c7f0f3dc 100644
+--- a/lib/RT/Authen/ExternalAuth/DBI.pm
 b/lib/RT/Authen/ExternalAuth/DBI.pm
+@@ -50,6 +50,7 @@ package RT::Authen::ExternalAuth::DBI;
+ 
+ use DBI;
+ use RT::Authen::ExternalAuth::DBI::Cookie;
++use RT::Util;
+ 
+ use warnings;
+ use strict;
+@@ -81,6 +82,7 @@ Provides the database implementation for 
L.
+ 'p_field'   =>  'password',
+ 
+ # Example of custom hashed password check
++# (See below for security concerns with this implementation)
+ #'p_check'   =>  sub {
+ #my ($hash_from_db, $password) = @_;
+ #return $hash_from_db eq function($password);
+@@ -170,6 +172,17 @@ An example, where C is some external hashing 
function:
+ Importantly, the C subroutine allows for arbitrarily complex password
+ checking unlike C and C.
+ 
++Please note, the use of the C operator in the C example above
++introduces a timing sidechannel vulnerability. (It was left there for clarity
++of the example.) There is a comparison function available in RT that is
++hardened against timing attacks. The comparison from the above example could
++be re-written with it like this:
++
++p_check => sub {
++my ($hash_from_db, $password) = @_;
++return RT::Util::constant_time_eq($hash_from_db, FooBar($password));
++},
++
+ =item p_enc_pkg, p_enc_sub
+ 
+ The Perl package and subroutine used to encrypt passwords from the
+@@ -298,7 +311,7 @@ sub GetAuth {
+ # Jump to the next external authentication service if they don't match
+ if(defined($db_p_salt)) {
+ $RT::Logger->debug("Using salt:",$db_p_salt);
+-if(${encrypt}->($password,$db_p_salt) ne $pass_from_db){
++unless 
(RT::Util::constant_time_eq(${encrypt}->($password,$db_p_salt), $pass_from_db)) 
{
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+@@ -306,7 +319,7 @@ sub GetAuth {
+ return 0;
+ }
+ } else {
+-if(${encrypt}->($password) ne $pass_from_db){
++unless (RT::Util::constant_time_eq(${encrypt}->($password), 
$pass_from_db)) {
+ $RT::Logger->info(  $service,
+ "AUTH FAILED",
+ $username,
+diff --git a/lib/RT/Config.pm b/lib/RT/Config.pm
+index 70df38f24..81a95f744 100644
+--- a/lib/RT/Config.pm
 b/lib/RT/Config.pm
+@@ -147,6 +147,14 @@ can be set for each config optin:
+ our %META;
+ %META = (
+ # General user overridable options
++RestrictReferrerLogin => {
++PostLoadC

releng pushed to ctstream (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 4add95885804b66b751652482a8600e6aa2764d8 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 05:45:26 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 ctstream.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ctstream.spec b/ctstream.spec
index fb1ed95..c3870c3 100644
--- a/ctstream.spec
+++ b/ctstream.spec
@@ -1,6 +1,6 @@
 Name:   ctstream
 Version:27
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Get URLs of Czech Television video streams
 License:GPL+
 URL:http://xpisar.wz.cz/%{name}/
@@ -23,6 +23,9 @@ install %{SOURCE0} %{buildroot}%{_bindir}/%{name}
 %{_bindir}/*
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 27-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Mon Jul 10 2017 Petr Pisar  - 27-1
 - Version 27 bump
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/ctstream.git/commit/?h=master&id=4add95885804b66b751652482a8600e6aa2764d8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to cpanspec (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From b094c458d72fc03c141b5843abbf62b5f6978f80 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 05:33:17 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 cpanspec.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/cpanspec.spec b/cpanspec.spec
index 74a784e..9f3536b 100644
--- a/cpanspec.spec
+++ b/cpanspec.spec
@@ -1,6 +1,6 @@
 Name:   cpanspec
 Version:1.78
-Release:28%{?dist}
+Release:29%{?dist}
 Summary:RPM spec file generation utility
 License:GPL+ or Artistic
 Group:  Development/Tools
@@ -54,6 +54,9 @@ find %{buildroot} -type f -name .packlist -delete
 %{_mandir}/man1/*
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
1.78-29
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Sun Jun 04 2017 Jitka Plesnikova  - 1.78-28
 - Perl 5.26 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/cpanspec.git/commit/?h=master&id=b094c458d72fc03c141b5843abbf62b5f6978f80
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to bugzilla (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 8a9a591c375922aa3ee243fae6458f05229f368e Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 04:18:37 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 bugzilla.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/bugzilla.spec b/bugzilla.spec
index e62b7f5..7427f0b 100644
--- a/bugzilla.spec
+++ b/bugzilla.spec
@@ -6,7 +6,7 @@ URL: https://www.bugzilla.org/
 Name: bugzilla
 Version: 5.0.3
 Group: Applications/Publishing
-Release: 5%{?dist}
+Release: 6%{?dist}
 License: MPLv1.1
 Source0: 
https://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar.gz
 Source1: bugzilla-httpd-conf
@@ -290,6 +290,9 @@ popd > /dev/null)
 %{bzinstallprefix}/bugzilla/contrib/Bugzilla.pm
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
5.0.3-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Tue Apr 04 2017 Emmanuel Seyman  - 5.0.3-5
 - Include more dependencies to fix FTBFS (#1423283)
 - Allow AuthConfig directives in Bugzilla's directory (#1403588)
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/bugzilla.git/commit/?h=master&id=8a9a591c375922aa3ee243fae6458f05229f368e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to bucardo (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 96f8fb664e17b69c90ce004e13da063c968281a8 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 04:17:19 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 bucardo.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/bucardo.spec b/bucardo.spec
index 8b96ae8..033b649 100644
--- a/bucardo.spec
+++ b/bucardo.spec
@@ -1,7 +1,7 @@
 %define realname Bucardo
 Name:   bucardo
 Version:5.4.1
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Postgres replication system for both multi-master and 
multi-slave operations
 Group:  Applications/Databases
 License:BSD
@@ -108,6 +108,9 @@ install -Dp -m644 %{SOURCE1} .
 %{_datadir}/%{name}
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
5.4.1-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Wed Jun 07 2017 Jitka Plesnikova  - 5.4.1-6
 - Perl 5.26 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/bucardo.git/commit/?h=master&id=96f8fb664e17b69c90ce004e13da063c968281a8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to biber (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From ad54ede1b84329152e6792d950702a0bf6b3299a Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 03:54:52 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 biber.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/biber.spec b/biber.spec
index 71ebecf..67292f5 100644
--- a/biber.spec
+++ b/biber.spec
@@ -1,6 +1,6 @@
 Name:   biber
 Version:2.6
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Command-line bibliographic manager, BibTeX replacement
 License:(GPL+ or Artistic 2.0) and Artistic 2.0
 Group:  Development/Tools
@@ -163,6 +163,9 @@ chmod u+w %{buildroot}%{_bindir}/*
 
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 2.6-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Tue Jun 06 2017 Jitka Plesnikova  - 2.6-5
 - Perl 5.26 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/biber.git/commit/?h=master&id=ad54ede1b84329152e6792d950702a0bf6b3299a
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to amavisd-new (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 2a62d375242187c7d677cd385c800fdbd8bf520b Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 02:48:45 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 amavisd-new.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/amavisd-new.spec b/amavisd-new.spec
index 39dc4bf..cd587f0 100644
--- a/amavisd-new.spec
+++ b/amavisd-new.spec
@@ -3,7 +3,7 @@
 Summary:Email filter with virus scanner and spamassassin support
 Name:   amavisd-new
 Version:2.11.0
-Release:7%{?prerelease:.%{prerelease}}%{?dist}
+Release:8%{?prerelease:.%{prerelease}}%{?dist}
 # LDAP schema is GFDL, some helpers are BSD, core is GPLv2+
 License:GPLv2+ and BSD and GFDL
 Group:  Applications/System
@@ -244,6 +244,9 @@ systemctl start amavisd-clean-quarantine.timer >/dev/null 
2>&1 || :
 %{_sbindir}/amavisd-snmp-subagent
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
2.11.0-8
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Sat Jul 08 2017 Juan Orti Alcaine  2.11.0-7
 - PrivateDevices=true was causing problems with SELinux transitions
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/amavisd-new.git/commit/?h=master&id=2a62d375242187c7d677cd385c800fdbd8bf520b
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to ack (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 38acd50ad25850285a3b1eb05faf39754fd7e3f3 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 02:33:22 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 ack.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/ack.spec b/ack.spec
index fca7f3a..abafe8b 100644
--- a/ack.spec
+++ b/ack.spec
@@ -1,6 +1,6 @@
 Name:   ack
 Version:2.18
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Grep-like text finder
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -65,6 +65,9 @@ make test
 
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 
2.18-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Mon Jun 05 2017 Jitka Plesnikova  - 2.18-2
 - Perl 5.26 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/ack.git/commit/?h=master&id=38acd50ad25850285a3b1eb05faf39754fd7e3f3
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


releng pushed to abi-compliance-checker (master). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild"

2017-07-25 Thread notifications
From 1310b704899d9d918a88380e68984de49da2e38a Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Wed, 26 Jul 2017 02:30:59 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild

---
 abi-compliance-checker.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/abi-compliance-checker.spec b/abi-compliance-checker.spec
index f227e44..2b55319 100644
--- a/abi-compliance-checker.spec
+++ b/abi-compliance-checker.spec
@@ -1,6 +1,6 @@
 Name:   abi-compliance-checker
 Version:2.1
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:An ABI Compliance Checker
 
 License:GPLv2+ or LGPLv2+
@@ -47,6 +47,9 @@ perl Makefile.pl -install --prefix=%{_prefix} 
--destdir=%{buildroot}
 
 
 %changelog
+* Wed Jul 26 2017 Fedora Release Engineering  - 2.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
+
 * Tue Jun 20 2017 Richard Shaw  - 2.1-1
 - Update to latest upstream release.
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/abi-compliance-checker.git/commit/?h=master&id=1310b704899d9d918a88380e68984de49da2e38a
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084

Pedro Sampaio  changed:

   What|Removed |Added

 Blocks||1475068 (CVE-2016-6127)




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475068
[Bug 1475068] CVE-2016-6127 rt: Cross-site scripting via malicious file
upload
-- 
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


[Bug 1475068] CVE-2016-6127 rt: Cross-site scripting via malicious file upload

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475068

Pedro Sampaio  changed:

   What|Removed |Added

 Depends On||1475084



--- Comment #1 from Pedro Sampaio  ---
Created rt tracking bugs for this issue:

Affects: fedora-all [bug 1475084]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475084
[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt:
various flaws [fedora-all]
-- 
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


[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084

Pedro Sampaio  changed:

   What|Removed |Added

 Blocks||1475072 (CVE-2017-5361)




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475072
[Bug 1475072] CVE-2017-5361 rt: timing side-channel attack in secrets
constant-time comparison algorithm
-- 
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


[Bug 1475076] CVE-2017-5943 rt: Information leak of CSRF verification tokens

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475076

Pedro Sampaio  changed:

   What|Removed |Added

 Depends On||1475084



--- Comment #1 from Pedro Sampaio  ---
Created rt tracking bugs for this issue:

Affects: fedora-all [bug 1475084]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475084
[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt:
various flaws [fedora-all]
-- 
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


[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084

Pedro Sampaio  changed:

   What|Removed |Added

 Blocks||1475076 (CVE-2017-5943)




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475076
[Bug 1475076] CVE-2017-5943 rt: Information leak of CSRF verification
tokens
-- 
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


[Bug 1475072] CVE-2017-5361 rt: timing side-channel attack in secrets constant-time comparison algorithm

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475072

Pedro Sampaio  changed:

   What|Removed |Added

 Depends On||1475084



--- Comment #1 from Pedro Sampaio  ---
Created rt tracking bugs for this issue:

Affects: fedora-all [bug 1475084]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475084
[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt:
various flaws [fedora-all]
-- 
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


[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084

Pedro Sampaio  changed:

   What|Removed |Added

 Blocks||1475081 (CVE-2017-5944)




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475081
[Bug 1475081] CVE-2017-5944 rt: Remote code execution in the dashboard
subscription interface
-- 
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


[Bug 1475081] CVE-2017-5944 rt: Remote code execution in the dashboard subscription interface

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475081

Pedro Sampaio  changed:

   What|Removed |Added

 Depends On||1475084



--- Comment #1 from Pedro Sampaio  ---
Created rt tracking bugs for this issue:

Affects: fedora-all [bug 1475084]


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1475084
[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt:
various flaws [fedora-all]
-- 
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


[Bug 1475084] New: CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084

Bug ID: 1475084
   Summary: CVE-2016-6127 CVE-2017-5361 CVE-2017-5943
CVE-2017-5944 rt: various flaws [fedora-all]
   Product: Fedora
   Version: 26
 Component: rt
  Keywords: Security, SecurityTracking
  Severity: high
  Priority: high
  Assignee: rc040...@freenet.de
  Reporter: psamp...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu




This is an automatically created tracking bug!  It was created to ensure
that one or more security vulnerabilities are fixed in affected versions
of fedora-all.

For comments that are specific to the vulnerability please use bugs filed
against the "Security Response" product referenced in the "Blocks" field.

For more information see:
http://fedoraproject.org/wiki/Security/TrackingBugs

When submitting as an update, use the fedpkg template provided in the next
comment(s).  This will include the bug IDs of this tracking bug as well as
the relevant top-level CVE bugs.

Please also mention the CVE IDs being fixed in the RPM changelog and the
fedpkg commit message.

NOTE: this issue affects multiple supported versions of Fedora. While only
one tracking bug has been filed, please correct all affected versions at
the same time.  If you need to fix the versions independent of each other,
you may clone this bug as appropriate.

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


[Bug 1475084] CVE-2016-6127 CVE-2017-5361 CVE-2017-5943 CVE-2017-5944 rt: various flaws [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475084



--- Comment #1 from Pedro Sampaio  ---
Use the following template to for the 'fedpkg update' request to submit an
update for this issue as it contains the top-level parent bug(s) as well as
this tracking bug.  This will ensure that all associated bugs get updated
when new packages are pushed to stable.

=

# bugfix, security, enhancement, newpackage (required)
type=security

# testing, stable
request=testing

# Bug numbers: 1234,9876
bugs=1475068,1475072,1475076,1475081

# Description of your update
notes=Security fix for [PUT CVEs HERE]

# Enable request automation based on the stable/unstable karma thresholds
autokarma=True
stable_karma=3
unstable_karma=-3

# Automatically close bugs when this marked as stable
close_bugs=True

# Suggest that users restart after update
suggest_reboot=False

==

Additionally, you may opt to use the bodhi web interface to submit updates:

https://bodhi.fedoraproject.org/updates/new

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


[Bug 1475081] New: CVE-2017-5944 rt: Remote code execution in the dashboard subscription interface

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475081

Bug ID: 1475081
   Summary: CVE-2017-5944 rt: Remote code execution in the
dashboard subscription interface
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: high
  Priority: high
  Assignee: security-response-t...@redhat.com
  Reporter: psamp...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



t was discovered that Request Tracker is prone to a remote code execution
vulnerability in the dashboard subscription interface. A privileged attacker
can take advantage of this flaw through carefully-crafted saved search names to
cause unexpected code to be executed.

Upstream patch:

https://forum.bestpractical.com/t/security-vulnerabilities-in-rt-2017-06-15/32016

References:

https://www.debian.org/security/2017/dsa-3882
http://www.securityfocus.com/bid/99381

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


[Bug 1475076] New: CVE-2017-5943 rt: Information leak of CSRF verification tokens

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475076

Bug ID: 1475076
   Summary: CVE-2017-5943 rt: Information leak of CSRF
verification tokens
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: low
  Priority: low
  Assignee: security-response-t...@redhat.com
  Reporter: psamp...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



It was discovered that Request Tracker is prone to an information leak of
cross-site request forgery (CSRF) verification tokens if a user is tricked into
visiting a specially crafted URL by an attacker.

Upstream patch:

https://forum.bestpractical.com/t/security-vulnerabilities-in-rt-2017-06-15/32016

References:

https://www.debian.org/security/2017/dsa-3882
http://www.securityfocus.com/bid/99384/info

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


[Bug 1474802] perl-HTML-FormFu-MultiForm-1.03 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474802



--- Comment #9 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc26 has been pushed to the Fedora 26 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-f754efc36c

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


[Bug 1474549] perl-HTML-FormFu-MultiForm-1.02 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474549



--- Comment #12 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc26 has been pushed to the Fedora 26 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-f754efc36c

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


[Bug 1475072] New: CVE-2017-5361 rt: timing side-channel attack in secrets constant-time comparison algorithm

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475072

Bug ID: 1475072
   Summary: CVE-2017-5361 rt: timing side-channel attack in
secrets constant-time comparison algorithm
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: low
  Priority: low
  Assignee: security-response-t...@redhat.com
  Reporter: psamp...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



It was discovered that RT::Authen::ExternalAuth, an external authentication
module for Request Tracker, is vulnerable to timing side-channel attacks for
user passwords. Only ExternalAuth in DBI (database) mode is vulnerable.

Upstream patch:

https://forum.bestpractical.com/t/security-vulnerabilities-in-rt-2017-06-15/32016

References:

https://www.debian.org/security/2017/dsa-3882
https://www.debian.org/security/2017/dsa-3883

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


[Bug 1475068] New: CVE-2016-6127 rt: Cross-site scripting via malicious file upload

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475068

Bug ID: 1475068
   Summary: CVE-2016-6127 rt: Cross-site scripting via malicious
file upload
   Product: Security Response
 Component: vulnerability
  Keywords: Security
  Severity: medium
  Priority: medium
  Assignee: security-response-t...@redhat.com
  Reporter: psamp...@redhat.com
CC: perl-devel@lists.fedoraproject.org,
rc040...@freenet.de, ti...@math.uh.edu



It was discovered that Request Tracker is vulnerable to a cross-site scripting
(XSS) attack if an attacker uploads a malicious file with a certain content
type. Installations which use the AlwaysDownloadAttachments config setting are
unaffected by this flaw. The applied fix addresses all existant and future
uploaded attachments.

Upstream patch:

https://forum.bestpractical.com/t/security-vulnerabilities-in-rt-2017-06-15/32016

References:

http://www.securityfocus.com/bid/99375/info
https://www.debian.org/security/2017/dsa-3882

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


[Bug 1372923] Package modified in Fedora exhibits bad behavior when /etc/ localtime is old

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1372923

Don Beusee  changed:

   What|Removed |Added

Version|24  |26



--- Comment #12 from Don Beusee  ---
Petr, how do you plan to deal with the error I originally reported?  I set the
version from 24 to 26 so that this isn't auto-closed.

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


[Bug 1475052] New: perl-Locale-Codes-3.53 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475052

Bug ID: 1475052
   Summary: perl-Locale-Codes-3.53 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Locale-Codes
  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: 3.53
Current version/release in rawhide: 3.52-2.fc27
URL: http://search.cpan.org/dist/Locale-Codes/

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

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

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


[Bug 1475051] New: perl-CGI-Ex-2.45 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475051

Bug ID: 1475051
   Summary: perl-CGI-Ex-2.45 is available
   Product: Fedora
   Version: rawhide
 Component: perl-CGI-Ex
  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, ppi...@redhat.com



Latest upstream release: 2.45
Current version/release in rawhide: 2.44-6.fc27
URL: http://search.cpan.org/dist/CGI-Ex/

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

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

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


[Bug 1475050] New: perl-Data-Peek-0.47 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1475050

Bug ID: 1475050
   Summary: perl-Data-Peek-0.47 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Data-Peek
  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: 0.47
Current version/release in rawhide: 0.46-4.fc27
URL: http://search.cpan.org/dist/Data-Peek/

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

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

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


[Bug 1379554] perl-XML-Twig: expand_external_ents option fails to work as documented [fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1379554



--- Comment #2 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1378895] 8-bpp TIFF images are broken in the resulting PDF document

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1378895



--- Comment #3 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1378713] [abrt] slic3r: wxTopLevelWindowGTK::RequestUserAttention(): perl killed by SIGSEGV

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1378713



--- Comment #16 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1377997] perl-XML-LibXML: Expanding external entities by default [ fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1377997



--- Comment #2 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1474549] perl-HTML-FormFu-MultiForm-1.02 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474549



--- Comment #11 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc25 has been pushed to the Fedora 25 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-682d26d245

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


[Bug 1474802] perl-HTML-FormFu-MultiForm-1.03 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474802



--- Comment #8 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc25 has been pushed to the Fedora 25 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-682d26d245

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


[Bug 1474802] perl-HTML-FormFu-MultiForm-1.03 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474802

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #7 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc24 has been pushed to the Fedora 24 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3dd0610412

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


[Bug 1474549] perl-HTML-FormFu-MultiForm-1.02 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474549

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #10 from Fedora Update System  ---
perl-HTML-FormFu-MultiForm-1.03-1.fc24 has been pushed to the Fedora 24 testing
repository. If problems still persist, please make note of it in this bug
report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2017-3dd0610412

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


[Bug 1372923] Package modified in Fedora exhibits bad behavior when /etc/ localtime is old

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1372923



--- Comment #11 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1474764] perl-DBD-MySQL-4.043-2.fc27 FTBFS: mysql.xs:827:29: error: ' MYSQL_OPT_NET_BUFFER_LENGTH' undeclared

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1474764



--- Comment #3 from Adam Williamson  ---
I've done that, so this should build now.

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


ignatenkobrain pushed to perl (master). "Disable debuginfo-per-subpackage generation for now due to RPM bug (..more)"

2017-07-25 Thread notifications
From 04b4431b985d7012715e2d4d02ba20b5bef8394e Mon Sep 17 00:00:00 2001
From: Igor Gnatenko 
Date: Tue, 25 Jul 2017 23:58:56 +0200
Subject: Disable debuginfo-per-subpackage generation for now due to RPM bug

Signed-off-by: Igor Gnatenko 
---
 perl.spec | 4 
 1 file changed, 4 insertions(+)

diff --git a/perl.spec b/perl.spec
index 042b938..dc67408 100644
--- a/perl.spec
+++ b/perl.spec
@@ -20,6 +20,10 @@
 # same as we provide in /usr/lib/rpm/macros.d/macros.perl
 %global perl5_testdir   %{_libexecdir}/perl5-tests
 
+# Disable debuginfo-per-subpackage generation for now due to RPM bug
+# https://github.com/rpm-software-management/rpm/issues/278
+%undefine _debuginfo_subpackages
+
 # Optional features
 # We can bootstrap without gdbm
 %bcond_without gdbm
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl.git/commit/?h=master&id=04b4431b985d7012715e2d4d02ba20b5bef8394e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1470205] CVE-2017-10672 perl-XML-LibXML: Use-after-free by controlling the arguments to a replaceChild call [ fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1470205

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-XML-LibXML-2.0129-5.fc |perl-XML-LibXML-2.0129-5.fc
   |27  |27
   |perl-XML-LibXML-2.0129-2.fc |perl-XML-LibXML-2.0129-2.fc
   |26  |26
   |perl-XML-LibXML-2.0128-2.fc |perl-XML-LibXML-2.0128-2.fc
   |24  |24
   ||perl-XML-LibXML-2.0129-2.fc
   ||25



--- Comment #10 from Fedora Update System  ---
perl-XML-LibXML-2.0129-2.fc25 has been pushed to the Fedora 25 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.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1471500] perl-Module-Runtime-0.015 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1471500

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-Module-Runtime-0.015-1 |perl-Module-Runtime-0.015-1
   |.fc27   |.fc27
   |perl-Module-Runtime-0.015-1 |perl-Module-Runtime-0.015-1
   |.fc26   |.fc26
   |perl-Module-Runtime-0.015-1 |perl-Module-Runtime-0.015-1
   |.fc24   |.fc24
   ||perl-Module-Runtime-0.015-1
   ||.fc25



--- Comment #12 from Fedora Update System  ---
perl-Module-Runtime-0.015-1.fc25 has been pushed to the Fedora 25 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.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1470205] CVE-2017-10672 perl-XML-LibXML: Use-after-free by controlling the arguments to a replaceChild call [ fedora-all]

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1470205

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-XML-LibXML-2.0129-5.fc |perl-XML-LibXML-2.0129-5.fc
   |27  |27
   |perl-XML-LibXML-2.0129-2.fc |perl-XML-LibXML-2.0129-2.fc
   |26  |26
   ||perl-XML-LibXML-2.0128-2.fc
   ||24



--- Comment #9 from Fedora Update System  ---
perl-XML-LibXML-2.0128-2.fc24 has been pushed to the Fedora 24 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.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1471500] perl-Module-Runtime-0.015 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1471500

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-Module-Runtime-0.015-1 |perl-Module-Runtime-0.015-1
   |.fc27   |.fc27
   |perl-Module-Runtime-0.015-1 |perl-Module-Runtime-0.015-1
   |.fc26   |.fc26
   ||perl-Module-Runtime-0.015-1
   ||.fc24



--- Comment #11 from Fedora Update System  ---
perl-Module-Runtime-0.015-1.fc24 has been pushed to the Fedora 24 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.
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1472175] Please package perl-Authen-Radius for CentOS 7

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1472175



--- Comment #4 from Fedora Update System  ---
perl-Data-HexDump-0.02-26.el7 perl-Authen-Radius-0.26-4.el7 has been submitted
as an update to Fedora EPEL 7.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-d0f7e44663

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


pghmcfc pushed to perl-Authen-Radius (master). "Classify buildreqs by usage"

2017-07-25 Thread notifications
From a97a0348f82b35aa6020ac1e0af668faf5bd8927 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 25 Jul 2017 20:23:25 +0100
Subject: Classify buildreqs by usage

---
 .rpmlint|  3 +++
 perl-Authen-Radius.spec | 40 ++--
 2 files changed, 25 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..110abc7
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,3 @@
+from Config import *
+
+addFilter("spelling-error %description -l en_US usernames -> ")
diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 725b305..a27e818 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,37 +1,40 @@
 Name:   perl-Authen-Radius
 Version:0.26
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
-Group:  Development/Libraries
 URL:http://search.cpan.org/dist/RadiusPerl/
 Source0:
http://www.cpan.org/modules/by-module/Authen/Authen-Radius-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+# Module Build
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
-BuildRequires:  perl-interpreter
 BuildRequires:  perl-generators
-BuildRequires:  perl(Config)
+BuildRequires:  perl%{?fedora:-interpreter}
+BuildRequires:  perl(ExtUtils::MakeMaker)
+# Module Runtime
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper) >= 1
 BuildRequires:  perl(Data::HexDump) >= 0.02
 BuildRequires:  perl(Digest::MD5) >= 2.20
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(FileHandle)
 BuildRequires:  perl(IO) >= 1.12
 BuildRequires:  perl(IO::Select)
 BuildRequires:  perl(IO::Socket)
 BuildRequires:  perl(Net::IP) >= 1.26
 BuildRequires:  perl(strict)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(Test::NoWarnings)
 BuildRequires:  perl(Time::HiRes)
 BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
+# Test Suite
+BuildRequires:  perl(Config)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::NoWarnings)
+# Optional Tests
+# Dependencies
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(Data::Dumper) >= 1
 Requires:   perl(Data::HexDump) >= 0.02
@@ -39,13 +42,12 @@ Requires:   perl(Digest::MD5) >= 2.20
 Requires:   perl(IO) >= 1.12
 Requires:   perl(Net::IP) >= 1.26
 
+# Filter unversioned dependencies
 %global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Data::Dumper\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Data::HexDump\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Digest::MD5\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Net::IP\\)\\s*$
 
-
-
 %description
 The Authen::Radius module provides a simple class that allows you to
 send/receive Radius requests/responses to/from a Radius server.
@@ -61,24 +63,23 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -delete
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %license LICENSE
 %doc Changes README
 %{perl_vendorlib}/Authen/
-%{_mandir}/man3/Authen::Radius.3pm*
+%{_mandir}/man3/Authen::Radius.3*
 
 %changelog
+* Tue Jul 25 2017 Paul Howarth  - 0.26-4
+- Classify buildreqs by usage
+
 * Sun Jun 04 2017 Jitka Plesnikova  - 0.26-3
 - Perl 5.26 rebuild
 
@@ -86,7 +87,10 @@ rm -rf %{buildroot}
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 
 * Tue Jan 17 2017 Jitka Plesnikova  - 0.26-1
-- 0.26 bump
+- Update to 0.26
+  - Require Perl v5.10+
+  - Fixed warnings in tests
+  - Fix sublist attribute type encoding
 
 * Sun May 15 2016 Jitka Plesnikova  - 0.24-7
 - Perl 5.24 rebuild
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=master&id=a97a0348f82b35aa6020ac1e0af668faf5bd8927
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1288914] RT package is missing database schemas

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288914



--- Comment #3 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1469110] perl-Text-Fuzzy-0.26 is available

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1469110

Denis Fateyev  changed:

   What|Removed |Added

 Status|ON_QA   |ASSIGNED



--- Comment #7 from Denis Fateyev  ---
Thanks for pointing that, Petr. It should be a recent issue with package.
I have already unpushed F26 update, and will fix the things soon.

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


[Bug 1283764] Use of uninitialized value in numeric eq (==) at /usr/share/ perl5/vendor_perl/File/Tail.pm line 391

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1283764



--- Comment #4 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.26 rebuild"

2017-07-25 Thread notifications
From 10cda921fad5eade6458dea28cd69f019a9c145c Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sun, 4 Jun 2017 20:13:52 +0200
Subject: Perl 5.26 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 80ef215..5671381 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.26
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -79,6 +79,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Sun Jun 04 2017 Jitka Plesnikova  - 0.26-3
+- Perl 5.26 rebuild
+
 * Sat Feb 11 2017 Fedora Release Engineering  - 
0.26-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=10cda921fad5eade6458dea28cd69f019a9c145c
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Classify buildreqs by usage"

2017-07-25 Thread notifications
From a97a0348f82b35aa6020ac1e0af668faf5bd8927 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Tue, 25 Jul 2017 20:23:25 +0100
Subject: Classify buildreqs by usage

---
 .rpmlint|  3 +++
 perl-Authen-Radius.spec | 40 ++--
 2 files changed, 25 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..110abc7
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,3 @@
+from Config import *
+
+addFilter("spelling-error %description -l en_US usernames -> ")
diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 725b305..a27e818 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,37 +1,40 @@
 Name:   perl-Authen-Radius
 Version:0.26
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
-Group:  Development/Libraries
 URL:http://search.cpan.org/dist/RadiusPerl/
 Source0:
http://www.cpan.org/modules/by-module/Authen/Authen-Radius-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+# Module Build
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
-BuildRequires:  perl-interpreter
 BuildRequires:  perl-generators
-BuildRequires:  perl(Config)
+BuildRequires:  perl%{?fedora:-interpreter}
+BuildRequires:  perl(ExtUtils::MakeMaker)
+# Module Runtime
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper) >= 1
 BuildRequires:  perl(Data::HexDump) >= 0.02
 BuildRequires:  perl(Digest::MD5) >= 2.20
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(FileHandle)
 BuildRequires:  perl(IO) >= 1.12
 BuildRequires:  perl(IO::Select)
 BuildRequires:  perl(IO::Socket)
 BuildRequires:  perl(Net::IP) >= 1.26
 BuildRequires:  perl(strict)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(Test::NoWarnings)
 BuildRequires:  perl(Time::HiRes)
 BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
+# Test Suite
+BuildRequires:  perl(Config)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::NoWarnings)
+# Optional Tests
+# Dependencies
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(Data::Dumper) >= 1
 Requires:   perl(Data::HexDump) >= 0.02
@@ -39,13 +42,12 @@ Requires:   perl(Digest::MD5) >= 2.20
 Requires:   perl(IO) >= 1.12
 Requires:   perl(Net::IP) >= 1.26
 
+# Filter unversioned dependencies
 %global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Data::Dumper\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Data::HexDump\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Digest::MD5\\)\\s*$
 %global __requires_exclude %__requires_exclude|^perl\\(Net::IP\\)\\s*$
 
-
-
 %description
 The Authen::Radius module provides a simple class that allows you to
 send/receive Radius requests/responses to/from a Radius server.
@@ -61,24 +63,23 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -delete
-%{_fixperms} %{buildroot}
+%{_fixperms} -c %{buildroot}
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
 %license LICENSE
 %doc Changes README
 %{perl_vendorlib}/Authen/
-%{_mandir}/man3/Authen::Radius.3pm*
+%{_mandir}/man3/Authen::Radius.3*
 
 %changelog
+* Tue Jul 25 2017 Paul Howarth  - 0.26-4
+- Classify buildreqs by usage
+
 * Sun Jun 04 2017 Jitka Plesnikova  - 0.26-3
 - Perl 5.26 rebuild
 
@@ -86,7 +87,10 @@ rm -rf %{buildroot}
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
 
 * Tue Jan 17 2017 Jitka Plesnikova  - 0.26-1
-- 0.26 bump
+- Update to 0.26
+  - Require Perl v5.10+
+  - Fixed warnings in tests
+  - Fix sublist attribute type encoding
 
 * Sun May 15 2016 Jitka Plesnikova  - 0.24-7
 - Perl 5.24 rebuild
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=a97a0348f82b35aa6020ac1e0af668faf5bd8927
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Mandatory Perl build-requires added "

2017-07-25 Thread notifications
From 9c6be484047bd11fc6fa0ab6c8bc32339c7be5af Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 24 Jun 2016 10:19:17 +0200
Subject: Mandatory Perl build-requires added
 

---
 perl-Authen-Radius.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 5f437ee..1240300 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -8,6 +8,7 @@ URL:http://search.cpan.org/dist/RadiusPerl/
 Source0:
http://www.cpan.org/modules/by-module/Authen/Authen-Radius-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+BuildRequires:  perl-generators
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper) >= 1
 BuildRequires:  perl(Data::HexDump) >= 0.02
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=9c6be484047bd11fc6fa0ab6c8bc32339c7be5af
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild"

2017-07-25 Thread notifications
From 62fc5310ccbd58fadb25dde0d92713c5828b6d4e Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Sat, 11 Feb 2017 01:38:23 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 74611ad..80ef215 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.26
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -79,6 +79,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Sat Feb 11 2017 Fedora Release Engineering  - 
0.26-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
 * Tue Jan 17 2017 Jitka Plesnikova  - 0.26-1
 - 0.26 bump
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=62fc5310ccbd58fadb25dde0d92713c5828b6d4e
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "perl dependency renamed to perl-interpreter "

2017-07-25 Thread notifications
From 55d788def5089bf732dc4753de405d60a321b2a4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 12 Jul 2017 15:13:04 +0200
Subject: perl dependency renamed to perl-interpreter
 

---
 perl-Authen-Radius.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 5671381..725b305 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -11,7 +11,7 @@ BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
-BuildRequires:  perl
+BuildRequires:  perl-interpreter
 BuildRequires:  perl-generators
 BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=55d788def5089bf732dc4753de405d60a321b2a4
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "0.26 bump"

2017-07-25 Thread notifications
From 30dd4589055e7132b87fed38652a044326fffb01 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Tue, 17 Jan 2017 15:20:43 +0100
Subject: 0.26 bump

---
 perl-Authen-Radius.spec | 33 -
 sources |  2 +-
 2 files changed, 29 insertions(+), 6 deletions(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 1240300..74611ad 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
-Version:0.24
-Release:7%{?dist}
+Version:0.26
+Release:1%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -8,24 +8,43 @@ URL:http://search.cpan.org/dist/RadiusPerl/
 Source0:
http://www.cpan.org/modules/by-module/Authen/Authen-Radius-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
+BuildRequires:  perl
 BuildRequires:  perl-generators
+BuildRequires:  perl(Config)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper) >= 1
 BuildRequires:  perl(Data::HexDump) >= 0.02
 BuildRequires:  perl(Digest::MD5) >= 2.20
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(FileHandle)
-BuildRequires:  perl(Getopt::Long)
 BuildRequires:  perl(IO) >= 1.12
 BuildRequires:  perl(IO::Select)
 BuildRequires:  perl(IO::Socket)
+BuildRequires:  perl(Net::IP) >= 1.26
 BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::NoWarnings)
 BuildRequires:  perl(Time::HiRes)
 BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(Data::Dumper) >= 1
+Requires:   perl(Data::HexDump) >= 0.02
+Requires:   perl(Digest::MD5) >= 2.20
+Requires:   perl(IO) >= 1.12
+Requires:   perl(Net::IP) >= 1.26
+
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(Data::Dumper\\)\\s*$
+%global __requires_exclude %__requires_exclude|^perl\\(Data::HexDump\\)\\s*$
+%global __requires_exclude %__requires_exclude|^perl\\(Digest::MD5\\)\\s*$
+%global __requires_exclude %__requires_exclude|^perl\\(Net::IP\\)\\s*$
+
+
 
 %description
 The Authen::Radius module provides a simple class that allows you to
@@ -44,7 +63,7 @@ make %{?_smp_mflags}
 %install
 rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -type f -name .packlist -delete
 %{_fixperms} %{buildroot}
 
 %check
@@ -54,11 +73,15 @@ make test
 rm -rf %{buildroot}
 
 %files
-%doc Changes LICENSE README
+%license LICENSE
+%doc Changes README
 %{perl_vendorlib}/Authen/
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Tue Jan 17 2017 Jitka Plesnikova  - 0.26-1
+- 0.26 bump
+
 * Sun May 15 2016 Jitka Plesnikova  - 0.24-7
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index c9aa1b0..0a4f00e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-35541556f8ec48bf0b60f2e8d284957f  Authen-Radius-0.24.tar.gz
+SHA512 (Authen-Radius-0.26.tar.gz) = 
6779712cd4fdc45115c6e68766ef58c8b1dc9bf3037f3e0e243bc23318d13b09104df5f825b40ce26f7eebe52e6c4887efc8525334f2ab00da23fe76322f0b56
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=30dd4589055e7132b87fed38652a044326fffb01
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.24 rebuild"

2017-07-25 Thread notifications
From d044de5b837ed18f78c8ee98c5c038b09e2c9b75 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sun, 15 May 2016 10:11:57 +0200
Subject: Perl 5.24 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 26a0d2c..5f437ee 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Sun May 15 2016 Jitka Plesnikova  - 0.24-7
+- Perl 5.24 rebuild
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
0.24-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=d044de5b837ed18f78c8ee98c5c038b09e2c9b75
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild"

2017-07-25 Thread notifications
From 3bd8d6654666803fdc80f20a8663f4f7ddf694cc Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Thu, 4 Feb 2016 12:17:46 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 239ef7d..26a0d2c 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Thu Feb 04 2016 Fedora Release Engineering  - 
0.24-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.24-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=3bd8d6654666803fdc80f20a8663f4f7ddf694cc
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2017-07-25 Thread notifications
From f3d5cdf1d06c6a90896178ebbba969a2c2a447dc Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:15:10 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index a6e55e4..239ef7d 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 0.24-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Thu Jun 04 2015 Jitka Plesnikova  - 0.24-4
 - Perl 5.22 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=f3d5cdf1d06c6a90896178ebbba969a2c2a447dc
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.22 rebuild"

2017-07-25 Thread notifications
From 8a16230700ec0d44aa4cd51487b63bab8d920181 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Thu, 4 Jun 2015 09:56:10 +0200
Subject: Perl 5.22 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index bd5aefe..a6e55e4 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Thu Jun 04 2015 Jitka Plesnikova  - 0.24-4
+- Perl 5.22 rebuild
+
 * Wed Aug 27 2014 Jitka Plesnikova  - 0.24-3
 - Perl 5.20 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=8a16230700ec0d44aa4cd51487b63bab8d920181
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.20 rebuild"

2017-07-25 Thread notifications
From 7032a7b340ce8b19842da5053f55c8e3fd7b27ff Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 27 Aug 2014 18:14:58 +0200
Subject: Perl 5.20 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index f0962f6..bd5aefe 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Wed Aug 27 2014 Jitka Plesnikova  - 0.24-3
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 0.24-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=7032a7b340ce8b19842da5053f55c8e3fd7b27ff
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Update to 0.24 (..more)"

2017-07-25 Thread notifications
From 6d045732fa94b6c70895bf9af8c7e2dcafd4a45c Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 31 Oct 2013 14:02:59 +
Subject: Update to 0.24

- New upstream release 0.24
  - Added support for changing I/O activity timeouts, so that custom
retransmission policies can be implemented
  - Added ACCESS_CHALLENGE packet type definition
  - Fix the excessive wait on processing broadcasts when at least one of the
nodes in node list did not listen on the requested port (a side-effect is
that it is now possible to set timeout in floating seconds since the epoch)
- BR: perl(Time::HiRes)
---
 perl-Authen-Radius.spec | 13 -
 sources |  2 +-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 12e1cb0..a9743e5 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,5 +1,5 @@
 Name:   perl-Authen-Radius
-Version:0.23
+Version:0.24
 Release:1%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
@@ -21,6 +21,7 @@ BuildRequires:  perl(IO::Select)
 BuildRequires:  perl(IO::Socket)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Time::HiRes)
 BuildRequires:  perl(vars)
 BuildRequires:  perl(warnings)
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
@@ -57,6 +58,16 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Thu Oct 31 2013 Paul Howarth  - 0.24-1
+- Update to 0.24
+  - Added support for changing I/O activity timeouts, so that custom
+retransmission policies can be implemented
+  - Added ACCESS_CHALLENGE packet type definition
+  - Fix the excessive wait on processing broadcasts when at least one of the
+nodes in node list did not listen on the requested port (a side-effect is
+that it is now possible to set timeout in floating seconds since the epoch)
+- BR: perl(Time::HiRes)
+
 * Thu Oct 31 2013 Paul Howarth  - 0.23-1
 - Update to 0.23
   - Authen::Radius is now distributed under the Perl Artistic License v2.0
diff --git a/sources b/sources
index 190d67c..c9aa1b0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-556c5bea85f67ab83ec247a74c65e27e  Authen-Radius-0.23.tar.gz
+35541556f8ec48bf0b60f2e8d284957f  Authen-Radius-0.24.tar.gz
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=6d045732fa94b6c70895bf9af8c7e2dcafd4a45c
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2017-07-25 Thread notifications
From 961d3035717144e5a1e4cbeb7d2cbb0fbea64a53 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:35:35 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index a9743e5..f0962f6 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.24
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Provide simple Radius client facilities
 License:Artistic 2.0
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Authen::Radius.3pm*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 0.24-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Thu Oct 31 2013 Paul Howarth  - 0.24-1
 - Update to 0.24
   - Added support for changing I/O activity timeouts, so that custom
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=961d3035717144e5a1e4cbeb7d2cbb0fbea64a53
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- 661697 rebuild for fixing problems with vendorach/lib"

2017-07-25 Thread notifications
From 86dcf22bae0bfff879c84d34d64195d73191644b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 
Date: Wed, 15 Dec 2010 02:10:18 +0100
Subject: - 661697 rebuild for fixing problems with vendorach/lib

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index a753a33..d3a4c9c 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Dec 15 2010 Marcela Maslanova  - 0.13-8
+- 661697 rebuild for fixing problems with vendorach/lib
+
 * Thu Apr 29 2010 Marcela Maslanova  - 0.13-7
 - Mass rebuild with perl-5.12.0
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=86dcf22bae0bfff879c84d34d64195d73191644b
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Update to 0.23 (..more)"

2017-07-25 Thread notifications
From 131534e4dae65507266df9b854f6cd9005e1a8d5 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 31 Oct 2013 10:05:18 +
Subject: Update to 0.23

- New upstream release 0.23
  - Authen::Radius is now distributed under the Perl Artistic License v2.0
  - Support for RADIUS retransmits
  - For the "check_pwd" method, place the local socket's "real" IP address into
the NAS-IP-Address attribute instead of 127.0.0.1
  - Bugfixes in error handling
  - Generate random authenticators
  - Support for CoA request
  - Ability to specify the source IP/port for outgoing packets
  - Support for RFC3579 - Message-Authenticator
  - Support for a list of multiple RADIUS servers (RADIUS cluster)
  - Ability to work with dictionaries in FreeRADIUS format
  - Support (partial) for WIMAX attributes
  - Fixed the bug with the incorrect encoding of Cisco AVPair attributes
  - Added support for attribute values for byte and short attribute types
  - Fix the excessive "types mismatch" warnings on PoD packets
  - Clear authenticator as a part of clear_attibutes(), so multiple requests,
sent using the same object, will have different authenticators (as they
should)
- Specify all dependencies
- Drop %defattr, redundant since rpm 4.4
- Package upstream's new LICENSE file
- Make %files list more explicit
- Use %{_fixperms} macro rather than our own chmod incantation
- Don't need to remove empty directories from the buildroot
- Use DESTDIR rather than PERL_INSTALL_ROOT
- Don't use macros for commands
- Run the test suite now that it skips tests that require a Radius server
---
 .gitignore  |   2 +-
 LICENSING.txt   | 208 
 perl-Authen-Radius.spec |  91 ++---
 sources |   2 +-
 4 files changed, 65 insertions(+), 238 deletions(-)
 delete mode 100644 LICENSING.txt

diff --git a/.gitignore b/.gitignore
index fa49e25..62fd2b0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-RadiusPerl-0.13.tar.gz
+/Authen-Radius-[0-9.]*.tar.gz
diff --git a/LICENSING.txt b/LICENSING.txt
deleted file mode 100644
index 7fc735a..000
--- a/LICENSING.txt
+++ /dev/null
@@ -1,208 +0,0 @@
-Upstream copyright holders for RadiusPerl gave their permission for Fedora to
-distribute the code under Artistic 2.0:
-
-*
-
-Date: Tue, 9 Sep 2008 20:09:21 +0200
-From: Carl Declerck 
-To: "Tom \"spot\" Callaway" 
-Subject: Re: License of RadiusPerl
-
-Tom, Artistic 2.0 is OK for me.
-
-Regards,
-Carl.
-
-*
-
-Date: Tue, 09 Sep 2008 13:38:02 -0700
-From: Andriy Zhylenko 
-To: "Tom \"spot\" Callaway" 
-CC: Carl Declerck 
-Subject: Re: License of RadiusPerl
-
-Hello Tom,
-
-Sorry for the delay, I have returned to the US only yesterday. Yes, you 
-do have my permission to distribute Authen::Radius under Artistic 2.0
-
-BTW, would RedHat be interested in doing a press-release with PortaOne 
-regarding this license change? I believe this will help do educate the 
-developer's community on the changes in licenses and perhaps encourage 
-more people to change the licensing conditions...
-
-With best regards,
-Andriy Zhylenko
-
-*
-
-Artistic License 2.0
-
-Copyright (c) 2000-2006, The Perl Foundation.
-
-Everyone is permitted to copy and distribute verbatim copies of this license 
-document, but changing it is not allowed.
-
-Preamble
-
-This license establishes the terms under which a given free software Package 
-may be copied, modified, distributed, and/or redistributed. The intent is that 
-the Copyright Holder maintains some artistic control over the development of 
-that Package while still keeping the Package available as open source and free 
-software.
-
-You are always permitted to make arrangements wholly outside of this license 
-directly with the Copyright Holder of a given Package. If the terms of this 
-license do not permit the full use that you propose to make of the Package, 
you 
-should contact the Copyright Holder and seek a different licensing arrangement.
-
-Definitions
-
-"Copyright Holder" means the individual(s) or organization(s) named in the 
-copyright notice for the entire Package.
-
-"Contributor" means any party that has contributed code or other material to 
-the Package, in accordance with the Copyright Holder's procedures.
-
-"You" and "your" means any person who would like to copy, distribute, or 
modify 
-the Package.
-
-"Package" means the collection of files distributed by the Copyright Holder, 
and 
-derivatives of that collection and/or of those files. A given Package may 
-consist of either the Standard Version, or a Modified Version.
-
-"Distribute" means providing a copy of the Package or making it accessible to 
-anyone else, or in the case of a company or organization, to others outside of 
-your company or organization.
-
-"Distributor Fee" means any fee that you charge for Distributing this Package 
or 
-providing support for this Package to another party. It does not mean 
licensing 
-fees.
-
-"Standa

pghmcfc pushed to perl-Authen-Radius (epel7). "Perl mass rebuild"

2017-07-25 Thread notifications
From 8605d5622f1e154f5d31536607bf8f069651a360 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 
Date: Mon, 20 Jun 2011 21:57:52 +0200
Subject: Perl mass rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 686d909..16437cc 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 20 2011 Marcela Mašláňová  - 0.13-10
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering  
- 0.13-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=8605d5622f1e154f5d31536607bf8f069651a360
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.18 rebuild"

2017-07-25 Thread notifications
From aeb5f2a3aa5a6b408245f9911e7cc712f8f921c8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 18 Jul 2013 12:37:22 +0200
Subject: Perl 5.18 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 9355ccc..e7ff08c 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:14%{?dist}
+Release:15%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 18 2013 Petr Pisar  - 0.13-15
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering  
- 0.13-14
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=aeb5f2a3aa5a6b408245f9911e7cc712f8f921c8
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild"

2017-07-25 Thread notifications
From c008df2f928f4c7707ac5bea7f5576d4d5895556 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 3 Aug 2013 12:23:22 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index e7ff08c..b371728 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering  
- 0.13-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Thu Jul 18 2013 Petr Pisar  - 0.13-15
 - Perl 5.18 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=c008df2f928f4c7707ac5bea7f5576d4d5895556
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild"

2017-07-25 Thread notifications
From d4246b9590265f32ce61aebc631922957c82e7e2 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 14 Feb 2013 04:17:09 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 91fdbd7..9355ccc 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:13%{?dist}
+Release:14%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 14 2013 Fedora Release Engineering  
- 0.13-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
 * Fri Jul 20 2012 Fedora Release Engineering  
- 0.13-13
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=d4246b9590265f32ce61aebc631922957c82e7e2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild"

2017-07-25 Thread notifications
From e31799eca2331e7b16941282386ffdb53d6807dc Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 20 Jul 2012 05:31:21 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 5a51b7f..91fdbd7 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jul 20 2012 Fedora Release Engineering  
- 0.13-13
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
 * Mon Jun 11 2012 Petr Pisar  - 0.13-12
 - Perl 5.16 rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=e31799eca2331e7b16941282386ffdb53d6807dc
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Perl 5.16 rebuild"

2017-07-25 Thread notifications
From 1d0ce6f5f1f6a9cc685e1681ce408a7845190263 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Mon, 11 Jun 2012 23:58:34 +0200
Subject: Perl 5.16 rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 2573cdc..5a51b7f 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:11%{?dist}
+Release:12%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jun 11 2012 Petr Pisar  - 0.13-12
+- Perl 5.16 rebuild
+
 * Fri Jan 13 2012 Fedora Release Engineering  
- 0.13-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=1d0ce6f5f1f6a9cc685e1681ce408a7845190263
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild"

2017-07-25 Thread notifications
From 069776f55c6532a190cfea4b3c448108938e30a1 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 13 Jan 2012 06:19:45 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 16437cc..2573cdc 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 13 2012 Fedora Release Engineering  
- 0.13-11
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
 * Mon Jun 20 2011 Marcela Mašláňová  - 0.13-10
 - Perl mass rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=069776f55c6532a190cfea4b3c448108938e30a1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "dist-git conversion"

2017-07-25 Thread notifications
From 45029f427375c6bb0a02e9df440767f7e22c4006 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Thu, 29 Jul 2010 05:48:55 +
Subject: dist-git conversion

---
 .cvsignore |  1 -
 .gitignore |  1 +
 Makefile   | 21 -
 3 files changed, 1 insertion(+), 22 deletions(-)
 delete mode 100644 .cvsignore
 create mode 100644 .gitignore
 delete mode 100644 Makefile

diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index fa49e25..000
--- a/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-RadiusPerl-0.13.tar.gz
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..fa49e25
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+RadiusPerl-0.13.tar.gz
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 33d4219..000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Makefile for source rpm: perl-Authen-Radius
-# $Id$
-NAME := perl-Authen-Radius
-SPECFILE = $(firstword $(wildcard *.spec))
-
-define find-makefile-common
-for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
-endef
-
-MAKEFILE_COMMON := $(shell $(find-makefile-common))
-
-ifeq ($(MAKEFILE_COMMON),)
-# attept a checkout
-define checkout-makefile-common
-test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo 
"common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to 
checkout the 'common' module." ; exit -1 ; } >&2
-endef
-
-MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
-endif
-
-include $(MAKEFILE_COMMON)
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=45029f427375c6bb0a02e9df440767f7e22c4006
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild"

2017-07-25 Thread notifications
From ecc4e87593feb0e11485b6f0039fc5bf6a130915 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Tue, 8 Feb 2011 10:17:06 -0600
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index d3a4c9c..686d909 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 08 2011 Fedora Release Engineering  
- 0.13-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
 * Wed Dec 15 2010 Marcela Maslanova  - 0.13-8
 - 661697 rebuild for fixing problems with vendorach/lib
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=ecc4e87593feb0e11485b6f0039fc5bf6a130915
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Mass rebuild with perl-5.12.0"

2017-07-25 Thread notifications
From fc7aa8546d40ad7652dc23beaf44887fd5a2016f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?=
 
Date: Thu, 29 Apr 2010 19:13:22 +
Subject: - Mass rebuild with perl-5.12.0

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 344ef6e..a753a33 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Thu Apr 29 2010 Marcela Maslanova  - 0.13-7
+- Mass rebuild with perl-5.12.0
+
 * Mon Dec  7 2009 Stepan Kasal  - 0.13-6
 - rebuild against perl 5.10.1
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=fc7aa8546d40ad7652dc23beaf44887fd5a2016f
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- rebuild against perl 5.10.1"

2017-07-25 Thread notifications
From 9e4e848634bbf827128e84aa44bf381e594c82ae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= 
Date: Mon, 7 Dec 2009 12:07:36 +
Subject: - rebuild against perl 5.10.1

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index f53a26b..344ef6e 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Mon Dec  7 2009 Stepan Kasal  - 0.13-6
+- rebuild against perl 5.10.1
+
 * Sat Jul 25 2009 Fedora Release Engineering  
- 0.13-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=9e4e848634bbf827128e84aa44bf381e594c82ae
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild"

2017-07-25 Thread notifications
From 8e2e73818903cfdf0e453ebdb248ff5c71c57377 Mon Sep 17 00:00:00 2001
From: Jesse Keating 
Date: Sun, 26 Jul 2009 01:46:00 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 6bdfc17..f53a26b 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jul 25 2009 Fedora Release Engineering  
- 0.13-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
 * Thu Feb 26 2009 Fedora Release Engineering  
- 0.13-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=8e2e73818903cfdf0e453ebdb248ff5c71c57377
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Fix typo that causes a failure to update the common directory. (releng (..more)"

2017-07-25 Thread notifications
From 13db6e2fdcbf7c26e0106c48e8d5686b5f5c9dfe Mon Sep 17 00:00:00 2001
From: Bill Nottingham 
Date: Wed, 25 Nov 2009 23:30:24 +
Subject: Fix typo that causes a failure to update the common directory.
 (releng #2781)

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 79ea195..33d4219 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ NAME := perl-Authen-Radius
 SPECFILE = $(firstword $(wildcard *.spec))
 
 define find-makefile-common
-for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
 endef
 
 MAKEFILE_COMMON := $(shell $(find-makefile-common))
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=13db6e2fdcbf7c26e0106c48e8d5686b5f5c9dfe
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "fix licensing"

2017-07-25 Thread notifications
From e55f92246391b679d5be85f9054033a33c93fb4e Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Tue, 9 Sep 2008 21:13:58 +
Subject: fix licensing

---
 LICENSING.txt   | 208 
 perl-Authen-Radius.spec |  12 ++-
 2 files changed, 217 insertions(+), 3 deletions(-)
 create mode 100644 LICENSING.txt

diff --git a/LICENSING.txt b/LICENSING.txt
new file mode 100644
index 000..7fc735a
--- /dev/null
+++ b/LICENSING.txt
@@ -0,0 +1,208 @@
+Upstream copyright holders for RadiusPerl gave their permission for Fedora to
+distribute the code under Artistic 2.0:
+
+*
+
+Date: Tue, 9 Sep 2008 20:09:21 +0200
+From: Carl Declerck 
+To: "Tom \"spot\" Callaway" 
+Subject: Re: License of RadiusPerl
+
+Tom, Artistic 2.0 is OK for me.
+
+Regards,
+Carl.
+
+*
+
+Date: Tue, 09 Sep 2008 13:38:02 -0700
+From: Andriy Zhylenko 
+To: "Tom \"spot\" Callaway" 
+CC: Carl Declerck 
+Subject: Re: License of RadiusPerl
+
+Hello Tom,
+
+Sorry for the delay, I have returned to the US only yesterday. Yes, you 
+do have my permission to distribute Authen::Radius under Artistic 2.0
+
+BTW, would RedHat be interested in doing a press-release with PortaOne 
+regarding this license change? I believe this will help do educate the 
+developer's community on the changes in licenses and perhaps encourage 
+more people to change the licensing conditions...
+
+With best regards,
+Andriy Zhylenko
+
+*
+
+Artistic License 2.0
+
+Copyright (c) 2000-2006, The Perl Foundation.
+
+Everyone is permitted to copy and distribute verbatim copies of this license 
+document, but changing it is not allowed.
+
+Preamble
+
+This license establishes the terms under which a given free software Package 
+may be copied, modified, distributed, and/or redistributed. The intent is that 
+the Copyright Holder maintains some artistic control over the development of 
+that Package while still keeping the Package available as open source and free 
+software.
+
+You are always permitted to make arrangements wholly outside of this license 
+directly with the Copyright Holder of a given Package. If the terms of this 
+license do not permit the full use that you propose to make of the Package, 
you 
+should contact the Copyright Holder and seek a different licensing arrangement.
+
+Definitions
+
+"Copyright Holder" means the individual(s) or organization(s) named in the 
+copyright notice for the entire Package.
+
+"Contributor" means any party that has contributed code or other material to 
+the Package, in accordance with the Copyright Holder's procedures.
+
+"You" and "your" means any person who would like to copy, distribute, or 
modify 
+the Package.
+
+"Package" means the collection of files distributed by the Copyright Holder, 
and 
+derivatives of that collection and/or of those files. A given Package may 
+consist of either the Standard Version, or a Modified Version.
+
+"Distribute" means providing a copy of the Package or making it accessible to 
+anyone else, or in the case of a company or organization, to others outside of 
+your company or organization.
+
+"Distributor Fee" means any fee that you charge for Distributing this Package 
or 
+providing support for this Package to another party. It does not mean 
licensing 
+fees.
+
+"Standard Version" refers to the Package if it has not been modified, or has 
+been modified only in ways explicitly requested by the Copyright Holder.
+
+"Modified Version" means the Package, if it has been changed, and such changes 
+were not explicitly requested by the Copyright Holder.
+
+"Original License" means this Artistic License as Distributed with the 
Standard 
+Version of the Package, in its current version or as it may be modified by The 
+Perl Foundation in the future.
+
+"Source" form means the source code, documentation source, and configuration 
+files for the Package.
+
+"Compiled" form means the compiled bytecode, object code, binary, or any other 
+form resulting from mechanical transformation or translation of the Source 
form.
+
+Permission for Use and Modification Without Distribution
+
+(1) You are permitted to use the Standard Version and create and use Modified 
+Versions for any purpose without restriction, provided that you do not 
+Distribute the Modified Version.
+
+Permissions for Redistribution of the Standard Version
+
+(2) You may Distribute verbatim copies of the Source form of the Standard 
+Version of this Package in any medium without restriction, either gratis or 
for 
+a Distributor Fee, provided that you duplicate all of the original copyright 
+notices and associated disclaimers. At your discretion, such verbatim copies 
may 
+or may not include a Compiled form of the Package.
+
+(3) You may apply any bug fixes, portability changes, and other modifications 
+made available from the Copyright Holder. The resulting Package will still be 
+considered the Standard Version, and as such will be subject to the Original 
+License.
+
+Distr

pghmcfc pushed to perl-Authen-Radius (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild"

2017-07-25 Thread notifications
From b86cafb5a00649977a87406a29e4bbd7fb6c96f5 Mon Sep 17 00:00:00 2001
From: Jesse Keating 
Date: Thu, 26 Feb 2009 11:12:59 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 6873404..6bdfc17 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Perl Authen::Radius modules
 # See LICENSING.txt
 License:Artistic 2.0
@@ -52,6 +52,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 26 2009 Fedora Release Engineering  
- 0.13-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
 * Tue Sep  9 2008 Tom "spot" Callaway  - 0.13-3
 - fix license tag (with permission from upstream)
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=b86cafb5a00649977a87406a29e4bbd7fb6c96f5
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "auto-import perl-Authen-Radius-0.12-2 on branch devel from (..more)"

2017-07-25 Thread notifications
From 75f28277e84e327643a29c3b8fa3acf636243477 Mon Sep 17 00:00:00 2001
From: Andreas Thienemann 
Date: Thu, 13 Apr 2006 11:11:25 +
Subject: auto-import perl-Authen-Radius-0.12-2 on branch devel from
 perl-Authen-Radius-0.12-2.src.rpm

---
 .cvsignore  |  1 +
 perl-Authen-Radius.spec | 57 +
 sources |  1 +
 3 files changed, 59 insertions(+)
 create mode 100644 perl-Authen-Radius.spec

diff --git a/.cvsignore b/.cvsignore
index e69de29..9d819af 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -0,0 +1 @@
+RadiusPerl-0.12.tar.gz
diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
new file mode 100644
index 000..5d07f56
--- /dev/null
+++ b/perl-Authen-Radius.spec
@@ -0,0 +1,57 @@
+Name:   perl-Authen-Radius
+Version:0.12
+Release:2%{?dist}
+Summary:Perl Authen::Radius modules
+License:Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/RadiusPerl/
+Source0:
http://www.cpan.org/modules/by-module/Authen/RadiusPerl-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:  noarch
+BuildRequires:  perl(Data::HexDump) >= 0.02
+BuildRequires:  perl(Digest::MD5) >= 2.20, perl(IO) >= 1.12
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+
+%description
+This is RadiusPerl version 0.11. RadiusPerl is a Perl 5 module (Radius.pm)
+which allows you to communicate with a Radius server from Perl. You can
+just authenticate usernames/passwords via Radius, or completely imitate
+AAA requests and process server response.
+
+%prep
+%setup -q -n Authen-Radius-%{version}
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
+
+%install
+rm -rf %{buildroot}
+
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null \;
+
+chmod -R u+rwX,go+rX,go-w %{buildroot}/*
+
+%check
+# Disabled check, as a running Radius-server is needed
+#make test
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root,-)
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Apr 13 2006 Andreas Thienemann  0.12-2
+- Final cleanup for inclusion.
+
+* Wed Mar 29 2006 Andreas Thienemann  0.12-1
+- Cleaned up for FE
+- Specfile autogenerated by cpanspec 1.64.
diff --git a/sources b/sources
index e69de29..0ca6dda 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+8427f931a4e0e689ecf8ddf30e5a0ea7  RadiusPerl-0.12.tar.gz
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=75f28277e84e327643a29c3b8fa3acf636243477
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Updated to 0.13 (..more)"

2017-07-25 Thread notifications
From db2642ef15563612f1c99e249f16854a3b80de60 Mon Sep 17 00:00:00 2001
From: Andreas Thienemann 
Date: Sat, 10 Mar 2007 23:13:26 +
Subject: - Updated to 0.13 - Added perl-devel BuildReq

---
 perl-Authen-Radius.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 1847603..767a136 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -9,7 +9,7 @@ Source0:
http://www.cpan.org/modules/by-module/Authen/RadiusPerl-%{versio
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Data::HexDump) >= 0.02
-BuildRequires:  perl(Digest::MD5) >= 2.20, perl(IO) >= 1.12
+BuildRequires:  perl(Digest::MD5) >= 2.20, perl(IO) >= 1.12, perl-devel
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -51,6 +51,7 @@ rm -rf %{buildroot}
 %changelog
 * Sat Mar 10 2007 Andreas Thienemann  - 0.13-1
 - Updated to 0.13
+- Added perl-devel BuildReq
 
 * Fri Sep 08 2006 Andreas Thienemann  - 0.12-3
 - FE6 Rebuild
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=db2642ef15563612f1c99e249f16854a3b80de60
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "Rebuild for new perl"

2017-07-25 Thread notifications
From 91495958831c0154e28ee5cab7e6547a72a27f6d Mon Sep 17 00:00:00 2001
From: Tom Callaway 
Date: Fri, 8 Feb 2008 01:16:11 +
Subject: Rebuild for new perl

---
 perl-Authen-Radius.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 767a136..5b35dd0 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.13
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl Authen::Radius modules
 License:Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb  7 2008 Tom "spot" Callaway  - 0.13-2
+- rebuild for new perl
+
 * Sat Mar 10 2007 Andreas Thienemann  - 0.13-1
 - Updated to 0.13
 - Added perl-devel BuildReq
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=91495958831c0154e28ee5cab7e6547a72a27f6d
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild"

2017-07-25 Thread notifications
From 41e9f70166a654cd1d8114fe7d99d6810a99eeb2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ville=20Skytt=C3=A4?= 
Date: Sun, 27 Aug 2006 20:45:26 +
Subject: http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild

---
 needs.rebuild | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 needs.rebuild

diff --git a/needs.rebuild b/needs.rebuild
new file mode 100644
index 000..815fd29
--- /dev/null
+++ b/needs.rebuild
@@ -0,0 +1 @@
+http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=41e9f70166a654cd1d8114fe7d99d6810a99eeb2
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- FE6 Rebuild"

2017-07-25 Thread notifications
From 15c5c407df6e8584372bf580c7ac8440036a24fd Mon Sep 17 00:00:00 2001
From: Andreas Thienemann 
Date: Fri, 8 Sep 2006 17:41:11 +
Subject: - FE6 Rebuild

---
 needs.rebuild   | 1 -
 perl-Authen-Radius.spec | 5 -
 2 files changed, 4 insertions(+), 2 deletions(-)
 delete mode 100644 needs.rebuild

diff --git a/needs.rebuild b/needs.rebuild
deleted file mode 100644
index 815fd29..000
--- a/needs.rebuild
+++ /dev/null
@@ -1 +0,0 @@
-http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild
diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index 5d07f56..b3fd69e 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
 Version:0.12
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Perl Authen::Radius modules
 License:Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Fri Sep 08 2006 Andreas Thienemann  - 0.12-3
+- FE6 Rebuild
+
 * Thu Apr 13 2006 Andreas Thienemann  0.12-2
 - Final cleanup for inclusion.
 
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=15c5c407df6e8584372bf580c7ac8440036a24fd
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


pghmcfc pushed to perl-Authen-Radius (epel7). "- Updated to 0.13"

2017-07-25 Thread notifications
From 7006a1a8ed0f15b0993c9cb671b9177b22a1c50f Mon Sep 17 00:00:00 2001
From: Andreas Thienemann 
Date: Sat, 10 Mar 2007 22:34:12 +
Subject: - Updated to 0.13

---
 .cvsignore  |  2 +-
 perl-Authen-Radius.spec | 15 +--
 sources |  2 +-
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/.cvsignore b/.cvsignore
index 9d819af..fa49e25 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-RadiusPerl-0.12.tar.gz
+RadiusPerl-0.13.tar.gz
diff --git a/perl-Authen-Radius.spec b/perl-Authen-Radius.spec
index b3fd69e..1847603 100644
--- a/perl-Authen-Radius.spec
+++ b/perl-Authen-Radius.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Radius
-Version:0.12
-Release:3%{?dist}
+Version:0.13
+Release:1%{?dist}
 Summary:Perl Authen::Radius modules
 License:Artistic
 Group:  Development/Libraries
@@ -13,10 +13,10 @@ BuildRequires:  perl(Digest::MD5) >= 2.20, perl(IO) >= 1.12
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-This is RadiusPerl version 0.11. RadiusPerl is a Perl 5 module (Radius.pm)
-which allows you to communicate with a Radius server from Perl. You can
-just authenticate usernames/passwords via Radius, or completely imitate
-AAA requests and process server response.
+RadiusPerl is a Perl 5 module (Radius.pm) which allows you to 
+communicate with a Radius server from Perl. You can just authenticate 
+usernames/passwords via Radius, or completely imitate AAA requests and 
+process server response.
 
 %prep
 %setup -q -n Authen-Radius-%{version}
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Sat Mar 10 2007 Andreas Thienemann  - 0.13-1
+- Updated to 0.13
+
 * Fri Sep 08 2006 Andreas Thienemann  - 0.12-3
 - FE6 Rebuild
 
diff --git a/sources b/sources
index 0ca6dda..33937bc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8427f931a4e0e689ecf8ddf30e5a0ea7  RadiusPerl-0.12.tar.gz
+bbe01758d4af1ccbdcb83fe061eb2799  RadiusPerl-0.13.tar.gz
-- 
cgit v1.1



https://src.fedoraproject.org/cgit/perl-Authen-Radius.git/commit/?h=epel7&id=7006a1a8ed0f15b0993c9cb671b9177b22a1c50f
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org


[Bug 1260609] bucardo-4.5.0-11.fc24 FTBFS randomly: Bucardo did not start, but we waited!

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1260609



--- Comment #2 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1259386] perl-XML-Merge-1.2.565EgGd-20.fc24 FTBFS: Can't convert ' 1.12.B55J2qn': Invalid version format (non-numeric data)

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1259386



--- Comment #4 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1242769] perl-Algorithm-CurveFit-1.05-14.fc23 FTBFS: Failed test at t /02bad_deriv.t line 50

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1242769



--- Comment #8 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


[Bug 1210614] Shell command injection in c2ph tool

2017-07-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1210614



--- Comment #7 from Fedora End Of Life  ---
This message is a reminder that Fedora 24 is nearing its end of life.
Approximately 2 (two) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 24. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as EOL if it remains open with a Fedora  'version'
of '24'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version'
to a later Fedora version.

Thank you for reporting this issue and we are sorry that we were not
able to fix it before Fedora 24 is end of life. If you would still like
to see this bug fixed and are able to reproduce it against a later version
of Fedora, you are encouraged  change the 'version' to a later Fedora
version prior this bug is closed as described in the policy above.

Although we aim to fix as many bugs as possible during every release's
lifetime, sometimes those efforts are overtaken by events. Often a
more recent Fedora release includes newer upstream software that fixes
bugs or makes them obsolete.

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


  1   2   3   >