pghmcfc pushed to perl-IO-Socket-SSL (perl-IO-Socket-SSL-2.021-1.fc24). "Update to 2.021 (..more)"

2015-12-03 Thread notifications
>From abe772d8a455ae310f730415a504098653cfdf77 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 3 Dec 2015 13:55:07 +
Subject: Update to 2.021

- New upstream release 2.021
  - Fixes for documentation and typos
  - Update PublicSuffix with latest version from publicsuffix.org
- Update patches as needed
---
 ...-SSL-2.020-use-system-default-SSL-version.patch | 36 ---
 ...-SSL-2.020-use-system-default-cipher-list.patch | 73 --
 ...-SSL-2.021-use-system-default-SSL-version.patch | 36 +++
 ...-SSL-2.021-use-system-default-cipher-list.patch | 73 ++
 perl-IO-Socket-SSL.spec| 12 +++-
 sources|  2 +-
 6 files changed, 119 insertions(+), 113 deletions(-)
 delete mode 100644 IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
 delete mode 100644 IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
 create mode 100644 IO-Socket-SSL-2.021-use-system-default-SSL-version.patch
 create mode 100644 IO-Socket-SSL-2.021-use-system-default-cipher-list.patch

diff --git a/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch 
b/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
deleted file mode 100644
index d460cf9..000
--- a/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
+++ /dev/null
@@ -1,36 +0,0 @@
 lib/IO/Socket/SSL.pm
-+++ lib/IO/Socket/SSL.pm
-@@ -85,7 +85,7 @@ my $algo2digest = do {
- # global defaults
- my %DEFAULT_SSL_ARGS = (
- SSL_check_crl => 0,
--SSL_version => 'SSLv23:!SSLv3:!SSLv2', # consider both SSL3.0 and SSL2.0 
as broken
-+SSL_version => '',
- SSL_verify_callback => undef,
- SSL_verifycn_scheme => undef,  # fallback cn verification
- SSL_verifycn_publicsuffix => undef,  # fallback default list verification
-@@ -2167,7 +2167,7 @@ sub new {
- $ssl_op |= &Net::SSLeay::OP_SINGLE_DH_USE;
- $ssl_op |= &Net::SSLeay::OP_SINGLE_ECDH_USE if $can_ecdh;
- 
--my $ver;
-+my $ver = '';
- for (split(/\s*:\s*/,$arg_hash->{SSL_version})) {
-   m{^(!?)(?:(SSL(?:v2|v3|v23|v2/3))|(TLSv1(?:_?[12])?))$}i
-   or croak("invalid SSL_version specified");
 lib/IO/Socket/SSL.pod
-+++ lib/IO/Socket/SSL.pod
-@@ -940,11 +940,12 @@ protocol to the specified version.
- All values are case-insensitive.  Instead of 'TLSv1_1' and 'TLSv1_2' one can
- also use 'TLSv11' and 'TLSv12'.  Support for 'TLSv1_1' and 'TLSv1_2' requires
- recent versions of Net::SSLeay and openssl.
-+The default SSL_version is defined by the underlying cryptographic library.
- 
- Independent from the handshake format you can limit to set of accepted SSL
- versions by adding !version separated by ':'.
- 
--The default SSL_version is 'SSLv23:!SSLv3:!SSLv2' which means, that the
-+For example, 'SSLv23:!SSLv3:!SSLv2' means that the
- handshake format is compatible to SSL2.0 and higher, but that the successful
- handshake is limited to TLS1.0 and higher, that is no SSL2.0 or SSL3.0 because
- both of these versions have serious security issues and should not be used
diff --git a/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch 
b/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
deleted file mode 100644
index dfb655b..000
--- a/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
+++ /dev/null
@@ -1,73 +0,0 @@
 lib/IO/Socket/SSL.pm
-+++ lib/IO/Socket/SSL.pm
-@@ -92,9 +92,7 @@ my %DEFAULT_SSL_ARGS = (
- #SSL_verifycn_name => undef,   # use from PeerAddr/PeerHost - do not 
override in set_args_filter_hack 'use_defaults'
- SSL_npn_protocols => undef,# meaning depends whether on server or 
client side
- SSL_alpn_protocols => undef,   # list of protocols we'll accept/send, for 
example ['http/1.1','spdy/3.1']
--SSL_cipher_list =>
--  'EECDH+AESGCM+ECDSA EECDH+AESGCM EECDH+ECDSA +AES256 EECDH EDH+AESGCM '.
--  'EDH ALL +SHA +3DES !RC4 !LOW !EXP !eNULL !aNULL !DES !MD5 !PSK !SRP',
-+SSL_cipher_list => 'DEFAULT',
- );
- 
- my %DEFAULT_SSL_CLIENT_ARGS = (
-@@ -104,42 +102,6 @@ my %DEFAULT_SSL_CLIENT_ARGS = (
- SSL_ca_file => undef,
- SSL_ca_path => undef,
- 
--# older versions of F5 BIG-IP hang when getting SSL client hello >255 
bytes
--# http://support.f5.com/kb/en-us/solutions/public/13000/000/sol13037.html
--# http://guest:gu...@rt.openssl.org/Ticket/Display.html?id=2771
--# Debian works around this by disabling TLSv1_2 on the client side
--# Chrome and IE11 use TLSv1_2 but use only a few ciphers, so that packet
--# stays small enough
--# The following list is taken from IE11, except that we don't do RC4-MD5,
--# RC4-SHA is already bad enough. Also, we have a different sort order
--# compared to IE11, because we put ciphers supporting forward secrecy on 
top
--
--SSL_cipher_list => join(" ",
--  qw(
--  ECDHE-ECDSA-AES128-GCM-SHA256
--  ECDHE-ECDSA-AES128-SHA256
--  ECDHE-ECDSA-AES256-GCM-SHA384
--  ECDHE-ECDSA

pghmcfc pushed to perl-Cpanel-JSON-XS (perl-Cpanel-JSON-XS-3.0210-1.fc24). "Update to 3.0210 (..more)"

2015-12-03 Thread notifications
>From 6e4c94b6a642e7d5f2b48c9e39a74e9c80ddead0 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 3 Dec 2015 16:12:54 +
Subject: Update to 3.0210

- New upstream release 3.0210
  - Fix nasty regression bug with allow_singlequote or relaxed, hanging with
single quotes in normal strings (GH#54)
  - Improve cpanel_json_xs: more input and output formats
  - Improved various spellings and add test
  - Much faster t/99_binary.t test
---
 perl-Cpanel-JSON-XS.spec | 16 ++--
 sources  |  2 +-
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/perl-Cpanel-JSON-XS.spec b/perl-Cpanel-JSON-XS.spec
index 42db26f..1446939 100644
--- a/perl-Cpanel-JSON-XS.spec
+++ b/perl-Cpanel-JSON-XS.spec
@@ -1,6 +1,6 @@
 Name:  perl-Cpanel-JSON-XS
 Summary:   JSON::XS for Cpanel, fast and correct serializing
-Version:   3.0208
+Version:   3.0210
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Cpanel-JSON-XS/
@@ -26,6 +26,7 @@ BuildRequires:perl(Convert::Bencode)
 BuildRequires: perl(Data::Dump)
 BuildRequires: perl(YAML)
 # Test Suite
+BuildRequires: perl(B)
 BuildRequires: perl(constant)
 BuildRequires: perl(Data::Dumper)
 BuildRequires: perl(Devel::Peek)
@@ -60,10 +61,13 @@ BuildRequires:  perl(Mojo::JSON) >= 6.11
 BuildRequires: perl(Test::LeakTrace)
 BuildRequires: perl(Tie::IxHash)
 BuildRequires: perl(Time::Piece)
-# Maintainer Tests
+# Maintainer Tests (Test::Spelling intentionally omitted as associated test 
would fail due to various technical terms)
 BuildRequires: perl(Class::XSAccessor)
 BuildRequires: perl(List::MoreUtils)
 BuildRequires: perl(Perl::MinimumVersion) >= 1.20
+%if 0%{?fedora} > 17
+BuildRequires: perl(Pod::Spell::CommonMistakes)
+%endif
 BuildRequires: perl(Test::CPAN::Meta) >= 0.12
 BuildRequires: perl(Test::Kwalitee)
 BuildRequires: perl(Test::MinimumVersion) >= 0.008
@@ -124,6 +128,14 @@ make test %{!?perl_bootstrap:AUTHOR_TESTING=1}
 %{_mandir}/man3/Cpanel::JSON::XS::Boolean.3*
 
 %changelog
+* Thu Dec  3 2015 Paul Howarth  - 3.0210-1
+- Update to 3.0210
+  - Fix nasty regression bug with allow_singlequote or relaxed, hanging with
+single quotes in normal strings (GH#54)
+  - Improve cpanel_json_xs: more input and output formats
+  - Improved various spellings and add test
+  - Much faster t/99_binary.t test
+
 * Thu Dec  3 2015 Paul Howarth  - 3.0208-1
 - Update to 3.0208
   - Fix regression decoding big strings (>16384) (GH#50)
diff --git a/sources b/sources
index 58a27da..284baa8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d12493594b7d823380c352e409682907  Cpanel-JSON-XS-3.0208.tar.gz
+834e93f1e4c1c17a1cd1b0eeab6a87ec  Cpanel-JSON-XS-3.0210.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Cpanel-JSON-XS.git/commit/?h=perl-Cpanel-JSON-XS-3.0210-1.fc24&id=6e4c94b6a642e7d5f2b48c9e39a74e9c80ddead0
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288335] perl-Sys-Syscall port for aarch64/ppc64le/s390x

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288335



--- Comment #1 from Yaakov Selkowitz  ---
Created attachment 1102103
  --> https://bugzilla.redhat.com/attachment.cgi?id=1102103&action=edit
Patch for rawhide

Please consider merging this into f22 and f23 as well.  Successful 
scratch builds:

http://arm.koji.fedoraproject.org/koji/taskinfo?taskID=3310339
http://ppc.koji.fedoraproject.org/koji/taskinfo?taskID=2964517
http://s390.koji.fedoraproject.org/koji/taskinfo?taskID=1996382

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288335] New: perl-Sys-Syscall port for aarch64/ppc64le/s390x

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288335

Bug ID: 1288335
   Summary: perl-Sys-Syscall port for aarch64/ppc64le/s390x
   Product: Fedora
   Version: rawhide
 Component: perl-Sys-Syscall
  Assignee: psab...@redhat.com
  Reporter: yselk...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, psab...@redhat.com
Blocks: 467765 (ZedoraTracker), 922257
(ARM64,F-ExcludeArch-aarch64), 1051573
(PPC64LETracker), 1270267



perl-Sys-Syscall included hardcoded SYS_* syscall values for several
architectures, along with a fallback to use asm/unistd*.ph (via
sys/syscall.ph).  Unfortunately, the fallback does not touch the default
$u64_mod_8=0, even though that seemingly applies only to x86.  This causes
failures in the testsuite when run on such architectures (including aarch64,
ppc64le, and s390/x), as reported in bug 1270267.

Unfortunately, aarch64 is a bit more complicated, as it does not support the
deprecated epoll_create and epoll_wait syscalls, so this needs to be ported to
use the epoll_create1 and epoll_pwait syscalls instead.

I am attaching a patch that fixes the testsuite for these three architectures,
as well as restoring backwards compatibility so that this can be merged into
EPEL.


Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=467765
[Bug 467765] Fedora for System z (s390): Bug Tracker
https://bugzilla.redhat.com/show_bug.cgi?id=922257
[Bug 922257] Tracker for ARM64 support
https://bugzilla.redhat.com/show_bug.cgi?id=1051573
[Bug 1051573] ppc64le tracker bug
https://bugzilla.redhat.com/show_bug.cgi?id=1270267
[Bug 1270267] perl-Sys-Syscall SRPM does not build correctly on
aarch64/ppc64le/s390x
-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288266] perl-File-Find-Rule-0.34 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288266



--- Comment #2 from Upstream Release Monitoring 
 ---
Scratch build completed
http://koji.fedoraproject.org/koji/taskinfo?taskID=12044034

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287446] perl-Authen-Krb5-Admin needs rebuild for new krb5-libs

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287446

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
perl-Authen-Krb5-Admin-0.17-10.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Authen-Krb5-Admin'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-81c3ec5a09

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1285914] perl-Sereal-Decoder-3.007 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1285914



--- Comment #15 from Fedora Update System  ---
perl-Sereal-Decoder-3.009-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Sereal-Decoder'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-cd221bed73

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287391] perl-Sereal-Decoder-3.009 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287391



--- Comment #8 from Fedora Update System  ---
perl-Sereal-Decoder-3.009-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Sereal-Decoder'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-cd221bed73

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1286312] perl-Sereal-Decoder-3.008 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1286312



--- Comment #10 from Fedora Update System  ---
perl-Sereal-Decoder-3.009-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Sereal-Decoder'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-cd221bed73

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287368] perl-Parse-ErrorString-Perl-0.22 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287368

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
perl-Parse-ErrorString-Perl-0.22-1.fc23 has been pushed to the Fedora 23
testing repository. If problems still persist, please make note of it in this
bug report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Parse-ErrorString-Perl'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-e33cd3213b

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287356] perl-Gtk2-1.2497 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287356

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System  ---
perl-Gtk2-1.2497-1.fc23 has been pushed to the Fedora 23 testing repository. If
problems still persist, please make note of it in this bug report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Gtk2'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-ac707e4ff7

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287364] perl-Log-Report-1.10 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287364



