Broken dependencies: perl-Data-Alias

2016-07-23 Thread buildsys


perl-Data-Alias has broken dependencies in the rawhide tree:
On x86_64:
perl-Data-Alias-1.20-2.fc24.x86_64 requires libperl.so.5.22()(64bit)
perl-Data-Alias-1.20-2.fc24.x86_64 requires perl(:MODULE_COMPAT_5.22.1)
On i386:
perl-Data-Alias-1.20-2.fc24.i686 requires libperl.so.5.22
perl-Data-Alias-1.20-2.fc24.i686 requires perl(:MODULE_COMPAT_5.22.1)
On armhfp:
perl-Data-Alias-1.20-2.fc24.armv7hl requires libperl.so.5.22
perl-Data-Alias-1.20-2.fc24.armv7hl requires perl(:MODULE_COMPAT_5.22.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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc pushed to perl-Specio (f24). "Initial import (perl-Specio-0.24-2) (..more)"

2016-07-23 Thread notifications
From 4ae4d0b2b2256203269b1f244756fbfa671f906d Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 22 Jul 2016 16:10:25 +0100
Subject: Initial import (perl-Specio-0.24-2)

The Specio distribution provides classes for representing type constraints
and coercion, along with syntax sugar for declaring them.

Note that this is not a proper type system for Perl. Nothing in this
distribution will magically make the Perl interpreter start checking a value's
type on assignment to a variable. In fact, there's no built-in way to apply a
type to a variable at all.

Instead, you can explicitly check a value against a type, and optionally coerce
values to that type.
---
 .gitignore   |   1 +
 perl-Specio.spec | 124 +++
 sources  |   1 +
 3 files changed, 126 insertions(+)
 create mode 100644 perl-Specio.spec

diff --git a/.gitignore b/.gitignore
index e69de29..6b14c65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Specio-[0-9.]*.tar.gz
diff --git a/perl-Specio.spec b/perl-Specio.spec
new file mode 100644
index 000..2ae9350
--- /dev/null
+++ b/perl-Specio.spec
@@ -0,0 +1,124 @@
+Name:  perl-Specio
+Version:   0.24
+Release:   2%{?dist}
+Summary:   Type constraints and coercions for Perl
+License:   Artistic 2.0
+URL:   http://search.cpan.org/dist/Specio/
+Source0:   
http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Specio-%{version}.tar.gz
+BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: make
+BuildRequires: perl
+BuildRequires: perl-generators
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
+# Module Runtime
+BuildRequires: perl(B)
+BuildRequires: perl(Carp)
+BuildRequires: perl(Devel::StackTrace)
+BuildRequires: perl(Eval::Closure)
+BuildRequires: perl(Exporter)
+BuildRequires: perl(List::Util) >= 1.33
+BuildRequires: perl(MRO::Compat)
+BuildRequires: perl(overload)
+BuildRequires: perl(parent)
+BuildRequires: perl(re)
+BuildRequires: perl(Role::Tiny)
+BuildRequires: perl(Role::Tiny::With)
+BuildRequires: perl(Scalar::Util)
+BuildRequires: perl(Storable)
+BuildRequires: perl(strict)
+BuildRequires: perl(version) >= 0.83
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(IO::File)
+BuildRequires: perl(lib)
+BuildRequires: perl(open)
+BuildRequires: perl(Test::Fatal)
+BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::Needs)
+BuildRequires: perl(utf8)
+# Optional Tests
+BuildRequires: perl(CPAN::Meta) >= 2.120900
+BuildRequires: perl(CPAN::Meta::Prereqs)
+BuildRequires: perl(Moo)
+BuildRequires: perl(Moose) >= 2.1207
+BuildRequires: perl(Mouse)
+BuildRequires: perl(namespace::autoclean)
+# Dependencies
+Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+%description
+The Specio distribution provides classes for representing type constraints
+and coercion, along with syntax sugar for declaring them.
+
+Note that this is not a proper type system for Perl. Nothing in this
+distribution will magically make the Perl interpreter start checking a value's
+type on assignment to a variable. In fact, there's no built-in way to apply a
+type to a variable at all.
+
+Instead, you can explicitly check a value against a type, and optionally coerce
+values to that type.
+
+%prep
+%setup -q -n Specio-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot}
+%{_fixperms} %{buildroot}
+
+%check
+make test
+
+%files
+%license LICENSE
+%doc Changes CONTRIBUTING.md README.md TODO.pod
+%{perl_vendorlib}/Specio.pm
+%{perl_vendorlib}/Specio/
+%{_mandir}/man3/Specio.3*
+%{_mandir}/man3/Specio::Coercion.3*
+%{_mandir}/man3/Specio::Constraint::AnyCan.3*
+%{_mandir}/man3/Specio::Constraint::AnyDoes.3*
+%{_mandir}/man3/Specio::Constraint::AnyIsa.3*
+%{_mandir}/man3/Specio::Constraint::Enum.3*
+%{_mandir}/man3/Specio::Constraint::Intersection.3*
+%{_mandir}/man3/Specio::Constraint::ObjectCan.3*
+%{_mandir}/man3/Specio::Constraint::ObjectDoes.3*
+%{_mandir}/man3/Specio::Constraint::ObjectIsa.3*
+%{_mandir}/man3/Specio::Constraint::Parameterizable.3*
+%{_mandir}/man3/Specio::Constraint::Parameterized.3*
+%{_mandir}/man3/Specio::Constraint::Role::CanType.3*
+%{_mandir}/man3/Specio::Constraint::Role::DoesType.3*
+%{_mandir}/man3/Specio::Constraint::Role::Interface.3*
+%{_mandir}/man3/Specio::Constraint::Role::IsaType.3*
+%{_mandir}/man3/Specio::Constraint::Simple.3*
+%{_mandir}/man3/Specio::Constraint::Union.3*
+%{_mandir}/man3/Specio::Declare.3*
+%{_mandir}/man3/Specio::DeclaredAt.3*
+%{_mandir}/man3/Specio::Exception.3*
+%{_mandir}/man3/Specio::Exporter.3*
+%{_mandir}/man3/Specio::Helpers.3*
+%{_mandir}/man3/Specio::Library::Builtins.3*
+%{_mandir}/man3/Specio::Library::Numeric.3*
+%{_mandir}/man3/Specio::Library::Perl.3*
+%{_mandir}/man3/Specio::Library::String.3*
+%{_mandir}/man3/Specio::OO.3*
+%{_mandir}/man3/Specio

pghmcfc pushed to perl-Specio (perl-Specio-0.24-2.fc24). "Initial import (perl-Specio-0.24-2) (..more)"

2016-07-23 Thread notifications
From 4ae4d0b2b2256203269b1f244756fbfa671f906d Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Fri, 22 Jul 2016 16:10:25 +0100
Subject: Initial import (perl-Specio-0.24-2)

The Specio distribution provides classes for representing type constraints
and coercion, along with syntax sugar for declaring them.

Note that this is not a proper type system for Perl. Nothing in this
distribution will magically make the Perl interpreter start checking a value's
type on assignment to a variable. In fact, there's no built-in way to apply a
type to a variable at all.

Instead, you can explicitly check a value against a type, and optionally coerce
values to that type.
---
 .gitignore   |   1 +
 perl-Specio.spec | 124 +++
 sources  |   1 +
 3 files changed, 126 insertions(+)
 create mode 100644 perl-Specio.spec

