[perl-DBI/f18] (2 commits) ...1.623 bump

2013-01-22 Thread Petr Ĺ abata
Summary of changes:

  d0d3143... Disable Coro properly (*)
  9f50def... 1.623 bump (*)

(*) This commit already existed in another branch; no separate mail sent
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 893916] perl-DBD-CSV-0.38 is available

2013-01-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=893916

--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Clone-0.34-1.fc18,perl-DBI-1.623-1.fc18,perl-DBD-CSV-0.38-1.fc18 has been
submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/perl-Clone-0.34-1.fc18,perl-DBI-1.623-1.fc18,perl-DBD-CSV-0.38-1.fc18

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

[Bug 755903] Use of uninitialized value in string eq at .. FormFu/Constraint.pm line 107

2013-01-22 Thread bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=755903

Daniel Piddock dgp...@corefiling.co.uk changed:

   What|Removed |Added

  Flags|needinfo?(dgp-bz@corefiling |
   |.co.uk) |

--- Comment #4 from Daniel Piddock dgp...@corefiling.co.uk ---
The code is part of a Catalyst project. I've gone back to it and cannot
reproduce the warning messages using the current 0.09007-1.fc16 so I can't
figure out a smaller test case.

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

File ZMQ-LibZMQ3-1.08.tar.gz uploaded to lookaside cache by jpo

2013-01-22 Thread Jose Pedro Oliveira
A file has been added to the lookaside cache for perl-ZMQ-LibZMQ3:

387b58a73efb0cac913e191fa6d8fbaf  ZMQ-LibZMQ3-1.08.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ZMQ-LibZMQ3] * First Fedora build.

2013-01-22 Thread Jose Pedro Oliveira
commit aa1c16c29e27c3ca9b37600f435740abe641c692
Author: Jose Pedro Oliveira j...@di.uminho.pt
Date:   Tue Jan 22 16:09:31 2013 +

 * First Fedora build.

 .gitignore|1 +
 perl-ZMQ-LibZMQ3.spec |   89 +
 sources   |1 +
 3 files changed, 91 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..f523094 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ZMQ-LibZMQ3-1.08.tar.gz
