[rpms/perl-PDL] PR #1: Fix broken deps since 2.20

2020-04-03 Thread Lubomir Rintel

lkundrak commented on the pull-request: `Fix broken deps since 2.20` that you 
are following:
``
> Thanks! Please also rebuild for f32.

Done. Update here: 
https://bodhi.fedoraproject.org/updates/FEDORA-2020-4ef63016d5

Thank you for the pull request!

Lubo
``

To reply, visit the link below
https://src.fedoraproject.org/rpms/perl-PDL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[rpms/perl-PDL] PR #1: Fix broken deps since 2.20

2020-04-02 Thread Lubomir Rintel

lkundrak merged a pull-request against the project: `perl-PDL` that you are 
following.

Merged pull-request:

``
Fix broken deps since 2.20
``

https://src.fedoraproject.org/rpms/perl-PDL/pull-request/1
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org


[perl/f22] Add text sources to git

2015-03-20 Thread Lubomir Rintel
commit d03d42eb4916f84f92860426d5881e3d25a07df1
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Mar 19 19:05:44 2015 +0100

Add text sources to git

They should be version-controlled -- look-aside is only for upstream
distribution files.

 .gitignore |  4 
 filter-requires.sh | 15 +++
 perl-example.stp   | 21 +
 perl.stp   | 39 +++
 sources|  4 
 5 files changed, 75 insertions(+), 8 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 500eb21..f785fe8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,6 @@
 perl-5.12.1.tar.gz
-perl-5.8.0-libdir64.patch
-filter-requires.sh
 /perl-5.12.2.tar.gz
 /perl-5.12.3.tar.gz
-/perl.stp
-/perl-example.stp
 /perl-5.14.0-RC2.tar.bz2
 /perl-5.14.0.tar.bz2
 /perl-5.14.0.tar.gz
diff --git a/filter-requires.sh b/filter-requires.sh
new file mode 100644
index 000..72a402a
--- /dev/null
+++ b/filter-requires.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# The original script name has been passed as the first argument:
+$@ |
+  awk '
+   $0 != perl(FCGI) 
+   $0 != perl(Your::Module::Here) 
+   $0 != perl(Tk) 
+   $0 !~ /^perl\(Tk::/ 
+   $0 !~ /^perl\(Mac::/
+  '
+
+# We used to filter also these:
+#  NDBM perl(v5.6.0) perl(Tie::RangeHash)
+# but they don't seem to be present anymore.
diff --git a/perl-example.stp b/perl-example.stp
new file mode 100644
index 000..040f8e3
--- /dev/null
+++ b/perl-example.stp
@@ -0,0 +1,21 @@
+/*
+Example of the perl systemtap tapset shows a nested view of perl subroutine
+calls and returns across the whole system.
+
+To run:
+stap perl-example.stp (for all perl processes)
+For specific perl process:
+stap perl-example.stp -c COMMAND
+*/
+
+probe perl.sub.call
+{
+printf(%s = sub: %s, filename: %s, line: %d, package: %s\n,
+thread_indent(1), sub, filename, lineno, package)
+}
+
+probe perl.sub.return
+{
+printf(%s = sub: %s, filename: %s, line: %d, package: %s\n,
+thread_indent(-1), sub, filename, lineno, package)
+}
diff --git a/perl.stp b/perl.stp
new file mode 100644
index 000..ccc203b
--- /dev/null
+++ b/perl.stp
@@ -0,0 +1,39 @@
+/*
+   This probe will fire when the perl script enters a subroutine.
+ */
+
+probe perl.sub.call = process(LIBRARY_PATH).mark(sub__entry)
+{
+
+  sub = user_string($arg1)
+  filename = user_string($arg2)
+  lineno = $arg3
+  package = user_string($arg4)
+
+}
+
+/* 
+   This probe will fire when the return from a subroutine has been 
+   hit.  
+ */
+
+probe perl.sub.return = process(LIBRARY_PATH).mark(sub__return)
+{
+
+  sub = user_string($arg1)
+  filename = user_string($arg2)
+  lineno = $arg3
+  package = user_string($arg4)
+
+}
+
+/* 
+   This probe will fire when the Perl interperter changes state.
+ */
+
+probe perl.phase.change = process(LIBRARY_PATH).mark(phase__change)
+{
+  newphase = user_string($arg1)
+  oldphase = user_string($arg2)
+  
+}
diff --git a/sources b/sources
index c0557ea..319bbae 100644
--- a/sources
+++ b/sources
@@ -1,5 +1 @@
-aceea3db13a159cd5f7e5f2e3ad9534f  perl-5.8.0-libdir64.patch
-ad5d07285d6e4914384b43c9abc2bdba  filter-requires.sh
-93b780a770906408a34b1c511e333a12  perl.stp
-735480c6749c2aa86faa8311fe651142  perl-example.stp
 21062666f1c627aeb6dbff3c6952738b  perl-5.20.2.tar.bz2
--
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] Add systemtap probes for new DTrace markers

2015-03-20 Thread Lubomir Rintel
commit 6f6f8fdb06c3b1c54a3c25e0ac5fb47945be3e94
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Mar 19 19:07:02 2015 +0100

Add systemtap probes for new DTrace markers

 perl.spec |  5 -
 perl.stp  | 42 +-
 2 files changed, 41 insertions(+), 6 deletions(-)
---
diff --git a/perl.spec b/perl.spec
index d278664..bca43e8 100644
--- a/perl.spec
+++ b/perl.spec
@@ -30,7 +30,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:323%{?dist}
+Release:324%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -3841,6 +3841,9 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Thu Mar 19 2015 Lubomir Rintel lkund...@v3.sk - 4:5.20.2-324
+- Add systemtap probes for new dtrace markers
+
 * Mon Mar 16 2015 Petr Pisar ppi...@redhat.com - 4:5.20.2-323
 - Move perl(:MODULE_COMPAT_*) symbol and include directories to perl-libs
   package (bug #1174951)
diff --git a/perl.stp b/perl.stp
index ccc203b..dbc51a8 100644
--- a/perl.stp
+++ b/perl.stp
@@ -12,9 +12,9 @@ probe perl.sub.call = 
process(LIBRARY_PATH).mark(sub__entry)
 
 }
 
-/* 
-   This probe will fire when the return from a subroutine has been 
-   hit.  
+/*
+   This probe will fire when the return from a subroutine has been
+   hit.
  */
 
 probe perl.sub.return = process(LIBRARY_PATH).mark(sub__return)
@@ -27,7 +27,7 @@ probe perl.sub.return = 
process(LIBRARY_PATH).mark(sub__return)
 
 }
 
-/* 
+/*
This probe will fire when the Perl interperter changes state.
  */
 
@@ -35,5 +35,37 @@ probe perl.phase.change = 
process(LIBRARY_PATH).mark(phase__change)
 {
   newphase = user_string($arg1)
   oldphase = user_string($arg2)
-  
+
+}
+
+
+/*
+   Fires when Perl has successfully loaded an individual file.
+ */
+
+probe perl.loaded.file = process(LIBRARY_PATH).mark(loaded__file)
+{
+  filename = user_string($arg1)
+
+}
+
+
+/*
+   Fires when Perl is about to load an individual file.
+ */
+
+probe perl.loading.file = process(LIBRARY_PATH).mark(loading__file)
+{
+  filename = user_string($arg1)
+
+}
+
+
+/*
+   Traces the execution of each opcode in the Perl runloop.
+ */
+
+probe perl.op.entry = process(LIBRARY_PATH).mark(op__entry)
+{
+  opname = user_string($arg1)
 }
--
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] Add text sources to git

2015-03-20 Thread Lubomir Rintel
commit c3a2e91651180e3c744eaa40438d817982770bb9
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Mar 19 19:05:44 2015 +0100

Add text sources to git

They should be version-controlled -- look-aside is only for upstream
distribution files.

 .gitignore |  4 
 filter-requires.sh | 15 +++
 perl-example.stp   | 21 +
 perl.stp   | 39 +++
 sources|  4 
 5 files changed, 75 insertions(+), 8 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 500eb21..f785fe8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,10 +1,6 @@
 perl-5.12.1.tar.gz
-perl-5.8.0-libdir64.patch
-filter-requires.sh
 /perl-5.12.2.tar.gz
 /perl-5.12.3.tar.gz
-/perl.stp
-/perl-example.stp
 /perl-5.14.0-RC2.tar.bz2
 /perl-5.14.0.tar.bz2
 /perl-5.14.0.tar.gz
diff --git a/filter-requires.sh b/filter-requires.sh
new file mode 100644
index 000..72a402a
--- /dev/null
+++ b/filter-requires.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+# The original script name has been passed as the first argument:
+$@ |
+  awk '
+   $0 != perl(FCGI) 
+   $0 != perl(Your::Module::Here) 
+   $0 != perl(Tk) 
+   $0 !~ /^perl\(Tk::/ 
+   $0 !~ /^perl\(Mac::/
+  '
+
+# We used to filter also these:
+#  NDBM perl(v5.6.0) perl(Tie::RangeHash)
+# but they don't seem to be present anymore.
diff --git a/perl-example.stp b/perl-example.stp
new file mode 100644
index 000..040f8e3
--- /dev/null
+++ b/perl-example.stp
@@ -0,0 +1,21 @@
+/*
+Example of the perl systemtap tapset shows a nested view of perl subroutine
+calls and returns across the whole system.
+
+To run:
+stap perl-example.stp (for all perl processes)
+For specific perl process:
+stap perl-example.stp -c COMMAND
+*/
+
+probe perl.sub.call
+{
+printf(%s = sub: %s, filename: %s, line: %d, package: %s\n,
+thread_indent(1), sub, filename, lineno, package)
+}
+
+probe perl.sub.return
+{
+printf(%s = sub: %s, filename: %s, line: %d, package: %s\n,
+thread_indent(-1), sub, filename, lineno, package)
+}
diff --git a/perl.stp b/perl.stp
new file mode 100644
index 000..ccc203b
--- /dev/null
+++ b/perl.stp
@@ -0,0 +1,39 @@
+/*
+   This probe will fire when the perl script enters a subroutine.
+ */
+
+probe perl.sub.call = process(LIBRARY_PATH).mark(sub__entry)
+{
+
+  sub = user_string($arg1)
+  filename = user_string($arg2)
+  lineno = $arg3
+  package = user_string($arg4)
+
+}
+
+/* 
+   This probe will fire when the return from a subroutine has been 
+   hit.  
+ */
+
+probe perl.sub.return = process(LIBRARY_PATH).mark(sub__return)
+{
+
+  sub = user_string($arg1)
+  filename = user_string($arg2)
+  lineno = $arg3
+  package = user_string($arg4)
+
+}
+
+/* 
+   This probe will fire when the Perl interperter changes state.
+ */
+
+probe perl.phase.change = process(LIBRARY_PATH).mark(phase__change)
+{
+  newphase = user_string($arg1)
+  oldphase = user_string($arg2)
+  
+}
diff --git a/sources b/sources
index c0557ea..319bbae 100644
--- a/sources
+++ b/sources
@@ -1,5 +1 @@
-aceea3db13a159cd5f7e5f2e3ad9534f  perl-5.8.0-libdir64.patch
-ad5d07285d6e4914384b43c9abc2bdba  filter-requires.sh
-93b780a770906408a34b1c511e333a12  perl.stp
-735480c6749c2aa86faa8311fe651142  perl-example.stp
 21062666f1c627aeb6dbff3c6952738b  perl-5.20.2.tar.bz2
--
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/f22] Add systemtap probes for new DTrace markers

2015-03-20 Thread Lubomir Rintel
commit 1c66a9d90bc0c95504a1b634222ddd2f85246fc2
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Mar 19 19:07:02 2015 +0100

Add systemtap probes for new DTrace markers

 perl.spec |  5 -
 perl.stp  | 42 +-
 2 files changed, 41 insertions(+), 6 deletions(-)
---
diff --git a/perl.spec b/perl.spec
index ef61a78..52540f0 100644
--- a/perl.spec
+++ b/perl.spec
@@ -30,7 +30,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:321%{?dist}
+Release:322%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -3831,6 +3831,9 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Thu Mar 19 2015 Lubomir Rintel lkund...@v3.sk - 4:5.20.2-322
+- Add systemtap probes for new dtrace markers
+
 * Wed Feb 18 2015 Jitka Plesnikova jples...@redhat.com - 4:5.20.2-321
 - Provide 5.20.2 MODULE_COMPAT
 - Clean list of provided files
diff --git a/perl.stp b/perl.stp
index ccc203b..dbc51a8 100644
--- a/perl.stp
+++ b/perl.stp
@@ -12,9 +12,9 @@ probe perl.sub.call = 
process(LIBRARY_PATH).mark(sub__entry)
 
 }
 
-/* 
-   This probe will fire when the return from a subroutine has been 
-   hit.  
+/*
+   This probe will fire when the return from a subroutine has been
+   hit.
  */
 
 probe perl.sub.return = process(LIBRARY_PATH).mark(sub__return)
@@ -27,7 +27,7 @@ probe perl.sub.return = 
process(LIBRARY_PATH).mark(sub__return)
 
 }
 
-/* 
+/*
This probe will fire when the Perl interperter changes state.
  */
 
@@ -35,5 +35,37 @@ probe perl.phase.change = 
process(LIBRARY_PATH).mark(phase__change)
 {
   newphase = user_string($arg1)
   oldphase = user_string($arg2)
-  
+
+}
+
+
+/*
+   Fires when Perl has successfully loaded an individual file.
+ */
+
+probe perl.loaded.file = process(LIBRARY_PATH).mark(loaded__file)
+{
+  filename = user_string($arg1)
+
+}
+
+
+/*
+   Fires when Perl is about to load an individual file.
+ */
+
+probe perl.loading.file = process(LIBRARY_PATH).mark(loading__file)
+{
+  filename = user_string($arg1)
+
+}
+
+
+/*
+   Traces the execution of each opcode in the Perl runloop.
+ */
+
+probe perl.op.entry = process(LIBRARY_PATH).mark(op__entry)
+{
+  opname = user_string($arg1)
 }
--
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-Database-DumpTruck/f20] Initial import

2015-02-06 Thread Lubomir Rintel
Summary of changes:

  37b3be1... Initial import (*)

(*) 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

File Database-DumpTruck-1.2.tar.gz uploaded to lookaside cache by lkundrak

2015-02-06 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-Database-DumpTruck:

7f61106f23400fc2b142e0cdeeb665a6  Database-DumpTruck-1.2.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-Database-DumpTruck] Initial import

2015-02-06 Thread Lubomir Rintel
commit 37b3be19f56dbf664124976df814c73d20a9f859
Author: Lubomir Rintel lkund...@v3.sk
Date:   Fri Feb 6 12:45:42 2015 +0100

Initial import

 .gitignore   |1 +
 perl-Database-DumpTruck.spec |   55 ++
 sources  |1 +
 3 files changed, 57 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8365c56 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Database-DumpTruck-1.2.tar.gz