--- Comment #8 from Fedora Update System  ---
perl-Log-Report-1.10-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Log-Report'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-f053e053a4

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287601] perl-Git-Repository-1.316 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287601



--- Comment #5 from Fedora Update System  ---
perl-Git-Repository-1.316-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Git-Repository'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-dae8bfbaca

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287331] perl-Date-Manip-6.52 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287331



--- Comment #3 from Fedora Update System  ---
perl-Date-Manip-6.52-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Date-Manip'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-0abac3900d

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287915] perl-Unicode-Normalize-1.24 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287915

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #6 from Fedora Update System  ---
perl-Unicode-Normalize-1.24-1.fc23 has been pushed to the Fedora 23 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Unicode-Normalize'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-adcf83cb70

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288268] New: perl-Math-BigInt-GMP-1.46 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288268

Bug ID: 1288268
   Summary: perl-Math-BigInt-GMP-1.46 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Math-BigInt-GMP
  Keywords: FutureFeature, Triaged
  Assignee: psab...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: p...@city-fan.org, perl-devel@lists.fedoraproject.org,
psab...@redhat.com, st...@silug.org



Latest upstream release: 1.46
Current version/release in rawhide: 1.45-1.fc24
URL: http://search.cpan.org/dist/Math-BigInt-GMP/

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.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288266] New: perl-File-Find-Rule-0.34 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288266

Bug ID: 1288266
   Summary: perl-File-Find-Rule-0.34 is available
   Product: Fedora
   Version: rawhide
 Component: perl-File-Find-Rule
  Keywords: FutureFeature, Triaged
  Assignee: rc040...@freenet.de
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: lxt...@gmail.com, perl-devel@lists.fedoraproject.org,
rc040...@freenet.de



Latest upstream release: 0.34
Current version/release in rawhide: 0.33-11.fc23
URL: http://search.cpan.org/dist/File-Find-Rule/

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.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288266] perl-File-Find-Rule-0.34 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288266



--- Comment #1 from Upstream Release Monitoring 
 ---
Created attachment 1102000
  --> https://bugzilla.redhat.com/attachment.cgi?id=1102000&action=edit
[patch] Update to 0.34 (#1288266)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1285438] perl-String-Compare-ConstantTime-0.311 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1285438

Fedora Update System  changed:

   What|Removed |Added

   Fixed In Version|perl-String-Compare-Constan |perl-String-Compare-Constan
   |tTime-0.311-1.fc24  |tTime-0.311-1.fc24
   |perl-String-Compare-Constan |perl-String-Compare-Constan
   |tTime-0.311-1.fc23  |tTime-0.311-1.fc23
   ||perl-String-Compare-Constan
   ||tTime-0.311-1.fc22



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1285438] perl-String-Compare-ConstantTime-0.311 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1285438



--- Comment #10 from Fedora Update System  ---
perl-String-Compare-ConstantTime-0.311-1.fc22 has been pushed to the Fedora 22
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.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1285438] perl-String-Compare-ConstantTime-0.311 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1285438

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version|perl-String-Compare-Constan |perl-String-Compare-Constan
   |tTime-0.311-1.fc24  |tTime-0.311-1.fc24
   ||perl-String-Compare-Constan
   ||tTime-0.311-1.fc23
 Resolution|--- |ERRATA
Last Closed||2015-12-03 15:20:46



-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1285438] perl-String-Compare-ConstantTime-0.311 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1285438



--- Comment #9 from Fedora Update System  ---
perl-String-Compare-ConstantTime-0.311-1.fc23 has been pushed to the Fedora 23
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.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


averi pushed to perl-File-Touch (el6). "New upstream release: 0.10"

2015-12-03 Thread notifications
>From 03a787fca84f50b27374d05e07dc5d9703eb4a82 Mon Sep 17 00:00:00 2001
From: Andrea Veri 
Date: Thu, 3 Dec 2015 17:12:24 +0100
Subject: New upstream release: 0.10

---
 .gitignore   | 1 +
 perl-File-Touch.spec | 5 -
 sources  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index caa6225..15c1f27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /File-Touch-0.08.tar.gz
 /File-Touch-0.09.tar.gz
+/File-Touch-0.10.tar.gz
diff --git a/perl-File-Touch.spec b/perl-File-Touch.spec
index e107706..67ee618 100644
--- a/perl-File-Touch.spec
+++ b/perl-File-Touch.spec
@@ -1,6 +1,6 @@
 Name:  perl-File-Touch
 Summary:   Update access, modification timestamps, creating nonexistent files
-Version:   0.09
+Version:   0.10
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Andrea Veri  - 0.10-1
+- New upstream release.
+
 * Fri Jun 12 2015 Andrea Veri  - 0.09-1
 - New upstream release.
 
diff --git a/sources b/sources
index ca75d3e..eac40ac 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-250dd8951c9a9e6cfccddad04d8096b9  File-Touch-0.09.tar.gz
+189f84349f2161030b98faea11f8f6ed  File-Touch-0.10.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-File-Touch.git/commit/?h=el6&id=03a787fca84f50b27374d05e07dc5d9703eb4a82
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


pghmcfc uploaded Cpanel-JSON-XS-3.0210.tar.gz for perl-Cpanel-JSON-XS

2015-12-03 Thread notifications
834e93f1e4c1c17a1cd1b0eeab6a87ec  Cpanel-JSON-XS-3.0210.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Cpanel-JSON-XS/Cpanel-JSON-XS-3.0210.tar.gz/md5/834e93f1e4c1c17a1cd1b0eeab6a87ec/Cpanel-JSON-XS-3.0210.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


averi pushed to perl-File-Touch (f22). "New upstream release: 0.10"

2015-12-03 Thread notifications
>From 4aa36e4486fd48a79b439915726be47fbdea6cf5 Mon Sep 17 00:00:00 2001
From: Andrea Veri 
Date: Thu, 3 Dec 2015 17:08:51 +0100
Subject: New upstream release: 0.10

---
 .gitignore   | 1 +
 perl-File-Touch.spec | 5 -
 sources  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index caa6225..15c1f27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /File-Touch-0.08.tar.gz
 /File-Touch-0.09.tar.gz
+/File-Touch-0.10.tar.gz
diff --git a/perl-File-Touch.spec b/perl-File-Touch.spec
index ba3a7fa..dc83630 100644
--- a/perl-File-Touch.spec
+++ b/perl-File-Touch.spec
@@ -1,6 +1,6 @@
 Name:  perl-File-Touch
 Summary:   Update access, modification timestamps, creating nonexistent files
-Version:   0.09
+Version:   0.10
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Andrea Veri  - 0.10-1
+- New upstream release.
+
 * Fri Jun 12 2015 Andrea Veri  - 0.09-1
 - New upstream release.
 
diff --git a/sources b/sources
index ca75d3e..eac40ac 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-250dd8951c9a9e6cfccddad04d8096b9  File-Touch-0.09.tar.gz
+189f84349f2161030b98faea11f8f6ed  File-Touch-0.10.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-File-Touch.git/commit/?h=f22&id=4aa36e4486fd48a79b439915726be47fbdea6cf5
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Cpanel-JSON-XS (master). "Update to 3.0208 (..more)"

2015-12-03 Thread notifications
>From 8d025edf535c719def5fd55282d2c34876f75673 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 3 Dec 2015 12:23:01 +
Subject: Update to 3.0208

- New upstream release 3.0208
  - Fix regression decoding big strings (>16384) (GH#50)
  - Ignore allow_barekey if we detect quotes (GH#51)
  - Skip some unicode tests with 5.6
  - Fix regression for is_bool([]), with unblessed references (GH#53)
---
 perl-Cpanel-JSON-XS.spec | 9 -
 sources  | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/perl-Cpanel-JSON-XS.spec b/perl-Cpanel-JSON-XS.spec
index e62c8f8..42db26f 100644
--- a/perl-Cpanel-JSON-XS.spec
+++ b/perl-Cpanel-JSON-XS.spec
@@ -1,6 +1,6 @@
 Name:  perl-Cpanel-JSON-XS
 Summary:   JSON::XS for Cpanel, fast and correct serializing
-Version:   3.0206
+Version:   3.0208
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Cpanel-JSON-XS/
@@ -124,6 +124,13 @@ make test %{!?perl_bootstrap:AUTHOR_TESTING=1}
 %{_mandir}/man3/Cpanel::JSON::XS::Boolean.3*
 
 %changelog
+* Thu Dec  3 2015 Paul Howarth  - 3.0208-1
+- Update to 3.0208
+  - Fix regression decoding big strings (>16384) (GH#50)
+  - Ignore allow_barekey if we detect quotes (GH#51)
+  - Skip some unicode tests with 5.6
+  - Fix regression for is_bool([]), with unblessed references (GH#53)
+
 * Tue Dec  1 2015 Paul Howarth  - 3.0206-1
 - Update to 3.0206
   - Add support for escape_slash from JSON::PP (GH#47)
diff --git a/sources b/sources
index cf04aec..58a27da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-219844fc1aaa7351532ec5db88facd56  Cpanel-JSON-XS-3.0206.tar.gz
+d12493594b7d823380c352e409682907  Cpanel-JSON-XS-3.0208.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Cpanel-JSON-XS.git/commit/?h=master&id=8d025edf535c719def5fd55282d2c34876f75673
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-Cpanel-JSON-XS (master). "Update to 3.0210 (..more)"

2015-12-03 Thread notifications
>From 6e4c94b6a642e7d5f2b48c9e39a74e9c80ddead0 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 3 Dec 2015 16:12:54 +
Subject: Update to 3.0210

- New upstream release 3.0210
  - Fix nasty regression bug with allow_singlequote or relaxed, hanging with
single quotes in normal strings (GH#54)
  - Improve cpanel_json_xs: more input and output formats
  - Improved various spellings and add test
  - Much faster t/99_binary.t test
---
 perl-Cpanel-JSON-XS.spec | 16 ++--
 sources  |  2 +-
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/perl-Cpanel-JSON-XS.spec b/perl-Cpanel-JSON-XS.spec
index 42db26f..1446939 100644
--- a/perl-Cpanel-JSON-XS.spec
+++ b/perl-Cpanel-JSON-XS.spec
@@ -1,6 +1,6 @@
 Name:  perl-Cpanel-JSON-XS
 Summary:   JSON::XS for Cpanel, fast and correct serializing
-Version:   3.0208
+Version:   3.0210
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Cpanel-JSON-XS/
@@ -26,6 +26,7 @@ BuildRequires:perl(Convert::Bencode)
 BuildRequires: perl(Data::Dump)
 BuildRequires: perl(YAML)
 # Test Suite
+BuildRequires: perl(B)
 BuildRequires: perl(constant)
 BuildRequires: perl(Data::Dumper)
 BuildRequires: perl(Devel::Peek)
@@ -60,10 +61,13 @@ BuildRequires:  perl(Mojo::JSON) >= 6.11
 BuildRequires: perl(Test::LeakTrace)
 BuildRequires: perl(Tie::IxHash)
 BuildRequires: perl(Time::Piece)
-# Maintainer Tests
+# Maintainer Tests (Test::Spelling intentionally omitted as associated test 
would fail due to various technical terms)
 BuildRequires: perl(Class::XSAccessor)
 BuildRequires: perl(List::MoreUtils)
 BuildRequires: perl(Perl::MinimumVersion) >= 1.20
+%if 0%{?fedora} > 17
+BuildRequires: perl(Pod::Spell::CommonMistakes)
+%endif
 BuildRequires: perl(Test::CPAN::Meta) >= 0.12
 BuildRequires: perl(Test::Kwalitee)
 BuildRequires: perl(Test::MinimumVersion) >= 0.008
@@ -124,6 +128,14 @@ make test %{!?perl_bootstrap:AUTHOR_TESTING=1}
 %{_mandir}/man3/Cpanel::JSON::XS::Boolean.3*
 
 %changelog
+* Thu Dec  3 2015 Paul Howarth  - 3.0210-1
+- Update to 3.0210
+  - Fix nasty regression bug with allow_singlequote or relaxed, hanging with
+single quotes in normal strings (GH#54)
+  - Improve cpanel_json_xs: more input and output formats
+  - Improved various spellings and add test
+  - Much faster t/99_binary.t test
+
 * Thu Dec  3 2015 Paul Howarth  - 3.0208-1
 - Update to 3.0208
   - Fix regression decoding big strings (>16384) (GH#50)
diff --git a/sources b/sources
index 58a27da..284baa8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d12493594b7d823380c352e409682907  Cpanel-JSON-XS-3.0208.tar.gz
+834e93f1e4c1c17a1cd1b0eeab6a87ec  Cpanel-JSON-XS-3.0210.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Cpanel-JSON-XS.git/commit/?h=master&id=6e4c94b6a642e7d5f2b48c9e39a74e9c80ddead0
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


averi pushed to perl-File-Touch (epel7). "New upstream release: 0.10"

2015-12-03 Thread notifications
>From dfe251a37e92197a52999ed711494545ad1a3490 Mon Sep 17 00:00:00 2001
From: Andrea Veri 
Date: Thu, 3 Dec 2015 17:10:34 +0100
Subject: New upstream release: 0.10

---
 .gitignore   | 1 +
 perl-File-Touch.spec | 5 -
 sources  | 2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index caa6225..15c1f27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /File-Touch-0.08.tar.gz
 /File-Touch-0.09.tar.gz
+/File-Touch-0.10.tar.gz
diff --git a/perl-File-Touch.spec b/perl-File-Touch.spec
index e107706..67ee618 100644
--- a/perl-File-Touch.spec
+++ b/perl-File-Touch.spec
@@ -1,6 +1,6 @@
 Name:  perl-File-Touch
 Summary:   Update access, modification timestamps, creating nonexistent files
-Version:   0.09
+Version:   0.10
 Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Andrea Veri  - 0.10-1
+- New upstream release.
+
 * Fri Jun 12 2015 Andrea Veri  - 0.09-1
 - New upstream release.
 
diff --git a/sources b/sources
index ca75d3e..eac40ac 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-250dd8951c9a9e6cfccddad04d8096b9  File-Touch-0.09.tar.gz
+189f84349f2161030b98faea11f8f6ed  File-Touch-0.10.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-File-Touch.git/commit/?h=epel7&id=dfe251a37e92197a52999ed711494545ad1a3490
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287391] perl-Sereal-Decoder-3.009 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287391

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #7 from Fedora Update System  ---
perl-Sereal-Decoder-3.009-1.fc22 has been pushed to the Fedora 22 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Sereal-Decoder'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-57573c51ba

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287601] perl-Git-Repository-1.316 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287601

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
perl-Git-Repository-1.316-1.fc22 has been pushed to the Fedora 22 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Git-Repository'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-c1f126a5a7

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287364] perl-Log-Report-1.10 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287364

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #7 from Fedora Update System  ---
perl-Log-Report-1.10-1.fc22 has been pushed to the Fedora 22 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Log-Report'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-644b5e8991

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1287331] perl-Date-Manip-6.52 is available

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1287331

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #2 from Fedora Update System  ---
perl-Date-Manip-6.52-1.fc22 has been pushed to the Fedora 22 testing
repository. If problems still persist, please make note of it in this bug
report.
If you want to test the update, you can install it with
$ su -c 'dnf --enablerepo=updates-testing update perl-Date-Manip'
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2015-9bd6e78fd1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


averi pushed to perl-File-Touch (master). "New upstream release: 0.10"

2015-12-03 Thread notifications
>From c527e49ee32108d6d0f1eaeb19c5048310fa528e Mon Sep 17 00:00:00 2001
From: Andrea Veri 
Date: Thu, 3 Dec 2015 16:07:09 +0100
Subject: New upstream release: 0.10

---
 .gitignore   | 1 +
 perl-File-Touch.spec | 7 +--
 sources  | 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index caa6225..15c1f27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /File-Touch-0.08.tar.gz
 /File-Touch-0.09.tar.gz
+/File-Touch-0.10.tar.gz
diff --git a/perl-File-Touch.spec b/perl-File-Touch.spec
index 7073260..8189954 100644
--- a/perl-File-Touch.spec
+++ b/perl-File-Touch.spec
@@ -1,7 +1,7 @@
 Name:  perl-File-Touch
 Summary:   Update access, modification timestamps, creating nonexistent files
-Version:   0.09
-Release:   2%{?dist}
+Version:   0.10
+Release:   1%{?dist}
 License:   GPL+ or Artistic
 Group: Development/Libraries
 URL:   http://search.cpan.org/dist/File-Touch
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Andrea Veri  - 0.10-1
+- New upstream release.
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.09-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index ca75d3e..eac40ac 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-250dd8951c9a9e6cfccddad04d8096b9  File-Touch-0.09.tar.gz
+189f84349f2161030b98faea11f8f6ed  File-Touch-0.10.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-File-Touch.git/commit/?h=master&id=c527e49ee32108d6d0f1eaeb19c5048310fa528e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


averi uploaded File-Touch-0.10.tar.gz for perl-File-Touch

2015-12-03 Thread notifications
189f84349f2161030b98faea11f8f6ed  File-Touch-0.10.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-File-Touch/File-Touch-0.10.tar.gz/md5/189f84349f2161030b98faea11f8f6ed/File-Touch-0.10.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 1288117] New: Upgrade perl-Catalyst-View-JSON to 0.36

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1288117

Bug ID: 1288117
   Summary: Upgrade perl-Catalyst-View-JSON to 0.36
   Product: Fedora
   Version: rawhide
 Component: perl-Catalyst-View-JSON
  Keywords: FutureFeature
  Assignee: si...@sxw.org.uk
  Reporter: ppi...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org, si...@sxw.org.uk



Latest Fedora delivers 0.35 version. Upstream released 0.36. Please upgrade it.

Also please enable release monitoring service in order to receive notifications
about future releases.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


pghmcfc pushed to perl-IO-Socket-SSL (master). "Update to 2.021 (..more)"

2015-12-03 Thread notifications
>From abe772d8a455ae310f730415a504098653cfdf77 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Thu, 3 Dec 2015 13:55:07 +
Subject: Update to 2.021

- New upstream release 2.021
  - Fixes for documentation and typos
  - Update PublicSuffix with latest version from publicsuffix.org
- Update patches as needed
---
 ...-SSL-2.020-use-system-default-SSL-version.patch | 36 ---
 ...-SSL-2.020-use-system-default-cipher-list.patch | 73 --
 ...-SSL-2.021-use-system-default-SSL-version.patch | 36 +++
 ...-SSL-2.021-use-system-default-cipher-list.patch | 73 ++
 perl-IO-Socket-SSL.spec| 12 +++-
 sources|  2 +-
 6 files changed, 119 insertions(+), 113 deletions(-)
 delete mode 100644 IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
 delete mode 100644 IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
 create mode 100644 IO-Socket-SSL-2.021-use-system-default-SSL-version.patch
 create mode 100644 IO-Socket-SSL-2.021-use-system-default-cipher-list.patch

diff --git a/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch 
b/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
deleted file mode 100644
index d460cf9..000
--- a/IO-Socket-SSL-2.020-use-system-default-SSL-version.patch
+++ /dev/null
@@ -1,36 +0,0 @@
 lib/IO/Socket/SSL.pm
-+++ lib/IO/Socket/SSL.pm
-@@ -85,7 +85,7 @@ my $algo2digest = do {
- # global defaults
- my %DEFAULT_SSL_ARGS = (
- SSL_check_crl => 0,
--SSL_version => 'SSLv23:!SSLv3:!SSLv2', # consider both SSL3.0 and SSL2.0 
as broken
-+SSL_version => '',
- SSL_verify_callback => undef,
- SSL_verifycn_scheme => undef,  # fallback cn verification
- SSL_verifycn_publicsuffix => undef,  # fallback default list verification
-@@ -2167,7 +2167,7 @@ sub new {
- $ssl_op |= &Net::SSLeay::OP_SINGLE_DH_USE;
- $ssl_op |= &Net::SSLeay::OP_SINGLE_ECDH_USE if $can_ecdh;
- 
--my $ver;
-+my $ver = '';
- for (split(/\s*:\s*/,$arg_hash->{SSL_version})) {
-   m{^(!?)(?:(SSL(?:v2|v3|v23|v2/3))|(TLSv1(?:_?[12])?))$}i
-   or croak("invalid SSL_version specified");
 lib/IO/Socket/SSL.pod
-+++ lib/IO/Socket/SSL.pod
-@@ -940,11 +940,12 @@ protocol to the specified version.
- All values are case-insensitive.  Instead of 'TLSv1_1' and 'TLSv1_2' one can
- also use 'TLSv11' and 'TLSv12'.  Support for 'TLSv1_1' and 'TLSv1_2' requires
- recent versions of Net::SSLeay and openssl.
-+The default SSL_version is defined by the underlying cryptographic library.
- 
- Independent from the handshake format you can limit to set of accepted SSL
- versions by adding !version separated by ':'.
- 
--The default SSL_version is 'SSLv23:!SSLv3:!SSLv2' which means, that the
-+For example, 'SSLv23:!SSLv3:!SSLv2' means that the
- handshake format is compatible to SSL2.0 and higher, but that the successful
- handshake is limited to TLS1.0 and higher, that is no SSL2.0 or SSL3.0 because
- both of these versions have serious security issues and should not be used
diff --git a/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch 
b/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
deleted file mode 100644
index dfb655b..000
--- a/IO-Socket-SSL-2.020-use-system-default-cipher-list.patch
+++ /dev/null
@@ -1,73 +0,0 @@
 lib/IO/Socket/SSL.pm
-+++ lib/IO/Socket/SSL.pm
-@@ -92,9 +92,7 @@ my %DEFAULT_SSL_ARGS = (
- #SSL_verifycn_name => undef,   # use from PeerAddr/PeerHost - do not 
override in set_args_filter_hack 'use_defaults'
- SSL_npn_protocols => undef,# meaning depends whether on server or 
client side
- SSL_alpn_protocols => undef,   # list of protocols we'll accept/send, for 
example ['http/1.1','spdy/3.1']
--SSL_cipher_list =>
--  'EECDH+AESGCM+ECDSA EECDH+AESGCM EECDH+ECDSA +AES256 EECDH EDH+AESGCM '.
--  'EDH ALL +SHA +3DES !RC4 !LOW !EXP !eNULL !aNULL !DES !MD5 !PSK !SRP',
-+SSL_cipher_list => 'DEFAULT',
- );
- 
- my %DEFAULT_SSL_CLIENT_ARGS = (
-@@ -104,42 +102,6 @@ my %DEFAULT_SSL_CLIENT_ARGS = (
- SSL_ca_file => undef,
- SSL_ca_path => undef,
- 
--# older versions of F5 BIG-IP hang when getting SSL client hello >255 
bytes
--# http://support.f5.com/kb/en-us/solutions/public/13000/000/sol13037.html
--# http://guest:gu...@rt.openssl.org/Ticket/Display.html?id=2771
--# Debian works around this by disabling TLSv1_2 on the client side
--# Chrome and IE11 use TLSv1_2 but use only a few ciphers, so that packet
--# stays small enough
--# The following list is taken from IE11, except that we don't do RC4-MD5,
--# RC4-SHA is already bad enough. Also, we have a different sort order
--# compared to IE11, because we put ciphers supporting forward secrecy on 
top
--
--SSL_cipher_list => join(" ",
--  qw(
--  ECDHE-ECDSA-AES128-GCM-SHA256
--  ECDHE-ECDSA-AES128-SHA256
--  ECDHE-ECDSA-AES256-GCM-SHA384
--  ECDHE-ECDSA

pghmcfc uploaded IO-Socket-SSL-2.021.tar.gz for perl-IO-Socket-SSL

2015-12-03 Thread notifications
124394b702ba5ccbbca9b6ee424a8bac  IO-Socket-SSL-2.021.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-IO-Socket-SSL/IO-Socket-SSL-2.021.tar.gz/md5/124394b702ba5ccbbca9b6ee424a8bac/IO-Socket-SSL-2.021.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


pghmcfc uploaded Cpanel-JSON-XS-3.0208.tar.gz for perl-Cpanel-JSON-XS

2015-12-03 Thread notifications
d12493594b7d823380c352e409682907  Cpanel-JSON-XS-3.0208.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Cpanel-JSON-XS/Cpanel-JSON-XS-3.0208.tar.gz/md5/d12493594b7d823380c352e409682907/Cpanel-JSON-XS-3.0208.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


ppisar pushed to perl-ExtUtils-MakeMaker (f22). "Declare optional dependencies on Recommends level"

2015-12-03 Thread notifications
>From 93e9bf3baee74c4e3a95fe901ce8bc1f60785340 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 3 Dec 2015 11:29:34 +0100
Subject: Declare optional dependencies on Recommends level

---
 perl-ExtUtils-MakeMaker.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/perl-ExtUtils-MakeMaker.spec b/perl-ExtUtils-MakeMaker.spec
index 602f35b..5fde0fd 100644
--- a/perl-ExtUtils-MakeMaker.spec
+++ b/perl-ExtUtils-MakeMaker.spec
@@ -3,7 +3,7 @@
 
 Name:   perl-%{cpan_name}
 Version:%(echo '%{cpan_version}' | tr _ .)
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Create a module Makefile
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -71,12 +71,12 @@ BuildRequires:  perl(PerlIO)
 # Keep YAML optional
 # Keep YAML::Tiny optional
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
-# CPAN::Meta is optional
+Recommends: perl(CPAN::Meta) >= 2.112150
 Requires:   perl(Data::Dumper)
 Requires:   perl(DynaLoader)
 # Encode is needed for producing POD with =encoding statement correctly
 Requires:   perl(Encode)
-# Keep unbundled Encode::Locale optional, it's not in the core
+Recommends: perl(Encode::Locale)
 Requires:   perl(ExtUtils::Command) >= 1.16
 Requires:   perl(ExtUtils::Install) >= 1.52
 Requires:   perl(ExtUtils::Manifest) >= 1.65
@@ -88,7 +88,7 @@ Requires:   perl(Getopt::Long)
 Requires:   perl(Pod::Man)
 Requires:   perl(POSIX)
 Requires:   perl(Test::Harness)
-# Time::HiRes is optional
+Recommends: perl(Time::HiRes)
 # Text::ParseWords is not needed (Win32 only)
 Requires:   perl(version)
 # VMS::Filespec is not needed (VMS only)
@@ -143,6 +143,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Petr Pisar  - 7.04-2
+- Declare optional dependencies on Recommends level
+
 * Fri Dec 05 2014 Petr Pisar  - 7.04-1
 - 7.04 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-ExtUtils-MakeMaker.git/commit/?h=f22&id=93e9bf3baee74c4e3a95fe901ce8bc1f60785340
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


ppisar pushed to perl-ExtUtils-MakeMaker (f23). "Declare optional dependencies on Recommends level"

2015-12-03 Thread notifications
>From 1a5d495cf5fd680818ee805c74387b8387512ec1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 3 Dec 2015 11:29:34 +0100
Subject: Declare optional dependencies on Recommends level

---
 perl-ExtUtils-MakeMaker.spec | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/perl-ExtUtils-MakeMaker.spec b/perl-ExtUtils-MakeMaker.spec
index 7abc2d5..c0de15c 100644
--- a/perl-ExtUtils-MakeMaker.spec
+++ b/perl-ExtUtils-MakeMaker.spec
@@ -3,7 +3,7 @@
 
 Name:   perl-%{cpan_name}
 Version:%(echo '%{cpan_version}' | tr _ .)
-Release:346%{?dist}
+Release:347%{?dist}
 Summary:Create a module Makefile
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -71,12 +71,12 @@ BuildRequires:  perl(PerlIO)
 # Keep YAML optional
 # Keep YAML::Tiny optional
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
-# CPAN::Meta is optional
+Recommends: perl(CPAN::Meta) >= 2.112150
 Requires:   perl(Data::Dumper)
 Requires:   perl(DynaLoader)
 # Encode is needed for producing POD with =encoding statement correctly
 Requires:   perl(Encode)
-# Keep unbundled Encode::Locale optional, it's not in the core
+Recommends: perl(Encode::Locale)
 Requires:   perl(ExtUtils::Command) >= 1.16
 Requires:   perl(ExtUtils::Install) >= 1.52
 Requires:   perl(ExtUtils::Manifest) >= 1.65
@@ -88,7 +88,7 @@ Requires:   perl(Getopt::Long)
 Requires:   perl(Pod::Man)
 Requires:   perl(POSIX)
 Requires:   perl(Test::Harness)
-# Time::HiRes is optional
+Recommends: perl(Time::HiRes)
 # Text::ParseWords is not needed (Win32 only)
 Requires:   perl(version)
 # VMS::Filespec is not needed (VMS only)
@@ -143,6 +143,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec 03 2015 Petr Pisar  - 7.04-347
+- Declare optional dependencies on Recommends level
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 7.04-346
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-ExtUtils-MakeMaker.git/commit/?h=f23&id=1a5d495cf5fd680818ee805c74387b8387512ec1
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


[Bug 543660] Perl Archive::Zip fails writing to an unseekable file handle after calling desiredCompressionLevel()

2015-12-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=543660

Paul Howarth  changed:

   What|Removed |Added

   Keywords||Tracking, Reopened
 Status|CLOSED  |ASSIGNED
 CC||p...@city-fan.org
Version|21  |rawhide
 Resolution|EOL |---



--- Comment #23 from Paul Howarth  ---
This issue is patched in all current Fedora releases; keeping this bug open to
track upstream activity as per Comment #16.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


ppisar pushed to perl-ExtUtils-MakeMaker (master). "Declare optional dependencies on Recommends level"

2015-12-03 Thread notifications
>From 130c7d682e6ca5fc16e5259cbfa1adbdd2a1da10 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 3 Dec 2015 11:29:34 +0100
Subject: Declare optional dependencies on Recommends level

---
 perl-ExtUtils-MakeMaker.spec | 15 +++
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/perl-ExtUtils-MakeMaker.spec b/perl-ExtUtils-MakeMaker.spec
index 841752c..c1bf349 100644
--- a/perl-ExtUtils-MakeMaker.spec
+++ b/perl-ExtUtils-MakeMaker.spec
@@ -3,7 +3,7 @@
 
 Name:   perl-%{cpan_name}
 Version:%(echo '%{cpan_version}' | tr _ .)
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Create a module Makefile
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -72,21 +72,18 @@ BuildRequires:  perl(utf8)
 # XSLoader not used
 # Optional tests
 BuildRequires:  perl(B)
-BuildRequires:  perl(CPAN::Meta::Requirements) >= 2.130
 BuildRequires:  perl(ExtUtils::CBuilder)
 BuildRequires:  perl(PerlIO)
 # Keep YAML optional
 # Keep YAML::Tiny optional
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(B)
-# CPAN::Meta 2.112150 is optional
-# CPAN::Meta::Converter 2.141170 is optional
-# CPAN::Meta::Requirements 2.130 is optional
+Recommends: perl(CPAN::Meta) >= 2.112150
 Requires:   perl(Data::Dumper)
 Requires:   perl(DynaLoader)
 # Encode is needed for producing POD with =encoding statement correctly
 Requires:   perl(Encode)
-# Keep unbundled Encode::Locale optional, it's not in the core
+Recommends: perl(Encode::Locale)
 Requires:   perl(ExtUtils::Command) >= 1.19
 Requires:   perl(ExtUtils::Install) >= 1.52
 Requires:   perl(ExtUtils::Manifest) >= 1.65
@@ -94,12 +91,11 @@ Requires:   perl(ExtUtils::Manifest) >= 1.65
 Requires:   perl(File::Find)
 Requires:   perl(File::Spec) >= 0.8
 Requires:   perl(Getopt::Long)
-# JSON::PP is optional
 # Optional Pod::Man is needed for generating manual pages from POD
 Requires:   perl(Pod::Man)
 Requires:   perl(POSIX)
 Requires:   perl(Test::Harness)
-# Time::HiRes is optional
+Recommends: perl(Time::HiRes)
 # Text::ParseWords is not needed (Win32 only)
 Requires:   perl(version)
 # VMS::Filespec is not needed (VMS only)
@@ -178,6 +174,9 @@ make test
 %{_mandir}/man3/ExtUtils::Command.*
 
 %changelog
+* Thu Dec 03 2015 Petr Pisar  - 7.10-2
+- Declare optional dependencies on Recommends level
+
 * Fri Sep 11 2015 Petr Pisar  - 7.10-1
 - 7.10 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-ExtUtils-MakeMaker.git/commit/?h=master&id=130c7d682e6ca5fc16e5259cbfa1adbdd2a1da10
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (epel7). "Merge branch 'master' into epel7"

2015-12-03 Thread notifications
>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2


>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2


>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2


>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 12552f8..4004825 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2


>From d89cbd07f6b2a024ee4d2e769e94a29720dfdd97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 11 Sep 2015 10:24:08 +0200
Subject: 1.1 bump

---
 .gitignore  |  1 +
 .rpmlint|  2 ++
 perl-Authen-Credential.spec | 39 ++-
 sources |  2 +-
 4 files changed, 26 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index 82d41ae..2fd9b86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Authen-Credential-0.5.tar.gz
 /Authen-Credential-0.8.tar.gz
 /Authen-Credential-1.0.tar.gz
+/Authen-Credential-1.1.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..566299b
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* preparators");
diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4004825..7191d0f 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,24 +1,35 @@
 Name: 

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

2015-12-03 Thread notifications
>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=9abe2b1aaa97c951531de724fd01f29720a93726
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (epel7). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=c1f0953f728ce75ce5796d738bdd03986c6335bb
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (epel7). "1.1 bump"

2015-12-03 Thread notifications
>From d89cbd07f6b2a024ee4d2e769e94a29720dfdd97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 11 Sep 2015 10:24:08 +0200
Subject: 1.1 bump

---
 .gitignore  |  1 +
 .rpmlint|  2 ++
 perl-Authen-Credential.spec | 39 ++-
 sources |  2 +-
 4 files changed, 26 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index 82d41ae..2fd9b86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Authen-Credential-0.5.tar.gz
 /Authen-Credential-0.8.tar.gz
 /Authen-Credential-1.0.tar.gz
+/Authen-Credential-1.1.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..566299b
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* preparators");
diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4004825..7191d0f 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,24 +1,35 @@
 Name:   perl-Authen-Credential
-Version:1.0
-Release:7%{?dist}
+Version:1.1
+Release:1%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Authen-Credential/
 Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(MIME::Base64)
-BuildRequires:  perl(No::Worries)
+BuildRequires:  perl(No::Worries::Die) >= 1.1
 BuildRequires:  perl(Params::Validate)
-BuildRequires:  perl(Pod::Coverage) >= 0.18
+BuildRequires:  perl(URI::Escape)
+# Tests:
 BuildRequires:  perl(Test::More)
+# Optional tests:
+BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-BuildRequires:  perl(URI::Escape)
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(No::Worries::Die) >= 1.1
+
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
 
 %description
 This module offers an abstraction of a credential, i.e. something that
@@ -34,32 +45,26 @@ well known targets.
 %setup -q -n Authen-Credential-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README VERSION
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Sep 11 2015 Petr Pisar  - 1.1-1
+- 1.1 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 4ce3241..8bf0687 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0d5d7a36d41cddcea1eec76e53e47b92  Authen-Credential-1.0.tar.gz
+93633c8c7b1d96fbb9f1a94d877936ce  Authen-Credential-1.1.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=d89cbd07f6b2a024ee4d2e769e94a29720dfdd97
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (epel7). "Spec file cleanup"

2015-12-03 Thread notifications
>From 42ec1dc9a2c06862b24efcf88d51001c8228ce32 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:44:00 +0100
Subject: Spec file cleanup

---
 perl-Authen-Credential.spec | 32 ++--
 1 file changed, 22 insertions(+), 10 deletions(-)

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 7191d0f..16f7c31 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,11 +1,14 @@
-Name:   perl-Authen-Credential
+%global cpan_name Authen-Credential
+
+Name:   perl-%{cpan_name}
 Version:1.1
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Authen-Credential/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -25,8 +28,8 @@ BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(No::Worries::Die) >= 1.1
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Remove under-specified dependencies
 %global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
@@ -42,26 +45,35 @@ be stored in structured configuration files or using JSON) 
and
 well known targets.
 
 %prep
-%setup -q -n Authen-Credential-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+%{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
+%check
+make test
+
 %install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
+%clean
+rm -fr $RPM_BUILD_ROOT
 
 %files
-%doc Changes README VERSION
+%defattr(-,root,root,-)
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.1-2
+- Spec file cleanup.
+
 * Fri Sep 11 2015 Petr Pisar  - 1.1-1
 - 1.1 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=42ec1dc9a2c06862b24efcf88d51001c8228ce32
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


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

2015-12-03 Thread notifications
>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 12552f8..4004825 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (epel7). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=epel7&id=5d5786adc9b898798fd992625794bb7c09669a02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "Merge branch 'master' into el6"

2015-12-03 Thread notifications
>From 5d6870856578dea95cfce4f976229663e9873e0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 25 Jul 2013 15:38:22 +0200
Subject: Perl 5.18 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index b300a09..8e61e4d 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 25 2013 Petr Pisar  - 1.0-2
+- Perl 5.18 rebuild
+
 * Tue Feb 26 2013 Massimo Paladin  - 1.0-1
 - Update to 1.0, rhbz #915293.
 
-- 
cgit v0.11.2


>From 9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 3 Aug 2013 12:21:30 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 8e61e4d..3da227a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Thu Jul 25 2013 Petr Pisar  - 1.0-2
 - Perl 5.18 rebuild
 
-- 
cgit v0.11.2


>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2


>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2


>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2


>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuil

lcons pushed to perl-Authen-Credential (el6). "1.1 bump"

2015-12-03 Thread notifications
>From d89cbd07f6b2a024ee4d2e769e94a29720dfdd97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 11 Sep 2015 10:24:08 +0200
Subject: 1.1 bump

---
 .gitignore  |  1 +
 .rpmlint|  2 ++
 perl-Authen-Credential.spec | 39 ++-
 sources |  2 +-
 4 files changed, 26 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index 82d41ae..2fd9b86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Authen-Credential-0.5.tar.gz
 /Authen-Credential-0.8.tar.gz
 /Authen-Credential-1.0.tar.gz
+/Authen-Credential-1.1.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..566299b
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* preparators");
diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4004825..7191d0f 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,24 +1,35 @@
 Name:   perl-Authen-Credential
-Version:1.0
-Release:7%{?dist}
+Version:1.1
+Release:1%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Authen-Credential/
 Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(MIME::Base64)
-BuildRequires:  perl(No::Worries)
+BuildRequires:  perl(No::Worries::Die) >= 1.1
 BuildRequires:  perl(Params::Validate)
-BuildRequires:  perl(Pod::Coverage) >= 0.18
+BuildRequires:  perl(URI::Escape)
+# Tests:
 BuildRequires:  perl(Test::More)
+# Optional tests:
+BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-BuildRequires:  perl(URI::Escape)
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(No::Worries::Die) >= 1.1
+
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
 
 %description
 This module offers an abstraction of a credential, i.e. something that
@@ -34,32 +45,26 @@ well known targets.
 %setup -q -n Authen-Credential-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README VERSION
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Sep 11 2015 Petr Pisar  - 1.1-1
+- 1.1 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 4ce3241..8bf0687 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0d5d7a36d41cddcea1eec76e53e47b92  Authen-Credential-1.0.tar.gz
+93633c8c7b1d96fbb9f1a94d877936ce  Authen-Credential-1.1.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=d89cbd07f6b2a024ee4d2e769e94a29720dfdd97
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 12552f8..4004825 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "Perl 5.18 rebuild"

2015-12-03 Thread notifications
>From 5d6870856578dea95cfce4f976229663e9873e0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 25 Jul 2013 15:38:22 +0200
Subject: Perl 5.18 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index b300a09..8e61e4d 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 25 2013 Petr Pisar  - 1.0-2
+- Perl 5.18 rebuild
+
 * Tue Feb 26 2013 Massimo Paladin  - 1.0-1
 - Update to 1.0, rhbz #915293.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=5d6870856578dea95cfce4f976229663e9873e0b
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 3 Aug 2013 12:21:30 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 8e61e4d..3da227a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Thu Jul 25 2013 Petr Pisar  - 1.0-2
 - Perl 5.18 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "Spec file cleanup"

2015-12-03 Thread notifications
>From 42ec1dc9a2c06862b24efcf88d51001c8228ce32 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:44:00 +0100
Subject: Spec file cleanup

---
 perl-Authen-Credential.spec | 32 ++--
 1 file changed, 22 insertions(+), 10 deletions(-)

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 7191d0f..16f7c31 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,11 +1,14 @@
-Name:   perl-Authen-Credential
+%global cpan_name Authen-Credential
+
+Name:   perl-%{cpan_name}
 Version:1.1
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Authen-Credential/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -25,8 +28,8 @@ BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(No::Worries::Die) >= 1.1
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Remove under-specified dependencies
 %global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
@@ -42,26 +45,35 @@ be stored in structured configuration files or using JSON) 
and
 well known targets.
 
 %prep
-%setup -q -n Authen-Credential-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+%{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
+%check
+make test
+
 %install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
+%clean
+rm -fr $RPM_BUILD_ROOT
 
 %files
-%doc Changes README VERSION
+%defattr(-,root,root,-)
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.1-2
+- Spec file cleanup.
+
 * Fri Sep 11 2015 Petr Pisar  - 1.1-1
 - 1.1 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=42ec1dc9a2c06862b24efcf88d51001c8228ce32
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=c1f0953f728ce75ce5796d738bdd03986c6335bb
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=5d5786adc9b898798fd992625794bb7c09669a02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el6). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el6&id=9abe2b1aaa97c951531de724fd01f29720a93726
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "Perl 5.18 rebuild"

2015-12-03 Thread notifications
>From 5d6870856578dea95cfce4f976229663e9873e0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 25 Jul 2013 15:38:22 +0200
Subject: Perl 5.18 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index b300a09..8e61e4d 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 25 2013 Petr Pisar  - 1.0-2
+- Perl 5.18 rebuild
+
 * Tue Feb 26 2013 Massimo Paladin  - 1.0-1
 - Update to 1.0, rhbz #915293.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=5d6870856578dea95cfce4f976229663e9873e0b
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "Spec file cleanup"

2015-12-03 Thread notifications
>From 42ec1dc9a2c06862b24efcf88d51001c8228ce32 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:44:00 +0100
Subject: Spec file cleanup

---
 perl-Authen-Credential.spec | 32 ++--
 1 file changed, 22 insertions(+), 10 deletions(-)

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 7191d0f..16f7c31 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,11 +1,14 @@
-Name:   perl-Authen-Credential
+%global cpan_name Authen-Credential
+
+Name:   perl-%{cpan_name}
 Version:1.1
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Authen-Credential/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -25,8 +28,8 @@ BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(No::Worries::Die) >= 1.1
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Remove under-specified dependencies
 %global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
@@ -42,26 +45,35 @@ be stored in structured configuration files or using JSON) 
and
 well known targets.
 
 %prep
-%setup -q -n Authen-Credential-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+%{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
+%check
+make test
+
 %install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
+%clean
+rm -fr $RPM_BUILD_ROOT
 
 %files
-%doc Changes README VERSION
+%defattr(-,root,root,-)
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.1-2
+- Spec file cleanup.
+
 * Fri Sep 11 2015 Petr Pisar  - 1.1-1
 - 1.1 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=42ec1dc9a2c06862b24efcf88d51001c8228ce32
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=c1f0953f728ce75ce5796d738bdd03986c6335bb
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "1.1 bump"

2015-12-03 Thread notifications
>From d89cbd07f6b2a024ee4d2e769e94a29720dfdd97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Fri, 11 Sep 2015 10:24:08 +0200
Subject: 1.1 bump

---
 .gitignore  |  1 +
 .rpmlint|  2 ++
 perl-Authen-Credential.spec | 39 ++-
 sources |  2 +-
 4 files changed, 26 insertions(+), 18 deletions(-)
 create mode 100644 .rpmlint

diff --git a/.gitignore b/.gitignore
index 82d41ae..2fd9b86 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /Authen-Credential-0.5.tar.gz
 /Authen-Credential-0.8.tar.gz
 /Authen-Credential-1.0.tar.gz
+/Authen-Credential-1.1.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..566299b
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* preparators");
diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4004825..7191d0f 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,24 +1,35 @@
 Name:   perl-Authen-Credential
-Version:1.0
-Release:7%{?dist}
+Version:1.1
+Release:1%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Authen-Credential/
 Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(MIME::Base64)
-BuildRequires:  perl(No::Worries)
+BuildRequires:  perl(No::Worries::Die) >= 1.1
 BuildRequires:  perl(Params::Validate)
-BuildRequires:  perl(Pod::Coverage) >= 0.18
+BuildRequires:  perl(URI::Escape)
+# Tests:
 BuildRequires:  perl(Test::More)
+# Optional tests:
+BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-BuildRequires:  perl(URI::Escape)
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+Requires:   perl(No::Worries::Die) >= 1.1
+
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
 
 %description
 This module offers an abstraction of a credential, i.e. something that
@@ -34,32 +45,26 @@ well known targets.
 %setup -q -n Authen-Credential-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README VERSION
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Fri Sep 11 2015 Petr Pisar  - 1.1-1
+- 1.1 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 4ce3241..8bf0687 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0d5d7a36d41cddcea1eec76e53e47b92  Authen-Credential-1.0.tar.gz
+93633c8c7b1d96fbb9f1a94d877936ce  Authen-Credential-1.1.tar.gz
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=d89cbd07f6b2a024ee4d2e769e94a29720dfdd97
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=5d5786adc9b898798fd992625794bb7c09669a02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 3 Aug 2013 12:21:30 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 8e61e4d..3da227a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Thu Jul 25 2013 Petr Pisar  - 1.0-2
 - Perl 5.18 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 12552f8..4004825 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.0-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (el5). "Merge branch 'master' into el5"

2015-12-03 Thread notifications
>From 5d6870856578dea95cfce4f976229663e9873e0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Thu, 25 Jul 2013 15:38:22 +0200
Subject: Perl 5.18 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index b300a09..8e61e4d 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jul 25 2013 Petr Pisar  - 1.0-2
+- Perl 5.18 rebuild
+
 * Tue Feb 26 2013 Massimo Paladin  - 1.0-1
 - Update to 1.0, rhbz #915293.
 
-- 
cgit v0.11.2


>From 9e6d96ef1b839dd13a7f25fbd1c58eb61bec9276 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 3 Aug 2013 12:21:30 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 8e61e4d..3da227a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Thu Jul 25 2013 Petr Pisar  - 1.0-2
 - Perl 5.18 rebuild
 
-- 
cgit v0.11.2


>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2


>From 5d5786adc9b898798fd992625794bb7c09669a02 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 04:55:14 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 28d8307..4b1a56a 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2


>From c1f0953f728ce75ce5796d738bdd03986c6335bb Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 20:52:13 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 4b1a56a..12552f8 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.0-6
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.0-5
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2


>From 9a69ab2a2874a78ed2b7d4b3a6f47a85be51493d Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 01:14:15 +
Subject: - Rebuil

lcons pushed to perl-Authen-Credential (el5). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2015-12-03 Thread notifications
>From 9abe2b1aaa97c951531de724fd01f29720a93726 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Fri, 6 Jun 2014 19:33:37 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 3da227a..28d8307 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,6 +1,6 @@
 Name:   perl-Authen-Credential
 Version:1.0
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.0-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Sat Aug 03 2013 Fedora Release Engineering  
- 1.0-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=el5&id=9abe2b1aaa97c951531de724fd01f29720a93726
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Authen-Credential (master). "Spec file cleanup"

2015-12-03 Thread notifications
>From 42ec1dc9a2c06862b24efcf88d51001c8228ce32 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:44:00 +0100
Subject: Spec file cleanup

---
 perl-Authen-Credential.spec | 32 ++--
 1 file changed, 22 insertions(+), 10 deletions(-)

diff --git a/perl-Authen-Credential.spec b/perl-Authen-Credential.spec
index 7191d0f..16f7c31 100644
--- a/perl-Authen-Credential.spec
+++ b/perl-Authen-Credential.spec
@@ -1,11 +1,14 @@
-Name:   perl-Authen-Credential
+%global cpan_name Authen-Credential
+
+Name:   perl-%{cpan_name}
 Version:1.1
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Abstraction of a credential
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Authen-Credential/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Authen-Credential-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  coreutils
 BuildRequires:  findutils
@@ -25,8 +28,8 @@ BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Pod::Coverage) >= 0.18
 BuildRequires:  perl(Test::Pod) >= 1.22
 BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
-Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 Requires:   perl(No::Worries::Die) >= 1.1
+Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 # Remove under-specified dependencies
 %global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(No::Worries::Die\\)$
@@ -42,26 +45,35 @@ be stored in structured configuration files or using JSON) 
and
 well known targets.
 
 %prep
-%setup -q -n Authen-Credential-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+%{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
+%check
+make test
+
 %install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
+%clean
+rm -fr $RPM_BUILD_ROOT
 
 %files
-%doc Changes README VERSION
+%defattr(-,root,root,-)
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.1-2
+- Spec file cleanup.
+
 * Fri Sep 11 2015 Petr Pisar  - 1.1-1
 - 1.1 bump
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Authen-Credential.git/commit/?h=master&id=42ec1dc9a2c06862b24efcf88d51001c8228ce32
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Generator (el5). "Spec file cleanup"

2015-12-03 Thread notifications
>From d6c5d6dedaf8c1bc42a294014aed21d899cdc561 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:37:05 +0100
Subject: Spec file cleanup

---
 perl-Config-Generator.spec | 34 ++
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/perl-Config-Generator.spec b/perl-Config-Generator.spec
index 7fa238a..098a500 100644
--- a/perl-Config-Generator.spec
+++ b/perl-Config-Generator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Generator
+%global cpan_name Config-Generator
+
+Name:   perl-%{cpan_name}
 Version:0.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Shared variables for the Config::Generator modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Generator/
-Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/Config-Generator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Config::General)
@@ -23,37 +25,37 @@ The goal of this collection of modules is to ease the 
generation of low-level
 configuration files from high-level configuration items and templates.
 
 %prep
-%setup -q -n Config-Generator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README VERSION
+%doc Changes README
+%{_bindir}/*
 %{perl_vendorlib}/*
-%{_bindir}/yacg
 %{_mandir}/man1/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  0.9-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 0.9-1
 - Update to upstream version, rhbz #1287096.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Generator.git/commit/?h=el5&id=d6c5d6dedaf8c1bc42a294014aed21d899cdc561
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Generator (epel7). "Spec file cleanup"

2015-12-03 Thread notifications
>From d6c5d6dedaf8c1bc42a294014aed21d899cdc561 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:37:05 +0100
Subject: Spec file cleanup

---
 perl-Config-Generator.spec | 34 ++
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/perl-Config-Generator.spec b/perl-Config-Generator.spec
index 7fa238a..098a500 100644
--- a/perl-Config-Generator.spec
+++ b/perl-Config-Generator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Generator
+%global cpan_name Config-Generator
+
+Name:   perl-%{cpan_name}
 Version:0.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Shared variables for the Config::Generator modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Generator/
-Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/Config-Generator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Config::General)
@@ -23,37 +25,37 @@ The goal of this collection of modules is to ease the 
generation of low-level
 configuration files from high-level configuration items and templates.
 
 %prep
-%setup -q -n Config-Generator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README VERSION
+%doc Changes README
+%{_bindir}/*
 %{perl_vendorlib}/*
-%{_bindir}/yacg
 %{_mandir}/man1/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  0.9-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 0.9-1
 - Update to upstream version, rhbz #1287096.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Generator.git/commit/?h=epel7&id=d6c5d6dedaf8c1bc42a294014aed21d899cdc561
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Generator (el6). "Spec file cleanup"

2015-12-03 Thread notifications
>From d6c5d6dedaf8c1bc42a294014aed21d899cdc561 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:37:05 +0100
Subject: Spec file cleanup

---
 perl-Config-Generator.spec | 34 ++
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/perl-Config-Generator.spec b/perl-Config-Generator.spec
index 7fa238a..098a500 100644
--- a/perl-Config-Generator.spec
+++ b/perl-Config-Generator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Generator
+%global cpan_name Config-Generator
+
+Name:   perl-%{cpan_name}
 Version:0.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Shared variables for the Config::Generator modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Generator/
-Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/Config-Generator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Config::General)
@@ -23,37 +25,37 @@ The goal of this collection of modules is to ease the 
generation of low-level
 configuration files from high-level configuration items and templates.
 
 %prep
-%setup -q -n Config-Generator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README VERSION
+%doc Changes README
+%{_bindir}/*
 %{perl_vendorlib}/*
-%{_bindir}/yacg
 %{_mandir}/man1/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  0.9-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 0.9-1
 - Update to upstream version, rhbz #1287096.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Generator.git/commit/?h=el6&id=d6c5d6dedaf8c1bc42a294014aed21d899cdc561
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Generator (master). "Spec file cleanup"

2015-12-03 Thread notifications
>From d6c5d6dedaf8c1bc42a294014aed21d899cdc561 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:37:05 +0100
Subject: Spec file cleanup

---
 perl-Config-Generator.spec | 34 ++
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/perl-Config-Generator.spec b/perl-Config-Generator.spec
index 7fa238a..098a500 100644
--- a/perl-Config-Generator.spec
+++ b/perl-Config-Generator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Generator
+%global cpan_name Config-Generator
+
+Name:   perl-%{cpan_name}
 Version:0.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Shared variables for the Config::Generator modules
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Generator/
-Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/Config-Generator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://www.cpan.org/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl(Config::General)
@@ -23,37 +25,37 @@ The goal of this collection of modules is to ease the 
generation of low-level
 configuration files from high-level configuration items and templates.
 
 %prep
-%setup -q -n Config-Generator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
-
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README VERSION
+%doc Changes README
+%{_bindir}/*
 %{perl_vendorlib}/*
-%{_bindir}/yacg
 %{_mandir}/man1/*
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  0.9-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 0.9-1
 - Update to upstream version, rhbz #1287096.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Generator.git/commit/?h=master&id=d6c5d6dedaf8c1bc42a294014aed21d899cdc561
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Validator (el6). "Spec file cleanup"

2015-12-03 Thread notifications
>From b6cfb815178919b2005e1707db2a8d70e5d32499 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:32:45 +0100
Subject: Spec file cleanup

---
 perl-Config-Validator.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Config-Validator.spec b/perl-Config-Validator.spec
index 8e8054b..b3e106e 100644
--- a/perl-Config-Validator.spec
+++ b/perl-Config-Validator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Validator
+%global cpan_name Config-Validator
+
+Name:   perl-%{cpan_name}
 Version:1.3
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Schema based configuration validation
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Validator/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Config-Validator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -23,27 +25,24 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 This module allows to perform schema based configuration validation.
 
 %prep
-%setup -q -n Config-Validator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -52,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.3-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 1.3-1
 - Update to upstream version, rhbz #1287093.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Validator.git/commit/?h=el6&id=b6cfb815178919b2005e1707db2a8d70e5d32499
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Validator (epel7). "Spec file cleanup"

2015-12-03 Thread notifications
>From b6cfb815178919b2005e1707db2a8d70e5d32499 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:32:45 +0100
Subject: Spec file cleanup

---
 perl-Config-Validator.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Config-Validator.spec b/perl-Config-Validator.spec
index 8e8054b..b3e106e 100644
--- a/perl-Config-Validator.spec
+++ b/perl-Config-Validator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Validator
+%global cpan_name Config-Validator
+
+Name:   perl-%{cpan_name}
 Version:1.3
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Schema based configuration validation
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Validator/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Config-Validator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -23,27 +25,24 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 This module allows to perform schema based configuration validation.
 
 %prep
-%setup -q -n Config-Validator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -52,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.3-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 1.3-1
 - Update to upstream version, rhbz #1287093.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Validator.git/commit/?h=epel7&id=b6cfb815178919b2005e1707db2a8d70e5d32499
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Validator (el5). "Spec file cleanup"

2015-12-03 Thread notifications
>From b6cfb815178919b2005e1707db2a8d70e5d32499 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:32:45 +0100
Subject: Spec file cleanup

---
 perl-Config-Validator.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Config-Validator.spec b/perl-Config-Validator.spec
index 8e8054b..b3e106e 100644
--- a/perl-Config-Validator.spec
+++ b/perl-Config-Validator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Validator
+%global cpan_name Config-Validator
+
+Name:   perl-%{cpan_name}
 Version:1.3
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Schema based configuration validation
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Validator/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Config-Validator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -23,27 +25,24 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 This module allows to perform schema based configuration validation.
 
 %prep
-%setup -q -n Config-Validator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -52,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.3-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 1.3-1
 - Update to upstream version, rhbz #1287093.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Validator.git/commit/?h=el5&id=b6cfb815178919b2005e1707db2a8d70e5d32499
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Config-Validator (master). "Spec file cleanup"

2015-12-03 Thread notifications
>From b6cfb815178919b2005e1707db2a8d70e5d32499 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:32:45 +0100
Subject: Spec file cleanup

---
 perl-Config-Validator.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Config-Validator.spec b/perl-Config-Validator.spec
index 8e8054b..b3e106e 100644
--- a/perl-Config-Validator.spec
+++ b/perl-Config-Validator.spec
@@ -1,11 +1,13 @@
-Name:   perl-Config-Validator
+%global cpan_name Config-Validator
+
+Name:   perl-%{cpan_name}
 Version:1.3
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Schema based configuration validation
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Config-Validator/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Config-Validator-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -23,27 +25,24 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 This module allows to perform schema based configuration validation.
 
 %prep
-%setup -q -n Config-Validator-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -52,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.3-2
+- Spec file cleanup.
+
 * Tue Dec  1 2015 Lionel Cons  - 1.3-1
 - Update to upstream version, rhbz #1287093.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Config-Validator.git/commit/?h=master&id=b6cfb815178919b2005e1707db2a8d70e5d32499
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el6). "merged from master"

2015-12-03 Thread notifications
>From e0dc1aedd740dcb5e43ac070a894ae47c4b3705b Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:25:36 +0100
Subject: merged from master

---
 perl-Directory-Queue.spec | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index fad0c77..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -106,6 +106,9 @@ rm -fr $RPM_BUILD_ROOT
 * Sat Jan 28 2012 Steve Traylen  - 1.5-1
 - Update to 1.5 rhbz#785073.
 
+* Fri Jan 13 2012 Fedora Release Engineering  
- 1.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
 * Thu Dec 8 2011 Steve Traylen  - 1.4-1
 - Update 1.4 rhbz#760472.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el6&id=e0dc1aedd740dcb5e43ac070a894ae47c4b3705b
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el5). "merged from master"

2015-12-03 Thread notifications
>From 34cd54912515587a1e2071646b80fe866e92bb7d Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:25:00 +0100
Subject: merged from master

---
 perl-Directory-Queue.spec | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index fad0c77..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -106,6 +106,9 @@ rm -fr $RPM_BUILD_ROOT
 * Sat Jan 28 2012 Steve Traylen  - 1.5-1
 - Update to 1.5 rhbz#785073.
 
+* Fri Jan 13 2012 Fedora Release Engineering  
- 1.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
 * Thu Dec 8 2011 Steve Traylen  - 1.4-1
 - Update 1.4 rhbz#760472.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el5&id=34cd54912515587a1e2071646b80fe866e92bb7d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el6). "Spec file cleanup"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el6&id=817033df5f8e07e8867e65d3c42c6ec79c1f9493
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (epel7). "Spec file cleanup"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=epel7&id=817033df5f8e07e8867e65d3c42c6ec79c1f9493
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el6). "Merge branch 'master' into el6"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el6&id=f1212d34a65f68a3a54af3645d224f7cf32d8222
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el5). "Merge branch 'master' into el5"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el5&id=4c3cb2ed7d94a3c90533c211c98e5e15bc9e2b95
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (el5). "Spec file cleanup"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=el5&id=817033df5f8e07e8867e65d3c42c6ec79c1f9493
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Directory-Queue (master). "Spec file cleanup"

2015-12-03 Thread notifications
>From 817033df5f8e07e8867e65d3c42c6ec79c1f9493 Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:21:22 +0100
Subject: Spec file cleanup

---
 perl-Directory-Queue.spec | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 73809fa..111c785 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,11 +1,13 @@
-Name:   perl-Directory-Queue
+%global cpan_name Directory-Queue
+
+Name:   perl-%{cpan_name}
 Version:1.9
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Directory-Queue/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Directory-Queue-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -21,8 +23,6 @@ BuildRequires:  perl(Test::Pod::Coverage) >= 1.08
 BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
-
-
 %{?perl_default_subpackage_tests}
 
 %description
@@ -32,27 +32,24 @@ via atomic operations. It focuses on simplicity, robustness 
and
 scalability.
 
 %prep
-%setup -q -n Directory-Queue-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.9-2
+- Spec file cleanup.
+
 * Fri Nov 13 2015 Lionel Cons  - 1.9-1
 - Update to upstream version, rhbz #1281294.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Directory-Queue.git/commit/?h=master&id=817033df5f8e07e8867e65d3c42c6ec79c1f9493
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2015-12-03 Thread notifications
>From 28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 04:24:43 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 600cb50..ad0790e 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=epel7&id=28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (epel7). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From ed946982e7f3efa2fb52144c368bcdc279fed3aa Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 05:36:28 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 119bb2b..5036c1a 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=epel7&id=ed946982e7f3efa2fb52144c368bcdc279fed3aa
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (epel7). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2015-12-03 Thread notifications
>From bfc4db00682b83042d2f683a406cdf8a8a864054 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 7 Jun 2014 01:55:25 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index c7a097e..119bb2b 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Thu Nov 28 2013 Massimo Paladin  1.5-2
 - Remove old patch.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=epel7&id=bfc4db00682b83042d2f683a406cdf8a8a864054
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el6). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2015-12-03 Thread notifications
>From bfc4db00682b83042d2f683a406cdf8a8a864054 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 7 Jun 2014 01:55:25 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index c7a097e..119bb2b 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Thu Nov 28 2013 Massimo Paladin  1.5-2
 - Remove old patch.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el6&id=bfc4db00682b83042d2f683a406cdf8a8a864054
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el6). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From ed946982e7f3efa2fb52144c368bcdc279fed3aa Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 05:36:28 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 119bb2b..5036c1a 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el6&id=ed946982e7f3efa2fb52144c368bcdc279fed3aa
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el6). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From 39125d5b28dee7fd08390662bfffe4a9c6b386fd Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 21:49:58 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 5036c1a..600cb50 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el6&id=39125d5b28dee7fd08390662bfffe4a9c6b386fd
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (epel7). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From 39125d5b28dee7fd08390662bfffe4a9c6b386fd Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 21:49:58 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 5036c1a..600cb50 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=epel7&id=39125d5b28dee7fd08390662bfffe4a9c6b386fd
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el5). "Perl 5.20 rebuild"

2015-12-03 Thread notifications
>From ed946982e7f3efa2fb52144c368bcdc279fed3aa Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Fri, 29 Aug 2014 05:36:28 +0200
Subject: Perl 5.20 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 119bb2b..5036c1a 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el5&id=ed946982e7f3efa2fb52144c368bcdc279fed3aa
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (epel7). "Spec file cleanup"

2015-12-03 Thread notifications
>From 5b8c20993f6c148821b7493bf9b29e769343a24e Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:14:43 +0100
Subject: Spec file cleanup

---
 perl-Messaging-Message.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index ad0790e..f1224c6 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,11 +1,13 @@
-Name:   perl-Messaging-Message
+%global cpan_name Messaging-Message
+
+Name:   perl-%{cpan_name}
 Version:1.5
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Messaging-Message/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Messaging-Message-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -31,27 +33,24 @@ This module provides an abstraction of a "message", as used 
in messaging,
 see for instance: http://en.wikipedia.org/wiki/Enterprise_messaging_system.
 
 %prep
-%setup -q -n Messaging-Message-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -60,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.5-7
+- Spec file cleanup.
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=epel7&id=5b8c20993f6c148821b7493bf9b29e769343a24e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el5). "Spec file cleanup"

2015-12-03 Thread notifications
>From 5b8c20993f6c148821b7493bf9b29e769343a24e Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:14:43 +0100
Subject: Spec file cleanup

---
 perl-Messaging-Message.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index ad0790e..f1224c6 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,11 +1,13 @@
-Name:   perl-Messaging-Message
+%global cpan_name Messaging-Message
+
+Name:   perl-%{cpan_name}
 Version:1.5
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Messaging-Message/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Messaging-Message-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -31,27 +33,24 @@ This module provides an abstraction of a "message", as used 
in messaging,
 see for instance: http://en.wikipedia.org/wiki/Enterprise_messaging_system.
 
 %prep
-%setup -q -n Messaging-Message-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -60,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.5-7
+- Spec file cleanup.
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el5&id=5b8c20993f6c148821b7493bf9b29e769343a24e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el6). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2015-12-03 Thread notifications
>From 28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 04:24:43 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 600cb50..ad0790e 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el6&id=28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el6). "Spec file cleanup"

2015-12-03 Thread notifications
>From 5b8c20993f6c148821b7493bf9b29e769343a24e Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:14:43 +0100
Subject: Spec file cleanup

---
 perl-Messaging-Message.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index ad0790e..f1224c6 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,11 +1,13 @@
-Name:   perl-Messaging-Message
+%global cpan_name Messaging-Message
+
+Name:   perl-%{cpan_name}
 Version:1.5
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Messaging-Message/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Messaging-Message-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -31,27 +33,24 @@ This module provides an abstraction of a "message", as used 
in messaging,
 see for instance: http://en.wikipedia.org/wiki/Enterprise_messaging_system.
 
 %prep
-%setup -q -n Messaging-Message-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -60,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.5-7
+- Spec file cleanup.
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el6&id=5b8c20993f6c148821b7493bf9b29e769343a24e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el5). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild"

2015-12-03 Thread notifications
>From 28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Thu, 18 Jun 2015 04:24:43 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 600cb50..ad0790e 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
+
 * Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
 - Perl 5.22 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el5&id=28bb8ca2b8e5ddd7fbbeda82cd7da4c16eb29c02
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el5). "Perl 5.22 rebuild"

2015-12-03 Thread notifications
>From 39125d5b28dee7fd08390662bfffe4a9c6b386fd Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Sat, 6 Jun 2015 21:49:58 +0200
Subject: Perl 5.22 rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index 5036c1a..600cb50 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 06 2015 Jitka Plesnikova  - 1.5-5
+- Perl 5.22 rebuild
+
 * Fri Aug 29 2014 Jitka Plesnikova  - 1.5-4
 - Perl 5.20 rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el5&id=39125d5b28dee7fd08390662bfffe4a9c6b386fd
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (el5). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild"

2015-12-03 Thread notifications
>From bfc4db00682b83042d2f683a406cdf8a8a864054 Mon Sep 17 00:00:00 2001
From: Dennis Gilmore 
Date: Sat, 7 Jun 2014 01:55:25 -0500
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild

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

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index c7a097e..119bb2b 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,6 +1,6 @@
 Name:   perl-Messaging-Message
 Version:1.5
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 07 2014 Fedora Release Engineering  
- 1.5-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
+
 * Thu Nov 28 2013 Massimo Paladin  1.5-2
 - Remove old patch.
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=el5&id=bfc4db00682b83042d2f683a406cdf8a8a864054
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


lcons pushed to perl-Messaging-Message (master). "Spec file cleanup"

2015-12-03 Thread notifications
>From 5b8c20993f6c148821b7493bf9b29e769343a24e Mon Sep 17 00:00:00 2001
From: Lionel Cons 
Date: Thu, 3 Dec 2015 10:14:43 +0100
Subject: Spec file cleanup

---
 perl-Messaging-Message.spec | 28 +++-
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/perl-Messaging-Message.spec b/perl-Messaging-Message.spec
index ad0790e..f1224c6 100644
--- a/perl-Messaging-Message.spec
+++ b/perl-Messaging-Message.spec
@@ -1,11 +1,13 @@
-Name:   perl-Messaging-Message
+%global cpan_name Messaging-Message
+
+Name:   perl-%{cpan_name}
 Version:1.5
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Abstraction of a message
 License:GPL+ or Artistic
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/Messaging-Message/
-Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/Messaging-Message-%{version}.tar.gz
+URL:http://search.cpan.org/dist/%{cpan_name}/
+Source0:
http://search.cpan.org/CPAN/authors/id/L/LC/LCONS/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -31,27 +33,24 @@ This module provides an abstraction of a "message", as used 
in messaging,
 see for instance: http://en.wikipedia.org/wiki/Enterprise_messaging_system.
 
 %prep
-%setup -q -n Messaging-Message-%{version}
+%setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
-%install
-rm -rf $RPM_BUILD_ROOT
+%check
+make test
 
+%install
+rm -fr $RPM_BUILD_ROOT
 make pure_install DESTDIR=$RPM_BUILD_ROOT
-
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
-
 %{_fixperms} $RPM_BUILD_ROOT/*
 
-%check
-make test
-
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -fr $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
@@ -60,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Dec  3 2015 Lionel Cons  1.5-7
+- Spec file cleanup.
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 1.5-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
-- 
cgit v0.11.2



http://pkgs.fedoraproject.org/cgit/perl-Messaging-Message.git/commit/?h=master&id=5b8c20993f6c148821b7493bf9b29e769343a24e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org


  1   2   >