Broken dependencies: perl-Language-Expr

2014-05-13 Thread buildsys


perl-Language-Expr has broken dependencies in the rawhide tree:
On x86_64:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On i386:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
On armhfp:
perl-Language-Expr-0.19-4.fc19.noarch requires 
perl(:MODULE_COMPAT_5.16.2)
Please resolve this as soon as possible.


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

File stompclt-1.2.tar.gz uploaded to lookaside cache by abeche

2014-05-13 Thread Alexandre Beche
A file has been added to the lookaside cache for stompclt:

a750fa20be60dfef1cb607331fc53241  stompclt-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

[Bug 1094440] CVE-2014-3230 perl-libwww-perl: incorrect handling of SSL certificate verification

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094440



--- Comment #11 from Petr Pisar ppi...@redhat.com ---
Created attachment 895124
  -- https://bugzilla.redhat.com/attachment.cgi?id=895124action=edit
Part3 for 6.04 to restore behavior in F19

This patch is needed for F19 only because there is old IO::Socket::SSL which
still defaults to no peer certificate verification.

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

[Bug 1094442] perl-libwww-perl: incorrect handling of SSL certificate verification [fedora-all]

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1094442



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-LWP-Protocol-https-6.04-2.fc19 has been submitted as an update for Fedora
19.
https://admin.fedoraproject.org/updates/perl-LWP-Protocol-https-6.04-2.fc19

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

[Bug 1058664] FTBFS: perl-eperl-2.2.14-25.fc21: format not a string literal and no format arguments [-Werror=format-security]

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1058664

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|st...@silug.org |ppi...@redhat.com



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

[perl-eperl] Fix format-security compiler warnings

2014-05-13 Thread Petr Pisar
commit 3d4715eeb84d518e25828c55aa5b73a908a5d188
Author: Petr Písař ppi...@redhat.com
Date:   Tue May 13 15:51:53 2014 +0200

Fix format-security compiler warnings

 14-Fix-format-security-compiler-warnings.patch |   53 
 perl-eperl.spec|8 +++-
 2 files changed, 60 insertions(+), 1 deletions(-)
---
diff --git a/eperl-2.2.14-Fix-format-security-compiler-warnings.patch 
b/eperl-2.2.14-Fix-format-security-compiler-warnings.patch
new file mode 100644
index 000..41b7346
--- /dev/null
+++ b/eperl-2.2.14-Fix-format-security-compiler-warnings.patch
@@ -0,0 +1,53 @@
+From f97b4b836298245e8631ad942d788f3d0a1c3c54 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Tue, 13 May 2014 15:47:50 +0200
+Subject: [PATCH] Fix format-security compiler warnings
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Compilation by GCC with -Wall -Werror=format-security flags raises few
+errors. This patch fixes them.
+
+https://bugzilla.redhat.com/show_bug.cgi?id=1058664
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ eperl_main.c  | 4 ++--
+ eperl_perl5.c | 2 +-
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/eperl_main.c b/eperl_main.c
+index e998607..6747cf7 100644
+--- a/eperl_main.c
 b/eperl_main.c
+@@ -150,12 +150,12 @@ void give_version(void)
+ 
+ void give_readme(void)
+ {
+-fprintf(stdout, ePerl_README);
++fputs(ePerl_README, stdout);
+ }
+ 
+ void give_license(void)
+ {
+-fprintf(stdout, ePerl_LICENSE);
++fputs(ePerl_LICENSE, stdout);
+ }
+ 
+ void give_img_logo(void)
+diff --git a/eperl_perl5.c b/eperl_perl5.c
+index d1a981a..045d8cb 100644
+--- a/eperl_perl5.c
 b/eperl_perl5.c
+@@ -212,7 +212,7 @@ int Perl5_Run(int myargc, char **myargv, int mode, int 
fCheck, int keepcwd, char
+ IO_restore_stdout();
+ IO_restore_stderr();
+ if ((cpBuf = ePerl_ReadErrorFile(perlstderr, perlscript, source)) 
!= NULL) {
+-fprintf(stderr, cpBuf);
++fputs(cpBuf, stderr);
+ }
+ CU(EX_FAIL);
+ }
+-- 
+1.9.0
+
diff --git a/perl-eperl.spec b/perl-eperl.spec
index b1e29f5..adc87b6 100644
--- a/perl-eperl.spec
+++ b/perl-eperl.spec
@@ -1,6 +1,6 @@
 Name:   perl-eperl
 Version:2.2.14
-Release:25%{?dist}
+Release:26%{?dist}
 Summary:Embedded Perl Language
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -8,6 +8,8 @@ URL:http://www.ossp.org/pkg/tool/eperl/
 Source0:ftp://ftp.ossp.org/pkg/tool/eperl/eperl-%{version}.tar.gz
 Patch0: 
http://ftp.debian.org/pool/main/e/eperl/eperl_2.2.14-15.1.diff.gz
 Patch1: perl-eperl-5.16compat.patch
+# Fix format-security compiler warnings, bug #1058664
+Patch2: eperl-2.2.14-Fix-format-security-compiler-warnings.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  gdbm-devel
 BuildRequires:  libdb-devel
@@ -33,6 +35,7 @@ which is designed for mod_perl 1.x.
 %setup -q -n eperl-%{version}
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 chmod u+x etc/shtool
 find contrib/utils -perm /0100 -type f -exec chmod 644 {} \;
 
@@ -78,6 +81,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 13 2014 Petr Pisar ppi...@redhat.com - 2.2.14-26
+- Fix format-security compiler warnings (bug #1058664)
+
 * Sun Aug 04 2013 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.2.14-25
 - 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

[Bug 1058664] FTBFS: perl-eperl-2.2.14-25.fc21: format not a string literal and no format arguments [-Werror=format-security]

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1058664

Petr Pisar ppi...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-eperl-2.2.14-26.fc21
 Resolution|--- |RAWHIDE
Last Closed||2014-05-13 10:07:01



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

File Fedora-Rebuild-v0.12.0.tar.gz uploaded to lookaside cache by ppisar

2014-05-13 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Fedora-Rebuild:

77bd547e4ffc482434e70390de715808  Fedora-Rebuild-v0.12.0.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Fedora-Rebuild] 0.12.0 bump

2014-05-13 Thread Petr Pisar
commit 989960177e8e6068141b35caaff7aee0f2bbefff
Author: Petr Písař ppi...@redhat.com
Date:   Tue May 13 16:42:08 2014 +0200

0.12.0 bump

 .gitignore   |1 +
 perl-Fedora-Rebuild.spec |   11 ---
 sources  |2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7b7117c..80e8629 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 /Fedora-Rebuild-v0.9.1.tar.gz
 /Fedora-Rebuild-v0.10.0.tar.gz
 /Fedora-Rebuild-v0.11.0.tar.gz
+/Fedora-Rebuild-v0.12.0.tar.gz
diff --git a/perl-Fedora-Rebuild.spec b/perl-Fedora-Rebuild.spec
index c8ffc29..cba5324 100644
--- a/perl-Fedora-Rebuild.spec
+++ b/perl-Fedora-Rebuild.spec
@@ -1,6 +1,6 @@
 # This file is lincensed under the terms of GPLv2+.
 Name:   perl-Fedora-Rebuild
-Version:0.11.0
+Version:0.12.0
 Release:1%{?dist}
 Summary:Rebuilds Fedora packages from scratch
 License:GPLv3+
@@ -15,10 +15,11 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(DateTime)
+BuildRequires:  perl(Fcntl)
 BuildRequires:  perl(File::Copy)
-BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Path::Tiny)
 BuildRequires:  perl(File::Spec)
-# File::Temp not used at tests
+BuildRequires:  perl(File::Temp)
 # HTTP::Daemon not used at tests
 # HTTP::Status not used at tests
 BuildRequires:  perl(IO::Handle)
@@ -43,6 +44,7 @@ BuildRequires:  perl(version) = 0.77
 BuildRequires:  perl(warnings)
 # Tests:
 BuildRequires:  perl(Data::Compare)
+BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Simple)
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   fedpkg
@@ -81,6 +83,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 13 2014 Petr Pisar ppi...@redhat.com - 0.12.0-1
+- 0.12.0 bump
+
 * Tue Jan 21 2014 Petr Pisar ppi...@redhat.com - 0.11.0-1
 - 0.11.0 bump
 
diff --git a/sources b/sources
index c09891c..932f8b5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c9a76f94fff4abe96961727a2ba132eb  Fedora-Rebuild-v0.11.0.tar.gz
+77bd547e4ffc482434e70390de715808  Fedora-Rebuild-v0.12.0.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Fedora-Rebuild/f20] 0.12.0 bump

2014-05-13 Thread Petr Pisar
Summary of changes:

  9899601... 0.12.0 bump (*)

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

[perl-Fedora-Rebuild/f19] 0.12.0 bump

2014-05-13 Thread Petr Pisar
commit 0dd875241c84b742632ddab14074d492005fcb36
Author: Petr Písař ppi...@redhat.com
Date:   Tue May 13 16:42:08 2014 +0200

0.12.0 bump

 .gitignore   |1 +
 perl-Fedora-Rebuild.spec |   11 ---
 sources  |2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 7b7117c..80e8629 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@
 /Fedora-Rebuild-v0.9.1.tar.gz
 /Fedora-Rebuild-v0.10.0.tar.gz
 /Fedora-Rebuild-v0.11.0.tar.gz
+/Fedora-Rebuild-v0.12.0.tar.gz
diff --git a/perl-Fedora-Rebuild.spec b/perl-Fedora-Rebuild.spec
index 63295eb..ca0e0ef 100644
--- a/perl-Fedora-Rebuild.spec
+++ b/perl-Fedora-Rebuild.spec
@@ -1,6 +1,6 @@
 # This file is lincensed under the terms of GPLv2+.
 Name:   perl-Fedora-Rebuild
-Version:0.11.0
+Version:0.12.0
 Release:1%{?dist}
 Summary:Rebuilds Fedora packages from scratch
 License:GPLv3+
@@ -15,10 +15,11 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(DateTime)
+BuildRequires:  perl(Fcntl)
 BuildRequires:  perl(File::Copy)
-BuildRequires:  perl(File::Path)
+BuildRequires:  perl(File::Path::Tiny)
 BuildRequires:  perl(File::Spec)
-# File::Temp not used at tests
+BuildRequires:  perl(File::Temp)
 # HTTP::Daemon not used at tests
 # HTTP::Status not used at tests
 BuildRequires:  perl(IO::Handle)
@@ -43,6 +44,7 @@ BuildRequires:  perl(version) = 0.77
 BuildRequires:  perl(warnings)
 # Tests:
 BuildRequires:  perl(Data::Compare)
+BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Test::Simple)
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   fedpkg
@@ -81,6 +83,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 13 2014 Petr Pisar ppi...@redhat.com - 0.12.0-1
+- 0.12.0 bump
+
 * Tue Jan 21 2014 Petr Pisar ppi...@redhat.com - 0.11.0-1
 - 0.11.0 bump
 
diff --git a/sources b/sources
index c09891c..932f8b5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c9a76f94fff4abe96961727a2ba132eb  Fedora-Rebuild-v0.11.0.tar.gz
+77bd547e4ffc482434e70390de715808  Fedora-Rebuild-v0.12.0.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[stompclt] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
commit efadb6462e7e8c667e26990be182b03caef7e57f
Author: Alexandre Beche alexandre.be...@gmail.com
Date:   Tue May 13 14:30:55 2014 +0200

update to upstream version 1.2

 .gitignore|1 +
 sources   |2 +-
 stompclt.spec |5 -
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 230e96e..629cb94 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
 /stompclt-0.9.tar.gz
 /stompclt-1.0.tar.gz
 /stompclt-1.1.tar.gz
+/stompclt-1.2.tar.gz
diff --git a/sources b/sources
index abcc112..0654da1 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-b68cf5b120419a23773e862a1bc77544  stompclt-1.1.tar.gz
+a750fa20be60dfef1cb607331fc53241  stompclt-1.2.tar.gz
diff --git a/stompclt.spec b/stompclt.spec
index 78387ae..dfb505b 100644
--- a/stompclt.spec
+++ b/stompclt.spec
@@ -1,6 +1,6 @@
 Summary:   Versatile STOMP client
 Name:  stompclt
-Version:   1.1
+Version:   1.2
 Release:   1%{?dist}
 URL:   http://cern.ch/lionel.cons/perl/%{name}/
 License:   GPL+ or Artistic
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
 %{_mandir}/man1/%{name}.1.*
 
 %changelog
+* Tue May 13 2014 Alexandre Beche alexandre.be...@gmail.com 1.2-1
+- Update to upstream, rhbz #1097055.
+
 * Wed Feb 12 2014 Massimo Paladin massimo.pala...@gmail.com 1.1-1
 - Update to upstream, rhbz #1061604.
 
--
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

[stompclt/f19] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
Summary of changes:

  efadb64... update to upstream version 1.2 (*)

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

[Bug 1097055] Upgrade to new upstream version

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
stompclt-1.2-1.fc19 has been submitted as an update for Fedora 19.
https://admin.fedoraproject.org/updates/stompclt-1.2-1.fc19

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

[stompclt/f20] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
Summary of changes:

  efadb64... update to upstream version 1.2 (*)

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

[Bug 1097055] Upgrade to new upstream version

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
stompclt-1.2-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/stompclt-1.2-1.fc20

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

[stompclt/el5] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
Summary of changes:

  efadb64... update to upstream version 1.2 (*)

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

[Bug 1087336] perl-Term-ProgressBar-2.15 is available

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1087336



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-ProgressBar-2.15-1.fc20 has been pushed to the Fedora 20 stable
repository.  If problems still persist, please make note of it in this bug
report.

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

[Bug 1087336] perl-Term-ProgressBar-2.15 is available

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1087336



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
perl-Term-ProgressBar-2.15-1.fc19 has been pushed to the Fedora 19 stable
repository.  If problems still persist, please make note of it in this bug
report.

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

[Bug 1097055] Upgrade to new upstream version

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055



--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
stompclt-1.2-1.el5 has been submitted as an update for Fedora EPEL 5.
https://admin.fedoraproject.org/updates/stompclt-1.2-1.el5

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

[stompclt/el6] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
Summary of changes:

  efadb64... update to upstream version 1.2 (*)

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

[Bug 1097055] Upgrade to new upstream version

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097055



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
stompclt-1.2-1.el6 has been submitted as an update for Fedora EPEL 6.
https://admin.fedoraproject.org/updates/stompclt-1.2-1.el6

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

[stompclt/epel7] update to upstream version 1.2

2014-05-13 Thread Alexandre Beche
Summary of changes:

  efadb64... update to upstream version 1.2 (*)

(*) 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-CGI-Application/epel7] (3 commits) ...Patch CGI::Application to prevent information disclosure (CVE-2013-7329)

2014-05-13 Thread Ken Dreyer
Summary of changes:

  c797147... Perl 5.18 rebuild (*)
  3e56233... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  2a165d1... Patch CGI::Application to prevent information disclosure (C (*)

(*) 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-HTTP-Exception/epel7] (3 commits) ...Update to 0.04006

2014-05-13 Thread Ken Dreyer
Summary of changes:

  ba38424... - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass (*)
  832697a... Perl 5.18 rebuild (*)
  825b80c... Update to 0.04006 (*)

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

[Bug 1097538] New: [abrt] asciio: gtk_file_system_model_sort.part.0(): perl killed by SIGABRT

2014-05-13 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1097538

Bug ID: 1097538
   Summary: [abrt] asciio: gtk_file_system_model_sort.part.0():
perl killed by SIGABRT
   Product: Fedora
   Version: 19
 Component: perl-App-Asciio
  Assignee: emman...@seyman.fr
  Reporter: cycloptiv...@internode.on.net
QA Contact: extras...@fedoraproject.org
CC: emman...@seyman.fr, mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org



Description of problem:
Replicated bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703414 on
Fedora 19 with asciio package

Name: asciio
Arch: noarch
Version : 1.02.71
Release : 14.fc19

Version-Release number of selected component:
asciio-1.02.71-14.fc19

Additional info:
reporter:   libreport-2.2.1
backtrace_rating: 4
cmdline:/usr/bin/perl -w /usr/bin/asciio
crash_function: gtk_file_system_model_sort.part.0
executable: /usr/bin/perl
kernel: 3.13.11-100.fc19.x86_64
runlevel:   N 5
type:   CCpp
uid:1000

Truncated backtrace:
Thread no. 1 (10 frames)
 #4 gtk_file_system_model_sort.part.0 at /lib64/libgtk-x11-2.0.so.0
 #5 _gtk_file_system_model_update_file at /lib64/libgtk-x11-2.0.so.0
 #6 gtk_file_system_model_query_done at /lib64/libgtk-x11-2.0.so.0
 #7 g_task_return_now at /lib64/libgio-2.0.so.0
 #8 complete_in_idle_cb at /lib64/libgio-2.0.so.0
 #10 g_main_context_iterate.isra.22 at /lib64/libglib-2.0.so.0
 #12 gtk_dialog_run at /lib64/libgtk-x11-2.0.so.0
 #13 XS_Gtk2__Dialog_run at /usr/lib64/perl5/vendor_perl/auto/Gtk2/Gtk2.so
 #14 Perl_pp_entersub at /usr/lib64/perl5/CORE/libperl.so
 #15 Perl_runops_standard at /usr/lib64/perl5/CORE/libperl.so

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