diff --git a/perl-Database-DumpTruck.spec b/perl-Database-DumpTruck.spec
new file mode 100644
index 000..0271215
--- /dev/null
+++ b/perl-Database-DumpTruck.spec
@@ -0,0 +1,55 @@
+Name:   perl-Database-DumpTruck
+Version:1.2
+Release:1%{?dist}
+Summary:Relaxing interface to SQLite
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Database-DumpTruck/
+Source0:
http://www.cpan.org/authors/id/L/LK/LKUNDRAK/Database-DumpTruck-%{version}.tar.gz
+BuildArch:  noarch
+BuildRequires:  perl(DBD::SQLite)
+BuildRequires:  perl(DBI)
+BuildRequires:  perl(File::Temp)
+BuildRequires:  perl(JSON)
+BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Test::Exception)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Test::Pod) = 1.00
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%description
+This is a simple document-oriented interface to a SQLite database, modelled
+after Scraperwiki's Python dumptruck module. It allows for easy (and maybe
+inefficient) storage and retrieval of structured data to and from a
+database without interfacing with SQL.
+
+
+%prep
+%setup -q -n Database-DumpTruck-%{version}
+
+
+%build
+%{__perl} Build.PL installdirs=vendor
+./Build
+
+
+%install
+./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+
+%check
+./Build test
+
+
+%files
+%doc META.json
+%{perl_vendorlib}/*
+%{_mandir}/man3/*
+
+
+%changelog
+* Fri Jul 25 2014 Lubomir Rintel lkund...@v3.sk 1.2-1
+- Specfile autogenerated by cpanspec 1.78.
diff --git a/sources b/sources
index e69de29..2165951 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+7f61106f23400fc2b142e0cdeeb665a6  Database-DumpTruck-1.2.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-Database-DumpTruck/f21] Initial import

2015-02-06 Thread Lubomir Rintel
Summary of changes:

  37b3be1... Initial import (*)

(*) 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

[perl-Database-DumpTruck/epel7] Initial import

2015-02-06 Thread Lubomir Rintel
Summary of changes:

  37b3be1... Initial import (*)

(*) 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

[perl-Net-Server/el6] (16 commits) ...Merge remote-tracking branch 'origin/epel7' into el6

2014-10-27 Thread Lubomir Rintel
Summary of changes:

  6dd197f... Fix typo that causes a failure to update the common directo (*)
  7462b00... - rebuild against perl 5.10.1 (*)
  9fb5830... - Mass rebuild with perl-5.12.0 (*)
  1a42386... dist-git conversion (*)
  b8afb7c... - 661697 rebuild for fixing problems with vendorach/lib (*)
  ca2b2c5... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  b5f256b... Perl mass rebuild (*)
  67ecda9... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass (*)
  b6104a0... Perl 5.16 rebuild (*)
  d87629a... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  40b8310... Update to 2.006 upstream release (*)
  97ecbd4... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  62fc66a... Perl 5.18 rebuild (*)
  dfda0c2... Update to 2.007 (*)
  6aa153a... Perl 5.18 rebuild (*)
  a594271... Merge remote-tracking branch 'origin/epel7' into el6

(*) 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

[perl-Net-Server/el6: 16/16] Merge remote-tracking branch 'origin/epel7' into el6

2014-10-27 Thread Lubomir Rintel
commit a5942714dc603ac3f3aa76ebc9b2b3f8c785439d
Merge: f88e0dd 6aa153a
Author: Lubomir Rintel lkund...@v3.sk
Date:   Mon Oct 27 18:56:50 2014 +0100

Merge remote-tracking branch 'origin/epel7' into el6

Conflicts:
.gitignore

 .gitignore |2 +-
 Net-Server-2.007-cert-verify.patch |   24 +++
 perl-Net-Server.spec   |  135 +++-
 sources|2 +-
 4 files changed, 113 insertions(+), 50 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

[perl-Email-Abstract/epel7] Do not BR packages that are not present in el7

2014-03-07 Thread Lubomir Rintel
commit 6154c8d5bf3654510f44dce7f86edc87113acab5
Author: Lubomir Rintel lkund...@v3.sk
Date:   Fri Mar 7 15:02:58 2014 +0100

Do not BR packages that are not present in el7

 perl-Email-Abstract.spec |   10 --
 1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/perl-Email-Abstract.spec b/perl-Email-Abstract.spec
index ee6f5cd..ad6336d 100644
--- a/perl-Email-Abstract.spec
+++ b/perl-Email-Abstract.spec
@@ -1,6 +1,6 @@
 Name:   perl-Email-Abstract
 Version:3.007
-Release:1%{?dist}
+Release:1%{?dist}.1
 Summary:Unified interface to mail representations
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -17,8 +17,11 @@ BuildRequires:  perl(Test::More) = 0.96
 BuildRequires:  perl(lib)
 BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
-BuildRequires:  perl(Mail::Message), perl(Scalar::Util)
+BuildRequires:  perl(Scalar::Util)
+%if 0%{?rhel} == 0
+BuildRequires:  perl(Mail::Message)
 BuildRequires:  perl(Email::MIME)
+%endif
 BuildArch:  noarch
 
 Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
@@ -55,6 +58,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri Mar 07 2014 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com - 
3.007-1.1
+- Do not BR packages that are not present in el7
+
 * Wed Jan 08 2014 Ralf Corsépius corse...@fedoraproject.org - 3.007-1
 - Upstream update (RHBZ #1049728).
 - Reflect upstream BR:-changes.
--
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 LockFile-Simple-0.208.tar.gz uploaded to lookaside cache by lkundrak

2014-02-21 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-LockFile-Simple:

4421283b4f32549e5299963734170044  LockFile-Simple-0.208.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-LockFile-Simple] Update to 0.208

2014-02-21 Thread Lubomir Rintel
commit b498fd43b74d254f69a2275a5390cfc03db9e102
Author: Lubomir Rintel lkund...@v3.sk
Date:   Fri Feb 21 14:21:29 2014 +0100

Update to 0.208

Fixes a deprecation warning:

defined(@array) is deprecated at 
/usr/share/perl5/vendor_perl/LockFile/Simple.pm line 135.
(Maybe you should just omit the defined()?)
defined(@array) is deprecated at 
/usr/share/perl5/vendor_perl/LockFile/Simple.pm line 136.
(Maybe you should just omit the defined()?)

 .gitignore|1 +
 perl-LockFile-Simple.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c5f08dd..84a868a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 LockFile-Simple-0.207.tar.gz
+/LockFile-Simple-0.208.tar.gz
diff --git a/perl-LockFile-Simple.spec b/perl-LockFile-Simple.spec
index c0f0477..783cb88 100644
--- a/perl-LockFile-Simple.spec
+++ b/perl-LockFile-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-LockFile-Simple
-Version:0.207
-Release:13%{?dist}
+Version:0.208
+Release:1%{?dist}
 Summary:Simple file locking scheme
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Fri Feb 21 2014 Lubomir Rintel lkund...@v3.sk - 0.208-1
+- Update to a newer release to cure a deprecation warning
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.207-13
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index 9a47e93..ac632bb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-194573bdf3f1823723959b25f0a322d0  LockFile-Simple-0.207.tar.gz
+4421283b4f32549e5299963734170044  LockFile-Simple-0.208.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-LockFile-Simple/epel7] (3 commits) ...Update to 0.208

2014-02-21 Thread Lubomir Rintel
Summary of changes:

  db46115... Perl 5.18 rebuild (*)
  cb856f5... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  b498fd4... Update to 0.208 (*)

(*) 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

[perl-Log-Log4perl/epel7] (5 commits) ...- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

2014-02-03 Thread Lubomir Rintel
Summary of changes:

  f85fb69... 1.41 bump (*)
  47ea98e... Perl 5.18 rebuild (*)
  f8e57fe... Do not perform shared-memory tests (*)
  03d65fe... 1.42 bump (*)
  93eda58... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)

(*) 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

[perl-PDL/epel7] Fix epel7 build

2014-02-03 Thread Lubomir Rintel
commit 76bde8ab5768d2446bee6fbbbc2c49d8506d1c5c
Author: Lubomir Rintel lkund...@v3.sk
Date:   Mon Feb 3 18:11:28 2014 +0100

Fix epel7 build

 perl-PDL.spec |   13 -
 1 files changed, 12 insertions(+), 1 deletions(-)
---
diff --git a/perl-PDL.spec b/perl-PDL.spec
index a6fe5e8..48a1495 100644
--- a/perl-PDL.spec
+++ b/perl-PDL.spec
@@ -11,7 +11,7 @@
 Name:   perl-PDL
 %global cpan_version 2.007
 Version:2.7.0
-Release:2%{?dist}
+Release:2%{?dist}.1
 Summary:The Perl Data Language
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -67,14 +67,18 @@ BuildRequires:  perl(fields)
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Copy)
 BuildRequires:  perl(FileHandle)
+%if 0%{rhel}  7
 BuildRequires:  perl(File::Map) = 0.57
+%endif
 BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(Filter::Simple) = 0.88
 BuildRequires:  perl(Filter::Util::Call)
 BuildRequires:  perl(Inline) = 0.43
 BuildRequires:  perl(List::MoreUtils)
 BuildRequires:  perl(List::Util)
+%if 0%{rhel}  7
 BuildRequires:  perl(Module::Compile) = 0.23
+%endif
 BuildRequires:  perl(Moose)
 BuildRequires:  perl(namespace::clean)
 BuildRequires:  perl(overload)
@@ -104,11 +108,15 @@ BuildRequires:  proj-nad
 # BuildRequires:  ncurses-devel
 BuildRequires:  sharutils
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+%if 0%{rhel}  7
 Requires:   perl(File::Map) = 0.57
+%endif
 Requires:   perl(File::Spec) = 0.6
 Requires:   perl(Filter::Simple) = 0.88
 Requires:   perl(Inline) = 0.43
+%if 0%{rhel}  7
 Requires:   perl(Module::Compile) = 0.23
+%endif
 Requires:   perl(OpenGL) = 0.6702
 Requires:   perl(Text::Balanced) = 1.89
 Provides:   perl(PDL::Config)
@@ -190,6 +198,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Feb 03 2014 Lubomir Rintel lkund...@v3.sk - 2.7.0-2.1
+- Fix epel7 build
+
 * Mon Dec 16 2013 Petr Pisar ppi...@redhat.com - 2.7.0-2
 - Disable Slatec on PPC64 (bug #1041304)
 
--
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 Data-Dump-Streamer-2.36.tar.gz uploaded to lookaside cache by lkundrak

2014-01-29 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-Data-Dump-Streamer:

7743bc698d1e0eb1caba849d3e0fae2c  Data-Dump-Streamer-2.36.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-Data-Dump-Streamer/epel7: 4/5] update to latest upstream version

2014-01-29 Thread Lubomir Rintel
commit aa1281d166f2e4421687c78adfa8745235329d96
Author: Lubomir Rintel lkund...@v3.sk
Date:   Wed Jan 29 11:31:21 2014 +0100

update to latest upstream version

 .gitignore   |1 +
 Data-Dump-Streamer-2.34-regex_dump.patch |   84 --
 perl-Data-Dump-Streamer.spec |   10 ++--
 sources  |2 +-
 4 files changed, 7 insertions(+), 90 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 834ec15..f2bfcb8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ Data-Dump-Streamer-2.22.tar.gz
 /Data-Dump-Streamer-2.32.tar.gz
 /Data-Dump-Streamer-2.33.tar.gz
 /Data-Dump-Streamer-2.34.tar.gz
+/Data-Dump-Streamer-2.36.tar.gz
diff --git a/perl-Data-Dump-Streamer.spec b/perl-Data-Dump-Streamer.spec
index 1a75ea3..9d28b51 100644
--- a/perl-Data-Dump-Streamer.spec
+++ b/perl-Data-Dump-Streamer.spec
@@ -1,13 +1,11 @@
 Name:   perl-Data-Dump-Streamer
-Version:2.34
-Release:6%{?dist}
+Version:2.36
+Release:1%{?dist}
 Summary:Accurately serialize a data structure as Perl code
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Data-Dump-Streamer/
 Source0:
http://search.cpan.org/CPAN/authors/id/Y/YV/YVES/Data-Dump-Streamer-%{version}.tar.gz
-# Perl 5.18 compatibility, CPAN RT#82958
-Patch0: Data-Dump-Streamer-2.34-regex_dump.patch
 BuildRequires:  perl(Algorithm::Diff)
 BuildRequires:  perl(B::Utils)
 BuildRequires:  perl(Compress::Zlib)
@@ -38,7 +36,6 @@ output correctly.
 
 %prep
 %setup -q -n Data-Dump-Streamer-%{version}
-%patch0 -p1
 find . -type f | xargs chmod -x
 
 %build
@@ -62,6 +59,9 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jan 29 2014 Lubomir Rintel lkund...@v3.sk 2.36-1
+- update to latest upstream version
+
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.34-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
diff --git a/sources b/sources
index 11e7a65..2586ea5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-44f90e6abbfadd773686229fec56e042  Data-Dump-Streamer-2.34.tar.gz
+7743bc698d1e0eb1caba849d3e0fae2c  Data-Dump-Streamer-2.36.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-Data-Dump-Streamer/epel7: 5/5] Fix build with JSON::XS = 3

2014-01-29 Thread Lubomir Rintel
commit 3c3de5dd6ffe512bc052f6c23aae20937fd58b8c
Author: Lubomir Rintel lkund...@v3.sk
Date:   Wed Jan 29 11:49:28 2014 +0100

Fix build with JSON::XS = 3

 perl-Data-Dump-Streamer-2.36-json-xs.patch |   88 
 perl-Data-Dump-Streamer.spec   |3 +
 2 files changed, 91 insertions(+), 0 deletions(-)
---
diff --git a/perl-Data-Dump-Streamer-2.36-json-xs.patch 
b/perl-Data-Dump-Streamer-2.36-json-xs.patch
new file mode 100644
index 000..54539ee
--- /dev/null
+++ b/perl-Data-Dump-Streamer-2.36-json-xs.patch
@@ -0,0 +1,88 @@
+From 5ca578adc164543fdb79914c931b1654d2655fef Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lkund...@v3.sk
+Date: Wed, 29 Jan 2014 11:43:54 +0100
+Subject: [PATCH] t/madness_json.t: Use correct JSON true class
+
+The behavior changed with JSON::XS.
+---
+ t/madness_json.t | 21 +
+ 1 file changed, 13 insertions(+), 8 deletions(-)
+
+diff --git a/t/madness_json.t b/t/madness_json.t
+index 2272548..b7a7968 100644
+--- a/t/madness_json.t
 b/t/madness_json.t
+@@ -248,6 +248,11 @@ format STDOUT =
+ JSB = $jstrue,
+ );
+ 
++# Versions of JSON::XS prior to 3.00 return obsolete JSON::XS::Boolean
++# which will be removed in future.
++my $jsbool_class = $JSON::XS::VERSION  3.000_000 ?
++'JSON::XS::Boolean' : 'JSON::PP::Boolean';
++
+ # Dumping differences per perl version:
+ # 5.12.0+:
+ #
+@@ -284,7 +289,7 @@ _EOF_FORMAT_
+RV  = \do { my $v = expected_dot },
+UND = undef
+  };
+-bless( $HASH1-{JSB}, 'JSON::XS::Boolean' );
++bless( $HASH1-{JSB}, 'jsbool_class' );
+ EXPECT
+ require B::Deparse;
+ if (new B::Deparse - coderef2text (
+@@ -292,10 +297,10 @@ EXPECT
+) !~ 'refs') {
+ $expect =~ s/strict 'refs'/strict/;
+ }
+-same( $dump= $o-Data(\%hash)-Out, template( $expect, expected_dot 
= $expected_dot ), , $o);
++same( $dump= $o-Data(\%hash)-Out, template( $expect, expected_dot 
= $expected_dot, jsbool_class = $jsbool_class ), , $o);
+ }
+ elsif ( $] = 5.008_008 ) {
+-same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot ), , $o);
++same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot, jsbool_class = $jsbool_class ), , $o);
+ $HASH1 = {
+AR  = [
+ 1,
+@@ -325,11 +330,11 @@ _EOF_FORMAT_
+RV  = \do { my $v = expected_dot },
+UND = undef
+  };
+-bless( $HASH1-{JSB}, 'JSON::XS::Boolean' );
++bless( $HASH1-{JSB}, 'jsbool_class' );
+ EXPECT
+ }
+ elsif ( $] = 5.008_000 ) {
+-same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot ), , $o);
++same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot, jsbool_class = $jsbool_class ), , $o);
+ $HASH1 = {
+AR  = [
+ 1,
+@@ -359,11 +364,11 @@ _EOF_FORMAT_
+RV  = \do { my $v = expected_dot },
+UND = undef
+  };
+-bless( $HASH1-{JSB}, 'JSON::XS::Boolean' );
++bless( $HASH1-{JSB}, 'jsbool_class' );
+ EXPECT
+ }
+ else {
+-same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot ), , $o);
++same( $dump= $o-Data(\%hash)-Out, template( 'EXPECT', 
expected_dot = $expected_dot, jsbool_class = $jsbool_class ), , $o);
+ $HASH1 = {
+AR  = [
+ 1,
+@@ -385,7 +390,7 @@ $HASH1 = {
+RV  = \do { my $v = expected_dot },
+UND = undef
+  };
+-bless( $HASH1-{JSB}, 'JSON::XS::Boolean' );
++bless( $HASH1-{JSB}, 'jsbool_class' );
+ EXPECT
+ }
+ }
+-- 
+1.8.3.1
+
diff --git a/perl-Data-Dump-Streamer.spec b/perl-Data-Dump-Streamer.spec
index 9d28b51..b7a5ad5 100644
--- a/perl-Data-Dump-Streamer.spec
+++ b/perl-Data-Dump-Streamer.spec
@@ -6,6 +6,7 @@ License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Data-Dump-Streamer/
 Source0:
http://search.cpan.org/CPAN/authors/id/Y/YV/YVES/Data-Dump-Streamer-%{version}.tar.gz
+Patch0: perl-Data-Dump-Streamer-2.36-json-xs.patch
 BuildRequires:  perl(Algorithm::Diff)
 BuildRequires:  perl(B::Utils)
 BuildRequires:  perl(Compress::Zlib)
@@ -36,6 +37,7 @@ output correctly.
 
 %prep
 %setup -q -n Data-Dump-Streamer-%{version}
+%patch0 -p1 -b .json-xs
 find . -type f | xargs chmod -x
 
 %build
@@ -61,6 +63,7 @@ find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f 
{} \;
 %changelog
 * Wed Jan 29 2014 Lubomir Rintel lkund...@v3.sk 2.36-1
 - update to latest upstream version
+- Fix build with JSON::XS = 3
 
 * Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.34-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel

[perl-Data-Dump-Streamer/epel7] (5 commits) ...Fix build with JSON::XS = 3

2014-01-29 Thread Lubomir Rintel
Summary of changes:

  a354308... Perl 5.18 rebuild (*)
  fc820de... Perl 5.18 compatibility (*)
  d602c42... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  aa1281d... update to latest upstream version
  3c3de5d... Fix build with JSON::XS = 3

(*) 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

[perl-Data-Dump-Streamer] (2 commits) ...Fix build with JSON::XS = 3

2014-01-29 Thread Lubomir Rintel
Summary of changes:

  aa1281d... update to latest upstream version (*)
  3c3de5d... Fix build with JSON::XS = 3 (*)

(*) 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

[perl-MooseX-Getopt/epel7] Bootstrap

2014-01-29 Thread Lubomir Rintel
commit d3a58f4b94d2be73c5a30b2ca4d982e2424dc4ed
Author: Lubomir Rintel lkund...@v3.sk
Date:   Wed Jan 29 12:07:45 2014 +0100

Bootstrap

 perl-MooseX-Getopt.spec |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/perl-MooseX-Getopt.spec b/perl-MooseX-Getopt.spec
index ac1ec63..ceeb8c3 100644
--- a/perl-MooseX-Getopt.spec
+++ b/perl-MooseX-Getopt.spec
@@ -1,7 +1,9 @@
+%global perl_bootstrap 1
+
 Name:   perl-MooseX-Getopt
 Summary:Moose role for processing command line options
 Version:0.47
-Release:2%{?dist}
+Release:0.2%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/MooseX-Getopt-%{version}.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-Sys-SigAction/epel7] (3 commits) ...Update to 0.20

2014-01-29 Thread Lubomir Rintel
Summary of changes:

  70f2cae... Perl 5.18 rebuild (*)
  35d82db... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  8ad0231... Update to 0.20 (*)

(*) 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

[perl-Config-Any/epel7] (3 commits) ...Update to 0.24

2014-01-29 Thread Lubomir Rintel
Summary of changes:

  82d22f6... Perl 5.18 rebuild (*)
  a34498d... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  0a08edb... Update to 0.24 (*)

(*) 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

[perl-Any-Moose/epel7] Revert Bootstrap

2014-01-29 Thread Lubomir Rintel
commit 154d394f0cba9dfeca69637c686340a65bc7a7bb
Author: Lubomir Rintel lkund...@v3.sk
Date:   Wed Jan 29 12:36:36 2014 +0100

Revert Bootstrap

This reverts commit 82b6b39955cd16cbfa925f3b500586b8b3042842.

 perl-Any-Moose.spec |4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/perl-Any-Moose.spec b/perl-Any-Moose.spec
index ee29ef6..6e510da 100644
--- a/perl-Any-Moose.spec
+++ b/perl-Any-Moose.spec
@@ -1,9 +1,7 @@
-%global perl_bootstrap 1
-
 Name:   perl-Any-Moose
 Summary:Use Moose or Mouse automagically (DEPRECATED)
 Version:0.21
-Release:0.5%{?dist}
+Release:5%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Any-Moose-%{version}.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-MooseX-Getopt/epel7] Revert Bootstrap

2014-01-29 Thread Lubomir Rintel
commit a1bbd3352b8f61cfb7716a863336aed8f0404b35
Author: Lubomir Rintel lkund...@v3.sk
Date:   Wed Jan 29 13:36:48 2014 +0100

Revert Bootstrap

This reverts commit d3a58f4b94d2be73c5a30b2ca4d982e2424dc4ed.

 perl-MooseX-Getopt.spec |4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/perl-MooseX-Getopt.spec b/perl-MooseX-Getopt.spec
index ceeb8c3..ac1ec63 100644
--- a/perl-MooseX-Getopt.spec
+++ b/perl-MooseX-Getopt.spec
@@ -1,9 +1,7 @@
-%global perl_bootstrap 1
-
 Name:   perl-MooseX-Getopt
 Summary:Moose role for processing command line options
 Version:0.47
-Release:0.2%{?dist}
+Release:2%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/MooseX-Getopt-%{version}.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-Any-Moose] Drop an extra dependency

2014-01-28 Thread Lubomir Rintel
commit 0745990fb5aacbf6e2d49c09cc28acee345003c4
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 28 14:27:38 2014 +0100

Drop an extra dependency

 perl-Any-Moose.spec |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/perl-Any-Moose.spec b/perl-Any-Moose.spec
index 382324f..a42a19b 100644
--- a/perl-Any-Moose.spec
+++ b/perl-Any-Moose.spec
@@ -11,7 +11,6 @@ BuildArch:  noarch
 
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Moose)
-BuildRequires:  perl(MooseX::Types)
 BuildRequires:  perl(Mouse) = 0.40
 # MouseX::Types requires Any::Moose
 %if !0%{?perl_bootstrap}
@@ -63,6 +62,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue Jan 20 2014 Lubomir Rintel lkund...@v3.sk - 0.21-6
+- Drop an extra dependency
+
 * Wed Aug 14 2013 Jitka Plesnikova jples...@redhat.com - 0.21-5
 - Perl 5.18 re-rebuild of bootstrapped packages
 
--
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-Any-Moose/epel7] (6 commits) ...Bootstrap

2014-01-28 Thread Lubomir Rintel
Summary of changes:

  7ca7511... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  7cff926... Rebuilt for perl-5.18.0 (*)
  e6c3abc... Perl 5.18 rebuild (*)
  57f6bba... Perl 5.18 re-rebuild of bootstrapped packages (*)
  0745990... Drop an extra dependency (*)
  82b6b39... Bootstrap

(*) 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

[perl-Any-Moose/epel7: 6/6] Bootstrap

2014-01-28 Thread Lubomir Rintel
commit 82b6b39955cd16cbfa925f3b500586b8b3042842
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 28 14:25:28 2014 +0100

Bootstrap

 perl-Any-Moose.spec |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/perl-Any-Moose.spec b/perl-Any-Moose.spec
index a42a19b..10e9c00 100644
--- a/perl-Any-Moose.spec
+++ b/perl-Any-Moose.spec
@@ -1,7 +1,9 @@
+%global perl_bootstrap 1
+
 Name:   perl-Any-Moose
 Summary:Use Moose or Mouse automagically (DEPRECATED)
 Version:0.21
-Release:5%{?dist}
+Release:0.5%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Any-Moose-%{version}.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-Mouse/epel7] (3 commits) ...update to 1.11

2014-01-28 Thread Lubomir Rintel
Summary of changes:

  7466c9b... update to 1.06 (*)
  de07f6b... Perl 5.18 rebuild (*)
  c83e6ba... update to 1.11 (*)

(*) 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

[perl-Any-Moose] Fix bogus changelog date

2014-01-28 Thread Lubomir Rintel
commit 93d12931d4bfae12793f418e6f94eb6c5e56dfee
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 28 14:32:26 2014 +0100

Fix bogus changelog date

 perl-Any-Moose.spec |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/perl-Any-Moose.spec b/perl-Any-Moose.spec
index a42a19b..6e510da 100644
--- a/perl-Any-Moose.spec
+++ b/perl-Any-Moose.spec
@@ -62,7 +62,7 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
-* Tue Jan 20 2014 Lubomir Rintel lkund...@v3.sk - 0.21-6
+* Tue Jan 28 2014 Lubomir Rintel lkund...@v3.sk - 0.21-6
 - Drop an extra dependency
 
 * Wed Aug 14 2013 Jitka Plesnikova jples...@redhat.com - 0.21-5
--
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-Any-Moose/epel7] Fix bogus changelog date

2014-01-28 Thread Lubomir Rintel
commit e2cc0da1231ce32fdfa6bdcd3f655d521ac57f6b
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 28 14:32:26 2014 +0100

Fix bogus changelog date

 perl-Any-Moose.spec |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/perl-Any-Moose.spec b/perl-Any-Moose.spec
index 10e9c00..ee29ef6 100644
--- a/perl-Any-Moose.spec
+++ b/perl-Any-Moose.spec
@@ -64,7 +64,7 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
-* Tue Jan 20 2014 Lubomir Rintel lkund...@v3.sk - 0.21-6
+* Tue Jan 28 2014 Lubomir Rintel lkund...@v3.sk - 0.21-6
 - Drop an extra dependency
 
 * Wed Aug 14 2013 Jitka Plesnikova jples...@redhat.com - 0.21-5
--
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-Moose/epel7] Revert epel7: Bootstrap, without Devel::PartialDump runtime req

2014-01-27 Thread Lubomir Rintel
commit b3a91d3705d9204e95c731193752d13bda88ca9a
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 28 08:58:13 2014 +0100

Revert epel7: Bootstrap, without Devel::PartialDump runtime req

This reverts commit 508022bd0de281c64ba8f1af98ea67ee74994f75.

 perl-Moose.spec |6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/perl-Moose.spec b/perl-Moose.spec
index 4b4eb5f..f17fa44 100644
--- a/perl-Moose.spec
+++ b/perl-Moose.spec
@@ -1,9 +1,7 @@
-%global perl_bootstrap 1
-
 Name:   perl-Moose
 Summary:Complete modern object system for Perl 5
 Version:2.1005
-Release:0.2%{?dist}
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Moose-%{version}.tar.gz
@@ -81,7 +79,7 @@ Requires:   perl(Data::OptList) = 0.107
 Requires:   perl(Dist::CheckConflicts) = 0.02
 
 # recommended (note: this uses Moose itself)
-#Requires:   perl(Devel::PartialDump) = 0.14
+Requires:   perl(Devel::PartialDump) = 0.14
 
 # hidden from PAUSE
 Provides:   perl(Moose::Conflicts)
--
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-Moose/epel7] epel7: Bootstrap

2014-01-23 Thread Lubomir Rintel
commit 0d82ce94ac0f054288121239f9deefb36560143a
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 15:05:45 2014 +0100

epel7: Bootstrap

 perl-Moose.spec |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/perl-Moose.spec b/perl-Moose.spec
index f17fa44..171c644 100644
--- a/perl-Moose.spec
+++ b/perl-Moose.spec
@@ -1,7 +1,9 @@
+%global perl_bootstrap 1
+
 Name:   perl-Moose
 Summary:Complete modern object system for Perl 5
 Version:2.1005
-Release:1%{?dist}
+Release:0.1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Moose-%{version}.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-Moose/epel7] Revert epel7: Bootstrap

2014-01-23 Thread Lubomir Rintel
commit a21d85108f8781193b930ab4d56f541423532b28
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 15:15:12 2014 +0100

Revert epel7: Bootstrap

This reverts commit 0d82ce94ac0f054288121239f9deefb36560143a.

 perl-Moose.spec |4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/perl-Moose.spec b/perl-Moose.spec
index 171c644..f17fa44 100644
--- a/perl-Moose.spec
+++ b/perl-Moose.spec
@@ -1,9 +1,7 @@
-%global perl_bootstrap 1
-
 Name:   perl-Moose
 Summary:Complete modern object system for Perl 5
 Version:2.1005
-Release:0.1%{?dist}
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Moose-%{version}.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-Log-Dispatch/epel7] (3 commits) ...Upstream update.

2014-01-23 Thread Lubomir Rintel
Summary of changes:

  493b551... Perl 5.18 rebuild (*)
  91847e5... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  cd3828b... Upstream update. (*)

(*) 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

[perl-Log-Dispatch/epel7] sendmail needed for tests

2014-01-23 Thread Lubomir Rintel
commit 6d60ecd88acfde1d556efd8839927352830d0702
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 15:51:37 2014 +0100

sendmail needed for tests

 perl-Log-Dispatch.spec |6 +-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/perl-Log-Dispatch.spec b/perl-Log-Dispatch.spec
index 931cada..0aec129 100644
--- a/perl-Log-Dispatch.spec
+++ b/perl-Log-Dispatch.spec
@@ -11,7 +11,7 @@
 
 Name:   perl-Log-Dispatch
 Version:2.41
-Release:1%{?dist}
+Release:1%{?dist}.1
 Summary:Dispatches messages to one or more outputs
 Group:  Development/Libraries
 License:Artistic 2.0
@@ -40,6 +40,7 @@ BuildRequires:  perl(warnings)
 
 # testsuite
 BuildRequires:  perl(Test::More) = 0.88
+BuildRequires:  /usr/bin/sendmail
 
 %if %{with release_tests} 
 # for improved tests
@@ -96,6 +97,9 @@ make test %{?with_release_tests:RELEASE_TESTING=1} 
LOG_DISPATCH_TEST_EMAIL=root
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Thu Jan 23 2014 Lubomir Rintel lkund...@v3.sk - 2.41-1.1
+- sendmail needed for tests
+
 * Fri Aug 16 2013 Ralf Corsépius corse...@fedoraproject.org - 2.41-1
 - Upstream update.
 - Spec cleanup.
--
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-Log-Dispatch/epel7] sendmail resides in sbin. Did you know that?

2014-01-23 Thread Lubomir Rintel
commit 9db8ea31052fc790a329ca3b4d66e07673a65e98
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 15:57:32 2014 +0100

sendmail resides in sbin. Did you know that?

 perl-Log-Dispatch.spec |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/perl-Log-Dispatch.spec b/perl-Log-Dispatch.spec
index 0aec129..47bd6c3 100644
--- a/perl-Log-Dispatch.spec
+++ b/perl-Log-Dispatch.spec
@@ -40,7 +40,7 @@ BuildRequires:  perl(warnings)
 
 # testsuite
 BuildRequires:  perl(Test::More) = 0.88
-BuildRequires:  /usr/bin/sendmail
+BuildRequires:  /usr/sbin/sendmail
 
 %if %{with release_tests} 
 # for improved tests
--
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-Lucy: 6/28] - Update to 0.164 - Add missing Pod::Coverage BRs (Robert Scheck) - Fix a PowerPC signedness issue -

2014-01-23 Thread Lubomir Rintel
commit e209adc1d1ce2efaaf6316c0b72d7f77cb921f73
Author: Lubomir Rintel lkund...@fedoraproject.org
Date:   Mon Mar 30 19:49:00 2009 +

- Update to 0.164
- Add missing Pod::Coverage BRs (Robert Scheck)
- Fix a PowerPC signedness issue
- Clarify licensing, re-add ApacheLicense2.0.txt

 .cvsignore |2 +-
 KinoSearch-0.164-ppc.patch |   16 
 perl-KinoSearch.spec   |   27 +++
 sources|2 +-
 4 files changed, 37 insertions(+), 10 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index 6e6e551..311dd9f 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-KinoSearch-0.163.tar.gz
+KinoSearch-0.164.tar.gz
diff --git a/KinoSearch-0.164-ppc.patch b/KinoSearch-0.164-ppc.patch
new file mode 100644
index 000..833df12
--- /dev/null
+++ b/KinoSearch-0.164-ppc.patch
@@ -0,0 +1,16 @@
+Fix signedness issue that caused testing to fail in ppc.
+
+Lubomir Rintel lkund...@v3.sk
+
+diff -up KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm.ppc 
KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm
+--- KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm.ppc  2009-03-03 
23:43:28.0 +0100
 KinoSearch-0.164/lib/KinoSearch/Store/InStream.pm  2009-03-30 
21:27:26.991644455 +0200
+@@ -234,7 +234,7 @@ PPCODE:
+ case 'B': /* unsigned byte */
+ aChar = instream-read_byte(instream);
+ if (sym == 'b') 
+-aIV = aChar;
++aIV = (signed char)aChar;
+ else
+ aIV = (unsigned char)aChar;
+ aSV = newSViv(aIV);
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 201919e..2fb8e2f 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,11 +1,17 @@
 Name:   perl-KinoSearch