diff --git a/perl-ZMQ-LibZMQ3.spec b/perl-ZMQ-LibZMQ3.spec
new file mode 100644
index 000..272c946
--- /dev/null
+++ b/perl-ZMQ-LibZMQ3.spec
@@ -0,0 +1,89 @@
+Name:   perl-ZMQ-LibZMQ3
+Version:1.08
+Release:2%{?dist}
+Summary:Perl wrapper for the libzmq 3.x library
+
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/ZMQ-LibZMQ3/
+Source0:
http://search.cpan.org/CPAN/authors/id/D/DM/DMAKI/ZMQ-LibZMQ3-%{version}.tar.gz
+
+BuildRequires:  perl(AnyEvent)
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Test::Fatal)
+BuildRequires:  perl(Test::More) = 0.98
+BuildRequires:  perl(Test::Requires)
+BuildRequires:  perl(Test::SharedFork)
+BuildRequires:  perl(Test::TCP) = 1.08
+BuildRequires:  perl(threads)
+BuildRequires:  perl(ZMQ::Constants)
+BuildRequires:  zeromq3-devel
+
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+
+%{?perl_default_filter}
+
+%description
+The ZMQ::LibZMQ3 module is a wrapper of the 0MQ message passing library for
+Perl. It's a thin wrapper around the C API. Please read http://zeromq.org
+for more details on 0MQ.
+
+
+%prep
+%setup -q -n ZMQ-LibZMQ3-%{version}
+
+%build
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+
+%files
+%doc Changes
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/ZMQ*
+%{_mandir}/man3/*.3*
+
+
+%changelog
+* Mon Jan 21 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.08-2
+- BR: perl(threads) (#868531).
+
+* Sat Jan 19 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.08-1
+- Update to version 1.08
+
+* Wed Jan 16 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.07-1
+- Update to version 1.07
+
+* Sun Jan 13 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.06-1
+- Update to version 1.06
+
+* Wed Jan  9 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.05-1
+- Update to version 1.05
+
+* Sat Jan  5 2013 Jose Pedro Oliveira jpo at di.uminho.pt - 1.03-1
+- Update to version 1.03
+
+* Fri Dec 28 2012 Jose Pedro Oliveira jpo at di.uminho.pt - 1.02-1
+- Update to version 1.02
+
+* Thu Dec 27 2012 Jose Pedro Oliveira jpo at di.uminho.pt - 1.01-2
+- Specfile corrections (based on the review of ZMQ::LibZMQ2)
+
+* Sat Oct 20 2012 Jose Pedro Oliveira jpo at di.uminho.pt - 1.01-1
+- First Fedora specfile
+
+# vim:set ai ts=4 sw=4 sts=4 et:
diff --git a/sources b/sources
index e69de29..e9a1ce6 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+387b58a73efb0cac913e191fa6d8fbaf  ZMQ-LibZMQ3-1.08.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Sysadm-Install] Created tag perl-Sysadm-Install-0.42-1.fc19

2013-01-22 Thread Paul Howarth
The lightweight tag 'perl-Sysadm-Install-0.42-1.fc19' was created pointing to:

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

[perl-Sub-Exporter-Progressive] Update to 0.001008

2013-01-22 Thread Paul Howarth
commit 2eb099ea57647e423d21840f96e70a3d1d35f90a
Author: Paul Howarth p...@city-fan.org
Date:   Tue Jan 22 20:09:01 2013 +

Update to 0.001008

- New upstream release 0.001008
  - Rewrite -tag to :tag for Exporter.pm
  - Fix prereqs
- Update old Test::More patch, and apply if we have Test::More  0.96
- Bump perl(Exporter) version requirement to 5.58

 ...orter-Progressive-0.001008-old-Test::More.patch |   42 ---
 perl-Sub-Exporter-Progressive.spec |   18 ++--
 sources|2 +-
 3 files changed, 40 insertions(+), 22 deletions(-)
---
diff --git a/Sub-Exporter-Progressive-0.001006-old-Test::More.patch 
b/Sub-Exporter-Progressive-0.001008-old-Test::More.patch
similarity index 69%
rename from Sub-Exporter-Progressive-0.001006-old-Test::More.patch
rename to Sub-Exporter-Progressive-0.001008-old-Test::More.patch
index 1b88196..5692b7e 100644
--- a/Sub-Exporter-Progressive-0.001006-old-Test::More.patch
+++ b/Sub-Exporter-Progressive-0.001008-old-Test::More.patch
@@ -1,13 +1,14 @@
 --- Makefile.PL
 +++ Makefile.PL
-@@ -10,6 +10,6 @@ WriteMakefile(
-   NAME = 'Sub-Exporter-Progressive',
-   VERSION_FROM = 'lib/Sub/Exporter/Progressive.pm',
-   $key = {
--  'Test::More' = 0.89,
-+  'Test::More' = 0.47,
-   }
+@@ -10,7 +10,7 @@ my %deps = (
+   },
  );
+ my $key = eval { ExtUtils::MakeMaker-VERSION(6.56) } ? 'BUILD_REQUIRES' : 
'PREREQ_PM' ;
+-$deps{$key}{'Test::More'} = '0.96';
++$deps{$key}{'Test::More'} = '0.47';
+ 
+ WriteMakefile(
+   NAME = 'Sub-Exporter-Progressive',
 --- t/all.t
 +++ t/all.t
 @@ -2,7 +2,7 @@
@@ -19,7 +20,7 @@
  use List::Util 'first';
  use lib 't/lib';
  use A::JunkAll;
-@@ -10,5 +10,3 @@ use A::JunkAll;
+@@ -18,5 +18,3 @@ use A::JunkAll ':all';
  ok(main-can('junk1'), 'sub exported');
  ok(main-can('junk2'), 'sub exported');
  ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded');
@@ -80,15 +81,24 @@
  use strict;
  use warnings;
  
--use Test::More 0.89;
-+use Test::More tests = 4;
+-use Test::More 0.96;
++use Test::More tests = 44;
  use List::Util 'first';
+ use Carp;
  use lib 't/lib';
- use A::Junk ':other';
-@@ -10,6 +10,3 @@ ok(!main-can('junk1'), 'junk1 not expor
- ok(!main-can('junk2'), 'junk2 not exported');
- ok(main-can('junk3'), 'junk3 exported');
- ok(! $INC{'Sub/Exporter.pm'}, 'Sub::Exporter not loaded');
--
+@@ -38,9 +38,7 @@ sub check_tag
+ {
+   my ($tag, $should, $shouldnt) = @_;
+   my $pkg = 'Local::Importer' . ++$i;
+-  subtest test the '$tag' tag = sub
+   {
+-  plan tests = 1 + @$should + @$shouldnt;
+   local $@ = undef;
+   
+   ok(eval qq{
+@@ -65,5 +63,3 @@ check_tag('-bb', [qw/bar baz/], [qw/foo/
+ check_tag(':all', [qw/foo bar baz/], []);
+ check_tag('-all', [qw/foo bar baz/], []);
+ 
 -done_testing;
 -
diff --git a/perl-Sub-Exporter-Progressive.spec 
b/perl-Sub-Exporter-Progressive.spec
index 6ea2d03..7119740 100644
--- a/perl-Sub-Exporter-Progressive.spec
+++ b/perl-Sub-Exporter-Progressive.spec
@@ -1,21 +1,22 @@
 # We need to patch the test suite if we have old versions of Test::More
-%global old_test_more %(perl -MTest::More -e 'print (($Test::More::VERSION  
0.88) ? 1 : 0);' 2/dev/null || echo 0)
+%global old_test_more %(perl -MTest::More -e 'print (($Test::More::VERSION  
0.96) ? 1 : 0);' 2/dev/null || echo 0)
 
 Name:  perl-Sub-Exporter-Progressive
-Version:   0.001006
+Version:   0.001008
 Release:   1%{?dist}
 Summary:   Only use Sub::Exporter if you need it
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Sub-Exporter-Progressive/
 Source0:   
http://search.cpan.org/CPAN/authors/id/L/LE/LEONT/Sub-Exporter-Progressive-%{version}.tar.gz
-Patch1:Sub-Exporter-Progressive-0.001006-old-Test::More.patch
+Patch1:Sub-Exporter-Progressive-0.001008-old-Test::More.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 # === Module Build ==
 BuildRequires: perl(ExtUtils::MakeMaker)
 # === Module Runtime 
-BuildRequires: perl(Exporter)
+BuildRequires: perl(Carp)
+BuildRequires: perl(Exporter) = 5.58
 BuildRequires: perl(List::Util)
 BuildRequires: perl(Sub::Exporter)
 # === Test Suite 
@@ -23,7 +24,7 @@ BuildRequires:perl(lib)
 BuildRequires: perl(Test::More)
 # === Module Runtime 
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
-Requires:  perl(Exporter)
+Requires:  perl(Exporter) = 5.58
 Requires:  perl(Sub::Exporter)
 
 %description
@@ -69,6 +70,13 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Sub::Exporter::Progressive.3pm*
 
 %changelog
+* Tue Jan 22 2013 Paul Howarth p...@city-fan.org - 0.001008-1
+- Update to 0.001008
+  - 

[perl-Sub-Exporter-Progressive] Created tag perl-Sub-Exporter-Progressive-0.001008-1.fc19

2013-01-22 Thread Paul Howarth
The lightweight tag 'perl-Sub-Exporter-Progressive-0.001008-1.fc19' was created 
pointing to:

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

[perl-ClamAV-Client] (7 commits) ...Upload the sources

2013-01-22 Thread Mathieu Bridon
Summary of changes:

  5a4563c... Initial setup of the pre-review repo
  ab3a777... Initial package for Fedora
  6702df3... Don't use the %{__perl} macro
  eedf434... Add two missing requirements
  6c7399c... New submission for Fedora
  efbc943... The package was approved in Fedora
  df4e8ed... Upload the sources
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 1/7] Initial setup of the pre-review repo

2013-01-22 Thread Mathieu Bridon
commit 5a4563c3f94b1e8d67efa8cbee987dbe6c995b50
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Tue Jan 15 16:36:35 2013 +0800

Initial setup of the pre-review repo

 0 files changed, 0 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..e69de29
diff --git a/sources b/sources
new file mode 100644
index 000..e69de29
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 2/7] Initial package for Fedora

2013-01-22 Thread Mathieu Bridon
commit ab3a77758c925c6085a1b7728b243566816afa42
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Wed Jan 16 12:01:31 2013 +0800

Initial package for Fedora

This was submitted for review on Tue Jan 15 2013:
https://bugzilla.redhat.com/show_bug.cgi?id=895480#c0

 perl-ClamAV-Client.spec |   51 +++
 1 files changed, 51 insertions(+), 0 deletions(-)
---
diff --git a/perl-ClamAV-Client.spec b/perl-ClamAV-Client.spec
new file mode 100644
index 000..ddada5b
--- /dev/null
+++ b/perl-ClamAV-Client.spec
@@ -0,0 +1,51 @@
+Name:   perl-ClamAV-Client
+Summary:Client class for the ClamAV clamd virus scanner daemon
+Version:0.11
+Release:1%{?dist}
+License:GPL+ or Artistic
+URL:http://search.cpan.org/dist/ClamAV-Client/
+Source0:
http://www.cpan.org/authors/id/J/JM/JMEHNLE/clamav-client/ClamAV-Client-%{version}.tar.gz
+
+BuildArch:  noarch
+
+BuildRequires:  perl(Module::Build)
+
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%{?perl_default_filter}
+
+%description
+ClamAV::Client is a class acting as a client for a ClamAV clamd virus
+scanner daemon. The daemon may run locally or on a remote system as
+ClamAV::Client can use both Unix domain sockets and TCP/IP sockets. The
+full functionality of the clamd client/server protocol is supported.
+
+
+%prep
+%setup -q -n ClamAV-Client-%{version}
+
+
+%build
+%{__perl} Build.PL installdirs=vendor
+./Build
+
+
+%install
+./Build install destdir=%{buildroot} create_packlist=0
+
+%{_fixperms} %{buildroot}/*
+
+
+%check
+./Build test
+
+
+%files
+%doc CHANGES README
+%{_mandir}/man3/ClamAV*
+%{perl_vendorlib}/ClamAV
+
+
+%changelog
+* Tue Jan 15 2013 Mathieu Bridon boche...@fedoraproject.org - 0.11-1
+- Initial package for Fedora, with help from cpanspec.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 3/7] Don't use the %{__perl} macro

2013-01-22 Thread Mathieu Bridon
commit 6702df363b6bc6cf0c1ba39461bd688c9c641063
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Tue Jan 22 11:35:41 2013 +0800

Don't use the %{__perl} macro

This was suggested by Petr during the review.

 perl-ClamAV-Client.spec |6 --
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/perl-ClamAV-Client.spec b/perl-ClamAV-Client.spec
index ddada5b..9472124 100644
--- a/perl-ClamAV-Client.spec
+++ b/perl-ClamAV-Client.spec
@@ -10,7 +10,7 @@ BuildArch:  noarch
 
 BuildRequires:  perl(Module::Build)
 
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %{?perl_default_filter}
 
@@ -26,7 +26,7 @@ full functionality of the clamd client/server protocol is 
supported.
 
 
 %build
-%{__perl} Build.PL installdirs=vendor
+perl Build.PL installdirs=vendor
 ./Build
 
 
@@ -47,5 +47,7 @@ full functionality of the clamd client/server protocol is 
supported.
 
 
 %changelog
+- Replace usage of the %%{__perl} macro by the plain perl command.
+
 * Tue Jan 15 2013 Mathieu Bridon boche...@fedoraproject.org - 0.11-1
 - Initial package for Fedora, with help from cpanspec.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 4/7] Add two missing requirements

2013-01-22 Thread Mathieu Bridon
commit eedf43498f5233299e9bfd237c9656e89045
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Tue Jan 22 11:36:09 2013 +0800

Add two missing requirements

These were caught by Petr during the review.

 perl-ClamAV-Client.spec |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/perl-ClamAV-Client.spec b/perl-ClamAV-Client.spec
index 9472124..7bcca09 100644
--- a/perl-ClamAV-Client.spec
+++ b/perl-ClamAV-Client.spec
@@ -12,6 +12,10 @@ BuildRequires:  perl(Module::Build)
 
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
+# These are not found by rpmbuild
+Requires:   perl(IO::Socket::INET)
+Requires:   perl(IO::Socket::UNIX)
+
 %{?perl_default_filter}
 
 %description
@@ -48,6 +52,7 @@ perl Build.PL installdirs=vendor
 
 %changelog
 - Replace usage of the %%{__perl} macro by the plain perl command.
+- Add two run-time requirements missed by rpmbuild.
 
 * Tue Jan 15 2013 Mathieu Bridon boche...@fedoraproject.org - 0.11-1
 - Initial package for Fedora, with help from cpanspec.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 5/7] New submission for Fedora

2013-01-22 Thread Mathieu Bridon
commit 6c7399c7f719a0639b74de3e9ceb857672ee4449
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Tue Jan 22 11:50:51 2013 +0800

New submission for Fedora

This was submitted on Tue Jan 22:
https://bugzilla.redhat.com/show_bug.cgi?id=895480#c2

 perl-ClamAV-Client.spec |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/perl-ClamAV-Client.spec b/perl-ClamAV-Client.spec
index 7bcca09..3acecb6 100644
--- a/perl-ClamAV-Client.spec
+++ b/perl-ClamAV-Client.spec
@@ -1,7 +1,7 @@
 Name:   perl-ClamAV-Client
 Summary:Client class for the ClamAV clamd virus scanner daemon
 Version:0.11
-Release:1%{?dist}
+Release:2%{?dist}
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/ClamAV-Client/
 Source0:
http://www.cpan.org/authors/id/J/JM/JMEHNLE/clamav-client/ClamAV-Client-%{version}.tar.gz
@@ -51,6 +51,7 @@ perl Build.PL installdirs=vendor
 
 
 %changelog
+* Tue Jan 22 2013 Mathieu Bridon boche...@fedoraproject.org - 0.11-2
 - Replace usage of the %%{__perl} macro by the plain perl command.
 - Add two run-time requirements missed by rpmbuild.
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 7/7] Upload the sources

2013-01-22 Thread Mathieu Bridon
commit df4e8ed0cb37f48c015da228ffaba45e239ff1be
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Wed Jan 23 12:16:44 2013 +0800

Upload the sources

 .gitignore |1 +
 sources|1 +
 2 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..0925cee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ClamAV-Client-0.11.tar.gz
diff --git a/sources b/sources
index e69de29..474ce1d 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+6e32cf376af67bcbd5d3018b7823d86f  ClamAV-Client-0.11.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-ClamAV-Client: 6/7] The package was approved in Fedora

2013-01-22 Thread Mathieu Bridon
commit efbc9439a40c3810628e2d0b11864ce1fd128b9b
Merge: fba5557 6c7399c
Author: Mathieu Bridon boche...@fedoraproject.org
Date:   Wed Jan 23 12:16:05 2013 +0800

The package was approved in Fedora

 perl-ClamAV-Client.spec |   59 +++
 1 files changed, 59 insertions(+), 0 deletions(-)
---
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel