[Bug 1261222] perl-ExtUtils-MakeMaker-7.08 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1261222

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-ExtUtils-MakeMaker-7.0
   ||8-1.fc24
 Resolution|--- |RAWHIDE
Last Closed||2015-09-09 04:51:54



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc uploaded namespace-autoclean-0.27.tar.gz for perl-namespace-autoclean

2015-09-09 Thread notifications
777d5850f4840a757c5a0e8b30c05716  namespace-autoclean-0.27.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-namespace-autoclean/namespace-autoclean-0.27.tar.gz/md5/777d5850f4840a757c5a0e8b30c05716/namespace-autoclean-0.27.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar uploaded ExtUtils-MakeMaker-7.08.tar.gz for perl-ExtUtils-MakeMaker

2015-09-09 Thread notifications
18c3f1965c0cb254ff42ba8a5ebe0995  ExtUtils-MakeMaker-7.08.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-ExtUtils-MakeMaker/ExtUtils-MakeMaker-7.08.tar.gz/md5/18c3f1965c0cb254ff42ba8a5ebe0995/ExtUtils-MakeMaker-7.08.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-ExtUtils-MakeMaker (master). "7.08 bump"

2015-09-09 Thread notifications
From 16ae9d0eeaca5ce572e66b109de0b08cdbb5e7ba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 9 Sep 2015 10:24:35 +0200
Subject: 7.08 bump


diff --git a/.gitignore b/.gitignore
index 7dc0831..72015ab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,4 @@
 /ExtUtils-MakeMaker-7.02.tar.gz
 /ExtUtils-MakeMaker-7.04.tar.gz
 /ExtUtils-MakeMaker-7.06.tar.gz
+/ExtUtils-MakeMaker-7.08.tar.gz
diff --git a/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch 
b/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch
deleted file mode 100644
index 6de7bf5..000
--- a/ExtUtils-MakeMaker-7.06-Link-to-libperl-explicitly-on-Linux.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-From 92de778d11258fb26185cb6b7258e2dcf6d43b99 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Tue, 2 Jul 2013 10:28:15 +0200
-Subject: [PATCH] Link to libperl explicitly on Linux
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-
-
-
-Signed-off-by: Petr Písař 

- lib/ExtUtils/MM_Unix.pm | 8 +++-
- 1 file changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm
-index 38d780a..8440388 100644
 a/lib/ExtUtils/MM_Unix.pm
-+++ b/lib/ExtUtils/MM_Unix.pm
-@@ -31,6 +31,7 @@ BEGIN {
- $Is{IRIX}= $^O eq 'irix';
- $Is{NetBSD}  = $^O eq 'netbsd';
- $Is{Interix} = $^O eq 'interix';
-+$Is{Linux}   = $^O eq 'linux';
- $Is{SunOS4}  = $^O eq 'sunos';
- $Is{Solaris} = $^O eq 'solaris';
- $Is{SunOS}   = $Is{SunOS4} || $Is{Solaris};
-@@ -1016,7 +1017,7 @@ sub xs_make_dynamic_lib {
- push(@m," \$(RM_F) \$\@\n");
- 
- my $libs = '$(LDLOADLIBS)';
--if (($Is{NetBSD} || $Is{Interix} || $Is{Android}) && 
$Config{'useshrplib'} eq 'true') {
-+if (($Is{Linux} || $Is{NetBSD} || $Is{Interix} || $Is{Android}) && 
$Config{'useshrplib'} eq 'true') {
- # Use nothing on static perl platforms, and to the flags needed
- # to link against the shared libperl library on shared perl
- # platforms.  We peek at lddlflags to see if we need -Wl,-R
-@@ -1029,6 +1030,11 @@ sub xs_make_dynamic_lib {
- # The Android linker will not recognize symbols from
- # libperl unless the module explicitly depends on it.
- $libs .= ' "-L$(PERL_INC)" -lperl';
-+} else {
-+if ($ENV{PERL_CORE}) {
-+$libs .= ' -L$(PERL_INC)';
-+}
-+$libs .= ' -lperl';
- }
- }
- 
--- 
-2.4.3
-
diff --git a/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch 
b/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch
deleted file mode 100644
index 727c7d2..000
--- a/ExtUtils-MakeMaker-7.06-Remove-new-line-from-INC.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm.orig 
ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm
 ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm.orig   2015-09-01 
13:10:14.810680431 +0200
-+++ ExtUtils-MakeMaker-7.06/lib/ExtUtils/MM_Unix.pm2015-09-01 
14:03:30.587696052 +0200
-@@ -2948,7 +2948,7 @@ sub pasthru {
- my $val = qq{\$($key)};
- # expand within perl if given since need to use quote_literal
- # since INC might include space-protecting ""!
--$val = $self->{$key} if defined $self->{$key};
-+chomp($val = $self->{$key}) if defined $self->{$key};
- $val .= " \$(PASTHRU_$key)";
- my $quoted = $self->quote_literal($val);
- push @pasthru, qq{PASTHRU_$key=$quoted};
diff --git a/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch 
b/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch
deleted file mode 100644
index e69891e..000
--- a/ExtUtils-MakeMaker-7.06-USE_MM_LD_RUN_PATH.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-From 7710f58f372a097887831999c1d724b381492f21 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Thu, 12 Jan 2012 17:05:19 +0100
-Subject: [PATCH] Do not set RPATH by default
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Former behavior can be forced by setting USE_MM_LD_RUN_PATH
-environment variable to 1.
-
-This is copy from `perl' package.
-See .
-
-Signed-off-by: Petr Písař 

- lib/ExtUtils/Liblist.pm   |  5 
- lib/ExtUtils/MM_Unix.pm   |  2 +-
- lib/ExtUtils/MakeMaker.pm | 58 +--
- 3 files changed, 62 insertions(+), 3 deletions(-)
-
-diff --git a/lib/ExtUtils/Liblist.pm b/lib/ExtUtils/Liblist.pm
-index 0d00242..b451c37 100644
 a/lib/ExtUtils/Liblist.pm
-+++ b/lib/ExtUtils/Liblist.pm
-@@ -89,6 +89,11 @@ libraries.  LD_RUN_PATH is a 

Re: ExtUtils-MakeMaker-7.06 breaks some builds in F24

2015-09-09 Thread Petr Pisar
On Thu, Sep 03, 2015 at 09:56:17AM +0200, Petr Pisar wrote:
> I put ExtUtils-MakeMaker-7.06 into rawhide. Despite that the changelog does
> not mention any intentional compatibility breakage, it turned out some CPAN
> distribution fails to build with it. See
> .
> 
I pushed 7.08 version into rawhide. This version effectively reverts most of
the changes. Affected packages should become buildable again.

-- Petr


signature.asc
Description: PGP signature
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1261222] perl-ExtUtils-MakeMaker-7.08 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1261222



--- Comment #2 from Upstream Release Monitoring 
 ---
ppisar's perl-ExtUtils-MakeMaker-7.08-1.fc24 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=683699

-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Re: Adobe CMap resources license change

2015-09-09 Thread Akira TAGOH
No CMap files in fontconfig.

On Wed, Sep 9, 2015 at 2:51 PM,   wrote:
>
>
> On Tue, Sep 8, 2015 at 6:32 PM, Rex Dieter  wrote:
>
>> Interesting, I wasn't aware of these being packaged separately... mind
>> collaborating to integrate this into poppler-data (which also contains a
>> copy of most/all of these)?
>
> IIRC it is also duplicated in fontconfig
>
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/devel
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/devel
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct



-- 
Akira TAGOH
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

eseyman pushed to perl-BZ-Client (master). "Update to 1.071"

2015-09-09 Thread notifications
From 3cfbc10ce4798e83989d75f5575af36f57edf6cf Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Wed, 9 Sep 2015 12:19:31 +0200
Subject: Update to 1.071


diff --git a/.gitignore b/.gitignore
index fff4e7c..207a5d2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ BZ-Client-1.03.tar.gz
 /BZ-Client-1.06.tar.gz
 /BZ-Client-1.061.tar.gz
 /BZ-Client-1.07.tar.gz
+/BZ-Client-1.071.tar.gz
diff --git a/perl-BZ-Client.spec b/perl-BZ-Client.spec
index 2f63054..8cff562 100644
--- a/perl-BZ-Client.spec
+++ b/perl-BZ-Client.spec
@@ -1,11 +1,11 @@
 Name:   perl-BZ-Client
-Version:1.070
+Version:1.071
 Release:1%{?dist}
 Summary:A client for the Bugzilla web services API
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/BZ-Client/
-Source0:
http://www.cpan.org/authors/id/D/DJ/DJZORT/BZ-Client-1.07.tar.gz
+Source0:
http://www.cpan.org/authors/id/D/DJ/DJZORT/BZ-Client-%{version}.tar.gz
 # Fix test to expect random hash keys, bug #1084032, CPAN RT#94402
 Patch1: 
BZ-Client-1.04-Expect-perturbed-structure-members-on-t-11writer.t.patch
 BuildArch:  noarch
@@ -32,7 +32,7 @@ Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} 
-V:version`"; echo $versi
 This module provides an interface to the Bugzilla web services API.
 
 %prep
-%setup -q -n BZ-Client-1.07
+%setup -q -n BZ-Client-%{version}
 chmod 644 Changes README LICENSE
 
 %patch1 -p1
@@ -56,6 +56,9 @@ chmod 644 Changes README LICENSE
 %{_mandir}/man3/BZ*
 
 %changelog
+* Wed Sep 09 2015 Emmanuel Seyman  - 1.071-1
+- Update to 1.071
+
 * Sun Sep 06 2015 Emmanuel Seyman  - 1.070-1
 - Update to 1.07
 - Use %%license tag
diff --git a/sources b/sources
index d23d0e8..78eab23 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-45392d2c1c6e1e08458488d747abcd92  BZ-Client-1.07.tar.gz
+411b8e9a0279aa9fe875d211c3fea29e  BZ-Client-1.071.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-BZ-Client.git/commit/?h=master=3cfbc10ce4798e83989d75f5575af36f57edf6cf
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Test-AutoBuild

2015-09-09 Thread buildsys


perl-Test-AutoBuild has broken dependencies in the rawhide tree:
On x86_64:
perl-Test-AutoBuild-1.2.4-15.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
On i386:
perl-Test-AutoBuild-1.2.4-15.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
On armhfp:
perl-Test-AutoBuild-1.2.4-15.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-POE-API-Peek

2015-09-09 Thread buildsys


perl-POE-API-Peek has broken dependencies in the rawhide tree:
On x86_64:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
On i386:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
On armhfp:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Method-Signatures

2015-09-09 Thread buildsys


perl-Method-Signatures has broken dependencies in the rawhide tree:
On x86_64:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
On i386:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
On armhfp:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Data-Dump-Streamer

2015-09-09 Thread buildsys


perl-Data-Dump-Streamer has broken dependencies in the rawhide tree:
On x86_64:
perl-Data-Dump-Streamer-2.38-3.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-Data-Dump-Streamer-2.38-3.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Data-Dump-Streamer-2.38-3.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman uploaded BZ-Client-1.071.tar.gz for perl-BZ-Client

2015-09-09 Thread notifications
411b8e9a0279aa9fe875d211c3fea29e  BZ-Client-1.071.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-BZ-Client/BZ-Client-1.071.tar.gz/md5/411b8e9a0279aa9fe875d211c3fea29e/BZ-Client-1.071.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: polymake

2015-09-09 Thread buildsys


polymake has broken dependencies in the rawhide tree:
On x86_64:
polymake-2.13-22.git20141013.fc23.x86_64 requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.x86_64 requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
polymake-2.13-22.git20141013.fc23.i686 requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.i686 requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.i686 requires libperl.so.5.20
On armhfp:
polymake-2.13-22.git20141013.fc23.armv7hl requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.armv7hl requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-B-Hooks-OP-Check-EntersubForCV

2015-09-09 Thread buildsys


perl-B-Hooks-OP-Check-EntersubForCV has broken dependencies in the rawhide tree:
On x86_64:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.i686 requires 
libperl.so.5.20
On armhfp:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.armv7hl requires 
libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Devel-FindRef

2015-09-09 Thread buildsys


perl-Devel-FindRef has broken dependencies in the rawhide tree:
On x86_64:
perl-Devel-FindRef-1.44-3.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.x86_64 requires libperl.so.5.20()(64bit)
On i386:
perl-Devel-FindRef-1.44-3.fc22.i686 requires perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Devel-FindRef-1.44-3.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Devel-BeginLift

2015-09-09 Thread buildsys


perl-Devel-BeginLift has broken dependencies in the rawhide tree:
On x86_64:
perl-Devel-BeginLift-0.001003-9.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-Devel-BeginLift-0.001003-9.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Devel-BeginLift-0.001003-9.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Data-Alias

2015-09-09 Thread buildsys


perl-Data-Alias has broken dependencies in the rawhide tree:
On x86_64:
perl-Data-Alias-1.18-4.fc22.x86_64 requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.x86_64 requires libperl.so.5.20()(64bit)
On i386:
perl-Data-Alias-1.18-4.fc22.i686 requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Data-Alias-1.18-4.fc22.armv7hl requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

rawhide report: 20150909 changes

2015-09-09 Thread Fedora Rawhide Report
Compose started at Wed Sep  9 05:15:04 UTC 2015
Broken deps for i386
--
[IQmol]
IQmol-2.3.0-9.fc24.i686 requires libboost_serialization.so.1.58.0
IQmol-2.3.0-9.fc24.i686 requires libboost_iostreams.so.1.58.0
[ScientificPython]
ScientificPython-2.8-20.fc22.i686 requires libmpi.so.1
[apache-scout]
apache-scout-1.2.6-11.fc21.noarch requires mvn(org.apache.juddi:uddi-ws)
apache-scout-1.2.6-11.fc21.noarch requires 
mvn(org.apache.juddi:juddi-client)
[aqsis]
aqsis-1.8.2-20.fc24.i686 requires libboost_thread.so.1.58.0
aqsis-1.8.2-20.fc24.i686 requires libboost_system.so.1.58.0
aqsis-1.8.2-20.fc24.i686 requires libboost_regex.so.1.58.0
aqsis-1.8.2-20.fc24.i686 requires libboost_program_options.so.1.58.0
aqsis-1.8.2-20.fc24.i686 requires libboost_filesystem.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_wave.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_thread.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_system.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_regex.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_iostreams.so.1.58.0
aqsis-core-1.8.2-20.fc24.i686 requires libboost_filesystem.so.1.58.0
aqsis-libs-1.8.2-20.fc24.i686 requires libboost_thread.so.1.58.0
aqsis-libs-1.8.2-20.fc24.i686 requires libboost_system.so.1.58.0
aqsis-libs-1.8.2-20.fc24.i686 requires libboost_regex.so.1.58.0
aqsis-libs-1.8.2-20.fc24.i686 requires libboost_iostreams.so.1.58.0
aqsis-libs-1.8.2-20.fc24.i686 requires libboost_filesystem.so.1.58.0
[aws]
aws-tools-2015-2.fc23.i686 requires libaws_ssl.so
[bro]
bro-2.3.2-6.fc23.i686 requires libjemalloc.so.1
[compat-qpid-cpp]
compat-qpid-tools-0.24-26.fc24.noarch requires python-qpid >= 0:0.8
[condor-low-latency]
condor-low-latency-1.2-2.fc23.6.noarch requires python-qpid
[control-center]
1:control-center-3.17.90-1.fc24.i686 requires libgrilo-0.2.so.1
[dpm-contrib-admintools]
dpm-contrib-admintools-0.2.1-6.fc23.i686 requires MySQL-python(x86-32)
[ghc-hakyll]
ghc-hakyll-4.5.4.0-3.fc23.i686 requires libHSxml-1.3.13-ghc7.8.4.so
ghc-hakyll-4.5.4.0-3.fc23.i686 requires 
ghc(pandoc-1.13.2-54186dabcc89e90f1b8b1cafd8e569fe)
ghc-hakyll-devel-4.5.4.0-3.fc23.i686 requires 
ghc-devel(pandoc-1.13.2-54186dabcc89e90f1b8b1cafd8e569fe)
[gnash]
1:gnash-0.8.10-19.fc24.i686 requires libboost_thread.so.1.58.0
1:gnash-0.8.10-19.fc24.i686 requires libboost_system.so.1.58.0
1:gnash-0.8.10-19.fc24.i686 requires libboost_serialization.so.1.58.0
1:gnash-0.8.10-19.fc24.i686 requires libboost_program_options.so.1.58.0
1:gnash-0.8.10-19.fc24.i686 requires libboost_iostreams.so.1.58.0
1:gnash-0.8.10-19.fc24.i686 requires libboost_date_time.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires libboost_thread.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires libboost_system.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires 
libboost_serialization.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires 
libboost_program_options.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires libboost_iostreams.so.1.58.0
1:gnash-cygnal-0.8.10-19.fc24.i686 requires libboost_date_time.so.1.58.0
1:gnash-extension-dejagnu-0.8.10-19.fc24.i686 requires 
libboost_thread.so.1.58.0
1:gnash-extension-dejagnu-0.8.10-19.fc24.i686 requires 
libboost_system.so.1.58.0
1:gnash-extension-dejagnu-0.8.10-19.fc24.i686 requires 
libboost_program_options.so.1.58.0
1:gnash-extension-dejagnu-0.8.10-19.fc24.i686 requires 
libboost_iostreams.so.1.58.0
1:gnash-extension-fileio-0.8.10-19.fc24.i686 requires 
libboost_thread.so.1.58.0
1:gnash-extension-fileio-0.8.10-19.fc24.i686 requires 
libboost_system.so.1.58.0
1:gnash-extension-fileio-0.8.10-19.fc24.i686 requires 
libboost_program_options.so.1.58.0
1:gnash-extension-fileio-0.8.10-19.fc24.i686 requires 
libboost_iostreams.so.1.58.0
1:gnash-extension-lirc-0.8.10-19.fc24.i686 requires 
libboost_thread.so.1.58.0
1:gnash-extension-lirc-0.8.10-19.fc24.i686 requires 
libboost_system.so.1.58.0
1:gnash-extension-lirc-0.8.10-19.fc24.i686 requires 
libboost_program_options.so.1.58.0
1:gnash-extension-lirc-0.8.10-19.fc24.i686 requires 
libboost_iostreams.so.1.58.0
1:gnash-extension-mysql-0.8.10-19.fc24.i686 requires 
libboost_thread.so.1.58.0
1:gnash-extension-mysql-0.8.10-19.fc24.i686 requires 
libboost_system.so.1.58.0
1:gnash-extension-mysql-0.8.10-19.fc24.i686 requires 
libboost_program_options.so.1.58.0
1:gnash-extension-mysql-0.8.10-19.fc24.i686 requires 
libboost_iostreams.so.1.58.0
1:gnash-klash-0.8.10-19.fc24.i686 requires 

F-23 Branched report: 20150909 changes

2015-09-09 Thread Fedora Branched Report
Compose started at Wed Sep  9 07:15:03 UTC 2015
Broken deps for armhfp
--
[ScientificPython]
ScientificPython-2.8-20.fc22.armv7hl requires libmpi.so.1
[apache-scout]
apache-scout-1.2.6-11.fc21.noarch requires mvn(org.apache.juddi:uddi-ws)
apache-scout-1.2.6-11.fc21.noarch requires 
mvn(org.apache.juddi:juddi-client)
[aws]
aws-tools-2015-2.fc23.armv7hl requires libaws_ssl.so
[cego]
cego-2.20.21-3.fc23.armv7hl requires liblfcbase.so.1
[dpm-contrib-admintools]
dpm-contrib-admintools-0.2.1-6.fc23.armv7hl requires 
MySQL-python(armv7hl-32)
[gtksourceview-sharp]
gtksourceview-sharp-2.0.12-24.fc23.armv7hl requires gtksourceview
[hadoop]
hadoop-common-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-servlet)
hadoop-common-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hadoop-common-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-json)
hadoop-common-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-core)
hadoop-hdfs-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hadoop-hdfs-2.4.1-8.fc22.noarch requires mvn(com.sun.jersey:jersey-core)
hadoop-mapreduce-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hadoop-mapreduce-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey.contribs:jersey-guice)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-servlet)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-json)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-core)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-client)
hadoop-tests-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey.contribs:jersey-guice)
hadoop-yarn-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hadoop-yarn-2.4.1-8.fc22.noarch requires mvn(com.sun.jersey:jersey-json)
hadoop-yarn-2.4.1-8.fc22.noarch requires mvn(com.sun.jersey:jersey-core)
hadoop-yarn-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey:jersey-client)
hadoop-yarn-2.4.1-8.fc22.noarch requires 
mvn(com.sun.jersey.contribs:jersey-guice)
[hawaii-shell]
hawaii-shell-0.3.0-3.fc22.armv7hl requires 
libqtaccountsservice-qt5.so.0.1.2
[hbase]
hbase-0.98.3-4.fc22.noarch requires mvn(com.sun.jersey:jersey-server)
hbase-0.98.3-4.fc22.noarch requires mvn(com.sun.jersey:jersey-json)
hbase-0.98.3-4.fc22.noarch requires mvn(com.sun.jersey:jersey-core)
hbase-tests-0.98.3-4.fc22.noarch requires 
mvn(com.sun.jersey:jersey-server)
hbase-tests-0.98.3-4.fc22.noarch requires 
mvn(com.sun.jersey:jersey-json)
hbase-tests-0.98.3-4.fc22.noarch requires 
mvn(com.sun.jersey:jersey-core)
[kf5-baloo]
kf5-baloo-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-bluez-qt]
kf5-bluez-qt-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kapidox]
kf5-kapidox-5.13.0-1.fc23.noarch requires kf5-filesystem >= 0:5.13.0
[kf5-karchive]
kf5-karchive-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kauth]
kf5-kauth-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kbookmarks]
kf5-kbookmarks-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kcmutils]
kf5-kcmutils-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kcodecs]
kf5-kcodecs-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kcompletion]
kf5-kcompletion-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
[kf5-kconfig]
kf5-kconfig-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kconfigwidgets]
kf5-kconfigwidgets-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
[kf5-kcoreaddons]
kf5-kcoreaddons-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
[kf5-kcrash]
kf5-kcrash-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kdbusaddons]
kf5-kdbusaddons-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
[kf5-kdeclarative]
kf5-kdeclarative-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
[kf5-kded]
kf5-kded-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 0:5.13.0
[kf5-kdelibs4support]
kf5-kdelibs4support-5.13.0-1.fc23.armv7hl requires kf5-filesystem >= 
0:5.13.0
kf5-kdelibs4support-devel-5.13.0-1.fc23.armv7hl requires 
kf5-knotifications-devel >= 0:5.13.0
kf5-kdelibs4support-devel-5.13.0-1.fc23.armv7hl requires 
kf5-kitemmodels-devel >= 0:5.13.0
kf5-kdelibs4support-devel-5.13.0-1.fc23.armv7hl requires 
kf5-kinit-devel >= 0:5.13.0
kf5-kdelibs4support-devel-5.13.0-1.fc23.armv7hl requires 
kf5-kiconthemes-devel >= 0:5.13.0

ppisar uploaded Test-TrailingSpace-0.0205.tar.gz for perl-Test-TrailingSpace

2015-09-09 Thread notifications
e9f3e3c6d793dc42f056fa58af1e632d  Test-TrailingSpace-0.0205.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-TrailingSpace/Test-TrailingSpace-0.0205.tar.gz/md5/e9f3e3c6d793dc42f056fa58af1e632d/Test-TrailingSpace-0.0205.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Re: Adobe CMap resources license change

2015-09-09 Thread Akira TAGOH
It have never had AFAIK. guess you got confused with ghostscript? it
have ever contained CMap files in the package. though it doesn't and
requires poppler-data now.

On Wed, Sep 9, 2015 at 6:51 PM,   wrote:
>
>
> - Mail original -
> De: "Akira TAGOH" 
>> No CMap files in fontconfig.
>
> My bad, that' too long I looked at it
>
> I'm pretty sure it was not used only in poppler though
>
> Do we still have a google-code like interface that allows searching for 
> duplicates in a linux distro ? That would help narrow cmap uses
>
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/devel
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> --
> devel mailing list
> devel@lists.fedoraproject.org
> https://admin.fedoraproject.org/mailman/listinfo/devel
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct



-- 
Akira TAGOH
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: OCaml plans on POWER7/POWER8 (ppc64, ppc64le) in Rawhide

2015-09-09 Thread Dan Horák
On Tue, 8 Sep 2015 20:02:08 +0100
"Richard W.M. Jones"  wrote:

> OCaml is a statically-safe programming language derived from ML which
> compiles to very fast native code.  It contains native code backends
> for most architectures (all Fedora primary & secondary arches except
> s/390x in fact).

the s390x situation is expected to change in the future :-)

> Currently Fedora downstream carries two non-upstream backends:
> For ppc64 (big endian), a backend was written many years ago by David
> Woodhouse and was upstream for a time, but was dropped when the
> PlayStation 3 stopped supporting Linux.  For ppc64le (little endian /
> POWER8) IBM's Michel Normand contributed a native code backend last
> year.  The upstream project always carried a ppc (32 bit) backend, but
> we didn't use it and it's not very interesting for us.
> 
>   https://git.fedorahosted.org/cgit/fedora-ocaml.git/log/?h=fedora-24-4.02
> 
> Red Hat and IBM have provided help and loaned equipment to the
> upstream project, and as a result upstream have now added ppc64 and
> ppc64le backends.  This work was merged at the end of August.  These
> backends were inspired by the Red Hat & IBM work but are not
> derivatives.  For details see:
> 
>   https://github.com/ocaml/ocaml/pull/225
> 
> So what I want to do is add the new backends [actually it's a single,
> combined and extended ppc/ppc64/ppc64le backend] to Fedora Rawhide,
> and drop our non-upstream backends.
> 
> I have so far cherry-picked the merge commit on top of our Fedora
> OCaml tree, and I have dropped the downstream ppc64/ppc64le commits
> from our tree.  (This is not pushed yet so doesn't appear in the
> git.fedorahosted.org link above.)
> 
> I have tested it on ppc64le to check that the compiler compiles
> itself.  A scratch build of the compiler with the new backend is here
> (I reserve the right to make further changes, this is just a
> preliminary test build):
> 
>   http://ppc.koji.fedoraproject.org/koji/taskinfo?taskID=2741551
> 
> I used this to compile some ocaml-* packages on ppc64le, with -- it
> has to be said -- mixed results.  There are two compiler bugs
> revealed.  This compiler won't be able to compile all the ocaml-*
> packages on POWER.  However because of the depth of dependencies, I
> cannot easily do scratch builds to find out which packages will be
> broken.
> 
> Hence I'd like to do a full rebuild, again, to see what breaks.  This
> *shouldn't affect primary architectures at all*, but will probably
> leave some broken ocaml-* packages on the ppc64/ppc64le secondary
> arches.
> 
> We've actually done two complete rebuilds during the F24 development
> cycle already, which in a way is good because it means I know how long
> it should take, and I'm confident that the scripts I use will work
> again:
> 
>   
> http://git.annexia.org/?p=goals.git;a=blob;f=fedora_ocaml_rebuild.ml;h=13a8c016b34a3d92cbb118d44b87c9b32d6d09af;hb=HEAD
> 
> So I'm pretty confident the primary arch rebuild will go fine, since
> it's not affected by any of the above changes - it's basically just a
> release bump.  We don't even need to use a side tag for this because
> the "old" and "new" packages can be mixed on x86 - they are the same.
> 
> The plan for ppc64/ppc64le would then be to fix the bugs revealed in
> the rebuild with upstream help.
> 
> Any comments?

Moving to upstream code generator is definitely a good thing, having
some broken ocaml-* packages for a limited period of time, until the
compiler is fixed, is acceptable. My only concern is about the various
virt related tools that are written in OCaml and are needed during the
release engineering tasks.


Dan
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1230219] perl-Plack-1.0036 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1230219
Bug 1230219 depends on bug 1230227, which changed state.

Bug 1230227 Summary: Review Request: perl-HTTP-Headers-Fast - Faster 
implementation of HTTP::Headers
https://bugzilla.redhat.com/show_bug.cgi?id=1230227

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |DEFERRED



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1221832] perl-Dancer2-0.161000 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1221832
Bug 1221832 depends on bug 1230227, which changed state.

Bug 1230227 Summary: Review Request: perl-HTTP-Headers-Fast - Faster 
implementation of HTTP::Headers
https://bugzilla.redhat.com/show_bug.cgi?id=1230227

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |DEFERRED



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-namespace-autoclean (master). "Update to 0.27 (..more)"

2015-09-09 Thread notifications
From 67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Wed, 9 Sep 2015 10:30:47 +0100
Subject: Update to 0.27

- New upstream release 0.27
  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6

diff --git a/perl-namespace-autoclean.spec b/perl-namespace-autoclean.spec
index 37562d1..391a93f 100644
--- a/perl-namespace-autoclean.spec
+++ b/perl-namespace-autoclean.spec
@@ -1,6 +1,6 @@
 Name:   perl-namespace-autoclean
-Version:0.26
-Release:4%{?dist}
+Version:0.27
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Summary:Keep imports out of your namespace
@@ -8,8 +8,11 @@ Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/namespace-auto
 URL:http://search.cpan.org/dist/namespace-autoclean
 BuildArch:  noarch
 # Module Build
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
-BuildRequires:  perl(Module::Build::Tiny) >= 0.039
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # Module
 BuildRequires:  perl(B::Hooks::EndOfScope) >= 0.12
 BuildRequires:  perl(List::Util)
@@ -21,7 +24,6 @@ BuildRequires:  perl(warnings)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(constant)
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(overload)
@@ -60,14 +62,16 @@ anything that looks like a method.
 %setup -q -n namespace-autoclean-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+%{_fixperms} %{buildroot}
 
 %check
-./Build test
+make test
 
 %files
 %license LICENSE
@@ -76,6 +80,10 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/namespace::autoclean.3*
 
 %changelog
+* Wed Sep  9 2015 Paul Howarth  - 0.27-1
+- Update to 0.27
+  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.26-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 981031b..b2bda17 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1fb1238dc3164a83b36779b8fb02431f  namespace-autoclean-0.26.tar.gz
+777d5850f4840a757c5a0e8b30c05716  namespace-autoclean-0.27.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-namespace-autoclean.git/commit/?h=master=67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman uploaded Catalyst-Runtime-5.90101.tar.gz for perl-Catalyst-Runtime

2015-09-09 Thread notifications
02a1d3b0d4ab674d1846f46d78dcabee  Catalyst-Runtime-5.90101.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Catalyst-Runtime/Catalyst-Runtime-5.90101.tar.gz/md5/02a1d3b0d4ab674d1846f46d78dcabee/Catalyst-Runtime-5.90101.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Re: Adobe CMap resources license change

2015-09-09 Thread nicolas . mailhot


- Mail original -
De: "Akira TAGOH" 
> No CMap files in fontconfig.

My bad, that' too long I looked at it

I'm pretty sure it was not used only in poppler though

Do we still have a google-code like interface that allows searching for 
duplicates in a linux distro ? That would help narrow cmap uses

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Broken dependencies: perl-Method-Signatures

2015-09-09 Thread buildsys


perl-Method-Signatures has broken dependencies in the F-23 tree:
On x86_64:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
On i386:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
On armhfp:
perl-Method-Signatures-20141021-1.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.1)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-B-Hooks-OP-Check-EntersubForCV

2015-09-09 Thread buildsys


perl-B-Hooks-OP-Check-EntersubForCV has broken dependencies in the F-23 tree:
On x86_64:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.i686 requires 
libperl.so.5.20
On armhfp:
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-B-Hooks-OP-Check-EntersubForCV-0.09-10.fc22.armv7hl requires 
libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: polymake

2015-09-09 Thread buildsys


polymake has broken dependencies in the F-23 tree:
On x86_64:
polymake-2.13-22.git20141013.fc23.x86_64 requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.x86_64 requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
polymake-2.13-22.git20141013.fc23.i686 requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.i686 requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.i686 requires libperl.so.5.20
On armhfp:
polymake-2.13-22.git20141013.fc23.armv7hl requires 
perl(:MODULE_COMPAT_5.20.2)
polymake-2.13-22.git20141013.fc23.armv7hl requires perl = 4:5.20.2
polymake-2.13-22.git20141013.fc23.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Data-Alias

2015-09-09 Thread buildsys


perl-Data-Alias has broken dependencies in the F-23 tree:
On x86_64:
perl-Data-Alias-1.18-4.fc22.x86_64 requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.x86_64 requires libperl.so.5.20()(64bit)
On i386:
perl-Data-Alias-1.18-4.fc22.i686 requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Data-Alias-1.18-4.fc22.armv7hl requires perl(:MODULE_COMPAT_5.20.0)
perl-Data-Alias-1.18-4.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Devel-BeginLift

2015-09-09 Thread buildsys


perl-Devel-BeginLift has broken dependencies in the F-23 tree:
On x86_64:
perl-Devel-BeginLift-0.001003-9.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-Devel-BeginLift-0.001003-9.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Devel-BeginLift-0.001003-9.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-BeginLift-0.001003-9.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Data-Dump-Streamer

2015-09-09 Thread buildsys


perl-Data-Dump-Streamer has broken dependencies in the F-23 tree:
On x86_64:
perl-Data-Dump-Streamer-2.38-3.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.x86_64 requires 
libperl.so.5.20()(64bit)
On i386:
perl-Data-Dump-Streamer-2.38-3.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Data-Dump-Streamer-2.38-3.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Data-Dump-Streamer-2.38-3.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Test-AutoBuild

2015-09-09 Thread buildsys


perl-Test-AutoBuild has broken dependencies in the F-23 tree:
On x86_64:
perl-Test-AutoBuild-1.2.4-15.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
On i386:
perl-Test-AutoBuild-1.2.4-15.fc22.i686 requires 
perl(:MODULE_COMPAT_5.20.0)
On armhfp:
perl-Test-AutoBuild-1.2.4-15.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-POE-API-Peek

2015-09-09 Thread buildsys


perl-POE-API-Peek has broken dependencies in the F-23 tree:
On x86_64:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
On i386:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
On armhfp:
1:perl-POE-API-Peek-2.20-8.fc22.noarch requires 
perl(:MODULE_COMPAT_5.20.0)
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-Devel-FindRef

2015-09-09 Thread buildsys


perl-Devel-FindRef has broken dependencies in the F-23 tree:
On x86_64:
perl-Devel-FindRef-1.44-3.fc22.x86_64 requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.x86_64 requires libperl.so.5.20()(64bit)
On i386:
perl-Devel-FindRef-1.44-3.fc22.i686 requires perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.i686 requires libperl.so.5.20
On armhfp:
perl-Devel-FindRef-1.44-3.fc22.armv7hl requires 
perl(:MODULE_COMPAT_5.20.0)
perl-Devel-FindRef-1.44-3.fc22.armv7hl requires libperl.so.5.20
Please resolve this as soon as possible.


--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman pushed to perl-Catalyst-Runtime (master). "Update to 5.90101"

2015-09-09 Thread notifications
From 0a8196909797d2c6221dc44832ef8b2409307687 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Wed, 9 Sep 2015 14:14:28 +0200
Subject: Update to 5.90101


diff --git a/.gitignore b/.gitignore
index ee12683..9c8a559 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,3 +23,4 @@ Catalyst-Runtime-5.80021.tar.gz
 /Catalyst-Runtime-5.90093.tar.gz
 /Catalyst-Runtime-5.90097.tar.gz
 /Catalyst-Runtime-5.90100.tar.gz
+/Catalyst-Runtime-5.90101.tar.gz
diff --git a/perl-Catalyst-Runtime.spec b/perl-Catalyst-Runtime.spec
index 57df67f..da11560 100644
--- a/perl-Catalyst-Runtime.spec
+++ b/perl-Catalyst-Runtime.spec
@@ -1,6 +1,6 @@
 Name:   perl-Catalyst-Runtime
 Summary:Catalyst Framework Runtime
-Version:5.90100
+Version:5.90101
 Release:1%{?dist}
 License:GPL+ or Artistic
 
@@ -182,6 +182,9 @@ make clean
 %{_mandir}/man1/*
 
 %changelog
+* Wed Sep 09 2015 Emmanuel Seyman  - 5.90101-1
+- Update to 5.90101
+
 * Sun Aug 30 2015 Emmanuel Seyman  - 5.90100-1
 - Update to 5.90100
 - Remove tests subpackage
diff --git a/sources b/sources
index 489e593..2da7174 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5f97702ad508a391ec2857dc9639c84a  Catalyst-Runtime-5.90100.tar.gz
+02a1d3b0d4ab674d1846f46d78dcabee  Catalyst-Runtime-5.90101.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Catalyst-Runtime.git/commit/?h=master=0a8196909797d2c6221dc44832ef8b2409307687
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-namespace-autoclean (f23). "Update to 0.27 (..more)"

2015-09-09 Thread notifications
From 67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Wed, 9 Sep 2015 10:30:47 +0100
Subject: Update to 0.27

- New upstream release 0.27
  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6

diff --git a/perl-namespace-autoclean.spec b/perl-namespace-autoclean.spec
index 37562d1..391a93f 100644
--- a/perl-namespace-autoclean.spec
+++ b/perl-namespace-autoclean.spec
@@ -1,6 +1,6 @@
 Name:   perl-namespace-autoclean
-Version:0.26
-Release:4%{?dist}
+Version:0.27
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Summary:Keep imports out of your namespace
@@ -8,8 +8,11 @@ Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/namespace-auto
 URL:http://search.cpan.org/dist/namespace-autoclean
 BuildArch:  noarch
 # Module Build
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
-BuildRequires:  perl(Module::Build::Tiny) >= 0.039
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # Module
 BuildRequires:  perl(B::Hooks::EndOfScope) >= 0.12
 BuildRequires:  perl(List::Util)
@@ -21,7 +24,6 @@ BuildRequires:  perl(warnings)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(constant)
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(overload)
@@ -60,14 +62,16 @@ anything that looks like a method.
 %setup -q -n namespace-autoclean-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+%{_fixperms} %{buildroot}
 
 %check
-./Build test
+make test
 
 %files
 %license LICENSE
@@ -76,6 +80,10 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/namespace::autoclean.3*
 
 %changelog
+* Wed Sep  9 2015 Paul Howarth  - 0.27-1
+- Update to 0.27
+  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.26-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 981031b..b2bda17 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1fb1238dc3164a83b36779b8fb02431f  namespace-autoclean-0.26.tar.gz
+777d5850f4840a757c5a0e8b30c05716  namespace-autoclean-0.27.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-namespace-autoclean.git/commit/?h=f23=67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-namespace-autoclean (perl-namespace-autoclean-0.27-1.fc23). "Update to 0.27 (..more)"

2015-09-09 Thread notifications
From 67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Wed, 9 Sep 2015 10:30:47 +0100
Subject: Update to 0.27

- New upstream release 0.27
  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6

diff --git a/perl-namespace-autoclean.spec b/perl-namespace-autoclean.spec
index 37562d1..391a93f 100644
--- a/perl-namespace-autoclean.spec
+++ b/perl-namespace-autoclean.spec
@@ -1,6 +1,6 @@
 Name:   perl-namespace-autoclean
-Version:0.26
-Release:4%{?dist}
+Version:0.27
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Summary:Keep imports out of your namespace
@@ -8,8 +8,11 @@ Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/namespace-auto
 URL:http://search.cpan.org/dist/namespace-autoclean
 BuildArch:  noarch
 # Module Build
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
 BuildRequires:  perl
-BuildRequires:  perl(Module::Build::Tiny) >= 0.039
+BuildRequires:  perl(ExtUtils::MakeMaker)
 # Module
 BuildRequires:  perl(B::Hooks::EndOfScope) >= 0.12
 BuildRequires:  perl(List::Util)
@@ -21,7 +24,6 @@ BuildRequires:  perl(warnings)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(constant)
-BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.30
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(overload)
@@ -60,14 +62,16 @@ anything that looks like a method.
 %setup -q -n namespace-autoclean-%{version}
 
 %build
-perl Build.PL --installdirs=vendor
-./Build
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-./Build install --destdir=%{buildroot} --create_packlist=0
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+%{_fixperms} %{buildroot}
 
 %check
-./Build test
+make test
 
 %files
 %license LICENSE
@@ -76,6 +80,10 @@ perl Build.PL --installdirs=vendor
 %{_mandir}/man3/namespace::autoclean.3*
 
 %changelog
+* Wed Sep  9 2015 Paul Howarth  - 0.27-1
+- Update to 0.27
+  - Package with only ExtUtils::MakeMaker to ease installation on perl 5.6
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.26-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 981031b..b2bda17 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-1fb1238dc3164a83b36779b8fb02431f  namespace-autoclean-0.26.tar.gz
+777d5850f4840a757c5a0e8b30c05716  namespace-autoclean-0.27.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-namespace-autoclean.git/commit/?h=perl-namespace-autoclean-0.27-1.fc23=67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

pghmcfc pushed to perl-namespace-autoclean (perl-namespace-autoclean-0.27-1.fc24). "Update to 0.27 (..more)"

2015-09-09 Thread notifications
This commit already existed in another branch.

http://pkgs.fedoraproject.org/cgit/perl-namespace-autoclean.git/commit/?h=perl-namespace-autoclean-0.27-1.fc24=67e3ced29421baada7f6a9b8cfc99a4a1a8a1dca
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

accidental grilo soname change

2015-09-09 Thread Kalev Lember
Hi,

Just a quick heads up that it's not necessary to rebuild anything grilo
dependant if you get rawhide broken deps email later today.

grilo in rawhide had a soname bump last night, but it was unintended;
I'm working it out with upstream and will build a new grilo in a bit
that restores ABI compatibility.

Sorry for the disruption,
Kalev
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1261473] perl-ExtUtils-CppGuess-0.10 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1261473



--- Comment #1 from Upstream Release Monitoring 
 ---
Failed to kick off scratch build.

cmd:  spectool -g /var/tmp/thn-Zpoi6J/perl-ExtUtils-CppGuess.spec
return code:  22
stdout:
Getting http://www.cpan.org/authors/id/E/ET/ETJ/ExtUtils-CppGuess-0.10.tar.gz
to ./ExtUtils-CppGuess-0.10.tar.gz

stderr:
  % Total% Received % Xferd  Average Speed   TimeTime Time  Current
 Dload  Upload   Total   SpentLeft  Speed

  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
  0 00 00 0  0  0 --:--:-- --:--:-- --:--:-- 0
curl: (22) The requested URL returned error: 404 Not Found

-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1261473] New: perl-ExtUtils-CppGuess-0.10 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1261473

Bug ID: 1261473
   Summary: perl-ExtUtils-CppGuess-0.10 is available
   Product: Fedora
   Version: rawhide
 Component: perl-ExtUtils-CppGuess
  Keywords: FutureFeature, Triaged
  Assignee: mhron...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: mhron...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 0.10
Current version/release in rawhide: 0.09-3.fc23
URL: http://search.cpan.org/dist/ExtUtils-CppGuess/

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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1230219] perl-Plack-1.0036 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1230219

Petr Pisar  changed:

   What|Removed |Added

 Blocks|1261472 |
 Depends On||1261472




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1261472
[Bug 1261472] Review Request: perl-HTTP-Headers-Fast - Faster
implementation of HTTP::Headers
-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1221832] perl-Dancer2-0.161000 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1221832

Petr Pisar  changed:

   What|Removed |Added

 Blocks|1261472 |
 Depends On||1261472




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1261472
[Bug 1261472] Review Request: perl-HTTP-Headers-Fast - Faster
implementation of HTTP::Headers
-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1221832] perl-Dancer2-0.161000 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1221832

Petr Pisar  changed:

   What|Removed |Added

 Blocks||1261472




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1261472
[Bug 1261472] Review Request: perl-HTTP-Headers-Fast - Faster
implementation of HTTP::Headers
-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1230219] perl-Plack-1.0036 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1230219

Petr Pisar  changed:

   What|Removed |Added

 Blocks||1261472




Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=1261472
[Bug 1261472] Review Request: perl-HTTP-Headers-Fast - Faster
implementation of HTTP::Headers
-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226609] perl-Test-TrailingSpace-0.0205 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226609

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||ppi...@redhat.com
   Assignee|i...@cicku.me  |ppi...@redhat.com



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226609] perl-Test-TrailingSpace-0.0205 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226609

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Test-TrailingSpace-0.0
   ||205-1.fc24
 Resolution|--- |RAWHIDE
Last Closed||2015-09-09 08:48:18



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f23) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f23) to 
'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f22) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f22) to 
'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (master) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (master) 
to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f21) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f21) 
to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f21) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchcommits' permission on perl-File-Slurper (f21) to 
'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226609] perl-Test-TrailingSpace-0.0205 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226609



--- Comment #3 from Upstream Release Monitoring 
 ---
ppisar's perl-Test-TrailingSpace-0.0205-1.fc24 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=683750

-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226954] perl-WebService-Linode-0.28 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226954

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||ppi...@redhat.com
   Assignee|i...@cicku.me  |ppi...@redhat.com



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar created the branch 'f21' for the package 'perl-File-Slurper'

2015-09-09 Thread notifications
ppisar created the branch 'f21' for the package 'perl-File-Slurper'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f22) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f22) 
to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (master) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper 
(master) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f23) to 'Obsolete'

2015-09-09 Thread notifications
ppisar changed ppisar's 'watchbugzilla' permission on perl-File-Slurper (f23) 
to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-File-Slurper (f23). "Initial import (#1261063)"

2015-09-09 Thread notifications
From 4266d267e3a7e1b4caaf40baee974b8dd722965e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= 
Date: Wed, 9 Sep 2015 15:14:22 +0200
Subject: Initial import (#1261063)


diff --git a/.gitignore b/.gitignore
index e69de29..0e78518 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/File-Slurper-0.008.tar.gz
diff --git a/perl-File-Slurper.spec b/perl-File-Slurper.spec
new file mode 100644
index 000..243575b
--- /dev/null
+++ b/perl-File-Slurper.spec
@@ -0,0 +1,53 @@
+Name:   perl-File-Slurper
+Version:0.008
+Release:1%{?dist}
+Summary:Simple, sane and efficient module to slurp a file
+License:GPL+ or Artistic
+URL:http://search.cpan.org/dist/File-Slurper/
+Source0:
http://www.cpan.org/authors/id/L/LE/LEONT/File-Slurper-%{version}.tar.gz
+BuildArch:  noarch
+# Build
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Runtime
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Exporter) >= 5.57
+BuildRequires:  perl(PerlIO::utf8_strict)
+# Tests only
+BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo 
$version))
+Recommends: perl(PerlIO::utf8_strict)
+
+%description
+This module provides functions for fast and correct slurping and spewing.
+All functions are optionally exported.
+
+%prep
+%setup -q -n File-Slurper-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%license LICENSE
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Tue Sep 08 2015 Petr Šabata  0.008-1
+- Initial packaging
diff --git a/sources b/sources
index e69de29..b3a7ae4 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6e4f8ab76e38dc3f3fec6a0f575bf132  File-Slurper-0.008.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-File-Slurper.git/commit/?h=f23=4266d267e3a7e1b4caaf40baee974b8dd722965e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-File-Slurper (f22). "Initial import (#1261063)"

2015-09-09 Thread notifications
From 4266d267e3a7e1b4caaf40baee974b8dd722965e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= 
Date: Wed, 9 Sep 2015 15:14:22 +0200
Subject: Initial import (#1261063)


diff --git a/.gitignore b/.gitignore
index e69de29..0e78518 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/File-Slurper-0.008.tar.gz
diff --git a/perl-File-Slurper.spec b/perl-File-Slurper.spec
new file mode 100644
index 000..243575b
--- /dev/null
+++ b/perl-File-Slurper.spec
@@ -0,0 +1,53 @@
+Name:   perl-File-Slurper
+Version:0.008
+Release:1%{?dist}
+Summary:Simple, sane and efficient module to slurp a file
+License:GPL+ or Artistic
+URL:http://search.cpan.org/dist/File-Slurper/
+Source0:
http://www.cpan.org/authors/id/L/LE/LEONT/File-Slurper-%{version}.tar.gz
+BuildArch:  noarch
+# Build
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Runtime
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Exporter) >= 5.57
+BuildRequires:  perl(PerlIO::utf8_strict)
+# Tests only
+BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo 
$version))
+Recommends: perl(PerlIO::utf8_strict)
+
+%description
+This module provides functions for fast and correct slurping and spewing.
+All functions are optionally exported.
+
+%prep
+%setup -q -n File-Slurper-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%license LICENSE
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Tue Sep 08 2015 Petr Šabata  0.008-1
+- Initial packaging
diff --git a/sources b/sources
index e69de29..b3a7ae4 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6e4f8ab76e38dc3f3fec6a0f575bf132  File-Slurper-0.008.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-File-Slurper.git/commit/?h=f22=4266d267e3a7e1b4caaf40baee974b8dd722965e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata pushed to perl-File-Slurper (master). "Initial import (#1261063)"

2015-09-09 Thread notifications
From 4266d267e3a7e1b4caaf40baee974b8dd722965e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20=C5=A0abata?= 
Date: Wed, 9 Sep 2015 15:14:22 +0200
Subject: Initial import (#1261063)


diff --git a/.gitignore b/.gitignore
index e69de29..0e78518 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/File-Slurper-0.008.tar.gz
diff --git a/perl-File-Slurper.spec b/perl-File-Slurper.spec
new file mode 100644
index 000..243575b
--- /dev/null
+++ b/perl-File-Slurper.spec
@@ -0,0 +1,53 @@
+Name:   perl-File-Slurper
+Version:0.008
+Release:1%{?dist}
+Summary:Simple, sane and efficient module to slurp a file
+License:GPL+ or Artistic
+URL:http://search.cpan.org/dist/File-Slurper/
+Source0:
http://www.cpan.org/authors/id/L/LE/LEONT/File-Slurper-%{version}.tar.gz
+BuildArch:  noarch
+# Build
+BuildRequires:  make
+BuildRequires:  perl
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Runtime
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Exporter) >= 5.57
+BuildRequires:  perl(PerlIO::utf8_strict)
+# Tests only
+BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(Test::More)
+Requires:   perl(:MODULE_COMPAT_%(eval "$(perl -V:version)"; echo 
$version))
+Recommends: perl(PerlIO::utf8_strict)
+
+%description
+This module provides functions for fast and correct slurping and spewing.
+All functions are optionally exported.
+
+%prep
+%setup -q -n File-Slurper-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=%{buildroot}
+%{_fixperms} %{buildroot}/*
+
+%check
+make test
+
+%files
+%license LICENSE
+%doc Changes README
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+%changelog
+* Tue Sep 08 2015 Petr Šabata  0.008-1
+- Initial packaging
diff --git a/sources b/sources
index e69de29..b3a7ae4 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6e4f8ab76e38dc3f3fec6a0f575bf132  File-Slurper-0.008.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-File-Slurper.git/commit/?h=master=4266d267e3a7e1b4caaf40baee974b8dd722965e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik pushed to perl-XML-SAX-Writer (master). "0.56 bump"

2015-09-09 Thread notifications
From a64a6bdfecd8ab92182e3944fc717118c931 Mon Sep 17 00:00:00 2001
From: Jitka Plesnikova 
Date: Wed, 9 Sep 2015 15:41:35 +0200
Subject: 0.56 bump


diff --git a/.gitignore b/.gitignore
index c37d1d1..9c1bd53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 XML-SAX-Writer-0.50.tar.gz
 /XML-SAX-Writer-0.53.tar.gz
+/XML-SAX-Writer-0.56.tar.gz
diff --git a/perl-XML-SAX-Writer.spec b/perl-XML-SAX-Writer.spec
index a60d0a5..c1825e3 100644
--- a/perl-XML-SAX-Writer.spec
+++ b/perl-XML-SAX-Writer.spec
@@ -1,18 +1,25 @@
 Name:   perl-XML-SAX-Writer
-Version:0.53
-Release:9%{?dist}
+Version:0.56
+Release:1%{?dist}
 Summary:SAX2 Writer
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/XML-SAX-Writer/
 Source0:
http://www.cpan.org/modules/by-module/XML/XML-SAX-Writer-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
-BuildRequires:  perl(Cwd)
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
+BuildRequires:  perl
 BuildRequires:  perl(Encode) >= 2.12
 BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(IPC::Open3)
+BuildRequires:  perl(strict)
 BuildRequires:  perl(Test::More) >= 0.40
+BuildRequires:  perl(vars)
+BuildRequires:  perl(warnings)
 BuildRequires:  perl(XML::Filter::BufferText) >= 1.00
 BuildRequires:  perl(XML::NamespaceSupport) >= 1.00
 BuildRequires:  perl(XML::SAX::Exception) >= 1.01
@@ -30,28 +37,25 @@ find -type f -exec chmod -x {} +
 make %{?_smp_mflags}
 
 %install
-rm -rf %{buildroot}
-
-make pure_install PERL_INSTALL_ROOT=%{buildroot}
+make pure_install DESTDIR=%{buildroot}
 
 find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
 
 %{_fixperms} %{buildroot}/*
 
 %check
 make test
 
-%clean
-rm -rf %{buildroot}
-
 %files
-%defattr(-,root,root,-)
+%license LICENSE
 %doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Wed Sep 09 2015 Jitka Plesnikova  - 0.56-1
+- 0.56 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.53-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 8b2134d..270d57c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-afc83cdc49ccc8a7ad72911b2a0bcfbe  XML-SAX-Writer-0.53.tar.gz
+e5fa5e2b2f6867b1aca9b5b43e1ce361  XML-SAX-Writer-0.56.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-XML-SAX-Writer.git/commit/?h=master=a64a6bdfecd8ab92182e3944fc717118c931
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1228029] perl-Compress-LZ4-0.22 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1228029

Petr Pisar  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||ppi...@redhat.com
   Assignee|dd...@cpan.org  |ppi...@redhat.com



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman pushed to perl-Workflow (master). "Update to 1.42"

2015-09-09 Thread notifications
From f1b883fad85fc645c17214126f662c8a8f7345dd Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Wed, 9 Sep 2015 16:16:30 +0200
Subject: Update to 1.42


diff --git a/perl-Workflow.spec b/perl-Workflow.spec
index 29caa7d..76ff637 100644
--- a/perl-Workflow.spec
+++ b/perl-Workflow.spec
@@ -1,6 +1,6 @@
 Name:   perl-Workflow
-Version:1.41
-Release:4%{?dist}
+Version:1.42
+Release:1%{?dist}
 Summary:Simple, flexible system to implement workflows
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Workflow/
diff --git a/sources b/sources
index f762e44..9f228ac 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-aa770513786832a13d8e952409ee1d65  Workflow-1.41.tar.gz
+81feb21a2bc2f125c06dc90ce1b584b8  Workflow-1.42.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Workflow.git/commit/?h=master=f1b883fad85fc645c17214126f662c8a8f7345dd
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Fedora Rawhide 20150909 compose check report

2015-09-09 Thread Fedora compose checker
Missing expected images:

Kde Live i386
Workstation Live i386
Cloud base Disk i386
Cloud base Disk x86_64
Kde Live x86_64
Cloud atomic Disk x86_64
Kde Disk armhfp
Workstation Live x86_64

No images in this compose but not Rawhide 20150908

Images in Rawhide 20150908 but not this:

Xfce Live x86_64
Xfce Live i386
Robotics Live i386
Xfce Disk armhfp
Robotics Live x86_64

Failed openQA tests: 18 of 18

ID: 1812Test: x86_64 universal server_no_swap
ID: 1811Test: x86_64 universal server_lvmthin
ID: 1810Test: x86_64 universal server_ext3
ID: 1809Test: x86_64 universal server_btrfs
ID: 1808Test: x86_64 universal server_kickstart_hdd
ID: 1807Test: x86_64 universal server_software_raid
ID: 1806Test: x86_64 universal server_multi_empty
ID: 1805Test: x86_64 universal server_simple_free_space
ID: 1804Test: x86_64 universal server_simple_encrypted
ID: 1803Test: x86_64 universal server_delete_partial
ID: 1802Test: x86_64 universal server_repository_http_variation
ID: 1801Test: x86_64 universal server_repository_http_graphical
ID: 1800Test: x86_64 universal server_mirrorlist_graphical
ID: 1799Test: x86_64 universal server_delete_pata
ID: 1798Test: x86_64 universal server_kickstart_user_creation
ID: 1797Test: x86_64 universal server_scsi_updates_img
ID: 1796Test: x86_64 universal server_sata_multi
ID: 1795Test: x86_64 universal package_set_minimal
-- 
Mail generated by check-compose:
https://git.fedorahosted.org/cgit/fedora-qa.git/tree/check-compose
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[EPEL-devel] build gradle 2.5 for EPEL?

2015-09-09 Thread Matt_Domsch
Dell - Internal Use - Confidential
Mikolaj, would you please build gradle 2.5 for EPEL 7?  My development team 
uses gradle for our builds, and I much prefer getting packages from the 
RHEL/CentOS and/or EPEL yum repositories whenever possible.

Gradle 2.2.1-6 (as in F22) has a bug which prevents my projects from building 
correctly, which is fixed in 2.5 and above.

Thanks,
Matt

--
Matt Domsch
Senior Distinguished Engineer & Executive Director
Dell | Software Group, Office of the CTO


___
epel-devel mailing list
epel-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/epel-devel


limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (f23) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (f23) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed ppisar's 'approveacls' permission on perl-File-Slurper (master) to 'Approved'

2015-09-09 Thread notifications
limb changed ppisar's 'approveacls' permission on perl-File-Slurper (master) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper (f22) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper (f22) 
to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper (f23) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper (f23) 
to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (master) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (master) 
to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (f22) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchcommits' permission on perl-File-Slurper (f22) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed ppisar's 'commit' permission on perl-File-Slurper (master) to 'Approved'

2015-09-09 Thread notifications
limb changed ppisar's 'commit' permission on perl-File-Slurper (master) to 
'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman uploaded Term-ReadLine-Gnu-1.27.tar.gz for perl-Term-ReadLine-Gnu

2015-09-09 Thread notifications
2c1a0acf42b2aeac11362906929a81db  Term-ReadLine-Gnu-1.27.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.27.tar.gz/md5/2c1a0acf42b2aeac11362906929a81db/Term-ReadLine-Gnu-1.27.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper (f23) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper 
(f23) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper (master) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper 
(master) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper (f22) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper 
(f22) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar uploaded WebService-Linode-0.28.tar.gz for perl-WebService-Linode

2015-09-09 Thread notifications
5a3a30ec25d817bf965a6e6abfa754e9  WebService-Linode-0.28.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-WebService-Linode/WebService-Linode-0.28.tar.gz/md5/5a3a30ec25d817bf965a6e6abfa754e9/WebService-Linode-0.28.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper (master) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper 
(master) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper (f21) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper 
(f21) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper (f23) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper 
(f23) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper (f21) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchbugzilla' permission on perl-File-Slurper 
(f21) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper (f22) to 'Obsolete'

2015-09-09 Thread notifications
jplesnik changed jplesnik's 'watchcommits' permission on perl-File-Slurper 
(f22) to 'Obsolete'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226954] perl-WebService-Linode-0.28 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226954



--- Comment #3 from Upstream Release Monitoring 
 ---
ppisar's perl-WebService-Linode-0.28-1.fc24 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=683774

-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1231098] Upgrade perl-XML-SAX-Writer to 0.56

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1231098

Jitka Plesnikova  changed:

   What|Removed |Added

 Status|NEW |CLOSED
 CC||jples...@redhat.com
   Fixed In Version||perl-XML-SAX-Writer-0.56-1.
   ||fc24
 Resolution|--- |RAWHIDE
Last Closed||2015-09-09 09:45:36



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper (master) to 'Approved'

2015-09-09 Thread notifications
limb changed perl-sig's 'watchbugzilla' permission on perl-File-Slurper 
(master) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-File-Slurper/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman uploaded Workflow-1.42.tar.gz for perl-Workflow

2015-09-09 Thread notifications
81feb21a2bc2f125c06dc90ce1b584b8  Workflow-1.42.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Workflow/Workflow-1.42.tar.gz/md5/81feb21a2bc2f125c06dc90ce1b584b8/Workflow-1.42.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: eseyman pushed to perl-Term-ReadLine-Gnu (master). "Update to 1.27 and remove upstreamed patch"

2015-09-09 Thread Petr Pisar
On Wed, Sep 09, 2015 at 01:59:00PM +, notificati...@fedoraproject.org wrote:
> From dd2b2326a0682a5fbcdd3476054c21921d85b3c0 Mon Sep 17 00:00:00 2001
> From: Emmanuel Seyman 
> Date: Wed, 9 Sep 2015 15:58:51 +0200
> Subject: Update to 1.27 and remove upstreamed patch
> 
[...]
> diff --git a/perl-Term-ReadLine-Gnu.spec b/perl-Term-ReadLine-Gnu.spec
> index ffba3b9..24be3c8 100644
> --- a/perl-Term-ReadLine-Gnu.spec
> +++ b/perl-Term-ReadLine-Gnu.spec
> @@ -1,12 +1,10 @@
>  Name:   perl-Term-ReadLine-Gnu
> -Version:1.26
> -Release:4%{?dist}
> +Version:1.27
> +Release:1%{?dist}
>  Summary:Perl extension for the GNU Readline/History Library
>  License:GPL+ or Artistic
>  URL:http://search.cpan.org/dist/Term-ReadLine-Gnu/
>  Source0:
> http://www.cpan.org/authors/id/H/HA/HAYASHI/Term-ReadLine-Gnu-%{version}.tar.gz
> -# Fix regression with Debug::Client, bug #1189459, CPAN RT#101078
> -Patch0: 
> Term-ReadLine-Gnu-1.26-Propagete-PerlIO_return_value_from_STORE.patch

Upstream did merge the patch because of no reply from Debug-Client upstream.
As a result perl-Debug-Client fails to build again.

Could you readd the perl-Term-ReadLine-Gnu patch?

-- Petr


signature.asc
Description: PGP signature
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata uploaded File-Slurper-0.008.tar.gz for perl-File-Slurper

2015-09-09 Thread notifications
6e4f8ab76e38dc3f3fec6a0f575bf132  File-Slurper-0.008.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-File-Slurper/File-Slurper-0.008.tar.gz/md5/6e4f8ab76e38dc3f3fec6a0f575bf132/File-Slurper-0.008.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-WebService-Linode (master). "0.28 bump"

2015-09-09 Thread notifications
From fdbd25820c6b254b38557eeb08395f5f8d27a4ae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 9 Sep 2015 15:18:20 +0200
Subject: 0.28 bump


diff --git a/.gitignore b/.gitignore
index 6b4..0ec5b44 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /WebService-Linode-0.23.tar.gz
 /WebService-Linode-0.26.tar.gz
 /WebService-Linode-0.27.tar.gz
+/WebService-Linode-0.28.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..e7ba0cb
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter("spelling-error .* (api|http|www)");
diff --git a/perl-WebService-Linode.spec b/perl-WebService-Linode.spec
index c7f57c6..c8c37fe 100644
--- a/perl-WebService-Linode.spec
+++ b/perl-WebService-Linode.spec
@@ -1,37 +1,53 @@
 Name:   perl-WebService-Linode
-Version:0.27
-Release:3%{?dist}
+Version:0.28
+Release:1%{?dist}
 Summary:Perl Interface to the Linode.com API
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/WebService-Linode/
 Source0:
http://www.cpan.org/authors/id/M/MI/MIKEGRB/WebService-Linode-%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  perl
+BuildRequires:  perl(Module::Build::Tiny) >= 0.039
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Data::Dumper)
-BuildRequires:  perl(JSON)
+BuildRequires:  perl(JSON) >= 2.00
 BuildRequires:  perl(List::Util)
-BuildRequires:  perl(LWP::Protocol::https)
-BuildRequires:  perl(Module::Build::Tiny)
+# Default URL has https schema
+# LWP::Protocol::https not used at tests
+BuildRequires:  perl(LWP::UserAgent)
+# Tests:
+# Test::Kwalitee 1.21 not used
+BuildRequires:  perl(Test::More) >= 0.88
+# Test::Pod 1.41 not used
+# Optional tests:
 BuildRequires:  perl(Test::MockObject)
-BuildRequires:  perl(Test::More)
-BuildRequires:  perl(Test::Pod)
-BuildRequires:  perl(Test::Pod::Coverage)
-BuildRequires:  perl(strict)
-BuildRequires:  perl(warnings)
-Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
+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(JSON) >= 2.00
+# Default URL has https schema
+Requires:   perl(LWP::Protocol::https)
+
+# Not to process documentation
+%{?perl_default_filter}
+
+# Filter under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%{__requires_exclude}|}^perl\\(JSON\\)$
 
 %description
-This module implements the Linode.com api methods. Linode methods have had 
+This module implements the Linode.com API methods. Linode methods have had
 dots replaced with underscores to generate the perl method name. All keys 
 and parameters have been lower cased but returned data remains otherwise 
-the same. For additional information see http://www.linode.com/api/ .
+the same. For additional information see .
 
 %prep
 %setup -qn WebService-Linode-%{version}
 
 %build
-%{__perl} Build.PL --installdirs=vendor
+perl Build.PL --installdirs=vendor
 ./Build
 
 %install
@@ -48,6 +64,9 @@ the same. For additional information see 
http://www.linode.com/api/ .
 %{_mandir}/man3/*
 
 %changelog
+* Wed Sep 09 2015 Petr Pisar  - 0.28-1
+- 0.28 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.27-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index d00d9b1..564a8de 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c1f0ead7867202af8ecae6b33fa32bc1  WebService-Linode-0.27.tar.gz
+5a3a30ec25d817bf965a6e6abfa754e9  WebService-Linode-0.28.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-WebService-Linode.git/commit/?h=master=fdbd25820c6b254b38557eeb08395f5f8d27a4ae
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 1226954] perl-WebService-Linode-0.28 is available

2015-09-09 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1226954

Petr Pisar  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-WebService-Linode-0.28
   ||-1.fc24
 Resolution|--- |RAWHIDE
Last Closed||2015-09-09 09:41:25



-- 
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
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

psabata set the monitor flag of perl-File-Slurper to nobuild

2015-09-09 Thread notifications
psabata set the monitor flag of perl-File-Slurper to nobuild

--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-Test-TrailingSpace (master). "0.0205 bump"

2015-09-09 Thread notifications
From 4c671424a8b9b0b2eb57e950d7cc0c475372079e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 9 Sep 2015 14:35:54 +0200
Subject: 0.0205 bump


diff --git a/.gitignore b/.gitignore
index e350329..5aa5f65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Test-TrailingSpace-0.0203.tar.gz
 /Test-TrailingSpace-0.0204.tar.gz
+/Test-TrailingSpace-0.0205.tar.gz
diff --git a/perl-Test-TrailingSpace.spec b/perl-Test-TrailingSpace.spec
index 6352629..339eb6a 100644
--- a/perl-Test-TrailingSpace.spec
+++ b/perl-Test-TrailingSpace.spec
@@ -1,21 +1,31 @@
 %global pkgname Test-TrailingSpace
 
 Name:   perl-Test-TrailingSpace
-Version:0.0204
-Release:4%{?dist}
+Version:0.0205
+Release:1%{?dist}
 Summary:Test for trailing space in source files
 License:MIT
 URL:http://search.cpan.org/dist/Test-TrailingSpace/
 Source0:
http://www.cpan.org/authors/id/S/SH/SHLOMIF/%{pkgname}-%{version}.tar.gz
 BuildArch:  noarch
+BuildRequires:  perl
+BuildRequires:  perl(Module::Build) >= 0.28
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Run-time:
 BuildRequires:  perl(autodie)
-BuildRequires:  perl(File::Find::Object::Rule)
+BuildRequires:  perl(File::Find::Object::Rule) >= 0.0301
+BuildRequires:  perl(Test::More)
+# Tests:
 BuildRequires:  perl(File::Path)
 BuildRequires:  perl(File::Spec)
-BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(lib)
+# Pod::Coverage::TrustPod 1.08 not used
 BuildRequires:  perl(Test::Builder::Tester)
-BuildRequires:  perl(Test::CPAN::Changes)
-BuildRequires:  perl(Test::More)
+# Test::CPAN::Changes not used
+# Test::Pod 1.41 not used
+# Test::Pod::Coverage 1.08 not used
+BuildRequires:  perl(Test::TrailingSpace)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
@@ -36,11 +46,15 @@ This module is used to test for lack of trailing space.
 ./Build test
 
 %files
-%doc Changes LICENSE README
+%license LICENSE
+%doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Wed Sep 09 2015 Petr Pisar  - 0.0205-1
+- 0.0205 bump
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.0204-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index 0e072a5..717f9a8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6fdccc7642fa3e52be04f9b8330fc386  Test-TrailingSpace-0.0204.tar.gz
+e9f3e3c6d793dc42f056fa58af1e632d  Test-TrailingSpace-0.0205.tar.gz
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Test-TrailingSpace.git/commit/?h=master=4c671424a8b9b0b2eb57e950d7cc0c475372079e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

ppisar pushed to perl-Test-TrailingSpace (master). "Remove reflexive dependency"

2015-09-09 Thread notifications
From e4b33437e6ae758b3a7386ea1ee4544100a71348 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
Date: Wed, 9 Sep 2015 14:40:17 +0200
Subject: Remove reflexive dependency


diff --git a/perl-Test-TrailingSpace.spec b/perl-Test-TrailingSpace.spec
index 339eb6a..952bba9 100644
--- a/perl-Test-TrailingSpace.spec
+++ b/perl-Test-TrailingSpace.spec
@@ -25,7 +25,6 @@ BuildRequires:  perl(Test::Builder::Tester)
 # Test::CPAN::Changes not used
 # Test::Pod 1.41 not used
 # Test::Pod::Coverage 1.08 not used
-BuildRequires:  perl(Test::TrailingSpace)
 Requires:   perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
 
 %description
-- 
cgit v0.10.2



http://pkgs.fedoraproject.org/cgit/perl-Test-TrailingSpace.git/commit/?h=master=e4b33437e6ae758b3a7386ea1ee4544100a71348
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Schedule for Wednesday's FESCo Meeting (2015-09-09)

2015-09-09 Thread Josh Boyer
Following is the list of topics that will be discussed in the FESCo
meeting Wednesday at 18:00UTC in #fedora-meeting on irc.freenode.net.

To convert UTC to your local time, take a look at
  http://fedoraproject.org/wiki/UTCHowto

or run:
  date -d '2015-09-09 18:00 UTC'


Links to all tickets below can be found at:
https://fedorahosted.org/fesco/report/9

= Followups =

#topic #1467 F23 Changes - Progress at Change Checkpoint: Completion deadline
.fesco 1467
https://fedorahosted.org/fesco/ticket/1467

#topic #1472 Investigate mysterious enabled systemd presets
.fesco 1472
https://fedorahosted.org/fesco/ticket/1472

= New business =

#topic #1474 Non-responsive maintainer - Jef Spaleta
.fesco 1474
https://fedorahosted.org/fesco/ticket/1474

#topic #1475 Darktable package retirement(?)
.fesco 1475
https://fedorahosted.org/fesco/ticket/1475

= Open Floor =

For more complete details, please visit each individual ticket.  The
report of the agenda items can be found at
https://fedorahosted.org/fesco/report/9

If you would like to add something to this agenda, you can reply to
this e-mail, file a new ticket at https://fedorahosted.org/fesco,
e-mail me directly, or bring it up at the end of the meeting, during
the open floor topic. Note that added topics may be deferred until
the following meeting.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

jplesnik uploaded XML-SAX-Writer-0.56.tar.gz for perl-XML-SAX-Writer

2015-09-09 Thread notifications
e5fa5e2b2f6867b1aca9b5b43e1ce361  XML-SAX-Writer-0.56.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-XML-SAX-Writer/XML-SAX-Writer-0.56.tar.gz/md5/e5fa5e2b2f6867b1aca9b5b43e1ce361/XML-SAX-Writer-0.56.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

eseyman pushed to perl-Term-ReadLine-Gnu (master). "Update to 1.27 and remove upstreamed patch"

2015-09-09 Thread notifications
From dd2b2326a0682a5fbcdd3476054c21921d85b3c0 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Wed, 9 Sep 2015 15:58:51 +0200
Subject: Update to 1.27 and remove upstreamed patch


diff --git a/.gitignore b/.gitignore
index a849aa3..0e70af1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ Term-ReadLine-Gnu-1.19.tar.gz
 /Term-ReadLine-Gnu-1.24.tar.gz
 /Term-ReadLine-Gnu-1.25.tar.gz
 /Term-ReadLine-Gnu-1.26.tar.gz
+/Term-ReadLine-Gnu-1.27.tar.gz
diff --git 
a/Term-ReadLine-Gnu-1.26-Propagete-PerlIO_return_value_from_STORE.patch 
b/Term-ReadLine-Gnu-1.26-Propagete-PerlIO_return_value_from_STORE.patch
deleted file mode 100644
index 28af1e3..000
--- a/Term-ReadLine-Gnu-1.26-Propagete-PerlIO_return_value_from_STORE.patch
+++ /dev/null
@@ -1,120 +0,0 @@
-From rt-cpan-org-ret...@perl.org Sat Feb 14 15:55:27 2015
-Return-Path: rt-cpan-org-ret...@perl.org
-Received: from zmta01.collab.prod.int.phx2.redhat.com (LHLO
- zmta01.collab.prod.int.phx2.redhat.com) (10.5.81.8) by
- zmail14.collab.prod.int.phx2.redhat.com with LMTP; Sat, 14 Feb 2015
- 09:55:26 -0500 (EST)
-Received: from int-mx13.intmail.prod.int.phx2.redhat.com 
(int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26])
-   by zmta01.collab.prod.int.phx2.redhat.com (Postfix) with ESMTP id 
E1D8A18201D
-   for ; Sat, 14 Feb 2015 09:55:26 -0500 (EST)
-Received: from mx1.redhat.com (ext-mx15.extmail.prod.ext.phx2.redhat.com 
[10.5.110.20])
-   by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP 
id t1EEtQUx006072
-   for ; Sat, 14 Feb 2015 09:55:26 -0500
-Received: from rtcpan.develooper.com (rtcpan.develooper.com [207.171.7.181])
-   by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t1EEtPNd031234
-   for ; Sat, 14 Feb 2015 09:55:25 -0500
-Received: by rtcpan.develooper.com (Postfix, from userid 536)
-   id 87E12A8D; Sat, 14 Feb 2015 06:55:25 -0800 (PST)
-Precedence: normal
-Subject: [rt.cpan.org #101078] causes debugger to exit immediately on 5.21.7
-From: "Hiroo_HAYASHI via RT" 
-Reply-To: bug-term-readline-...@rt.cpan.org
-In-Reply-To: 
-References: 
- 
- 
- 
-Message-ID: 
-X-RT-Loop-Prevention: rt.cpan.org
-RT-Ticket: rt.cpan.org #101078
-Managed-BY: RT 4.0.18 (http://www.bestpractical.com/rt/)
-RT-Originator: haya...@cpan.org
-CC: ppi...@redhat.com, to...@cpan.org
-MIME-Version: 1.0
-Content-Transfer-Encoding: 8bit
-Content-Type: text/plain; charset="utf-8"
-X-RT-Original-Encoding: utf-8
-Date: Sat, 14 Feb 2015 09:55:25 -0500
-X-RedHat-Spam-Score: -1.9  (BAYES_00,SPF_PASS,URIBL_BLOCKED) 207.171.7.181 
rtcpan.develooper.com 207.171.7.181 rtcpan.develooper.com 

-X-Scanned-By: MIMEDefang 2.68 on 10.5.11.26
-X-Scanned-By: MIMEDefang 2.68 on 10.5.110.20
-Status: RO
-Content-Length: 2065
-Lines: 75
-
-https://rt.cpan.org/Ticket/Display.html?id=101078 >
-
-Hi,
-
-Thank you for your report.
-
-On Thu, 12 Feb 2015 14:52:48 GMT, ppisar wrote:
-> Dne Čt 12.úno.2015 09:51:59, ppisar napsal(a):
-> > I found this change causing a dead-lock in Debug-Client-0.29 tests
-> > (see ). I don't
-> > know which party is more guilty, but I observe that perl debugger does
-> > not emit "DB<1>" prompt if it is run from the Debug-Client's test, so
-> > it does not process client "c" command and everything halts.
-> 
-> I should note that I use perl 5.20.1.
-
-Here is a fix.  I don't know why 1.26 fails or why this works.
-
-===
 Gnu.pm (revision 481)
-+++ Gnu.pm (working copy)
-@@ -725,9 +725,8 @@
- } elsif ($type eq 'F') {
-   return _rl_store_function($value, $id);
- } elsif ($type eq 'IO') {
--  my $FH = $value;
-   # Pass filehandles to the GNU Readline Library
--  _rl_store_iostream($FH, $id);
-+  my $FH = _rl_store_iostream($value, $id);
-   # pop stdio layer pushed by PerlIO_findFILE().
-   # https://rt.cpan.org/Ticket/Display.html?id=59832
-   my @layers = PerlIO::get_layers($FH);
-===
 Gnu.xs (revision 481)
-+++ Gnu.xs (working copy)
-@@ -3138,7 +3138,7 @@
- }
-   }
- 
--void
-+PerlIO *
- _rl_store_iostream(stream, id)
-   PerlIO *stream
-   int id
-@@ -3148,9 +3148,11 @@
- switch (id) {
- case 0:
-   rl_instream = PerlIO_findFILE(stream);
-+  RETVAL = stream;
-   break;
- case 1:
-   rl_outstream = PerlIO_findFILE(stream);
-+  RETVAL = 

  1   2   >