-Version:0.163
-Release:4%{?dist}
+Version:0.164
+Release:1%{?dist}
 Summary:Search engine library
+# ApacheLicense2.0.txt included is included just becuase the upstream
+# author decided to include it and is only for informative purposes.
+# We believe that it doesn't apply, since author didn't use any Lucene
+# code (according to mail in LICENSING.mbox)
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/KinoSearch/
 Source0:
http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{version}.tar.gz
+Source1:LICENSING.mbox
+Patch0: KinoSearch-0.164-ppc.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(Compress::Zlib)
 BuildRequires:  perl(ExtUtils::CBuilder)
@@ -13,6 +19,8 @@ BuildRequires:  perl(ExtUtils::ParseXS)
 BuildRequires:  perl(Lingua::Stem::Snowball) = 0.94
 BuildRequires:  perl(Lingua::StopWords) = 0.02
 BuildRequires:  perl(Module::Build)
+BuildRequires:  perl(Test::Pod::Coverage) = 1.04
+BuildRequires:  perl(Test::Pod) = 1.14
 Requires:   perl(Compress::Zlib)
 Requires:   perl(Lingua::Stem::Snowball) = 0.94
 Requires:   perl(Lingua::StopWords) = 0.02
@@ -25,6 +33,8 @@ can be put to many different uses.
 
 %prep
 %setup -q -n KinoSearch-%{version}
+%patch0 -p1 -b .ppc
+cp %{SOURCE1} LICENSING.mbox
 
 %build
 %{__perl} Build.PL installdirs=vendor
@@ -40,6 +50,7 @@ rm -f 
$RPM_BUILD_ROOT/%{perl_vendorarch}/auto/KinoSearch/KinoSearch.bs
 
 %{_fixperms} $RPM_BUILD_ROOT/*
 
+
 %check
 ./Build test
 
@@ -48,16 +59,16 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README
+%doc Changes README ApacheLicense2.0.txt LICENSING.mbox
 %{perl_vendorarch}/*
 %{_mandir}/man3/*
 
 %changelog
-* Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.163-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
-
-* Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.163-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+* Sun Mar 29 2009 Lubomir Rintel lkund...@v3.sk - 0.164-1
+- Update to 0.164
+- Add missing Pod::Coverage BRs (Robert Scheck)
+- Fix a PowerPC signedness issue
+- Clarify licensing, re-add ApacheLicense2.0.txt
 
 * Sat Feb 14 2009 Ian Burrell ianburr...@gmail.com - 0.163-2
 - remove empty KinoSearch.bs
diff --git a/sources b/sources
index 6a70bf5..3f3b18a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5522cae77847aa6fad24d12a50ba81a7  KinoSearch-0.163.tar.gz
+9fd011170455974544af83005f0cb350  KinoSearch-0.164.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-Lucy: 5/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

2014-01-23 Thread Lubomir Rintel
commit 17d3bf2893a3feb30f3d7097db8d56c3f0bce8ab
Author: Jesse Keating jkeat...@fedoraproject.org
Date:   Thu Feb 26 20:33:09 2009 +

- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index f4b7388..201919e 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.163
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Search engine library
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.163-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
 * Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.163-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 
--
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-Lucy: 7/28] Add mail from upstream

2014-01-23 Thread Lubomir Rintel
commit 134ceba9299a24852434de8b142b22ac0ab1a7f3
Author: Lubomir Rintel lkund...@fedoraproject.org
Date:   Mon Mar 30 19:50:46 2009 +

Add mail from upstream

 LICENSING.mbox |   75 
 1 files changed, 75 insertions(+), 0 deletions(-)
---
diff --git a/LICENSING.mbox b/LICENSING.mbox
new file mode 100644
index 000..216bffc
--- /dev/null
+++ b/LICENSING.mbox
@@ -0,0 +1,75 @@
+From mar...@rectangular.com Mon Mar 23 01:37:59 2009
+Received: by norkia.v3.sk (Postfix, from userid 99) id 718E880147; Mon, 23
+ Mar 2009 01:37:59 +0100 (CET)
+X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on norkia.v3.sk
+X-Spam-Level: 
+X-Spam-Status: No, score=0.1 required=5.0 tests=RDNS_NONE autolearn=no
+ version=3.2.5
+X-Greylist: delayed 2343 by SQLgrey-1.7.5
+Received: from rectangular.com (unknown [68.116.38.202]) (using TLSv1 with
+ cipher AES256-SHA (256/256 bits)) (No client certificate requested) by
+ norkia.v3.sk (Postfix) with ESMTP id 8320C80148 for lkund...@v3.sk; Mon,
+ 23 Mar 2009 00:37:50 + (UTC)
+Received: from marvin by rectangular.com with local (Exim 4.63)
+ (envelope-from mar...@rectangular.com) id 1LlXbT-Zw-2E for
+ lkund...@v3.sk; Sun, 22 Mar 2009 17:01:19 -0700
+Date: Sun, 22 Mar 2009 17:01:19 -0700
+To: Lubomir Rintel lkund...@v3.sk
+Subject: FW: [Re: KinoSearch licensing and Fedora]
+Message-ID: 20090323000118.ga2...@rectangular.com
+MIME-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Content-Disposition: inline
+User-Agent: Mutt/1.5.13 (2006-08-11)
+From: Marvin Humphrey mar...@rectangular.com
+X-Evolution-Source: imap://lkundrak%40v3...@mail.v3.sk/
+Content-Transfer-Encoding: 8bit
+
+Lubomir,
+
+Here you go...
+
+Marvin Humphrey
+
+- Forwarded message from marvin -
+
+To: Ian Burrell ianburr...@gmail.com
+Subject: Re: KinoSearch licensing and Fedora
+
+On Tue, Feb 10, 2009 at 04:21:04PM -0800, Ian Burrell wrote:
+ I am trying to package KinoSearch for Fedora.  There were some
+ questions in the review[1] about the licensing.  My understanding is
+ that KinoSearch is licensed under the GPL or Aristic.  My impression
+ is that it doesn't contain any code licensed under ASL 2.0.  
+
+Correct.  It is all either original code or derived code, and all licensed
+under GPL or Artistic.  I've been quite conscientious about never copying and
+pasting anything directly from Lucene, including documentation and comments.
+That allows me to claim a separate copyright and distribute the project under
+different but compatible licensing terms.
+
+ But that since it was derived from Lucene, it has to include the Apache
+ license text.
+
+That's correct, as per ASL 2.0 section 4.1.
+
+ Is this right?  Is everything in KinoSearch licensed as GPL+ or
+ Artistic?  Does the Apache license need to be included in the binary
+ package to satisfy the ASL?
+
+IANAL but... 
+
+I think so.  I've always assumed that derivations/redistributions of
+derivations still need to maintain compatibility with the license terms of the
+original -- otherwise the original author would quickly lose control of their
+work.  It seems to me that you need to determine whether the GPLv3 your
+derivative work will be distributed under is compatible with both the
+KinoSearch license terms (which it obviously is) and the Lucene license terms
+-- which ought to be the case so long as you include that file and the
+existing notice embedded in the KinoSearch documentation.
+
+Best,
+
+Marvin Humphrey
+
+- End forwarded message -
--
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 Lucy-0.3.3.tar.gz uploaded to lookaside cache by lkundrak

2014-01-23 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-Lucy:

b43bae463f9a7f8283ea3e7ad2ca3b25  Lucy-0.3.3.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-Lucy: 25/28] Perl 5.18 rebuild

2014-01-23 Thread Lubomir Rintel
commit 7bdb816d87c435e47fecffc6f57fdd3da19cd6ba
Author: Petr Písař ppi...@redhat.com
Date:   Mon Jul 22 21:29:25 2013 +0200

Perl 5.18 rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 1b7882c..34f79ca 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -5,7 +5,7 @@
 
 Name:   perl-KinoSearch
 Version:
%{cpan_version_major}%{?cpan_version_minor:.}%{cpan_version_minor}
-Release:4%{?dist}
+Release:5%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Jul 22 2013 Petr Pisar ppi...@redhat.com - 1:0.31.5-5
+- Perl 5.18 rebuild
+
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
 
--
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-Lucy: 28/28] Import Lucy

2014-01-23 Thread Lubomir Rintel
commit 7a8ee153d17ad7f1866381b0518884f506f8164d
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 16:44:49 2014 +0100

Import Lucy

 .gitignore |1 +
 LICENSING.mbox |   75 
 perl-KinoSearch.spec = perl-Lucy.spec |   37 +---
 sources|2 +-
 4 files changed, 13 insertions(+), 102 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 71522e2..4002d4f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 KinoSearch-0.165.tar.gz
 /KinoSearch-0.31.tar.gz
 /KinoSearch-0.315.tar.gz
+/Lucy-0.3.3.tar.gz
diff --git a/perl-KinoSearch.spec b/perl-Lucy.spec
similarity index 75%
rename from perl-KinoSearch.spec
rename to perl-Lucy.spec
index bd03b2e..40963e5 100644
--- a/perl-KinoSearch.spec
+++ b/perl-Lucy.spec
@@ -1,22 +1,11 @@
-# Upstream returns to 2-digit form repeatedly
-%global cpan_version_major 0.31
-%global cpan_version_minor 5
-%global cpan_version %{cpan_version_major}%{cpan_version_minor}
-
-Name:   perl-KinoSearch
-Version:
%{cpan_version_major}%{?cpan_version_minor:.}%{cpan_version_minor}
-Release:6%{?dist}
-Epoch:  1
+Name:   perl-Lucy
+Version:0.3.3
+Release:1%{?dist}
 Summary:Search engine library
-# ApacheLicense2.0.txt included is included just becuase the upstream
-# author decided to include it and is only for informative purposes.
-# We believe that it doesn't apply, since author didn't use any Lucene
-# code (according to mail in LICENSING.mbox)
-License:GPL+ or Artistic
+License:ASL 2.0
 Group:  Development/Libraries
-URL:http://search.cpan.org/dist/KinoSearch/
-Source0:
http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{cpan_version}.tar.gz
-Source1:LICENSING.mbox
+URL:http://search.cpan.org/dist/Lucy/
+Source0:
http://search.cpan.org/CPAN/authors/id/C/CR/CREAMYG/Lucy-%{version}.tar.gz
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Devel::PPPort) = 3.13
@@ -58,13 +47,12 @@ Requires:   perl(Lingua::StopWords) = 0.09
 %global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(JSON::XS\\)$
 
 %description
-KinoSearch is a loose port of the Java search engine library Apache Lucene,
+Lucy is a loose port of the Java search engine library Apache Lucene,
 written in Perl and C. The archetypal application is website search, but it
 can be put to many different uses.
 
 %prep
-%setup -q -n KinoSearch-%{cpan_version}
-cp %{SOURCE1} LICENSING.mbox
+%setup -q -n Lucy-%{version}
 
 %build
 %{__perl} Build.PL installdirs=vendor
@@ -89,16 +77,13 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc Changes README ApacheLicense2.0.txt LICENSING.mbox
+%doc CHANGES README LICENSE
 %{perl_vendorarch}/*
 %{_mandir}/man3/*
 
 %changelog
-* Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Mon Jul 22 2013 Petr Pisar ppi...@redhat.com - 1:0.31.5-5
-- Perl 5.18 rebuild
+* Fri Jan 17 2014 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com - 
0.3.3-1
+- Lucy package based on KinoSearch package
 
 * Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
diff --git a/sources b/sources
index 2d7c950..a825512 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2801b61f60240dfcfb09aff5b48b8aae  KinoSearch-0.315.tar.gz
+b43bae463f9a7f8283ea3e7ad2ca3b25  Lucy-0.3.3.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-Lucy: 27/28] Merge branch 'master' of ssh://pkgs.fedoraproject.org/perl-KinoSearch

2014-01-23 Thread Lubomir Rintel
commit 6961fafd0177b10729d3ba5ce9c90506d01a89f8
Merge: 33b21f1 6ca9472
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 16:43:57 2014 +0100

Merge branch 'master' of ssh://pkgs.fedoraproject.org/perl-KinoSearch

 .gitignore   |3 +
 LICENSING.mbox   |   75 +
 perl-KinoSearch.spec |  151 ++
 sources  |1 +
 4 files changed, 230 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

[perl-Lucy: 26/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

2014-01-23 Thread Lubomir Rintel
commit 6ca9472e56abeaa53644e03b709727a8d149fceb
Author: Dennis Gilmore den...@ausil.us
Date:   Sat Aug 3 17:25:36 2013 -0500

- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 34f79ca..bd03b2e 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -5,7 +5,7 @@
 
 Name:   perl-KinoSearch
 Version:
%{cpan_version_major}%{?cpan_version_minor:.}%{cpan_version_minor}
-Release:5%{?dist}
+Release:6%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Aug 03 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
+
 * Mon Jul 22 2013 Petr Pisar ppi...@redhat.com - 1:0.31.5-5
 - Perl 5.18 rebuild
 
--
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-Lucy: 1/28] Setup of module perl-KinoSearch

2014-01-23 Thread Lubomir Rintel
commit 91659007908755b9ee0189be51f3d9b0b7423b1f
Author: Kevin Fenzi ke...@fedoraproject.org
Date:   Fri Feb 13 06:43:03 2009 +

Setup of module perl-KinoSearch

 Makefile   |   21 +
 1 files changed, 21 insertions(+), 0 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 000..e69de29
diff --git a/Makefile b/Makefile
new file mode 100644
index 000..6d8bb0d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+# Makefile for source rpm: perl-KinoSearch
+# $Id$
+NAME := perl-KinoSearch
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; 
then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q 
update ; fi ; echo $$d/Makefile.common ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON := $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root  { cvs -Q -d $$(cat CVS/Root) checkout common  echo 
common/Makefile.common ; } || { echo ERROR: I can't figure out how to 
checkout the 'common' module. ; exit -1 ; } 2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)
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-Lucy: 3/28] remove empty KinoSearch.bs; remove ApacheLicense2.0.txt

2014-01-23 Thread Lubomir Rintel
commit 33cfb4f45d52f87bf73106ad239198be1064cf58
Author: Ian Burrell iburr...@fedoraproject.org
Date:   Sat Feb 14 22:31:09 2009 +

remove empty KinoSearch.bs; remove ApacheLicense2.0.txt

 perl-KinoSearch.spec |   10 --
 1 files changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 969ee34..fe49842 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.163
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Search engine library
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -36,6 +36,8 @@ rm -rf $RPM_BUILD_ROOT
 ./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
 find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
 
+rm -f $RPM_BUILD_ROOT/%{perl_vendorarch}/auto/KinoSearch/KinoSearch.bs
+
 %{_fixperms} $RPM_BUILD_ROOT/*
 
 %check
@@ -46,11 +48,15 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(-,root,root,-)
-%doc ApacheLicense2.0.txt Changes README
+%doc Changes README
 %{perl_vendorarch}/*
 %{_mandir}/man3/*
 
 %changelog
+* Sat Feb 14 2009 Ian Burrell ianburr...@gmail.com - 0.163-2
+- remove empty KinoSearch.bs
+- remove ApacheLicense2.0.txt
+
 * Thu Feb 05 2009 Ian Burrell ianburr...@gmail.com 0.163-1
 - Change to perl_vendorarch
 - Remove devel, src from doc
--
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-Lucy: 2/28] import perl-KinoSearch-0.163-1

2014-01-23 Thread Lubomir Rintel
commit a7cf2a8261eb069d1bbed6e420c8664e0fab6163
Author: Ian Burrell iburr...@fedoraproject.org
Date:   Sat Feb 14 22:13:49 2009 +

import perl-KinoSearch-0.163-1

 .cvsignore   |1 +
 import.log   |1 +
 perl-KinoSearch.spec |   57 ++
 sources  |1 +
 4 files changed, 60 insertions(+), 0 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
index e69de29..6e6e551 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -0,0 +1 @@
+KinoSearch-0.163.tar.gz
diff --git a/import.log b/import.log
new file mode 100644
index 000..0c4549e
--- /dev/null
+++ b/import.log
@@ -0,0 +1 @@
+perl-KinoSearch-0_163-1_fc10:HEAD:perl-KinoSearch-0.163-1.fc10.src.rpm:1234648329
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
new file mode 100644
index 000..969ee34
--- /dev/null
+++ b/perl-KinoSearch.spec
@@ -0,0 +1,57 @@
+Name:   perl-KinoSearch
+Version:0.163
+Release:1%{?dist}
+Summary:Search engine library
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/KinoSearch/
+Source0:
http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{version}.tar.gz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires:  perl(Compress::Zlib)
+BuildRequires:  perl(ExtUtils::CBuilder)
+BuildRequires:  perl(ExtUtils::ParseXS)
+BuildRequires:  perl(Lingua::Stem::Snowball) = 0.94
+BuildRequires:  perl(Lingua::StopWords) = 0.02
+BuildRequires:  perl(Module::Build)
+Requires:   perl(Compress::Zlib)
+Requires:   perl(Lingua::Stem::Snowball) = 0.94
+Requires:   perl(Lingua::StopWords) = 0.02
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%description
+KinoSearch is a loose port of the Java search engine library Apache Lucene,
+written in Perl and C. The archetypal application is website search, but it
+can be put to many different uses.
+
+%prep
+%setup -q -n KinoSearch-%{version}
+
+%build
+%{__perl} Build.PL installdirs=vendor
+./Build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+./Build test
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc ApacheLicense2.0.txt Changes README
+%{perl_vendorarch}/*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Feb 05 2009 Ian Burrell ianburr...@gmail.com 0.163-1
+- Change to perl_vendorarch
+- Remove devel, src from doc
+- Specfile autogenerated by cpanspec 1.77.
diff --git a/sources b/sources
index e69de29..6a70bf5 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+5522cae77847aa6fad24d12a50ba81a7  KinoSearch-0.163.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-Lucy: 4/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

2014-01-23 Thread Lubomir Rintel
commit e75da06aa2b4bbe0a2cd2f23f6fb91917cf6a046
Author: Jesse Keating jkeat...@fedoraproject.org
Date:   Thu Feb 26 18:48:51 2009 +

- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index fe49842..f4b7388 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.163
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Search engine library
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.163-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
 * Sat Feb 14 2009 Ian Burrell ianburr...@gmail.com - 0.163-2
 - remove empty KinoSearch.bs
 - remove ApacheLicense2.0.txt
--
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-Lucy] (28 commits) ...Import Lucy

2014-01-23 Thread Lubomir Rintel
Summary of changes:

  9165900... Setup of module perl-KinoSearch
  a7cf2a8... import perl-KinoSearch-0.163-1
  33cfb4f... remove empty KinoSearch.bs; remove ApacheLicense2.0.txt
  e75da06... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass
  17d3bf2... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass
  e209adc... - Update to 0.164 - Add missing Pod::Coverage BRs (Robert S
  134ceba... Add mail from upstream
  2ad1e20... - Upstream applied our PowerPC patch
  588c284... - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass
  a3b0855... Fix typo that causes a failure to update the common directo
  70f3561... - rebuild against perl 5.10.1
  c8d3410... - Mass rebuild with perl-5.12.0
  2fe799f... dist-git conversion
  3d9d941... Import new version
  7e27893... Filter useless provide
  0599abd... - 661697 rebuild for fixing problems with vendorach/lib
  eff1b25... add BR
  5d11a22... Perl mass rebuild
  101613a... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass
  4f681bc... Perl 5.16 rebuild
  fd6f1dc... 0.315 bump
  be9ced8... Perl 5.16 rebuild
  0c79fff... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass
  716a4fa... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass
  7bdb816... Perl 5.18 rebuild
  6ca9472... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass
  6961faf... Merge branch 'master' of ssh://pkgs.fedoraproject.org/perl-
  7a8ee15... Import Lucy
--
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-Lucy: 20/28] Perl 5.16 rebuild

2014-01-23 Thread Lubomir Rintel
commit 4f681bc6b302c0acf277f81329c78de5efd643d4
Author: Petr Písař ppi...@redhat.com
Date:   Sat Jun 16 19:32:09 2012 +0200

Perl 5.16 rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index a4f2758..91fb7dd 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.31
-Release:4%{?dist}
+Release:5%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sat Jun 16 2012 Petr Pisar ppi...@redhat.com - 1:0.31-5
+- Perl 5.16 rebuild
+
 * Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
--
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-Lucy: 16/28] - 661697 rebuild for fixing problems with vendorach/lib

2014-01-23 Thread Lubomir Rintel
commit 0599abdf604d769c58a7e1898a2e953b395fafdd
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Mon Dec 20 14:23:22 2010 +0100

- 661697 rebuild for fixing problems with vendorach/lib

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index b7e8e5c..3287f1f 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.31
-Release:1%{?dist}
+Release:2%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Dec 20 2010 Marcela Maslanova mmasl...@redhat.com - 1:0.31-2
+- 661697 rebuild for fixing problems with vendorach/lib
+
 * Sun Dec 12 2010 Lubomir Rintel lkund...@v3.sk - 1:0.31-1
 - BR Time::HiRes to fix el6 build
 - Rebase to later version
--
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-Lucy: 18/28] Perl mass rebuild

2014-01-23 Thread Lubomir Rintel
commit 5d11a221ae0233212a3f2fe8ed9e02630446b3cf
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Tue Jun 21 01:27:30 2011 +0200

Perl mass rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index d0bdcdd..d06894e 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.31
-Release:2%{?dist}
+Release:3%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Tue Jun 21 2011 Marcela Mašláňová mmasl...@redhat.com - 1:0.31-3
+- Perl mass rebuild
+
 * Mon Dec 20 2010 Marcela Maslanova mmasl...@redhat.com - 1:0.31-2
 - 661697 rebuild for fixing problems with vendorach/lib
 - add BR
--
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-Lucy: 19/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild

2014-01-23 Thread Lubomir Rintel
commit 101613a33ae0f4fb94b2247dddcb8fdd0ea382af
Author: Dennis Gilmore den...@ausil.us
Date:   Fri Jan 13 08:26:55 2012 -0600

- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index d06894e..a4f2758 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.31
-Release:3%{?dist}
+Release:4%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
 * Tue Jun 21 2011 Marcela Mašláňová mmasl...@redhat.com - 1:0.31-3
 - Perl mass rebuild
 
--
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-Lucy: 12/28] - Mass rebuild with perl-5.12.0

2014-01-23 Thread Lubomir Rintel
commit c8d3410c9eb5c0e19ebe846b3ab08a5f74a05e37
Author: Marcela Mašláňová mmasl...@fedoraproject.org
Date:   Sun May 2 19:54:53 2010 +

- Mass rebuild with perl-5.12.0

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 96c6c9f..c0be346 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.165
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
 # author decided to include it and is only for informative purposes.
@@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Sun May 02 2010 Marcela Maslanova mmasl...@redhat.com - 0.165-4
+- Mass rebuild with perl-5.12.0
+
 * Mon Dec  7 2009 Stepan Kasal ska...@redhat.com - 0.165-3
 - rebuild against perl 5.10.1
 
--
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-Lucy: 11/28] - rebuild against perl 5.10.1

2014-01-23 Thread Lubomir Rintel
commit 70f35613ffc79a1af3ccea7b7b0fdf5f2db716b7
Author: Štěpán Kasal ka...@fedoraproject.org
Date:   Mon Dec 7 09:12:05 2009 +

- rebuild against perl 5.10.1

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 581fa19..96c6c9f 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,6 @@
 Name:   perl-KinoSearch
 Version:0.165
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
 # author decided to include it and is only for informative purposes.
@@ -62,6 +62,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon Dec  7 2009 Stepan Kasal ska...@redhat.com - 0.165-3
+- rebuild against perl 5.10.1
+
 * Sun Jul 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.165-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 
--
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-Lucy: 21/28] 0.315 bump

2014-01-23 Thread Lubomir Rintel
commit fd6f1dc46e90050ff55dd7a3927388fbc016449d
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jun 20 12:15:36 2012 +0200

0.315 bump

Should restore compatibility with perl 5.16.0.

 .gitignore   |1 +
 perl-KinoSearch.spec |   63 -
 sources  |2 +-
 3 files changed, 48 insertions(+), 18 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7b5ae98..71522e2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 KinoSearch-0.165.tar.gz
 /KinoSearch-0.31.tar.gz
+/KinoSearch-0.315.tar.gz
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 91fb7dd..d8b7049 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,11 @@
+# Upstream returns to 2-digit form repeatedly
+%global cpan_version_major 0.31
+%global cpan_version_minor 5
+%global cpan_version %{cpan_version_major}%{cpan_version_minor}
+
 Name:   perl-KinoSearch
-Version:0.31
-Release:5%{?dist}
+Version:
%{cpan_version_major}%{?cpan_version_minor:.}%{cpan_version_minor}
+Release:1%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -10,26 +15,47 @@ Summary:Search engine library
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/KinoSearch/
-Source0:
http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/C/CR/CREAMYG/KinoSearch-%{cpan_version}.tar.gz
 Source1:LICENSING.mbox
-BuildRequires:  perl(Compress::Zlib)
-BuildRequires:  perl(ExtUtils::CBuilder)
-BuildRequires:  perl(ExtUtils::ParseXS)
-BuildRequires:  perl(Lingua::Stem::Snowball) = 0.94
-BuildRequires:  perl(Lingua::StopWords) = 0.02
+BuildRequires:  perl(base)
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Devel::PPPort) = 3.13
+BuildRequires:  perl(Env)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(ExtUtils::CBuilder) = 0.18
+BuildRequires:  perl(ExtUtils::ParseXS) = 2.16
+BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Spec::Functions)
+BuildRequires:  perl(lib)
 BuildRequires:  perl(Module::Build)
-BuildRequires:  perl(Test::Pod::Coverage) = 1.04
-BuildRequires:  perl(Test::Pod) = 1.14
-BuildRequires:  perl(Time::HiRes)
-BuildRequires:  perl(JSON::XS)
+BuildRequires:  perl(Scalar::Util)
+# Run-time
+BuildRequires:  perl(Compress::Zlib)
+BuildRequires:  perl(Data::Dumper)
+BuildRequires:  perl(IO::Select)
+BuildRequires:  perl(IO::Socket::INET)
+BuildRequires:  perl(JSON::XS) = 1.53
+BuildRequires:  perl(Lingua::Stem::Snowball) = 0.952
+BuildRequires:  perl(Lingua::StopWords) = 0.09
+BuildRequires:  perl(XSLoader)
+# Tests
+BuildRequires:  perl(CGI)
+BuildRequires:  perl(constant)
+BuildRequires:  perl(Encode)
+BuildRequires:  perl(List::Util)
 BuildRequires:  perl(Parse::RecDescent)
-Requires:   perl(Compress::Zlib)
-Requires:   perl(Lingua::Stem::Snowball) = 0.94
-Requires:   perl(Lingua::StopWords) = 0.02
+BuildRequires:  perl(Storable)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Time::HiRes)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
-Requires:   perl(Time::HiRes)
+Requires:   perl(Data::Dumper)
+Requires:   perl(JSON::XS) = 1.53
+Requires:   perl(Lingua::Stem::Snowball) = 0.952
+Requires:   perl(Lingua::StopWords) = 0.09
 
 %{?perl_default_filter}
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(JSON::XS\\)$
 
 %description
 KinoSearch is a loose port of the Java search engine library Apache Lucene,
@@ -37,7 +63,7 @@ written in Perl and C. The archetypal application is website 
search, but it
 can be put to many different uses.
 
 %prep
-%setup -q -n KinoSearch-%{version}
+%setup -q -n KinoSearch-%{cpan_version}
 cp %{SOURCE1} LICENSING.mbox
 
 %build
@@ -68,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 20 2012 Petr Pisar ppi...@redhat.com - 1:0.31.5-1
+- 0.315 bump
+
 * Sat Jun 16 2012 Petr Pisar ppi...@redhat.com - 1:0.31-5
 - Perl 5.16 rebuild
 
diff --git a/sources b/sources
index 4bf1708..2d7c950 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c9f0e05b9131fca33c4cb42ece2f5a9f  KinoSearch-0.31.tar.gz
+2801b61f60240dfcfb09aff5b48b8aae  KinoSearch-0.315.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-Lucy: 14/28] Import new version

2014-01-23 Thread Lubomir Rintel
commit 3d9d9414f8e853d2d104b2354849436f2d61d66d
Author: Lubomir Rintel lkund...@v3.sk
Date:   Sun Dec 12 16:07:03 2010 +0100

Import new version

 .gitignore |1 +
 KinoSearch-0.164-ppc.patch |   16 
 perl-KinoSearch.spec   |   15 ---
 sources|2 +-
 4 files changed, 10 insertions(+), 24 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 691c164..7b5ae98 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 KinoSearch-0.165.tar.gz
+/KinoSearch-0.31.tar.gz
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index c0be346..f6c8f12 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,7 @@
 Name:   perl-KinoSearch
-Version:0.165
-Release:4%{?dist}
+Version:0.31
+Release:1%{?dist}
+Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
 # author decided to include it and is only for informative purposes.
@@ -20,10 +21,12 @@ BuildRequires:  perl(Lingua::StopWords) = 0.02
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::Pod::Coverage) = 1.04
 BuildRequires:  perl(Test::Pod) = 1.14
+BuildRequires:  perl(Time::HiRes)
 Requires:   perl(Compress::Zlib)
 Requires:   perl(Lingua::Stem::Snowball) = 0.94
 Requires:   perl(Lingua::StopWords) = 0.02
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(Time::HiRes)
 
 %description
 KinoSearch is a loose port of the Java search engine library Apache Lucene,
@@ -62,11 +65,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
-* Sun May 02 2010 Marcela Maslanova mmasl...@redhat.com - 0.165-4
-- Mass rebuild with perl-5.12.0
-
-* Mon Dec  7 2009 Stepan Kasal ska...@redhat.com - 0.165-3
-- rebuild against perl 5.10.1
+* Sun Dec 12 2010 Lubomir Rintel lkund...@v3.sk - 1:0.31-1
+- BR Time::HiRes to fix el6 build
+- Rebase to later version
 
 * Sun Jul 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.165-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
diff --git a/sources b/sources
index 8cf29cc..4bf1708 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c191fd096aaf4d6219bbb36812551693  KinoSearch-0.165.tar.gz
+c9f0e05b9131fca33c4cb42ece2f5a9f  KinoSearch-0.31.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-Lucy: 24/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild

2014-01-23 Thread Lubomir Rintel
commit 716a4faac7e45c36fdf13ca5cb1e7be357684554
Author: Dennis Gilmore den...@ausil.us
Date:   Thu Feb 14 07:09:40 2013 -0600

- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild

 perl-KinoSearch.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index 2ba49f5..1b7882c 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -5,7 +5,7 @@
 
 Name:   perl-KinoSearch
 Version:
%{cpan_version_major}%{?cpan_version_minor:.}%{cpan_version_minor}
-Release:3%{?dist}
+Release:4%{?dist}
 Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
@@ -94,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Thu Feb 14 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:0.31.5-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
--
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-Lucy/el6] (28 commits) ...Import Lucy

2014-01-23 Thread Lubomir Rintel
Summary of changes:

  9165900... Setup of module perl-KinoSearch (*)
  a7cf2a8... import perl-KinoSearch-0.163-1 (*)
  33cfb4f... remove empty KinoSearch.bs; remove ApacheLicense2.0.txt (*)
  e75da06... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass (*)
  17d3bf2... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass (*)
  e209adc... - Update to 0.164 - Add missing Pod::Coverage BRs (Robert S (*)
  134ceba... Add mail from upstream (*)
  2ad1e20... - Upstream applied our PowerPC patch (*)
  588c284... - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass (*)
  a3b0855... Fix typo that causes a failure to update the common directo (*)
  70f3561... - rebuild against perl 5.10.1 (*)
  c8d3410... - Mass rebuild with perl-5.12.0 (*)
  2fe799f... dist-git conversion (*)
  3d9d941... Import new version (*)
  7e27893... Filter useless provide (*)
  0599abd... - 661697 rebuild for fixing problems with vendorach/lib (*)
  eff1b25... add BR (*)
  5d11a22... Perl mass rebuild (*)
  101613a... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass (*)
  4f681bc... Perl 5.16 rebuild (*)
  fd6f1dc... 0.315 bump (*)
  be9ced8... Perl 5.16 rebuild (*)
  0c79fff... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  716a4fa... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  7bdb816... Perl 5.18 rebuild (*)
  6ca9472... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  6961faf... Merge branch 'master' of ssh://pkgs.fedoraproject.org/perl- (*)
  7a8ee15... Import Lucy (*)

(*) 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

[perl-Lucy/epel7] (28 commits) ...Import Lucy

2014-01-23 Thread Lubomir Rintel
Summary of changes:

  9165900... Setup of module perl-KinoSearch (*)
  a7cf2a8... import perl-KinoSearch-0.163-1 (*)
  33cfb4f... remove empty KinoSearch.bs; remove ApacheLicense2.0.txt (*)
  e75da06... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass (*)
  17d3bf2... - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass (*)
  e209adc... - Update to 0.164 - Add missing Pod::Coverage BRs (Robert S (*)
  134ceba... Add mail from upstream (*)
  2ad1e20... - Upstream applied our PowerPC patch (*)
  588c284... - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass (*)
  a3b0855... Fix typo that causes a failure to update the common directo (*)
  70f3561... - rebuild against perl 5.10.1 (*)
  c8d3410... - Mass rebuild with perl-5.12.0 (*)
  2fe799f... dist-git conversion (*)
  3d9d941... Import new version (*)
  7e27893... Filter useless provide (*)
  0599abd... - 661697 rebuild for fixing problems with vendorach/lib (*)
  eff1b25... add BR (*)
  5d11a22... Perl mass rebuild (*)
  101613a... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass (*)
  4f681bc... Perl 5.16 rebuild (*)
  fd6f1dc... 0.315 bump (*)
  be9ced8... Perl 5.16 rebuild (*)
  0c79fff... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  716a4fa... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  7bdb816... Perl 5.18 rebuild (*)
  6ca9472... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  6961faf... Merge branch 'master' of ssh://pkgs.fedoraproject.org/perl- (*)
  7a8ee15... Import Lucy (*)

(*) 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

[perl-Moose/epel7] epel7: Bootstrap, without Devel::PartialDump runtime req

2014-01-23 Thread Lubomir Rintel
commit 508022bd0de281c64ba8f1af98ea67ee74994f75
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Jan 23 15:05:45 2014 +0100

epel7: Bootstrap, without Devel::PartialDump runtime req

It does is not available for EPEL-7 (yet?).

 perl-Moose.spec |6 --
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/perl-Moose.spec b/perl-Moose.spec
index f17fa44..4b4eb5f 100644
--- a/perl-Moose.spec
+++ b/perl-Moose.spec
@@ -1,7 +1,9 @@
+%global perl_bootstrap 1
+
 Name:   perl-Moose
 Summary:Complete modern object system for Perl 5
 Version:2.1005
-Release:1%{?dist}
+Release:0.2%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Moose-%{version}.tar.gz
@@ -79,7 +81,7 @@ Requires:   perl(Data::OptList) = 0.107
 Requires:   perl(Dist::CheckConflicts) = 0.02
 
 # recommended (note: this uses Moose itself)
-Requires:   perl(Devel::PartialDump) = 0.14
+#Requires:   perl(Devel::PartialDump) = 0.14
 
 # hidden from PAUSE
 Provides:   perl(Moose::Conflicts)
--
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-Test-Class/epel7] (7 commits) ...Make it build for el7

2014-01-21 Thread Lubomir Rintel
Summary of changes:

  c6d82a8... 0.39 bump (*)
  4ddd051... Perl 5.18 rebuild (*)
  4b342ea... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  bfd2413... Adjust to Test-Simple 0.98_04 (*)
  bcac0ed... Update to 0.40 (*)
  e70bf8f... Update to 0.41 (*)
  1312f88... Make it build for el7

(*) 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

[perl-Test-Class/epel7: 7/7] Make it build for el7

2014-01-21 Thread Lubomir Rintel
commit 1312f88a7a10ee6962cb4e708b68f62ba6ecad28
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Jan 21 16:38:40 2014 +0100

Make it build for el7

 0001-Lower-Module-Build-requirement.patch |   18 ++
 perl-Test-Class.spec  |7 ++-
 2 files changed, 24 insertions(+), 1 deletions(-)
---
diff --git a/0001-Lower-Module-Build-requirement.patch 
b/0001-Lower-Module-Build-requirement.patch
new file mode 100644
index 000..adc5007
--- /dev/null
+++ b/0001-Lower-Module-Build-requirement.patch
@@ -0,0 +1,18 @@
+From a56c1fb7ac5df6537a0821ac26f284fd605e19c9 Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lkund...@v3.sk
+Date: Tue, 14 Jan 2014 16:05:48 +0100
+Subject: [PATCH] Lower Module::Build requirement
+
+diff --git a/META.yml b/META.yml
+index 7ba3bd4..30c6505 100644
+--- a/META.yml
 b/META.yml
+@@ -6,7 +6,7 @@ build_requires:
+   IO::File: 1.09
+   Test::Exception: 0.25
+ configure_requires:
+-  Module::Build: 0.42
++  Module::Build: 0.40
+ dynamic_config: 1
+ generated_by: 'Module::Build version 0.4203, CPAN::Meta::Converter version 
2.132830'
+ license: perl
diff --git a/perl-Test-Class.spec b/perl-Test-Class.spec
index 0a5db36..0a34b7f 100644
--- a/perl-Test-Class.spec
+++ b/perl-Test-Class.spec
@@ -1,12 +1,13 @@
 Name:   perl-Test-Class
 Version:0.41
-Release:1%{?dist}
+Release:1%{?dist}.1
 Summary:Easily create test classes in an xUnit/JUnit style
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Test-Class/
 Source0:
http://www.cpan.org/authors/id/R/RJ/RJBS/Test-Class-%{version}.tar.gz
 Patch0: perl-Test-Class-UTF8.patch
+Patch1: 0001-Lower-Module-Build-requirement.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch:  noarch
 BuildRequires:  perl
@@ -53,6 +54,7 @@ find -type f -exec chmod -c -x {} \;
 
 # Fix character encoding in documentation
 %patch0
+%patch1 -p1
 
 %build
 perl Build.PL installdirs=vendor
@@ -80,6 +82,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/Test::Class::MethodInfo.3pm*
 
 %changelog
+* Tue Jan 21 2014 Lubomir Rintel lkund...@v3.sk - 0.41-1.1
+- Make it build for el7
+
 * Sat Nov 30 2013 Paul Howarth p...@city-fan.org - 0.41-1
 - Update to 0.41
   - Require a newer Test::Builder if 0.99 is installed (CPAN RT#90699)
--
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

Your packages in EPEL-7

2014-01-16 Thread Lubomir Rintel
Dear package maintainers, 

I rely on Perl module packages you maintain being in EPEL. Now that
EPEL-7 is open for branch requests, I'd like to kindly ask you to either
request an epel7 branch for your packages or let me know that you're not
willing to do that (so that I can request the branches myself). Thank
you!
 
These are the packages I need (and one or more of them is the reason
your received this message): 

perl-DBD-CSV (devel:psabata, EL-6:steve) 
perl-DateTime-Format-Builder (devel:iarnell, EL-6:pghmcfc) 
perl-DateTime-Format-Mail (devel:iarnell, EL-6:) 
perl-DateTime-Format-MySQL (devel:iarnell, EL-6:pghmcfc) 
perl-DateTime-Format-Strptime (devel:steve, EL-6:steve) 
perl-Email-Date-Format (devel:spot, EL-6:orphan) 
perl-Log-Dispatch (devel:spot, EL-6:spot) 
perl-Log-Log4perl (devel:jplesnik, EL-6:mmaslano) 
perl-MIME-Lite (devel:psabata, EL-6:stevetraylen) 
perl-MIME-Types (devel:spot, EL-6:spot) 
perl-MLDBM (devel:steve, EL-6:spot) 
perl-MRO-Compat (devel:pghmcfc, EL-6:pghmcfc) 
perl-Mail-Sender (devel:spot, EL-6:spot) 
perl-SQL-Statement (devel:psabata, EL-6:kanarip) 
perl-String-Random (devel:eseyman, EL-6:eseyman) 
perl-Test-Class (devel:steve, EL-6:steve) 
perl-Want (devel:corsepiu, EL-6:laxathom) 

Thanks!
Lubo

--
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-LWP-Protocol-https package in epel-7

2014-01-14 Thread Lubomir Rintel
Dear perl-LWP-Protocol-https package maintainer(s),

build of our package perl-WWW-Splunk in EPEL-7 depends on your package.
I'd be very thankful if you could request [1] a epel-7 branch for it and
do a build. If there's any reason you won't do it, please let me know
and I'd take care of the epel-7 branch myself.

[1] https://fedoraproject.org/wiki/EPEL/epel7/Requests

Thank you!
Lubo

--
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-SOAP-Lite package in epel-7

2014-01-14 Thread Lubomir Rintel
Dear perl-SOAP-Lite package maintainer(s),

build of our package perl-WWW-Salesforce in EPEL-7 depends on your
package. I'd be very thankful if you could request [1] a epel-7 branch
for it and do a build. If there's any reason you won't do it, please let
me know and I'd take care of the epel-7 branch myself.

[1] https://fedoraproject.org/wiki/EPEL/epel7/Requests

Thank you!
Lubo


--
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-Data-Visitor package in epel-7

2014-01-14 Thread Lubomir Rintel
Dear perl-Data-Visitor package maintainer(s),

build of our package perl-Moose in EPEL-7 depends on your package. I'd
be very thankful if you could request [1] a epel-7 branch for it and do
a build. If there's any reason you won't do it, please let me know and
I'd take care of the epel-7 branch myself.

[1] https://fedoraproject.org/wiki/EPEL/epel7/Requests

Thank you!
Lubo

--
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-Class-Accessor package in epel-7

2014-01-14 Thread Lubomir Rintel
Dear perl-Class-Accessor package maintainer(s),

build of our package  in EPEL-7 depends on your package. I'd be very
thankful if you could request [1] a epel-7 branch for it and do a build.
If there's any reason you won't do it, please let me know and I'd take
care of the epel-7 branch myself.

[1] https://fedoraproject.org/wiki/EPEL/epel7/Requests

Thank you!
Lubo


--
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-Data-Visitor/epel7] (3 commits) ...update to 0.30

2014-01-14 Thread Lubomir Rintel
Summary of changes:

  7a750d6... Perl 5.18 rebuild (*)
  0527d0e... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  3c1392d... update to 0.30 (*)

(*) 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

[perl-Net-Amazon-EC2/epel7] (5 commits) ...Add missing BRs

2014-01-13 Thread Lubomir Rintel
Summary of changes:

  24ca145... Perl 5.18 rebuild (*)
  ed875e1... Specify all dependencies (*)
  22dc39a... Attempt at saner SPEC file formatting (*)
  fb2b8a0... Bump version (*)
  0fd0958... Add missing BRs (*)

(*) 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

[perl-LWP-Protocol-https/epel7] (2 commits) ...- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild

2014-01-13 Thread Lubomir Rintel
Summary of changes:

  2304150... Perl 5.18 rebuild (*)
  c0d0de8... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)

(*) 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

[perl-Moose/epel7] (4 commits) ...update to 2.1005

2014-01-13 Thread Lubomir Rintel
Summary of changes:

  2ecf50c... Perl 5.18 rebuild (*)
  44489d8... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  bb707ce... Perl 5.18 re-rebuild of bootstrapped packages (*)
  247ec82... update to 2.1005 (*)

(*) 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

[perl-Net-Amazon-EC2/el6: 15/15] Merge branch 'master' into el6

2014-01-10 Thread Lubomir Rintel
commit 5bb972ed993a7cf945ca7b6b2df4c21496c88bf5
Merge: 4b0d214 6799e49
Author: Lubomir Rintel lkund...@v3.sk
Date:   Fri Jan 10 15:52:49 2014 +0100

Merge branch 'master' into el6

 .gitignore   |2 +
 perl-Net-Amazon-EC2.spec |   87 +-
 sources  |2 +-
 3 files changed, 73 insertions(+), 18 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

File Net-Amazon-EC2-0.24.tar.gz uploaded to lookaside cache by lkundrak

2014-01-10 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-Net-Amazon-EC2:

558c1ae48e2c82dd49a8607cbc811a7e  Net-Amazon-EC2-0.24.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-Net-Amazon-EC2/el6] (15 commits) ...Merge branch 'master' into el6

2014-01-10 Thread Lubomir Rintel
Summary of changes:

  eb8f1f3... - 661697 rebuild for fixing problems with vendorach/lib (*)
  6791333... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  d4f9cc1... Perl mass rebuild (*)
  2ebd09c... Perl mass rebuild (*)
  faae6ff... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass (*)
  29d708f... Perl 5.16 rebuild (*)
  6ceb0e0... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  1caf57d... - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass (*)
  24ca145... Perl 5.18 rebuild (*)
  ed875e1... Specify all dependencies (*)
  22dc39a... Attempt at saner SPEC file formatting (*)
  fb2b8a0... Bump version (*)
  0fd0958... Add missing BRs (*)
  6799e49... Update to a new version (*)
  5bb972e... Merge branch 'master' into el6

(*) 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

[perl-Net-Amazon-EC2] Update to a new version

2014-01-10 Thread Lubomir Rintel
commit 6799e49a9db240d2820b1e403cc68de5527d4a49
Author: Lubomir Rintel lkund...@v3.sk
Date:   Fri Jan 10 15:51:58 2014 +0100

Update to a new version

 .gitignore   |1 +
 perl-Net-Amazon-EC2.spec |7 +--
 sources  |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c43b789..6ba0610 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Net-Amazon-EC2-0.14.tar.gz
 /Net-Amazon-EC2-0.23.tar.gz
+/Net-Amazon-EC2-0.24.tar.gz
diff --git a/perl-Net-Amazon-EC2.spec b/perl-Net-Amazon-EC2.spec
index 0068ed2..b838518 100644
--- a/perl-Net-Amazon-EC2.spec
+++ b/perl-Net-Amazon-EC2.spec
@@ -1,11 +1,11 @@
 Summary: Perl interface to the Amazon Elastic Compute Cloud (EC2)
 Name: perl-Net-Amazon-EC2
-Version: 0.23
+Version: 0.24
 Release: 1%{?dist}
 License: GPL+ or Artistic
 Group: Development/Libraries
 URL: http://search.cpan.org/dist/Net-Amazon-EC2/
-Source0: 
http://search.cpan.org/CPAN/authors/id/M/MA/MALLEN/Net-Amazon-EC2-0.23.tar.gz
+Source0: 
http://search.cpan.org/CPAN/authors/id/M/MA/MALLEN/Net-Amazon-EC2-%{version}.tar.gz
 
 
 BuildArch: noarch
@@ -171,6 +171,9 @@ make test
 
 
 %changelog
+* Fri Jan 10 2014 Lubomir Rintel lkund...@v3.sk - 0.24-1
+- Update to a later upstream release
+
 * Mon Oct 28 2013 Lubomir Rintel lkund...@v3.sk - 0.23-1
 - Update to a later upstream release
 
diff --git a/sources b/sources
index 374fbe8..3e71674 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-678cf13562b3364b7fbb06bd120f5dc9  Net-Amazon-EC2-0.23.tar.gz
+558c1ae48e2c82dd49a8607cbc811a7e  Net-Amazon-EC2-0.24.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

File Net-Amazon-EC2-0.23.tar.gz uploaded to lookaside cache by lkundrak

2013-10-27 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-Net-Amazon-EC2:

678cf13562b3364b7fbb06bd120f5dc9  Net-Amazon-EC2-0.23.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-Net-Amazon-EC2] Bump version

2013-10-27 Thread Lubomir Rintel
commit fb2b8a0250e491b9184cb564dfd54f9947f2c105
Author: Lubomir Rintel lkund...@v3.sk
Date:   Mon Oct 28 00:32:20 2013 +0100

Bump version

 .gitignore   |1 +
 perl-Net-Amazon-EC2.spec |   16 
 sources  |2 +-
 3 files changed, 14 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 5b6771a..c43b789 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Net-Amazon-EC2-0.14.tar.gz
+/Net-Amazon-EC2-0.23.tar.gz
diff --git a/perl-Net-Amazon-EC2.spec b/perl-Net-Amazon-EC2.spec
index ebe142b..9f63a92 100644
--- a/perl-Net-Amazon-EC2.spec
+++ b/perl-Net-Amazon-EC2.spec
@@ -1,11 +1,11 @@
 Summary: Perl interface to the Amazon Elastic Compute Cloud (EC2)
 Name: perl-Net-Amazon-EC2
-Version: 0.14
-Release: 12%{?dist}
+Version: 0.23
+Release: 1%{?dist}
 License: GPL+ or Artistic
 Group: Development/Libraries
-URL: http://search.cpan.org/~jkim/Net-Amazon-EC2/
-Source0: 
http://search.cpan.org/CPAN/authors/id/J/JK/JKIM/Net-Amazon-EC2-%{version}.tar.gz
+URL: http://search.cpan.org/dist/Net-Amazon-EC2/
+Source0: 
http://search.cpan.org/CPAN/authors/id/M/MA/MALLEN/Net-Amazon-EC2-0.23.tar.gz
 
 
 BuildArch: noarch
@@ -35,6 +35,7 @@ BuildRequires: perl(XML::Simple) = 2.18
 # Tests:
 BuildRequires: perl(blib)
 BuildRequires: perl(Test::More)
+BuildRequires: perl(LWP::Protocol::https)
 
 
 Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
@@ -84,6 +85,7 @@ make test
 %{perl_vendorlib}/Net/Amazon/EC2/DescribeImagesResponse.pm
 %{perl_vendorlib}/Net/Amazon/EC2/DescribeInstanceAttributeResponse.pm
 %{perl_vendorlib}/Net/Amazon/EC2/DescribeKeyPairsResponse.pm
+%{perl_vendorlib}/Net/Amazon/EC2/DescribeTags.pm
 %{perl_vendorlib}/Net/Amazon/EC2/EbsBlockDevice.pm
 %{perl_vendorlib}/Net/Amazon/EC2/EbsInstanceBlockDeviceMapping.pm
 %{perl_vendorlib}/Net/Amazon/EC2/Error.pm
@@ -112,6 +114,7 @@ make test
 %{perl_vendorlib}/Net/Amazon/EC2/SnapshotAttribute.pm
 %{perl_vendorlib}/Net/Amazon/EC2/Snapshot.pm
 %{perl_vendorlib}/Net/Amazon/EC2/StateReason.pm
+%{perl_vendorlib}/Net/Amazon/EC2/TagSet.pm
 %{perl_vendorlib}/Net/Amazon/EC2/UserData.pm
 %{perl_vendorlib}/Net/Amazon/EC2/UserIdGroupPair.pm
 %{perl_vendorlib}/Net/Amazon/EC2/Volume.pm
@@ -129,6 +132,7 @@ make test
 %{_mandir}/man3/Net::Amazon::EC2::DescribeImagesResponse.3pm*
 %{_mandir}/man3/Net::Amazon::EC2::DescribeInstanceAttributeResponse.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::DescribeKeyPairsResponse.3pm*
+%{_mandir}/man3/Net::Amazon::EC2::DescribeTags.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::EbsBlockDevice.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::EbsInstanceBlockDeviceMapping.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::Error.3pm*
@@ -156,6 +160,7 @@ make test
 %{_mandir}/man3/Net::Amazon::EC2::Snapshot.3pm*
 %{_mandir}/man3/Net::Amazon::EC2::SnapshotAttribute.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::StateReason.3pm.gz
+%{_mandir}/man3/Net::Amazon::EC2::TagSet.3pm.gz
 %{_mandir}/man3/Net::Amazon::EC2::UserData.3pm*
 %{_mandir}/man3/Net::Amazon::EC2::UserIdGroupPair.3pm*
 %{_mandir}/man3/Net::Amazon::EC2::Volume.3pm*
@@ -164,6 +169,9 @@ make test
 
 
 %changelog
+* Mon Oct 28 2013 Lubomir Rintel lkund...@v3.sk - 0.23-1
+- Update to a later upstream release
+
 * Thu Oct 24 2013 Lubomir Rintel lkund...@v3.sk - 0.14-12
 - Bulk sad and useless attempt at consistent SPEC file formatting
 
diff --git a/sources b/sources
index 1bbf733..374fbe8 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-09a2f4a6f184f080d2e80204e331f092  Net-Amazon-EC2-0.14.tar.gz
+678cf13562b3364b7fbb06bd120f5dc9  Net-Amazon-EC2-0.23.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-Net-Amazon-EC2] Add missing BRs

2013-10-27 Thread Lubomir Rintel
commit 0fd09587c511233d1a5ca23a2743fcfb850edf12
Author: Lubomir Rintel lkund...@v3.sk
Date:   Mon Oct 28 01:04:33 2013 +0100

Add missing BRs

 perl-Net-Amazon-EC2.spec |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/perl-Net-Amazon-EC2.spec b/perl-Net-Amazon-EC2.spec
index 9f63a92..0068ed2 100644
--- a/perl-Net-Amazon-EC2.spec
+++ b/perl-Net-Amazon-EC2.spec
@@ -35,7 +35,9 @@ BuildRequires: perl(XML::Simple) = 2.18
 # Tests:
 BuildRequires: perl(blib)
 BuildRequires: perl(Test::More)
+BuildRequires: perl(Test::Exception)
 BuildRequires: perl(LWP::Protocol::https)
+BuildRequires: perl(CPAN)
 
 
 Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
--
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-Net-Amazon-EC2/f20] (3 commits) ...Add missing BRs

2013-10-27 Thread Lubomir Rintel
Summary of changes:

  22dc39a... Attempt at saner SPEC file formatting (*)
  fb2b8a0... Bump version (*)
  0fd0958... Add missing BRs (*)

(*) 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

[perl-OpenOffice-UNO] Attempt at saner SPEC file formatting

2013-10-24 Thread Lubomir Rintel
commit a9f17f26f7753fe2e0650974cf167cacf3de60ba
Author: Lubomir Rintel lkund...@v3.sk
Date:   Thu Oct 24 11:39:54 2013 +0200

Attempt at saner SPEC file formatting

I'm doing this semi-automatically across all packages I maintain, since some
are several years old and since then several have suffered bit-rot and such.
I'm fixing up the following:

- Old RPM relics (such as %defattr, BuildRoot or %clean sections)
- Whitespace errors (such as trailing spaces)
- Consistent use of %{buildroot}
- Dropping useless %{name} expansions that harm legibility
- Consistent spacing between RPM sections
- Bad days in %changelogs

 perl-OpenOffice-UNO.spec |   23 +--
 1 files changed, 9 insertions(+), 14 deletions(-)
---
diff --git a/perl-OpenOffice-UNO.spec b/perl-OpenOffice-UNO.spec
index 50a9705..eb2b706 100644
--- a/perl-OpenOffice-UNO.spec
+++ b/perl-OpenOffice-UNO.spec
@@ -1,6 +1,6 @@
 Name:   perl-OpenOffice-UNO
 Version:0.07
-Release:11%{?dist}
+Release:12%{?dist}
 Summary:Interface to OpenOffice's UNO run-time
 License:LGPLv2+ and SISSL
 Group:  Development/Libraries
@@ -10,7 +10,6 @@ Patch0: 0001-Preserve-cflags.patch
 Patch1: 0001-Hardcode-rpath-to-uno-library.patch
 Patch2: OpenOffice-UNO-0.07-libraries.patch
 Patch3: OpenOffice-UNO-0.07-cppumaker.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Cwd)
@@ -51,15 +50,13 @@ make %{?_smp_mflags}
 
 
 %install
-rm -rf $RPM_BUILD_ROOT
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
 
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+find %{buildroot} -type f -name .packlist -exec rm -f {} \;
+find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
+find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null \;
 
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
-find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
-
-%{_fixperms} $RPM_BUILD_ROOT/*
+%{_fixperms} %{buildroot}/*
 
 
 %check
@@ -70,12 +67,7 @@ sleep $(expr \( %__isa_bits - 30 \) \* 6)
 make test
 
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorarch}/auto/*
 %{perl_vendorarch}/OpenOffice*
@@ -83,6 +75,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Thu Oct 24 2013 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com - 
0.07-12
+- Bulk sad and useless attempt at consistent SPEC file formatting
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.07-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
 
--
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-OpenOffice-UNO] Forget OpenOffice.org

2012-08-09 Thread Lubomir Rintel
Summary of changes:

  55a52c1... Forget OpenOffice.org (*)

(*) 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

File OpenOffice-UNO-0.07.tar.gz uploaded to lookaside cache by lkundrak

2012-08-08 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-OpenOffice-UNO:

ed90c11e68387e8e9a97c68f329b5656  OpenOffice-UNO-0.07.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-OpenOffice-UNO/f16] Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm

2012-08-08 Thread Lubomir Rintel
commit d9504edcc6d763d0697b611e01256a2e68f94de3
Author: Lubomir Rintel lubo.rin...@gooddata.com
Date:   Wed Aug 8 20:10:24 2012 +0200

Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm

 .gitignore   |1 +
 0001-Hardcode-rpath-to-uno-library.patch |   21 +++
 0001-Preserve-cflags.patch   |   34 +++
 perl-OpenOffice-UNO.spec |   94 ++
 sources  |1 +
 5 files changed, 151 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..6120475 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/OpenOffice-UNO-0.07.tar.gz
diff --git a/0001-Hardcode-rpath-to-uno-library.patch 
b/0001-Hardcode-rpath-to-uno-library.patch
new file mode 100644
index 000..98ae46e
--- /dev/null
+++ b/0001-Hardcode-rpath-to-uno-library.patch
@@ -0,0 +1,21 @@
+From c6d3606893c90f3105f432cee0d37c322f579c13 Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lubo.rin...@gooddata.com
+Date: Thu, 9 Feb 2012 14:38:07 +0100
+Subject: [PATCH] Hardcode rpath to uno library
+
+diff --git a/Makefile.PL b/Makefile.PL
+index 9ac1884..a1177cb 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -165,6 +165,8 @@ WriteMakefile (
+ 'LDDLFLAGS'   = $uno_libpath . ' ' . $Config{'lddlflags'}  . ' ',
+ 'LIBS'= [ $uno_libpath . ' ' . $LinkLibs ],
+ 'INC' =  -Iblib/uno -I$sdk_dir/include ,
++'dynamic_lib' = { 'OTHERLDFLAGS' = -Wl,-rpath=$uno_lib
++ },
+ 'depend'  = { '$(OBJECT)' = 'blib/uno/headers perluno',
+},
+ 'clean'   = { 'FILES' = 'test2_export.pdf test2_save.sxw perluno',
+-- 
+1.7.1
+
diff --git a/0001-Preserve-cflags.patch b/0001-Preserve-cflags.patch
new file mode 100644
index 000..d7b6bf1
--- /dev/null
+++ b/0001-Preserve-cflags.patch
@@ -0,0 +1,34 @@
+From 082b95a3d12f718e76ea4f1beba7843e9884d95e Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lubo.rin...@gooddata.com
+Date: Thu, 9 Feb 2012 14:16:54 +0100
+Subject: [PATCH] Preserve cflags
+
+---
+ Makefile.PL |4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index a5d6978..d7071eb 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -88,7 +88,7 @@ $cwd = cwd();
+ $sdk_dir = $ENV{'OO_SDK_HOME'};
+ $cc = $ENV{'CXX'} || $Config{'cc'};
+ $ld = $ENV{'CXX'} || $Config{'ld'};
+-$cc_flags = '';
++$cc_flags = $Config{'ccflags'};
+ $uno_lib = $ENV{'OO_SDK_URE_LIB_DIR'};
+ $uno_libpath = -L$uno_lib;
+ if( $^O eq 'MSWin32' ) {
+@@ -98,7 +98,7 @@ if( $^O eq 'MSWin32' ) {
+ $uno_lib   = $sdk_dir . \\windows\\lib;
+ $uno_libpath = -libpath:$uno_lib;
+ $ld = 'link';
+-$cc_flags = ' /TP /EHsc ';
++$cc_flags .= ' /TP /EHsc ';
+ } else {
+ $psep = '/';
+ @config = split '-', qx[$sdk_dir/config.guess];
+-- 
+1.7.1
+
diff --git a/perl-OpenOffice-UNO.spec b/perl-OpenOffice-UNO.spec
new file mode 100644
index 000..297db82
--- /dev/null
+++ b/perl-OpenOffice-UNO.spec
@@ -0,0 +1,94 @@
+%if 0%{?rhel}  7  0%{?fedora}  16
+%global soffice openoffice.org
+%else
+%global soffice libreoffice
+%endif
+
+Name:   perl-OpenOffice-UNO
+Version:0.07
+Release:3%{?dist}
+Summary:Interface to OpenOffice's UNO run-time
+License:LGPLv2+ and SISSL
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/OpenOffice-UNO/
+Source0:
http://www.cpan.org/authors/id/M/MB/MBARBON/OpenOffice-UNO-%{version}.tar.gz
+Patch0: 0001-Preserve-cflags.patch
+Patch1: 0001-Hardcode-rpath-to-uno-library.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(Cwd)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(File::Path)
+BuildRequires:  /usr/bin/ooffice
+BuildRequires:  %{soffice}-sdk = 1:3
+BuildRequires:  %{soffice}-sdk  1:4
+BuildRequires:  %{soffice}-writer
+BuildRequires:  %{soffice}-calc
+BuildRequires:  %{soffice}-headless
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%description
+A bridge to the OpenOffice.org API.
+
+
+%prep
+%setup -q -n OpenOffice-UNO-%{version}
+%patch0 -p1
+%patch1 -p1
+
+
+%build
+. $(find %{_libdir}/%{soffice} -name setsdkenv_unix.sh -print -quit)
+
+# Auto-set bootstrap. Weird, but similar to what is done for python bindings.
+awk '/bootstrap OpenOffice::UNO/ \
+{print $ENV{URE_BOOTSTRAP} ||= \vnd.sun.star.pathname:'$(echo 
%{_libdir}/%{soffice}*/program/fundamentalrc)'\;}
+{print}' UNO.pm UNO-bootstrap.pm
+mv UNO-bootstrap.pm UNO.pm
+
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
+make %{?_smp_mflags}
+
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name '*.bs