diff --git a/.gitignore b/.gitignore
index e69de29..6b14c65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Specio-[0-9.]*.tar.gz
diff --git a/perl-Specio.spec b/perl-Specio.spec
new file mode 100644
index 000..2ae9350
--- /dev/null
+++ b/perl-Specio.spec
@@ -0,0 +1,124 @@
+Name:  perl-Specio
+Version:   0.24
+Release:   2%{?dist}
+Summary:   Type constraints and coercions for Perl
+License:   Artistic 2.0
+URL:   http://search.cpan.org/dist/Specio/
+Source0:   
http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Specio-%{version}.tar.gz
+BuildArch: noarch
+# Module Build
+BuildRequires: coreutils
+BuildRequires: make
+BuildRequires: perl
+BuildRequires: perl-generators
+BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
+# Module Runtime
+BuildRequires: perl(B)
+BuildRequires: perl(Carp)
+BuildRequires: perl(Devel::StackTrace)
+BuildRequires: perl(Eval::Closure)
+BuildRequires: perl(Exporter)
+BuildRequires: perl(List::Util) >= 1.33
+BuildRequires: perl(MRO::Compat)
+BuildRequires: perl(overload)
+BuildRequires: perl(parent)
+BuildRequires: perl(re)
+BuildRequires: perl(Role::Tiny)
+BuildRequires: perl(Role::Tiny::With)
+BuildRequires: perl(Scalar::Util)
+BuildRequires: perl(Storable)
+BuildRequires: perl(strict)
+BuildRequires: perl(version) >= 0.83
+BuildRequires: perl(warnings)
+# Test Suite
+BuildRequires: perl(File::Spec)
+BuildRequires: perl(IO::File)
+BuildRequires: perl(lib)
+BuildRequires: perl(open)
+BuildRequires: perl(Test::Fatal)
+BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::Needs)
+BuildRequires: perl(utf8)
+# Optional Tests
+BuildRequires: perl(CPAN::Meta) >= 2.120900
+BuildRequires: perl(CPAN::Meta::Prereqs)
+BuildRequires: perl(Moo)
+BuildRequires: perl(Moose) >= 2.1207
+BuildRequires: perl(Mouse)
+BuildRequires: perl(namespace::autoclean)
+# Dependencies
+Requires:  perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
+
+%description
+The Specio distribution provides classes for representing type constraints
+and coercion, along with syntax sugar for declaring them.
+
+Note that this is not a proper type system for Perl. Nothing in this
+distribution will magically make the Perl interpreter start checking a value's
+type on assignment to a variable. In fact, there's no built-in way to apply a
+type to a variable at all.
+
+Instead, you can explicitly check a value against a type, and optionally coerce
+values to that type.
+
+%prep
+%setup -q -n Specio-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1
+make %{?_smp_mflags}
+
+%install
+make install DESTDIR=%{buildroot}
+%{_fixperms} %{buildroot}
+
+%check
+make test
+
+%files
+%license LICENSE
+%doc Changes CONTRIBUTING.md README.md TODO.pod
+%{perl_vendorlib}/Specio.pm
+%{perl_vendorlib}/Specio/
+%{_mandir}/man3/Specio.3*
+%{_mandir}/man3/Specio::Coercion.3*
+%{_mandir}/man3/Specio::Constraint::AnyCan.3*
+%{_mandir}/man3/Specio::Constraint::AnyDoes.3*
+%{_mandir}/man3/Specio::Constraint::AnyIsa.3*
+%{_mandir}/man3/Specio::Constraint::Enum.3*
+%{_mandir}/man3/Specio::Constraint::Intersection.3*
+%{_mandir}/man3/Specio::Constraint::ObjectCan.3*
+%{_mandir}/man3/Specio::Constraint::ObjectDoes.3*
+%{_mandir}/man3/Specio::Constraint::ObjectIsa.3*
+%{_mandir}/man3/Specio::Constraint::Parameterizable.3*
+%{_mandir}/man3/Specio::Constraint::Parameterized.3*
+%{_mandir}/man3/Specio::Constraint::Role::CanType.3*
+%{_mandir}/man3/Specio::Constraint::Role::DoesType.3*
+%{_mandir}/man3/Specio::Constraint::Role::Interface.3*
+%{_mandir}/man3/Specio::Constraint::Role::IsaType.3*
+%{_mandir}/man3/Specio::Constraint::Simple.3*
+%{_mandir}/man3/Specio::Constraint::Union.3*
+%{_mandir}/man3/Specio::Declare.3*
+%{_mandir}/man3/Specio::DeclaredAt.3*
+%{_mandir}/man3/Specio::Exception.3*
+%{_mandir}/man3/Specio::Exporter.3*
+%{_mandir}/man3/Specio::Helpers.3*
+%{_mandir}/man3/Specio::Library::Builtins.3*
+%{_mandir}/man3/Specio::Library::Numeric.3*
+%{_mandir}/man3/Specio::Library::Perl.3*
+%{_mandir}/man3/Specio::Library::String.3*
+%{_mandir}/man3/Specio::OO.3*
+%{_mandir}/man3/Specio

pghmcfc pushed to perl-Specio (perl-Specio-0.24-2.fc25). "Initial import (perl-Specio-0.24-2) (..more)"

2016-07-23 Thread notifications
This commit already existed in another branch.

http://pkgs.fedoraproject.org/cgit/perl-Specio.git/commit/?h=perl-Specio-0.24-2.fc25&id=4ae4d0b2b2256203269b1f244756fbfa671f906d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman uploaded App-Cmd-0.331.tar.gz for perl-App-Cmd

2016-07-23 Thread notifications
b43c07d7b4d4e2a6baf32aa92cd00b93  App-Cmd-0.331.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-App-Cmd/App-Cmd-0.331.tar.gz/md5/b43c07d7b4d4e2a6baf32aa92cd00b93/App-Cmd-0.331.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-App-Cmd (master). "Update to 0.331"

2016-07-23 Thread notifications
From b62795b030846ce57849f9b9e09d0abdb807a999 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 21:02:16 +0200
Subject: Update to 0.331

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

diff --git a/.gitignore b/.gitignore
index ec29357..9ecc408 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,3 +18,4 @@ App-Cmd-0.307.tar.gz
 /App-Cmd-0.328.tar.gz
 /App-Cmd-0.329.tar.gz
 /App-Cmd-0.330.tar.gz
+/App-Cmd-0.331.tar.gz
diff --git a/perl-App-Cmd.spec b/perl-App-Cmd.spec
index 53875c0..a335288 100644
--- a/perl-App-Cmd.spec
+++ b/perl-App-Cmd.spec
@@ -1,7 +1,7 @@
 Name:   perl-App-Cmd
 Summary:Write command line apps with less suffering
-Version:0.330
-Release:3%{?dist}
+Version:0.331
+Release:1%{?dist}
 License:GPL+ or Artistic
 
 Source0:
http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/App-Cmd-%{version}.tar.gz 
@@ -71,6 +71,9 @@ make test
 %{_mandir}/man3/App*.3*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.331-1
+- Update to 0.331
+
 * Mon May 16 2016 Jitka Plesnikova  - 0.330-3
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 645f77e..573e9c5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-dde7b65165abeb4613643007583cb03f  App-Cmd-0.330.tar.gz
+b43c07d7b4d4e2a6baf32aa92cd00b93  App-Cmd-0.331.tar.gz
-- 
cgit v0.12



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

dfateyev pushed to perl-Sereal-Decoder (epel7). "perl-Sereal-Decoder: 3.014 epel release"

2016-07-23 Thread notifications
From 92d9b9cce408874bacdd136038728db06388b465 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sun, 24 Jul 2016 01:03:29 +0600
Subject: perl-Sereal-Decoder: 3.014 epel release

---
 .gitignore |  1 +
 Sereal-Decoder-EU-MM-fix-version.patch | 11 +++
 perl-Sereal-Decoder.spec   | 33 ++---
 sources|  2 +-
 4 files changed, 39 insertions(+), 8 deletions(-)
 create mode 100644 Sereal-Decoder-EU-MM-fix-version.patch

diff --git a/.gitignore b/.gitignore
index dfc469e..478316d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Sereal-Decoder-3.002.tar.gz
 /Sereal-Decoder-3.003.tar.gz
+/Sereal-Decoder-3.014.tar.gz
diff --git a/Sereal-Decoder-EU-MM-fix-version.patch 
b/Sereal-Decoder-EU-MM-fix-version.patch
new file mode 100644
index 000..c4feb1b
--- /dev/null
+++ b/Sereal-Decoder-EU-MM-fix-version.patch
@@ -0,0 +1,11 @@
+--- a/Makefile.PL  2015-12-03 00:19:43.0 +0600
 b/Makefile.PL  2016-07-16 20:21:24.96200 +0600
+@@ -68,7 +68,7 @@
+ 'ExtUtils::ParseXS' => '2.21',
+ },
+ CONFIGURE_REQUIRES => {
+-'ExtUtils::MakeMaker' => '7.0',
++'ExtUtils::MakeMaker' => '6.68',
+ },
+ NAME  => $module,
+ VERSION_FROM  => 'lib/Sereal/Decoder.pm', # finds $VERSION
diff --git a/perl-Sereal-Decoder.spec b/perl-Sereal-Decoder.spec
index e619cfb..949a4ce 100644
--- a/perl-Sereal-Decoder.spec
+++ b/perl-Sereal-Decoder.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sereal-Decoder
-Version:3.003
-Release:3%{?dist}
+Version:3.014
+Release:1%{?dist}
 Summary:Perl deserialization for Sereal format
 # lib/Sereal/Decoder.pm:GPL+ or Artistic
 # miniz.c:  Unlicense (unbundled)
@@ -9,19 +9,27 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Sereal-Decoder/
 Source0:
http://www.cpan.org/authors/id/Y/YV/YVES/Sereal-Decoder-%{version}.tar.gz
+Patch0: Sereal-Decoder-EU-MM-fix-version.patch
 
+BuildRequires:  coreutils
 BuildRequires:  csnappy-devel
+BuildRequires:  findutils
+BuildRequires:  gcc
+BuildRequires:  make
 BuildRequires:  miniz-devel
 BuildRequires:  perl
+BuildRequires:  perl-devel
+BuildRequires:  perl-generators
 BuildRequires:  perl(Config)
+BuildRequires:  perl(constant)
 BuildRequires:  perl(Devel::CheckLib)
-BuildRequires:  perl(ExtUtils::Constant)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Find)
 BuildRequires:  perl(File::Path)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
+BuildRequires:  sed
 
 # Run-time:
 BuildRequires:  perl(Carp)
@@ -31,7 +39,7 @@ BuildRequires:  perl(XSLoader)
 # Tests:
 # Benchmark not used
 BuildRequires:  perl(blib)
-BuildRequires:  perl(constant)
+BuildRequires:  perl(Cwd)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Devel::Peek)
 BuildRequires:  perl(Encode)
@@ -39,9 +47,6 @@ BuildRequires:  perl(integer)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(overload)
 BuildRequires:  perl(Scalar::Util)
-%if !%{defined perl_bootstrap}
-BuildRequires:  perl(Sereal::Encoder)
-%endif
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(Test::LongString)
 BuildRequires:  perl(Test::More) >= 0.88
@@ -50,6 +55,16 @@ BuildRequires:  perl(threads)
 # Time::HiRes not used
 BuildRequires:  perl(utf8)
 
+# Optional tests:
+%if !%{defined perl_bootstrap}
+# Some tests require Sereal::Encoder 3.005003, but most of them do not require
+# exact version. Thus do not constrain the version here.
+BuildRequires:  perl(Sereal::Encoder)
+BuildRequires:  perl(Tie::Array)
+BuildRequires:  perl(Tie::Hash)
+BuildRequires:  perl(Tie::Scalar)
+%endif
+
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -58,6 +73,7 @@ and feature-rich binary protocol called Sereal.
 
 %prep
 %setup -q -n Sereal-Decoder-%{version}
+%patch0 -p1
 # Remove bundled Perl modules
 rm -r ./inc/Devel
 sed -i -s '/^inc\/Devel/d' MANIFEST
@@ -88,6 +104,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jul 15 2016 Denis Fateyev  - 3.014-1
+- Bumped to 3.014 and synced to master
+
 * Mon Mar 07 2016 Denis Fateyev  - 3.003-3
 - Finish Sereal module bootstrap
 
diff --git a/sources b/sources
index 57ac549..b58f8e9 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-453502152d89e5602ab6d66a33b74ec1  Sereal-Decoder-3.003.tar.gz
+d52fb4fbd28acba055e9907bcbc99b47  Sereal-Decoder-3.014.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Sereal-Decoder.git/commit/?h=epel7&id=92d9b9cce408874bacdd136038728db06388b465
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman uploaded CGI-Emulate-PSGI-0.22.tar.gz for perl-CGI-Emulate-PSGI

2016-07-23 Thread notifications
806886224149a8b49faddce65cf9513f  CGI-Emulate-PSGI-0.22.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.22.tar.gz/md5/806886224149a8b49faddce65cf9513f/CGI-Emulate-PSGI-0.22.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-CGI-Emulate-PSGI (master). "Update to 0.22"

2016-07-23 Thread notifications
From ddee3acd79260637e6cdb0f374c97687f3c3f21e Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 21:15:38 +0200
Subject: Update to 0.22

---
 .gitignore | 1 +
 perl-CGI-Emulate-PSGI.spec | 7 +--
 sources| 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 792ea6a..ccfbcef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /CGI-Emulate-PSGI-0.19.tar.gz
 /CGI-Emulate-PSGI-0.20.tar.gz
 /CGI-Emulate-PSGI-0.21.tar.gz
+/CGI-Emulate-PSGI-0.22.tar.gz
diff --git a/perl-CGI-Emulate-PSGI.spec b/perl-CGI-Emulate-PSGI.spec
index 2410cd0..e3f9382 100644
--- a/perl-CGI-Emulate-PSGI.spec
+++ b/perl-CGI-Emulate-PSGI.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Emulate-PSGI
-Version:0.21
-Release:4%{?dist}
+Version:0.22
+Release:1%{?dist}
 Summary:PSGI adapter for CGI applications
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/CGI-Emulate-PSGI
@@ -46,6 +46,9 @@ make test
 %{_mandir}/man3/CGI*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.22-1
+- Update to 0.22
+
 * Wed May 18 2016 Jitka Plesnikova  - 0.21-4
 - Perl 5.24 re-rebuild of bootstrapped packages
 
diff --git a/sources b/sources
index ab8054c..727c3da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0a068a14697dd22602f414a5765d1c79  CGI-Emulate-PSGI-0.21.tar.gz
+806886224149a8b49faddce65cf9513f  CGI-Emulate-PSGI-0.22.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-CGI-Emulate-PSGI.git/commit/?h=master&id=ddee3acd79260637e6cdb0f374c97687f3c3f21e
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

dfateyev pushed to perl-Sereal-Encoder (epel7). "perl-Sereal-Encoder: 3.014 epel release"

2016-07-23 Thread notifications
From 05a1e5853352cb46064fe040f3c9df8e26ad6887 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sun, 24 Jul 2016 01:26:47 +0600
Subject: perl-Sereal-Encoder: 3.014 epel release

---
 .gitignore |  1 +
 Sereal-Encoder-EU-MM-fix-version.patch | 11 +++
 perl-Sereal-Encoder.spec   | 31 ---
 sources|  2 +-
 4 files changed, 37 insertions(+), 8 deletions(-)
 create mode 100644 Sereal-Encoder-EU-MM-fix-version.patch

diff --git a/.gitignore b/.gitignore
index 3a9c025..efb4b98 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Sereal-Encoder-3.002.tar.gz
 /Sereal-Encoder-3.003.tar.gz
+/Sereal-Encoder-3.014.tar.gz
diff --git a/Sereal-Encoder-EU-MM-fix-version.patch 
b/Sereal-Encoder-EU-MM-fix-version.patch
new file mode 100644
index 000..6425646
--- /dev/null
+++ b/Sereal-Encoder-EU-MM-fix-version.patch
@@ -0,0 +1,11 @@
+--- a/Makefile.PL  2015-12-03 00:19:19.0 +0600
 b/Makefile.PL  2016-07-16 20:54:37.17800 +0600
+@@ -79,7 +79,7 @@
+ 'ExtUtils::ParseXS' => '2.21',
+ },
+ CONFIGURE_REQUIRES => {
+-'ExtUtils::MakeMaker' => '7.0',
++'ExtUtils::MakeMaker' => '6.68',
+ },
+ NAME  => $module,
+ VERSION_FROM  => 'lib/Sereal/Encoder.pm', # finds $VERSION
diff --git a/perl-Sereal-Encoder.spec b/perl-Sereal-Encoder.spec
index 0b10f1d..1647c80 100644
--- a/perl-Sereal-Encoder.spec
+++ b/perl-Sereal-Encoder.spec
@@ -1,35 +1,43 @@
 Name:   perl-Sereal-Encoder
-Version:3.003
-Release:2%{?dist}
+Version:3.014
+Release:1%{?dist}
 Summary:Perl serialization into Serial format
 # lib/Sereal/Encoder.pm:GPL+ or Artistic
+# qsort.h:  LGPLv2+ (borrowed from glibc)
 # miniz.c:  Unlicense (unbundled)
 # snappy:   BSD (unbundled)
 # See 
-License:GPL+ or Artistic
+License:(GPL+ or Artistic) and LGPLv2+
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Sereal-Encoder/
 Source0:
http://www.cpan.org/authors/id/Y/YV/YVES/Sereal-Encoder-%{version}.tar.gz
+Patch0: Sereal-Encoder-EU-MM-fix-version.patch
+
 BuildRequires:  csnappy-devel
+BuildRequires:  gcc
 BuildRequires:  miniz-devel
 BuildRequires:  perl
+BuildRequires:  perl-devel
+BuildRequires:  perl-generators
 BuildRequires:  perl(Config)
+BuildRequires:  perl(constant)
 BuildRequires:  perl(Devel::CheckLib)
-BuildRequires:  perl(ExtUtils::Constant)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Find)
 BuildRequires:  perl(File::Path)
 BuildRequires:  perl(File::Spec)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
+
 # Run-time:
 BuildRequires:  perl(Carp)
-BuildRequires:  perl(constant)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(XSLoader)
+
 # Tests:
 # Benchmark not used
 BuildRequires:  perl(blib)
+BuildRequires:  perl(Cwd)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Devel::Peek)
 BuildRequires:  perl(Encode)
@@ -38,19 +46,24 @@ BuildRequires:  perl(lib)
 BuildRequires:  perl(List::Util)
 BuildRequires:  perl(overload)
 BuildRequires:  perl(Scalar::Util)
-%if !%{defined perl_bootstrap}
 BuildRequires:  perl(Sereal::Decoder) >= 3.00
-%endif
 BuildRequires:  perl(Storable)
 BuildRequires:  perl(Test::LongString)
 BuildRequires:  perl(Test::More) >= 0.88
 BuildRequires:  perl(Test::Warn)
 BuildRequires:  perl(threads)
+BuildRequires:  perl(threads::shared)
 BuildRequires:  perl(Tie::Array)
 BuildRequires:  perl(Tie::Hash)
 BuildRequires:  perl(Tie::Scalar)
 # Time::HiRes not used
 BuildRequires:  perl(utf8)
+BuildRequires:  perl(version)
+
+# Optional tests:
+BuildRequires:  perl(Test::Deep) >= 0.110
+BuildRequires:  perl(Test::Deep::NoTest)
+
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -59,6 +72,7 @@ serializer using a binary protocol called Sereal.
 
 %prep
 %setup -q -n Sereal-Encoder-%{version}
+%patch0 -p1
 # Remove bundled Perl modules
 rm -r ./inc/Devel
 sed -i -s '/^inc\/Devel/d' MANIFEST
@@ -89,6 +103,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jul 15 2016 Denis Fateyev  - 3.014-1
+- Bumped to 3.014 and synced to master
+
 * Thu Nov 06 2014 Petr Pisar  - 3.003-2
 - Finish Sereal bootstrap
 
diff --git a/sources b/sources
index 1bbb120..193ed11 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-544c4f7222a22aa1c42fcf366eacb382  Sereal-Encoder-3.003.tar.gz
+260b60762618e39b0cc158c2815c663c  Sereal-Encoder-3.014.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Sereal-Encoder.git/commit/?h=epel7&id=05a1e5853352cb46064fe040f3c9df8e26ad6887
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@

eseyman uploaded CGI-Emulate-PSGI-0.22.tar.gz for perl-Catalyst-Runtime

2016-07-23 Thread notifications
806886224149a8b49faddce65cf9513f  CGI-Emulate-PSGI-0.22.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Catalyst-Runtime/CGI-Emulate-PSGI-0.22.tar.gz/md5/806886224149a8b49faddce65cf9513f/CGI-Emulate-PSGI-0.22.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

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

2016-07-23 Thread notifications
9ff8bcff054514a0f56a29338116a5c0  Catalyst-Runtime-5.90111.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Catalyst-Runtime/Catalyst-Runtime-5.90111.tar.gz/md5/9ff8bcff054514a0f56a29338116a5c0/Catalyst-Runtime-5.90111.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

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

2016-07-23 Thread notifications
From 43497163831542bc80e86ca662090f33620fa2dd Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 21:40:48 +0200
Subject: Update to 5.90111

---
 .gitignore | 2 ++
 perl-Catalyst-Runtime.spec | 5 -
 sources| 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 8f061f9..52dc410 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,3 +29,5 @@ Catalyst-Runtime-5.80021.tar.gz
 /Catalyst-Runtime-5.90104.tar.gz
 /Catalyst-Runtime-5.90105.tar.gz
 /Catalyst-Runtime-5.90106.tar.gz
+/CGI-Emulate-PSGI-0.22.tar.gz
+/Catalyst-Runtime-5.90111.tar.gz
diff --git a/perl-Catalyst-Runtime.spec b/perl-Catalyst-Runtime.spec
index 65ea2ea..c5952b7 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.90106
+Version:5.90111
 Release:1%{?dist}
 License:GPL+ or Artistic
 
@@ -183,6 +183,9 @@ make clean
 %{_mandir}/man1/*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 5.90111-1
+- Update to 5.90111
+
 * Sun Jul 10 2016 Emmanuel Seyman  - 5.90106-1
 - Update to 5.90106
 
diff --git a/sources b/sources
index 41ec9f7..a62403b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7f0e915862326c649daa4cf9ae542347  Catalyst-Runtime-5.90106.tar.gz
+9ff8bcff054514a0f56a29338116a5c0  Catalyst-Runtime-5.90111.tar.gz
-- 
cgit v0.12



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

dfateyev pushed to perl-Sereal (epel7). "perl-Sereal: 3.014 epel release"

2016-07-23 Thread notifications
From 637fecb4caf68d7414a5d5faa6be9700cdbe1933 Mon Sep 17 00:00:00 2001
From: Denis Fateyev 
Date: Sun, 24 Jul 2016 01:42:39 +0600
Subject: perl-Sereal: 3.014 epel release

---
 .gitignore   |  1 +
 perl-Sereal.spec | 48 +---
 sources  |  2 +-
 3 files changed, 47 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index e60be55..e814a65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /Sereal-3.003.tar.gz
+/Sereal-3.014.tar.gz
diff --git a/perl-Sereal.spec b/perl-Sereal.spec
index f0b2cc1..12344dc 100644
--- a/perl-Sereal.spec
+++ b/perl-Sereal.spec
@@ -1,5 +1,5 @@
 Name:   perl-Sereal
-Version:3.003
+Version:3.014
 Release:1%{?dist}
 Summary:Fast, compact, powerful binary (de-)serialization
 # Makefile.PL defines LICENSE
@@ -13,17 +13,56 @@ BuildRequires:  coreutils
 BuildRequires:  findutils
 BuildRequires:  make
 BuildRequires:  perl
+BuildRequires:  perl-generators
+# blib not used
+BuildRequires:  perl(Config)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Cwd)
+# Devel::CheckLib not used
 BuildRequires:  perl(ExtUtils::MakeMaker)
+# File::Find not used
+# File::Path not used
+# File::Spec not used
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 
 # Run-time:
 BuildRequires:  perl(Exporter)
-BuildRequires:  perl(Sereal::Decoder) >= 3.003
-BuildRequires:  perl(Sereal::Encoder) >= 3.003
+BuildRequires:  perl(Sereal::Decoder) >= 3.014
+BuildRequires:  perl(Sereal::Encoder) >= 3.014
 
 # Tests:
+# Benchmark not used
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(Devel::Peek)
+BuildRequires:  perl(Encode)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(integer)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(List::Util)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(Sereal::Decoder::Constants)
+BuildRequires:  perl(Sereal::Encoder::Constants)
+BuildRequires:  perl(Storable)
+BuildRequires:  perl(Test::LongString)
 BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(Test::Warn)
+BuildRequires:  perl(Tie::Array)
+BuildRequires:  perl(Tie::Hash)
+BuildRequires:  perl(Tie::Scalar)
+# Time::HiRes not used
+BuildRequires:  perl(threads)
+BuildRequires:  perl(threads::shared)
+BuildRequires:  perl(utf8)
+BuildRequires:  perl(version)
+
+# Optional tests:
+BuildRequires:  perl(Test::Deep) >= 0.110
+BuildRequires:  perl(Test::Deep::NoTest)
+
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 
 %description
@@ -54,5 +93,8 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jul 15 2016 Denis Fateyev  - 3.014-1
+- Bumped to 3.014 and synced to master
+
 * Thu Mar 10 2016 Denis Fateyev  - 3.003-1
 - version 3.003 provision
diff --git a/sources b/sources
index 1906231..b805e8c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-8e91cf7b07080eac5d2d6c0b2d6c234e  Sereal-3.003.tar.gz
+fbc2382c25738fd2230cc832e3d83b06  Sereal-3.014.tar.gz
-- 
cgit v0.12



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

eseyman uploaded Dancer2-0.201000.tar.gz for perl-Dancer2

2016-07-23 Thread notifications
02e7e5155381615ca31b1c63ed08e847  Dancer2-0.201000.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Dancer2/Dancer2-0.201000.tar.gz/md5/02e7e5155381615ca31b1c63ed08e847/Dancer2-0.201000.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-Dancer2 (master). "Update to 0.201000"

2016-07-23 Thread notifications
From 4341e8ac5bc4e1ee0f1f43c7aa0e04dadaa94599 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 22:54:13 +0200
Subject: Update to 0.201000

---
 .gitignore|  1 +
 perl-Dancer2.spec | 13 ++---
 sources   |  2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 348d26c..9435674 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /Dancer2-0.162000.tar.gz
 /Dancer2-0.163000.tar.gz
 /Dancer2-0.166001.tar.gz
+/Dancer2-0.201000.tar.gz
diff --git a/perl-Dancer2.spec b/perl-Dancer2.spec
index ecc7d5c..914f915 100644
--- a/perl-Dancer2.spec
+++ b/perl-Dancer2.spec
@@ -1,6 +1,6 @@
 Name:   perl-Dancer2
-Version:0.166001
-Release:2%{?dist}
+Version:0.201000
+Release:1%{?dist}
 Summary:Lightweight yet powerful web application framework
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -16,6 +16,7 @@ BuildRequires:  perl(File::ShareDir::Install) >= 0.06
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Run-time:
+BuildRequires:  perl(Attribute::Handlers)
 BuildRequires:  perl(App::Cmd::Setup)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Class::Load)
@@ -25,6 +26,7 @@ BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Digest::SHA)
 BuildRequires:  perl(Encode)
 BuildRequires:  perl(Exporter) >= 5.57
+BuildRequires:  perl(Exporter::Tiny)
 BuildRequires:  perl(Fcntl)
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Copy)
@@ -43,7 +45,7 @@ BuildRequires:  perl(HTTP::Server::PSGI)
 BuildRequires:  perl(HTTP::Tiny)
 BuildRequires:  perl(Import::Into)
 BuildRequires:  perl(IO::File)
-BuildRequires:  perl(JSON)
+BuildRequires:  perl(JSON::MaybeXS)
 BuildRequires:  perl(List::Util)
 BuildRequires:  perl(MIME::Base64)
 BuildRequires:  perl(Module::Runtime)
@@ -74,10 +76,12 @@ BuildRequires:  perl(Template)
 BuildRequires:  perl(Template::Tiny)
 BuildRequires:  perl(Test::Builder)
 BuildRequires:  perl(Test::More) >= 0.92
+BuildRequires:  perl(Type::Library)
 BuildRequires:  perl(URI)
 BuildRequires:  perl(URI::Escape)
 BuildRequires:  perl(YAML) >= 0.86
 # Optional run-time:
+BuildRequires:  perl(AnyEvent)
 BuildRequires:  perl(CGI::Deurl::XS)
 BuildRequires:  perl(Crypt::URandom)
 BuildRequires:  perl(Math::Random::ISAAC::XS)
@@ -164,6 +168,9 @@ provides nice, easily-extendable CLI interface for it.
 %{_bindir}/*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.201000-1
+- Update to 0.201000
+
 * Tue May 17 2016 Jitka Plesnikova  - 0.166001-2
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 8ab85ba..3b965df 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-9c144136d3c712f69cbaca4f04269ea6  Dancer2-0.166001.tar.gz
+02e7e5155381615ca31b1c63ed08e847  Dancer2-0.201000.tar.gz
-- 
cgit v0.12



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

eseyman uploaded Geo-IP-1.50.tar.gz for perl-Geo-IP

2016-07-23 Thread notifications
546b7bec5ae2076b1640fddee98d5717  Geo-IP-1.50.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Geo-IP/Geo-IP-1.50.tar.gz/md5/546b7bec5ae2076b1640fddee98d5717/Geo-IP-1.50.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc pushed to perl-Array-Diff (master). "Fix FTBFS with perl not available in SRPM build root (..more)"

2016-07-23 Thread notifications
From 01ccd466ab39d7ce5b36794855cf8cd8521e144d Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Sat, 23 Jul 2016 22:07:52 +0100
Subject: Fix FTBFS with perl not available in SRPM build root

Also:
- Classify buildreqs by usage
- Simplify find command using -delete
- Use %license
---
 perl-Array-Diff.spec | 59 ++--
 1 file changed, 48 insertions(+), 11 deletions(-)

diff --git a/perl-Array-Diff.spec b/perl-Array-Diff.spec
index 65cc546..6f6f0e3 100644
--- a/perl-Array-Diff.spec
+++ b/perl-Array-Diff.spec
@@ -1,9 +1,9 @@
 # Only need manual requires for "use base XXX;" prior to rpm 4.9
-%global rpm49 %(rpm --version | perl -p -e 's/^.* 
(\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e')
+%global rpm49 %(rpm --version | perl -p -e 's/^.* 
(\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e' 2>/dev/null || 
echo 0)
 
 Name:   perl-Array-Diff
 Version:0.07
-Release:20%{?dist}
+Release:21%{?dist}
 # Because 0.07 compares newer than 0.05002 in Perl world
 # but not in RPM world :-(
 Epoch:  1
@@ -14,14 +14,40 @@ URL:http://search.cpan.org/dist/Array-Diff/
 Source0:
http://www.cpan.org/authors/id/T/TY/TYPESTER/Array-Diff-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+# Module Build
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
+BuildRequires:  perl
 BuildRequires:  perl-generators
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(ExtUtils::Manifest)
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(FindBin)
+BuildRequires:  perl(vars)
+# Module Runtime
 BuildRequires:  perl(Algorithm::Diff)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Class::Accessor::Fast)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Test Suite
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(MIME::Base64)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(PerlIO)
+BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
+BuildRequires:  perl(Text::Diff)
+# Dependencies
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 %if ! %{rpm49}
 Requires:   perl(Class::Accessor::Fast)
@@ -41,24 +67,35 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-%{_fixperms} $RPM_BUILD_ROOT
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} %{buildroot}
 
 %check
 make test
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
-%doc Changes LICENSE README
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes README
 %dir %{perl_vendorlib}/Array/
 %{perl_vendorlib}/Array/Diff.pm
-%{_mandir}/man3/Array::Diff.3pm*
+%{_mandir}/man3/Array::Diff.3*
 
 %changelog
+* Sat Jul 23 2016 Paul Howarth  - 1:0.07-21
+- Fix FTBFS with perl not available in SRPM build root
+- Classify buildreqs by usage
+- Simplify find command using -delete
+- Use %%license
+
 * Sun May 15 2016 Jitka Plesnikova  - 1:0.07-20
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Array-Diff.git/commit/?h=master&id=01ccd466ab39d7ce5b36794855cf8cd8521e144d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc uploaded Test-Simple-1.302047.tar.gz for perl-Test-Simple

2016-07-23 Thread notifications
667c5da3d33c516776c8c9741428a1ae  Test-Simple-1.302047.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Test-Simple/Test-Simple-1.302047.tar.gz/md5/667c5da3d33c516776c8c9741428a1ae/Test-Simple-1.302047.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc pushed to perl-Array-Diff (perl-Array-Diff-0.07-21.fc25). "Fix FTBFS with perl not available in SRPM build root (..more)"

2016-07-23 Thread notifications
From 01ccd466ab39d7ce5b36794855cf8cd8521e144d Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Sat, 23 Jul 2016 22:07:52 +0100
Subject: Fix FTBFS with perl not available in SRPM build root

Also:
- Classify buildreqs by usage
- Simplify find command using -delete
- Use %license
---
 perl-Array-Diff.spec | 59 ++--
 1 file changed, 48 insertions(+), 11 deletions(-)

diff --git a/perl-Array-Diff.spec b/perl-Array-Diff.spec
index 65cc546..6f6f0e3 100644
--- a/perl-Array-Diff.spec
+++ b/perl-Array-Diff.spec
@@ -1,9 +1,9 @@
 # Only need manual requires for "use base XXX;" prior to rpm 4.9
-%global rpm49 %(rpm --version | perl -p -e 's/^.* 
(\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e')
+%global rpm49 %(rpm --version | perl -p -e 's/^.* 
(\\d+)\\.(\\d+).*/sprintf("%d.%03d",$1,$2) ge 4.009 ? 1 : 0/e' 2>/dev/null || 
echo 0)
 
 Name:   perl-Array-Diff
 Version:0.07
-Release:20%{?dist}
+Release:21%{?dist}
 # Because 0.07 compares newer than 0.05002 in Perl world
 # but not in RPM world :-(
 Epoch:  1
@@ -14,14 +14,40 @@ URL:http://search.cpan.org/dist/Array-Diff/
 Source0:
http://www.cpan.org/authors/id/T/TY/TYPESTER/Array-Diff-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
+# Module Build
+BuildRequires:  coreutils
+BuildRequires:  findutils
+BuildRequires:  make
+BuildRequires:  perl
 BuildRequires:  perl-generators
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(ExtUtils::Manifest)
+BuildRequires:  perl(Fcntl)
+BuildRequires:  perl(File::Find)
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(FindBin)
+BuildRequires:  perl(vars)
+# Module Runtime
 BuildRequires:  perl(Algorithm::Diff)
 BuildRequires:  perl(base)
 BuildRequires:  perl(Class::Accessor::Fast)
-BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(warnings)
+# Test Suite
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(MIME::Base64)
+BuildRequires:  perl(overload)
+BuildRequires:  perl(PerlIO)
+BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
+BuildRequires:  perl(Text::Diff)
+# Dependencies
 Requires:   perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
 %if ! %{rpm49}
 Requires:   perl(Class::Accessor::Fast)
@@ -41,24 +67,35 @@ perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-%{_fixperms} $RPM_BUILD_ROOT
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -delete
+%{_fixperms} %{buildroot}
 
 %check
 make test
 
 %clean
-rm -rf $RPM_BUILD_ROOT
+rm -rf %{buildroot}
 
 %files
-%doc Changes LICENSE README
+%if 0%{?_licensedir:1}
+%license LICENSE
+%else
+%doc LICENSE
+%endif
+%doc Changes README
 %dir %{perl_vendorlib}/Array/
 %{perl_vendorlib}/Array/Diff.pm
-%{_mandir}/man3/Array::Diff.3pm*
+%{_mandir}/man3/Array::Diff.3*
 
 %changelog
+* Sat Jul 23 2016 Paul Howarth  - 1:0.07-21
+- Fix FTBFS with perl not available in SRPM build root
+- Classify buildreqs by usage
+- Simplify find command using -delete
+- Use %%license
+
 * Sun May 15 2016 Jitka Plesnikova  - 1:0.07-20
 - Perl 5.24 rebuild
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Array-Diff.git/commit/?h=perl-Array-Diff-0.07-21.fc25&id=01ccd466ab39d7ce5b36794855cf8cd8521e144d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

pghmcfc pushed to perl-Test-Simple (master). "Update to 1.302047 (..more)"

2016-07-23 Thread notifications
From 5fce4c27384e0acdb1c0d47a95420acb78f93744 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Sat, 23 Jul 2016 22:13:31 +0100
Subject: Update to 1.302047