[perl-OpenOffice-UNO/f17] Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm

2012-08-08 Thread Lubomir Rintel
Summary of changes:

  d9504ed... Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm (*)

(*) 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

[perl-OpenOffice-UNO/el6] Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm

2012-08-08 Thread Lubomir Rintel
Summary of changes:

  d9504ed... Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm (*)

(*) 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

[perl-OpenOffice-UNO] Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm

2012-08-08 Thread Lubomir Rintel
Summary of changes:

  d9504ed... Import perl-OpenOffice-UNO-0.07-3.el6.src.rpm (*)

(*) 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

[perl-OpenOffice-UNO/el6] Forget OpenOffice.org

2012-08-08 Thread Lubomir Rintel
commit 55a52c17cf14cfa376780e0c744f948a53922f74
Author: Lubomir Rintel lubo.rin...@gooddata.com
Date:   Thu Aug 9 00:01:31 2012 +0200

Forget OpenOffice.org

- Forget what?

 perl-OpenOffice-UNO.spec |   26 --
 1 files changed, 12 insertions(+), 14 deletions(-)
---
diff --git a/perl-OpenOffice-UNO.spec b/perl-OpenOffice-UNO.spec
index 297db82..b0e82b8 100644
--- a/perl-OpenOffice-UNO.spec
+++ b/perl-OpenOffice-UNO.spec
@@ -1,12 +1,6 @@
-%if 0%{?rhel}  7  0%{?fedora}  16
-%global soffice openoffice.org
-%else
-%global soffice libreoffice
-%endif
-
 Name:   perl-OpenOffice-UNO
 Version:0.07
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Interface to OpenOffice's UNO run-time
 License:LGPLv2+ and SISSL
 Group:  Development/Libraries
@@ -21,11 +15,11 @@ BuildRequires:  perl(Cwd)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Path)
 BuildRequires:  /usr/bin/ooffice
-BuildRequires:  %{soffice}-sdk = 1:3
-BuildRequires:  %{soffice}-sdk  1:4
-BuildRequires:  %{soffice}-writer
-BuildRequires:  %{soffice}-calc
-BuildRequires:  %{soffice}-headless
+BuildRequires:  libreoffice-sdk = 1:3
+BuildRequires:  libreoffice-sdk  1:4
+BuildRequires:  libreoffice-writer
+BuildRequires:  libreoffice-calc
+BuildRequires:  libreoffice-headless
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -39,11 +33,11 @@ A bridge to the OpenOffice.org API.
 
 
 %build
-. $(find %{_libdir}/%{soffice} -name setsdkenv_unix.sh -print -quit)
+. $(find %{_libdir}/libreoffice -name setsdkenv_unix.sh -print -quit)
 
 # Auto-set bootstrap. Weird, but similar to what is done for python bindings.
 awk '/bootstrap OpenOffice::UNO/ \
-{print $ENV{URE_BOOTSTRAP} ||= \vnd.sun.star.pathname:'$(echo 
%{_libdir}/%{soffice}*/program/fundamentalrc)'\;}
+{print $ENV{URE_BOOTSTRAP} ||= \vnd.sun.star.pathname:'$(echo 
%{_libdir}/libreoffice*/program/fundamentalrc)'\;}
 {print}' UNO.pm UNO-bootstrap.pm
 mv UNO-bootstrap.pm UNO.pm
 