- New upstream release 1.302047
  - Restore traditional note/diag return values (#694)
---
 perl-Test-Simple.spec | 6 +-
 sources   | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec
index 1578db2..fae9f34 100644
--- a/perl-Test-Simple.spec
+++ b/perl-Test-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Simple
 Summary:Basic utilities for writing tests
-Version:1.302045
+Version:1.302047
 Release:1%{?dist}
 # CC0: lib/ok.pm
 # Public Domain: lib/Test/Tutorial.pod
@@ -149,6 +149,10 @@ make test AUTHOR_TESTING=1
 %{_mandir}/man3/Test2::Util::Trace.3*
 
 %changelog
+* Sat Jul 23 2016 Paul Howarth  - 1.302047-1
+- Update to 1.302047
+  - Restore traditional note/diag return values (#694)
+
 * Tue Jul 19 2016 Paul Howarth  - 1.302045-1
 - Update to 1.302045
   - Work around IPC bug on windows
diff --git a/sources b/sources
index 0780b6a..b13b243 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3763d5858569ff7b2f3d4e285479050f  Test-Simple-1.302045.tar.gz
+667c5da3d33c516776c8c9741428a1ae  Test-Simple-1.302047.tar.gz
-- 
cgit v0.12



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

eseyman pushed to perl-Geo-IP (master). "Update to 1.50"

2016-07-23 Thread notifications
From 5d9213c6a6cf4d7c58ea6ba3ebda4aece0424978 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 23:19:05 +0200
Subject: Update to 1.50

---
 .gitignore   |  1 +
 perl-Geo-IP.spec | 19 ++-
 sources  |  2 +-
 3 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/.gitignore b/.gitignore
index 88f0516..4880a51 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ Geo-IP-1.38.tar.gz
 /Geo-IP-1.42.tar.gz
 /Geo-IP-1.43.tar.gz
 /Geo-IP-1.45.tar.gz
+/Geo-IP-1.50.tar.gz
diff --git a/perl-Geo-IP.spec b/perl-Geo-IP.spec
index 7edc7bc..c59c47f 100644
--- a/perl-Geo-IP.spec
+++ b/perl-Geo-IP.spec
@@ -1,7 +1,7 @@
 Name: perl-Geo-IP
 Summary:  Efficient Perl bindings for the GeoIP location database
-Version:  1.45
-Release:  5%{?dist}
+Version:  1.50
+Release:  1%{?dist}
 URL:  http://search.cpan.org/dist/Geo-IP/
 License:  GPL+ or Artistic
 
@@ -12,7 +12,7 @@ Patch1:   
Geo-IP-1.40-Fix-shebangs-in-example-files.patch
 BuildRequires:GeoIP-devel
 BuildRequires:perl-devel
 BuildRequires:perl-generators
-BuildRequires:perl(ExtUtils::MakeMaker)
+BuildRequires:perl(ExtUtils::MakeMaker) >= 6.76
 BuildRequires:perl(Test::More)
 
 Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo 
$version))
@@ -34,17 +34,14 @@ similar modules.
 
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" NO_PACKLIST=1
 make %{?_smp_mflags}
 # Avoid uneeded dependencies in the docs.
 find example/ -type f | xargs chmod -x
 
 
 %install
-make pure_install PERL_INSTALL_ROOT=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';'
+make pure_install DESTDIR=%{buildroot}
 chmod -R u+w %{buildroot}/*
 
 
@@ -57,10 +54,14 @@ make test
 %{perl_vendorarch}/Geo
 %{perl_vendorarch}/auto/Geo
 %{_mandir}/man3/Geo::IP*.3*
-%{_mandir}/man3/Geo::Mirror.3*
 
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 1.50-1
+- Update to 1.50
+- Pass NO_PACKLIST to Makefile.PL
+- Use DESTDIR instead of PERL_INSTALL_ROOT
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.45-5
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 5d98035..341f59f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-781fbf2a6b6505e86e3e5ebe05254928  Geo-IP-1.45.tar.gz
+546b7bec5ae2076b1640fddee98d5717  Geo-IP-1.50.tar.gz
-- 
cgit v0.12



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

pghmcfc pushed to perl-Test-Simple (perl-Test-Simple-1.302047-1.fc25). "Update to 1.302047 (..more)"

2016-07-23 Thread notifications
From 5fce4c27384e0acdb1c0d47a95420acb78f93744 Mon Sep 17 00:00:00 2001
From: Paul Howarth 
Date: Sat, 23 Jul 2016 22:13:31 +0100
Subject: Update to 1.302047

- New upstream release 1.302047
  - Restore traditional note/diag return values (#694)
---
 perl-Test-Simple.spec | 6 +-
 sources   | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec
index 1578db2..fae9f34 100644
--- a/perl-Test-Simple.spec
+++ b/perl-Test-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Simple
 Summary:Basic utilities for writing tests
-Version:1.302045
+Version:1.302047
 Release:1%{?dist}
 # CC0: lib/ok.pm
 # Public Domain: lib/Test/Tutorial.pod
@@ -149,6 +149,10 @@ make test AUTHOR_TESTING=1
 %{_mandir}/man3/Test2::Util::Trace.3*
 
 %changelog
+* Sat Jul 23 2016 Paul Howarth  - 1.302047-1
+- Update to 1.302047
+  - Restore traditional note/diag return values (#694)
+
 * Tue Jul 19 2016 Paul Howarth  - 1.302045-1
 - Update to 1.302045
   - Work around IPC bug on windows
diff --git a/sources b/sources
index 0780b6a..b13b243 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3763d5858569ff7b2f3d4e285479050f  Test-Simple-1.302045.tar.gz
+667c5da3d33c516776c8c9741428a1ae  Test-Simple-1.302047.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Test-Simple.git/commit/?h=perl-Test-Simple-1.302047-1.fc25&id=5fce4c27384e0acdb1c0d47a95420acb78f93744
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-Geo-IP (master). "Use inline sed instead of patch"

2016-07-23 Thread notifications
From 04bcdfebf5800d07f5571be5e6f405843cc59e73 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 23:37:38 +0200
Subject: Use inline sed instead of patch

---
 Geo-IP-1.40-Fix-shebangs-in-example-files.patch | 33 -
 perl-Geo-IP.spec| 10 
 2 files changed, 5 insertions(+), 38 deletions(-)
 delete mode 100644 Geo-IP-1.40-Fix-shebangs-in-example-files.patch

diff --git a/Geo-IP-1.40-Fix-shebangs-in-example-files.patch 
b/Geo-IP-1.40-Fix-shebangs-in-example-files.patch
deleted file mode 100644
index ed7c779..000
--- a/Geo-IP-1.40-Fix-shebangs-in-example-files.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 796fb7e692b0778d3fda02b6a5ed14591d10c667 Mon Sep 17 00:00:00 2001
-From: Mathieu Bridon 
-Date: Wed, 24 Oct 2012 17:01:52 +0800
-Subject: [PATCH] Fix shebangs in example files
-

- example/netspeed.pl |2 +-
- example/netspeedcell.pl |2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/example/netspeed.pl b/example/netspeed.pl
-index a68c010..890e480 100755
 a/example/netspeed.pl
-+++ b/example/netspeed.pl
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl
-+#!/usr/bin/perl
- 
- use Geo::IP;
- 
-diff --git a/example/netspeedcell.pl b/example/netspeedcell.pl
-index 74905c9..c9d2928 100755
 a/example/netspeedcell.pl
-+++ b/example/netspeedcell.pl
-@@ -1,4 +1,4 @@
--#!/usr/local/bin/perl
-+#!/usr/bin/perl
- 
- use Geo::IP;
- 
--- 
-1.7.7.6
-
diff --git a/perl-Geo-IP.spec b/perl-Geo-IP.spec
index c59c47f..7447dd5 100644
--- a/perl-Geo-IP.spec
+++ b/perl-Geo-IP.spec
@@ -1,14 +1,12 @@
 Name: perl-Geo-IP
 Summary:  Efficient Perl bindings for the GeoIP location database
 Version:  1.50
-Release:  1%{?dist}
+Release:  2%{?dist}
 URL:  http://search.cpan.org/dist/Geo-IP/
 License:  GPL+ or Artistic
 
 Source0:  
http://search.cpan.org/CPAN/authors/id/M/MA/MAXMIND/Geo-IP-%{version}.tar.gz
 
-Patch1:   Geo-IP-1.40-Fix-shebangs-in-example-files.patch
-
 BuildRequires:GeoIP-devel
 BuildRequires:perl-devel
 BuildRequires:perl-generators
@@ -29,8 +27,7 @@ similar modules.
 
 %prep
 %setup -q -n Geo-IP-%{version}
-
-%patch1 -p1
+sed -i -e '1s,#!.*perl,#!%{__perl},' example/netspeed.pl
 
 
 %build
@@ -57,6 +54,9 @@ make test
 
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 1.50-2
+- Use inline sed instead of patch
+
 * Sat Jul 23 2016 Emmanuel Seyman  - 1.50-1
 - Update to 1.50
 - Pass NO_PACKLIST to Makefile.PL
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-Geo-IP.git/commit/?h=master&id=04bcdfebf5800d07f5571be5e6f405843cc59e73
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman uploaded HTML-FormHandler-0.40066.tar.gz for perl-HTML-FormHandler

2016-07-23 Thread notifications
15395781c792185347f726af7c3b59e6  HTML-FormHandler-0.40066.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-HTML-FormHandler/HTML-FormHandler-0.40066.tar.gz/md5/15395781c792185347f726af7c3b59e6/HTML-FormHandler-0.40066.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-HTML-FormHandler (master). "Update to 0.40066"

2016-07-23 Thread notifications
From 2c33691201906d75b2f1bcd57106915876dfa726 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sun, 24 Jul 2016 00:05:47 +0200
Subject: Update to 0.40066

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

diff --git a/.gitignore b/.gitignore
index 65885f3..92de54f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@
 /HTML-FormHandler-0.40063.tar.gz
 /HTML-FormHandler-0.40064.tar.gz
 /HTML-FormHandler-0.40065.tar.gz
+/HTML-FormHandler-0.40066.tar.gz
diff --git a/perl-HTML-FormHandler.spec b/perl-HTML-FormHandler.spec
index 728fd5e..3d8e3f7 100644
--- a/perl-HTML-FormHandler.spec
+++ b/perl-HTML-FormHandler.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-FormHandler
-Version:0.40065
-Release:2%{?dist}
+Version:0.40066
+Release:1%{?dist}
 Summary:HTML forms using Moose
 License:GPL+ or Artistic
 
@@ -94,6 +94,9 @@ make test
 %{_mandir}/man3/HTML*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.40066-1
+- Update to 0.40066
+
 * Mon May 16 2016 Jitka Plesnikova  - 0.40065-2
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index a13b5b4..16856f0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-906ff63f677b923c9964f6045344c0d5  HTML-FormHandler-0.40065.tar.gz
+15395781c792185347f726af7c3b59e6  HTML-FormHandler-0.40066.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-HTML-FormHandler.git/commit/?h=master&id=2c33691201906d75b2f1bcd57106915876dfa726
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359432] New: perl-Code-TidyAll-0.49 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359432

Bug ID: 1359432
   Summary: perl-Code-TidyAll-0.49 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Code-TidyAll
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 0.49
Current version/release in rawhide: 0.48-1.fc25
URL: http://search.cpan.org/dist/Code-TidyAll/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/8650/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman uploaded Mojolicious-7.0.tar.gz for perl-Mojolicious

2016-07-23 Thread notifications
91799c9c21e116dc438fdec1ede5a977  Mojolicious-7.0.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/perl-Mojolicious/Mojolicious-7.0.tar.gz/md5/91799c9c21e116dc438fdec1ede5a977/Mojolicious-7.0.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-Mojolicious (master). "Update to 7.0"

2016-07-23 Thread notifications
From bf0907c61151def655ab30c00ebdc4dd78e9b15e Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sun, 24 Jul 2016 00:38:47 +0200
Subject: Update to 7.0

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

diff --git a/.gitignore b/.gitignore
index ec33adc..78d3d6b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -203,3 +203,4 @@ Mojolicious-0.26.tar.gz
 /Mojolicious-6.63.tar.gz
 /Mojolicious-6.64.tar.gz
 /Mojolicious-6.66.tar.gz
+/Mojolicious-7.0.tar.gz
diff --git a/perl-Mojolicious.spec b/perl-Mojolicious.spec
index ace633c..33d3b93 100644
--- a/perl-Mojolicious.spec
+++ b/perl-Mojolicious.spec
@@ -1,5 +1,5 @@
 Name:   perl-Mojolicious
-Version:6.66
+Version:7.0
 Release:1%{?dist}
 Summary:A next generation web framework for Perl
 License:Artistic 2.0
@@ -76,6 +76,9 @@ make test
 %{perl_vendorlib}/Test
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 7.0-1
+- Update to 7.0
+
 * Sat Jun 18 2016 Emmanuel Seyman  - 6.66-1
 - Update to 6.66
 
diff --git a/sources b/sources
index 0f7fdb5..716dc12 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-037c5baa6f95aef60eded5ae3348cb5d  Mojolicious-6.66.tar.gz
+91799c9c21e116dc438fdec1ede5a977  Mojolicious-7.0.tar.gz
-- 
cgit v0.12



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

[Bug 1359440] New: perl-Locale-SubCountry-1.66 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359440

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



Latest upstream release: 1.66
Current version/release in rawhide: 1.65-2.fc25
URL: http://search.cpan.org/dist/Locale-SubCountry/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3036/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359443] New: perl-Math-NumSeq-72 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359443

Bug ID: 1359443
   Summary: perl-Math-NumSeq-72 is available
   Product: Fedora
   Version: rawhide
 Component: perl-Math-NumSeq
  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: 72
Current version/release in rawhide: 71-8.fc25
URL: http://search.cpan.org/dist/Math-NumSeq/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3062/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359443] perl-Math-NumSeq-72 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359443



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-Math-NumSeq-71 failed.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359443] perl-Math-NumSeq-72 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359443



--- Comment #2 from Upstream Release Monitoring 
 ---
Created attachment 1183235
  --> https://bugzilla.redhat.com/attachment.cgi?id=1183235&action=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359443] perl-Math-NumSeq-72 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359443



--- Comment #3 from Upstream Release Monitoring 
 ---
Patches were not touched. All were applied properly

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359451] New: perl-PAR-Packer-1.035 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359451

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



Latest upstream release: 1.035
Current version/release in rawhide: 1.034-1.fc25
URL: http://search.cpan.org/dist/PAR-Packer/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3189/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1342526] perl-PDF-Create-1.33 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1342526

Upstream Release Monitoring  
changed:

   What|Removed |Added

Summary|perl-PDF-Create-1.32 is |perl-PDF-Create-1.33 is
   |available   |available



--- Comment #4 from Upstream Release Monitoring 
 ---
Latest upstream release: 1.33
Current version/release in rawhide: 1.31-1.fc25
URL: http://search.cpan.org/dist/PDF-Create/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/5987/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1342526] perl-PDF-Create-1.33 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1342526



--- Comment #6 from Upstream Release Monitoring 
 ---
Created attachment 1183248
  --> https://bugzilla.redhat.com/attachment.cgi?id=1183248&action=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1342526] perl-PDF-Create-1.33 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1342526



--- Comment #5 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-PDF-Create-1.31 failed.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1342526] perl-PDF-Create-1.33 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1342526



--- Comment #7 from Upstream Release Monitoring 
 ---
Patches were not touched. All were applied properly

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359468] perl-XML-Merge-1.4 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359468



--- Comment #3 from Upstream Release Monitoring 
 ---
Following patches has been unapplied:
['perl-XML-Merge-makefile.patch',
'XML-Merge-1.2.565EgGd-Make-XML-Merge-version-valid.patch']

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359468] perl-XML-Merge-1.4 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359468



--- Comment #1 from Upstream Release Monitoring 
 ---
Patching or scratch build for perl-XML-Merge-1.2.565EgGd failed.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359467] New: perl-XML-LibXML-2.0127 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359467

Bug ID: 1359467
   Summary: perl-XML-LibXML-2.0127 is available
   Product: Fedora
   Version: rawhide
 Component: perl-XML-LibXML
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: jples...@redhat.com,
perl-devel@lists.fedoraproject.org



Latest upstream release: 2.0127
Current version/release in rawhide: 2.0126-1.fc25
URL: http://search.cpan.org/dist/XML-LibXML/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3527/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359468] perl-XML-Merge-1.4 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359468



--- Comment #2 from Upstream Release Monitoring 
 ---
Created attachment 1183270
  --> https://bugzilla.redhat.com/attachment.cgi?id=1183270&action=edit
Rebase-helper rebase-helper-debug.log log file.
See for details and report the eventual error to rebase-helper
https://github.com/phracek/rebase-helper/issues.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1359468] New: perl-XML-Merge-1.4 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1359468

Bug ID: 1359468
   Summary: perl-XML-Merge-1.4 is available
   Product: Fedora
   Version: rawhide
 Component: perl-XML-Merge
  Keywords: FutureFeature, Triaged
  Assignee: xav...@bachelot.org
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: perl-devel@lists.fedoraproject.org,
xav...@bachelot.org



Latest upstream release: 1.4
Current version/release in rawhide: 1.2.565EgGd-24.fc25
URL: http://search.cpan.org/dist/XML-Merge/

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

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

Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.

Based on the information from anitya: 
https://release-monitoring.org/project/3529/

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-CGI-Emulate-PSGI (f24). "Update to 0.22"

2016-07-23 Thread notifications
From 1af5ae30673ca49b97c15a2b1332ad9df60b8161 Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 21:15:38 +0200
Subject: Update to 0.22

---
 .gitignore | 1 +
 perl-CGI-Emulate-PSGI.spec | 7 +--
 sources| 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 792ea6a..ccfbcef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /CGI-Emulate-PSGI-0.19.tar.gz
 /CGI-Emulate-PSGI-0.20.tar.gz
 /CGI-Emulate-PSGI-0.21.tar.gz
+/CGI-Emulate-PSGI-0.22.tar.gz
diff --git a/perl-CGI-Emulate-PSGI.spec b/perl-CGI-Emulate-PSGI.spec
index 7a56649..318f80e 100644
--- a/perl-CGI-Emulate-PSGI.spec
+++ b/perl-CGI-Emulate-PSGI.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Emulate-PSGI
-Version:0.21
-Release:2%{?dist}
+Version:0.22
+Release:1%{?dist}
 Summary:PSGI adapter for CGI applications
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/CGI-Emulate-PSGI
@@ -45,6 +45,9 @@ make test
 %{_mandir}/man3/CGI*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.22-1
+- Update to 0.22
+
 * Thu Feb 04 2016 Fedora Release Engineering  - 
0.21-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
 
diff --git a/sources b/sources
index ab8054c..727c3da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0a068a14697dd22602f414a5765d1c79  CGI-Emulate-PSGI-0.21.tar.gz
+806886224149a8b49faddce65cf9513f  CGI-Emulate-PSGI-0.22.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-CGI-Emulate-PSGI.git/commit/?h=f24&id=1af5ae30673ca49b97c15a2b1332ad9df60b8161
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

eseyman pushed to perl-CGI-Emulate-PSGI (f23). "Update to 0.22"

2016-07-23 Thread notifications
From d804dedbc92e9a4766953e5361554470aa651a2c Mon Sep 17 00:00:00 2001
From: Emmanuel Seyman 
Date: Sat, 23 Jul 2016 21:15:38 +0200
Subject: Update to 0.22

---
 .gitignore | 2 ++
 perl-CGI-Emulate-PSGI.spec | 7 +--
 sources| 2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index ec0a34d..ccfbcef 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
 /CGI-Emulate-PSGI-0.18.tar.gz
 /CGI-Emulate-PSGI-0.19.tar.gz
 /CGI-Emulate-PSGI-0.20.tar.gz
+/CGI-Emulate-PSGI-0.21.tar.gz
+/CGI-Emulate-PSGI-0.22.tar.gz
diff --git a/perl-CGI-Emulate-PSGI.spec b/perl-CGI-Emulate-PSGI.spec
index df1c76c..a425807 100644
--- a/perl-CGI-Emulate-PSGI.spec
+++ b/perl-CGI-Emulate-PSGI.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Emulate-PSGI
-Version:0.20
-Release:4%{?dist}
+Version:0.22
+Release:1%{?dist}
 Summary:PSGI adapter for CGI applications
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/CGI-Emulate-PSGI
@@ -49,6 +49,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jul 23 2016 Emmanuel Seyman  - 0.22-1
+- Update to 0.22
+
 * Thu Jun 18 2015 Fedora Release Engineering  
- 0.20-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
 
diff --git a/sources b/sources
index a3f4c1b..727c3da 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-9a318c5fa2bcad36db83e575e86cf302  CGI-Emulate-PSGI-0.20.tar.gz
+806886224149a8b49faddce65cf9513f  CGI-Emulate-PSGI-0.22.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/perl-CGI-Emulate-PSGI.git/commit/?h=f23&id=d804dedbc92e9a4766953e5361554470aa651a2c
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1357222] Update to at least 2.05

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1357222



--- Comment #2 from Ben Boeckel  ---
Thanks! Commit access requested in pkgdb.

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1354483] dropbox-api-command-2.09 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1354483



--- Comment #25 from Upstream Release Monitoring 
 ---
mathstuf's dropbox-api-command-2.09-1.fc25 completed
http://koji.fedoraproject.org/koji/buildinfo?buildID=785148

-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

[Bug 1354483] dropbox-api-command-2.09 is available

2016-07-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1354483

Ben Boeckel  changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
 Resolution|--- |RAWHIDE
Last Closed||2016-07-23 23:46:56



-- 
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://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox (master) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox 
(master) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox (f23) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox 
(f23) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (f23) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (f23) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (master) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (master) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox (f24) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'commit' permission on perl-WebService-Dropbox 
(f24) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (f23) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (f23) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchcommits' permission on perl-WebService-Dropbox (f23) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchcommits' permission on 
perl-WebService-Dropbox (f23) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchcommits' permission on perl-WebService-Dropbox (f24) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchcommits' permission on 
perl-WebService-Dropbox (f24) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchcommits' permission on perl-WebService-Dropbox (master) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchcommits' permission on 
perl-WebService-Dropbox (master) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (f24) to 'Awaiting Review'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (f24) to 'Awaiting Review'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (master) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (master) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf changed mathstuf's 'watchbugzilla' permission on perl-WebService-Dropbox (f24) to 'Approved'

2016-07-23 Thread notifications
mathstuf changed mathstuf's 'watchbugzilla' permission on 
perl-WebService-Dropbox (f24) to 'Approved'
https://admin.fedoraproject.org/pkgdb/package/perl-WebService-Dropbox/
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf uploaded 2.09.tar.gz for dropbox-api-command

2016-07-23 Thread notifications
a9d7e87953085e31ab61dc69815ef2e8  2.09.tar.gz

http://pkgs.fedoraproject.org/lookaside/pkgs/dropbox-api-command/2.09.tar.gz/md5/a9d7e87953085e31ab61dc69815ef2e8/2.09.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf pushed to dropbox-api-command (master). "update to 2.09"

2016-07-23 Thread notifications
From c89dcbd2baa7b54f5e3f59fba68ae46e4d640c46 Mon Sep 17 00:00:00 2001
From: Ben Boeckel 
Date: Sat, 23 Jul 2016 23:03:54 -0400
Subject: update to 2.09

---
 .gitignore   |  1 +
 dropbox-api-command.spec | 14 +++---
 sources  |  2 +-
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore
index a66897c..0d9c54e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /1.17.tar.gz
+/2.09.tar.gz
diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 265a302..6a42745 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -2,8 +2,8 @@
 #global shortcommit %(c=%{commit}; echo ${c:0:7})
 
 Name:   dropbox-api-command
-Version:1.17
-Release:7%{?dist}
+Version:2.09
+Release:1%{?dist}
 Summary:Dropbox API wrapper command
 
 License:MIT
@@ -13,11 +13,8 @@ Source0:
https://github.com/s-aska/%{name}/archive/%{version}.tar.gz
 BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl-generators
-BuildRequires:  perl(CPAN::Meta)
-BuildRequires:  perl(CPAN::Meta::Prereqs)
-BuildRequires:  perl(File::Basename)
-BuildRequires:  perl(File::Spec)
-BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Module::Build::Tiny)
+#BuildRequires:  perl(PAUSE::Permissions)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(utf8)
@@ -59,6 +56,9 @@ A command line tool to manage a directory synced with Dropbox.
 
 
 %changelog
+* Sat Jul 23 2016 Ben Boeckel  - 2.09-1
+- update to 2.09
+
 * Sun May 15 2016 Jitka Plesnikova  - 1.17-7
 - Perl 5.24 rebuild
 
diff --git a/sources b/sources
index 9009a8d..efaff8e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3f0d217e093ba8f0750512399a4fb4be  1.17.tar.gz
+a9d7e87953085e31ab61dc69815ef2e8  2.09.tar.gz
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=c89dcbd2baa7b54f5e3f59fba68ae46e4d640c46
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf pushed to dropbox-api-command (master). "fixes for Module::Build::Tiny"

2016-07-23 Thread notifications
From 6218ef28e709971c1d0bdf9e07801414793d Mon Sep 17 00:00:00 2001
From: Ben Boeckel 
Date: Sat, 23 Jul 2016 23:22:41 -0400
Subject: fixes for Module::Build::Tiny

---
 dropbox-api-command.spec | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 6a42745..46ba3c8 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -14,7 +14,6 @@ BuildArch:  noarch
 BuildRequires:  perl
 BuildRequires:  perl-generators
 BuildRequires:  perl(Module::Build::Tiny)
-#BuildRequires:  perl(PAUSE::Permissions)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(utf8)
@@ -37,7 +36,7 @@ A command line tool to manage a directory synced with Dropbox.
 
 
 %install
-./Build install destdir=%{buildroot} create_packlist=0
+./Build install --destdir=%{buildroot} create_packlist=0
 
 %{_fixperms} %{buildroot}/*
 
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=6218ef28e709971c1d0bdf9e07801414793d
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf pushed to dropbox-api-command (master). "%files updates"

2016-07-23 Thread notifications
From e2f2a3f97d6f76dc34094080d4f5e06ec788013a Mon Sep 17 00:00:00 2001
From: Ben Boeckel 
Date: Sat, 23 Jul 2016 23:37:45 -0400
Subject: %files updates

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

diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 46ba3c8..980914b 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -36,7 +36,7 @@ A command line tool to manage a directory synced with Dropbox.
 
 
 %install
-./Build install --destdir=%{buildroot} create_packlist=0
+./Build install --destdir=%{buildroot} --create_packlist=0
 
 %{_fixperms} %{buildroot}/*
 
@@ -51,7 +51,7 @@ A command line tool to manage a directory synced with Dropbox.
 %{_bindir}/dropbox-api
 %{_bindir}/upload-to-dropbox
 %{perl_vendorlib}/*
-%{_mandir}/man3/*.3*
+%{_mandir}/man1/*.1*
 
 
 %changelog
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=e2f2a3f97d6f76dc34094080d4f5e06ec788013a
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org

mathstuf pushed to dropbox-api-command (master). "more manpages"

2016-07-23 Thread notifications
From 2d5fa124a8a73ac42b402db5f9813e16c1a6a287 Mon Sep 17 00:00:00 2001
From: Ben Boeckel 
Date: Sat, 23 Jul 2016 23:42:23 -0400
Subject: more manpages

---
 dropbox-api-command.spec | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dropbox-api-command.spec b/dropbox-api-command.spec
index 980914b..7b2e626 100644
--- a/dropbox-api-command.spec
+++ b/dropbox-api-command.spec
@@ -52,6 +52,7 @@ A command line tool to manage a directory synced with Dropbox.
 %{_bindir}/upload-to-dropbox
 %{perl_vendorlib}/*
 %{_mandir}/man1/*.1*
+%{_mandir}/man3/*.3*
 
 
 %changelog
-- 
cgit v0.12



http://pkgs.fedoraproject.org/cgit/dropbox-api-command.git/commit/?h=master&id=2d5fa124a8a73ac42b402db5f9813e16c1a6a287
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://lists.fedoraproject.org/admin/lists/perl-devel@lists.fedoraproject.org