@@ -83,6 +77,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Aug 08 2012 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com 0.07-4
+- Forget OpenOffice.org
+- Forget what?
+
 * Sat Feb 11 2012 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com 0.07-3
 - Add missing BRs, fix up the rpath patch (Petr Šabata, #788990)
 
--
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-Config-IniFiles/el6] Fix el6 compatibility

2012-06-01 Thread Lubomir Rintel
commit a0e4d099d04b03afbb376fcedf5ae8176de6ca9b
Author: Lubomir Rintel lubo.rin...@gooddata.com
Date:   Fri Jun 1 14:07:31 2012 +0200

Fix el6 compatibility

 .gitignore   |1 +
 perl-Config-IniFiles-2.72-el6.patch  |   52 ++
 perl-Config-IniFiles-2.72-warn.patch |   25 
 perl-Config-IniFiles.spec|   13 ++--
 4 files changed, 88 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 56f96e5..50b5e6a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 Config-IniFiles-2.47.tar.gz
+/Config-IniFiles-2.72.tar.gz
diff --git a/perl-Config-IniFiles-2.72-el6.patch 
b/perl-Config-IniFiles-2.72-el6.patch
new file mode 100644
index 000..c1be389
--- /dev/null
+++ b/perl-Config-IniFiles-2.72-el6.patch
@@ -0,0 +1,52 @@
+From 53d46071471820e0f18b5f5cd439e24cb7f94678 Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lubo.rin...@gooddata.com
+Date: Fri, 1 Jun 2012 13:55:39 +0200
+Subject: [PATCH 1/2] Older List::MoreUtils provide no 'none' function
+
+---
+ lib/Config/IniFiles.pm |8 
+ 1 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/lib/Config/IniFiles.pm b/lib/Config/IniFiles.pm
+index 32a496e..1ababa2 100644
+--- a/lib/Config/IniFiles.pm
 b/lib/Config/IniFiles.pm
+@@ -11,7 +11,7 @@ use Carp;
+ use Symbol 'gensym','qualify_to_ref';   # For the 'any data type' hack
+ use Fcntl qw( SEEK_SET SEEK_CUR );
+ 
+-use List::MoreUtils qw(any none);
++use List::MoreUtils qw(any);
+ 
+ use File::Basename qw( dirname );
+ use File::Temp qw/ tempfile /;
+@@ -687,7 +687,7 @@ sub newval {
+ 
+ $self-AddSection($sect);
+ 
+-if (none { $_ eq $parm } @{$self-{parms}{$sect}})
++if (not grep { $_ eq $parm } @{$self-{parms}{$sect}})
+ {
+ CORE::push(@{$self-{parms}{$sect}}, $parm)
+ }
+@@ -1394,7 +1394,7 @@ sub _touch_section {
+ 
+ $self-{mysects} ||= [];
+ 
+-if (none { $_ eq $sect } @{$self-{mysects}})
++if (not grep { $_ eq $sect } @{$self-{mysects}})
+ {
+ CORE::push @{$self-{mysects}}, $sect;
+ }
+@@ -1535,7 +1535,7 @@ sub _SetGroupMember_helper
+ $self-{group}{$group} = [];
+ }
+ 
+-if (none {$_ eq $sect} @{$self-{group}{$group}}) {
++if (not grep {$_ eq $sect} @{$self-{group}{$group}}) {
+ CORE::push @{$self-{group}{$group}}, $sect;
+ }
+ 
+-- 
+1.7.1
+
diff --git a/perl-Config-IniFiles-2.72-warn.patch 
b/perl-Config-IniFiles-2.72-warn.patch
new file mode 100644
index 000..98bd8d0
--- /dev/null
+++ b/perl-Config-IniFiles-2.72-warn.patch
@@ -0,0 +1,25 @@
+From 688ed6edbc7d94181657de0de2ac9dc1ea5a20da Mon Sep 17 00:00:00 2001
+From: Lubomir Rintel lubo.rin...@gooddata.com
+Date: Fri, 1 Jun 2012 13:52:38 +0200
+Subject: [PATCH 2/2] Get rid of a warning
+
+---
+ lib/Config/IniFiles.pm |2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/lib/Config/IniFiles.pm b/lib/Config/IniFiles.pm
+index 1ababa2..281c78c 100644
+--- a/lib/Config/IniFiles.pm
 b/lib/Config/IniFiles.pm
+@@ -823,7 +823,7 @@ sub _no_filename
+ {
+ my $self = shift;
+ 
+-return not length $self-{cf};
++return not length ($self-{cf} || '');
+ }
+ 
+ sub _read_line_num
+-- 
+1.7.1
+
diff --git a/perl-Config-IniFiles.spec b/perl-Config-IniFiles.spec
index 24b491c..58eeb37 100644
--- a/perl-Config-IniFiles.spec
+++ b/perl-Config-IniFiles.spec
@@ -1,6 +1,6 @@
 Name:   perl-Config-IniFiles
 Version:2.72
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:A module for reading .ini-style configuration files
 
 Group:  Development/Libraries
@@ -9,6 +9,9 @@ URL:http://search.cpan.org/dist/Config-IniFiles/
 Source0:
http://www.cpan.org/authors/id/S/SH/SHLOMIF/Config-IniFiles-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
+Patch0: perl-Config-IniFiles-2.72-el6.patch
+Patch1: perl-Config-IniFiles-2.72-warn.patch
+
 BuildRequires:  perl(Module::Build::Compat)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::More)
@@ -27,6 +30,8 @@ from a tied hash.
 
 %prep
 %setup -q -n Config-IniFiles-%{version}
+%patch0 -p1
+%patch1 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -42,9 +47,7 @@ chmod -R u+w $RPM_BUILD_ROOT/*
 
 
 %check
-%if 0%{?fedora}
 make test
-%endif
 
 
 %clean
@@ -59,6 +62,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Jun 01 2012 Lubomir Rintel (GoodData) lubo.rin...@gooddata.com - 2.72-2
+- Fix compatibility with el6
+- Enable test suite
+
 * Fri May 11 2012 Tom Callaway s...@fedoraproject.org - 2.72-1
 - update to 2.72
 - notable fix: SECURITY BUG FIX: Config::IniFiles used to write 
--
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 RPM2-0.69.tar.gz uploaded to lookaside cache by lkundrak

2011-02-08 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-RPM2:

202edc6fdfffab604c68dbae8beb7070  RPM2-0.69.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-RPM2] Update to 0.69

2011-02-08 Thread Lubomir Rintel
commit 69afcce8904299a3b7a929cf66671c973fb65f9c
Author: Lubomir Rintel lkund...@v3.sk
Date:   Tue Feb 8 20:28:26 2011 +0100

Update to 0.69

 .gitignore |1 +
 ...-RPM2-0.66-remove-rpmdb-redhat-dependency.patch |   31 ---
 perl-RPM2-0.66-skip-root-tests.patch   |   45 
 perl-RPM2-0.67-inttypes.patch  |   61 -
 perl-RPM2-0.67-rpm46.patch |  232 
 perl-RPM2-0.68-Adapt-to-rpm-4.9.0.patch|   32 ---
 perl-RPM2-elf.patch|   11 -
 perl-RPM2.spec |9 +-
 sources|2 +-
 9 files changed, 7 insertions(+), 417 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b0c9f9d..6c5efe3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 RPM2-0.68.tar.gz
+/RPM2-0.69.tar.gz
diff --git a/perl-RPM2.spec b/perl-RPM2.spec
index b9f7649..18eafb4 100644
--- a/perl-RPM2.spec
+++ b/perl-RPM2.spec
@@ -1,12 +1,11 @@
 Name:   perl-RPM2
-Version:0.68
-Release:10%{?dist}
+Version:0.69
+Release:1%{?dist}
 Summary:Perl bindings for the RPM Package Manager API
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/RPM2/
 Source0:
http://www.cpan.org/authors/id/L/LK/LKUNDRAK/RPM2-%{version}.tar.gz
-Patch0: perl-RPM2-0.68-Adapt-to-rpm-4.9.0.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  rpm-devel perl(ExtUtils::MakeMaker)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
@@ -21,7 +20,6 @@ bindings for the RPM Package Manager API.
 
 %prep
 %setup -q -n RPM2-%{version}
-%patch0 -p1 -b .adapt
 
 
 %build
@@ -58,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Feb 08 2011 Lubomir Rintel lkund...@v3.sk - 0.69-1
+- Release 0.69
+
 * Fri Jan 21 2011 Petr Pisar ppi...@redhat.com - 0.68-10
 - Partial adjustment to rpm-4.9.0. Can compile, cannot run (see bug #671389).
 
diff --git a/sources b/sources
index 12fefef..252af22 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-12de7dcb31955bfa595b597392d048bb  RPM2-0.68.tar.gz
+202edc6fdfffab604c68dbae8beb7070  RPM2-0.69.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


File KinoSearch-0.31.tar.gz uploaded to lookaside cache by lkundrak

2010-12-12 Thread Lubomir Rintel
A file has been added to the lookaside cache for perl-KinoSearch:

c9f0e05b9131fca33c4cb42ece2f5a9f  KinoSearch-0.31.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-KinoSearch] Import new version

2010-12-12 Thread Lubomir Rintel
commit 3d9d9414f8e853d2d104b2354849436f2d61d66d
Author: Lubomir Rintel lkund...@v3.sk
Date:   Sun Dec 12 16:07:03 2010 +0100

Import new version

 .gitignore |1 +
 KinoSearch-0.164-ppc.patch |   16 
 perl-KinoSearch.spec   |   15 ---
 sources|2 +-
 4 files changed, 10 insertions(+), 24 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 691c164..7b5ae98 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 KinoSearch-0.165.tar.gz
+/KinoSearch-0.31.tar.gz
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index c0be346..f6c8f12 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -1,6 +1,7 @@
 Name:   perl-KinoSearch
-Version:0.165
-Release:4%{?dist}
+Version:0.31
+Release:1%{?dist}
+Epoch:  1
 Summary:Search engine library
 # ApacheLicense2.0.txt included is included just becuase the upstream
 # author decided to include it and is only for informative purposes.
@@ -20,10 +21,12 @@ BuildRequires:  perl(Lingua::StopWords) = 0.02
 BuildRequires:  perl(Module::Build)
 BuildRequires:  perl(Test::Pod::Coverage) = 1.04
 BuildRequires:  perl(Test::Pod) = 1.14
+BuildRequires:  perl(Time::HiRes)
 Requires:   perl(Compress::Zlib)
 Requires:   perl(Lingua::Stem::Snowball) = 0.94
 Requires:   perl(Lingua::StopWords) = 0.02
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(Time::HiRes)
 
 %description
 KinoSearch is a loose port of the Java search engine library Apache Lucene,
@@ -62,11 +65,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
-* Sun May 02 2010 Marcela Maslanova mmasl...@redhat.com - 0.165-4
-- Mass rebuild with perl-5.12.0
-
-* Mon Dec  7 2009 Stepan Kasal ska...@redhat.com - 0.165-3
-- rebuild against perl 5.10.1
+* Sun Dec 12 2010 Lubomir Rintel lkund...@v3.sk - 1:0.31-1
+- BR Time::HiRes to fix el6 build
+- Rebase to later version
 
 * Sun Jul 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.165-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
diff --git a/sources b/sources
index 8cf29cc..4bf1708 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c191fd096aaf4d6219bbb36812551693  KinoSearch-0.165.tar.gz
+c9f0e05b9131fca33c4cb42ece2f5a9f  KinoSearch-0.31.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-KinoSearch] Filter useless provide

2010-12-12 Thread Lubomir Rintel
commit 7e278932d2872263ac7a25f122b4533ee6491e87
Author: Lubomir Rintel lkund...@v3.sk
Date:   Sun Dec 12 16:11:03 2010 +0100

Filter useless provide

 perl-KinoSearch.spec |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/perl-KinoSearch.spec b/perl-KinoSearch.spec
index f6c8f12..b7e8e5c 100644
--- a/perl-KinoSearch.spec
+++ b/perl-KinoSearch.spec
@@ -28,6 +28,8 @@ Requires:   perl(Lingua::StopWords) = 0.02
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 Requires:   perl(Time::HiRes)
 
+%{?perl_default_filter}
+
 %description
 KinoSearch is a loose port of the Java search engine library Apache Lucene,
 written in Perl and C. The archetypal application is website search, but it
--
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-KinoSearch/el6/master] (7 commits) ...Merge branch 'master' into el6

2010-12-12 Thread Lubomir Rintel
Summary of changes:

  a3b0855... Fix typo that causes a failure to update the common directo (*)
  70f3561... - rebuild against perl 5.10.1 (*)
  c8d3410... - Mass rebuild with perl-5.12.0 (*)
  2fe799f... dist-git conversion (*)
  3d9d941... Import new version (*)
  7e27893... Filter useless provide (*)
  0330089... Merge branch 'master' into el6

(*) 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


  1   2   >