[perl-XML-LibXML] Specify all dependencies

2013-07-03 Thread Jitka Plesnikova
commit eb35a044805c5edf79be78f28bcd93973725d5b6
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Jul 3 10:06:58 2013 +0200

Specify all dependencies

 perl-XML-LibXML.spec |   14 +-
 1 files changed, 13 insertions(+), 1 deletions(-)
---
diff --git a/perl-XML-LibXML.spec b/perl-XML-LibXML.spec
index 6126ae9..14df3de 100644
--- a/perl-XML-LibXML.spec
+++ b/perl-XML-LibXML.spec
@@ -4,7 +4,7 @@ Name:   perl-XML-LibXML
 # it might not be needed anymore
 # this module is maintained, the other is not
 Version:2.0018
-Release:1%{?dist}
+Release:2%{?dist}
 Epoch:  1
 Summary:Perl interface to the libxml2 library
 Group:  Development/Libraries
@@ -12,9 +12,16 @@ License:(GPL+ or Artistic) and MIT
 URL:http://search.cpan.org/dist/XML-LibXML/
 Source0:
http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/XML-LibXML-%{version}.tar.gz
 
 BuildRequires:  libxml2-devel
+BuildRequires:  perl
+BuildRequires:  perl(Config)
+BuildRequires:  perl(Cwd)
 BuildRequires:  perl(Devel::CheckLib)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Symbol)
+BuildRequires:  perl(vars)
+BuildRequires:  perl(warnings)
 # Run-time
 BuildRequires:  perl(base)
 BuildRequires:  perl(Carp)
@@ -25,6 +32,7 @@ BuildRequires:  perl(Encode)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(IO::File)
 BuildRequires:  perl(IO::Handle)
+BuildRequires:  perl(overload)
 BuildRequires:  perl(Scalar::Util)
 BuildRequires:  perl(Tie::Hash)
 BuildRequires:  perl(XML::NamespaceSupport)
@@ -42,6 +50,7 @@ BuildRequires:  perl(Test::Pod) = 1.14
 BuildRequires:  perl(threads)
 BuildRequires:  perl(threads::shared)
 BuildRequires:  perl(URI::file)
+BuildRequires:  perl(utf8)
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 # threads and threads::shared are optional
 Provides:   perl-XML-LibXML-Common = %{version}
@@ -99,6 +108,9 @@ fi
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 03 2013 Jitka Plesnikova jples...@redhat.com - 1:2.0018-2
+- Specify all dependencies
+
 * Tue May 14 2013 Petr Šabata con...@redhat.com - 1:2.0018-1
 - 2.0018 bump; revert the library version requirements
 
--
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 Tree-DAG_Node-1.12.tgz uploaded to lookaside cache by pghmcfc

2013-07-03 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Tree-DAG_Node:

a6ad9e49800448b2823239276a4530b6  Tree-DAG_Node-1.12.tgz
--
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-Tree-DAG_Node] Update to 1.12

2013-07-03 Thread Paul Howarth
commit 695fefa0b9bbf3a3d01f1c7bd455fbe467f88da3
Author: Paul Howarth p...@city-fan.org
Date:   Wed Jul 3 10:09:15 2013 +0100

Update to 1.12

- New upstream release 1.12
  - Change text in README referring to licence to match text in body of 
source,
since it was in conflict with the Artistic Licence V 2.0
  - Rename CHANGES to Changes as per CPAN::Changes::SPEC
  - Various spelling fixes in the docs

 perl-Tree-DAG_Node.spec |   25 -
 sources |2 +-
 2 files changed, 17 insertions(+), 10 deletions(-)
---
diff --git a/perl-Tree-DAG_Node.spec b/perl-Tree-DAG_Node.spec
index af905a6..aae4a51 100644
--- a/perl-Tree-DAG_Node.spec
+++ b/perl-Tree-DAG_Node.spec
@@ -1,5 +1,5 @@
 Name:   perl-Tree-DAG_Node
-Version:1.11
+Version:1.12
 Release:1%{?dist}
 Summary:Class for representing nodes in a tree
 Group:  Development/Libraries
@@ -14,13 +14,13 @@ BuildRequires:  perl(Test::Pod) = 1.45
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %description
-This class encapsulates/makes/manipulates objects that represent nodes
-in a tree structure. The tree structure is not an object itself, but
-is emergent from the linkages you create between nodes.  This class
-provides the methods for making linkages that can be used to build up
-a tree, while preventing you from ever making any kinds of linkages
-which are not allowed in a tree (such as having a node be its own
-mother or ancestor, or having a node have two mothers).
+This class encapsulates/makes/manipulates objects that represent nodes in a
+tree structure. The tree structure is not an object itself, but is emergent
+from the linkages you create between nodes. This class provides the methods
+for making linkages that can be used to build up a tree, while preventing you
+from ever making any kinds of linkages that are not allowed in a tree (such as
+having a node be its own mother or ancestor, or having a node have two
+mothers).
 
 %prep
 %setup -q -n Tree-DAG_Node-%{version}
@@ -38,11 +38,18 @@ find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
 make test
 
 %files
-%doc CHANGES README
+%doc Changes README
 %{perl_vendorlib}/Tree/
 %{_mandir}/man3/Tree::DAG_Node.3pm*
 
 %changelog
+* Wed Jul  3 2013 Paul Howarth p...@city-fan.org - 1.12-1
+- Update to 1.12
+  - Change text in README referring to licence to match text in body of source,
+since it was in conflict with the Artistic Licence V 2.0
+  - Rename CHANGES to Changes as per CPAN::Changes::SPEC
+  - Various spelling fixes in the docs
+
 * Mon Feb  4 2013 Paul Howarth p...@city-fan.org - 1.11-1
 - Update to 1.11
   - License clarified as Artistic 2.0 (CPAN RT#83088)
diff --git a/sources b/sources
index 4c4a67c..02cb7fc 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-362e63bef4711d286ad7542a5055013d  Tree-DAG_Node-1.11.tgz
+a6ad9e49800448b2823239276a4530b6  Tree-DAG_Node-1.12.tgz
--
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-Tree-DAG_Node] Created tag perl-Tree-DAG_Node-1.12-1.fc20

2013-07-03 Thread Paul Howarth
The lightweight tag 'perl-Tree-DAG_Node-1.12-1.fc20' was created pointing to:

 695fefa... Update to 1.12
--
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 IO-Socket-SSL-1.951.tar.gz uploaded to lookaside cache by pghmcfc

2013-07-03 Thread Paul Howarth
A file has been added to the lookaside cache for perl-IO-Socket-SSL:

dcaec234df6c405609fef322f6e0c3f9  IO-Socket-SSL-1.951.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-IO-Socket-SSL] Update to 1.951

2013-07-03 Thread Paul Howarth
commit 5289b4544b356a6f0b3c58e3f8d1afb184676940
Author: Paul Howarth p...@city-fan.org
Date:   Wed Jul 3 13:04:57 2013 +0100

Update to 1.951

- New upstream release 1.951
  (1.950)
  - MAJOR BEHAVIOR CHANGE:
- ssl_verify_mode now defaults to verify_peer for client
- Previously it used verify_none, but loudly complained since 1.79 
about it
- It will not complain any longer, but the connection will probably fail
- Please don't simply disable ssl verification; instead, set SSL_ca_file
  etc. so that verification succeeds!
  - MAJOR BEHAVIOR CHANGE:
- It will now complain if the built-in defaults of certs/my-ca.pem or 
ca/
  for CA and certs/{server,client}-{key,cert}.pem for cert and key are
  used, i.e. no certificates are specified explicitly
- In the future these insecure (relative path!) defaults will be removed
  and the CA replaced with the system defaults
  (1.951)
  - Use Net::SSLeay::SSL_CTX_set_default_verify_paths to use openssl's 
built-in
defaults for CA unless CA path/file was given (or IO::Socket::SSL 
built-ins
used)

 perl-IO-Socket-SSL.spec |   30 +++---
 sources |2 +-
 2 files changed, 28 insertions(+), 4 deletions(-)
---
diff --git a/perl-IO-Socket-SSL.spec b/perl-IO-Socket-SSL.spec
index 5de6d18..e7eec89 100644
--- a/perl-IO-Socket-SSL.spec
+++ b/perl-IO-Socket-SSL.spec
@@ -1,11 +1,15 @@
+# Work around Perl/RPM versioning inconsistencies
+%global rpmversion 1.95.1
+%global cpanversion 1.951
+
 Name:  perl-IO-Socket-SSL
-Version:   1.94
+Version:   %{rpmversion}
 Release:   1%{?dist}
 Summary:   Perl library for transparent SSL
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/IO-Socket-SSL/
-Source0:   
http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
+Source0:   
http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{cpanversion}.tar.gz
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 BuildRequires: openssl = 0.9.8
@@ -44,7 +48,7 @@ SSL version selection. As an extra bonus, it works perfectly 
with
 mod_perl.
 
 %prep
-%setup -q -n IO-Socket-SSL-%{version}
+%setup -q -n IO-Socket-SSL-%{cpanversion}
 
 %build
 perl Makefile.PL INSTALLDIRS=vendor
@@ -70,6 +74,26 @@ rm -rf %{buildroot}
 %{_mandir}/man3/IO::Socket::SSL::Utils.3pm*
 
 %changelog
+* Wed Jul  3 2013 Paul Howarth p...@city-fan.org - 1.95.1-1
+- Update to 1.951
+  (1.950)
+  - MAJOR BEHAVIOR CHANGE:
+- ssl_verify_mode now defaults to verify_peer for client
+- Previously it used verify_none, but loudly complained since 1.79 about it
+- It will not complain any longer, but the connection will probably fail
+- Please don't simply disable ssl verification; instead, set SSL_ca_file
+  etc. so that verification succeeds!
+  - MAJOR BEHAVIOR CHANGE:
+- It will now complain if the built-in defaults of certs/my-ca.pem or ca/
+  for CA and certs/{server,client}-{key,cert}.pem for cert and key are
+  used, i.e. no certificates are specified explicitly
+- In the future these insecure (relative path!) defaults will be removed
+  and the CA replaced with the system defaults
+  (1.951)
+  - Use Net::SSLeay::SSL_CTX_set_default_verify_paths to use openssl's built-in
+defaults for CA unless CA path/file was given (or IO::Socket::SSL built-ins
+used)
+
 * Sat Jun  1 2013 Paul Howarth p...@city-fan.org - 1.94-1
 - Update to 1.94
   - Makefile.PL reported wrong version of openssl if Net::SSLeay was not
diff --git a/sources b/sources
index 1aa7f71..a6c96f4 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-96f19be345b87f659d945764b058e750  IO-Socket-SSL-1.94.tar.gz
+dcaec234df6c405609fef322f6e0c3f9  IO-Socket-SSL-1.951.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-IO-Socket-SSL] Created tag perl-IO-Socket-SSL-1.95.1-1.fc20

2013-07-03 Thread Paul Howarth
The lightweight tag 'perl-IO-Socket-SSL-1.95.1-1.fc20' was created pointing to:

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

Broken dependencies: perl-PDL

2013-07-03 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
perl-PDL-2.4.10-6.fc19.x86_64 requires libgd.so.2()(64bit)
On i386:
perl-PDL-2.4.10-6.fc19.i686 requires libgd.so.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

Broken dependencies: perl-Bio-ASN1-EntrezGene

2013-07-03 Thread buildsys


perl-Bio-ASN1-EntrezGene has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
On i386:
perl-Bio-ASN1-EntrezGene-1.091-17.fc19.noarch requires 
perl(Bio::Index::AbstractSeq)
Please resolve this as soon as possible.


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

Broken dependencies: perl-Bio-SamTools

2013-07-03 Thread buildsys


perl-Bio-SamTools has broken dependencies in the rawhide tree:
On x86_64:
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires 
perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.x86_64 requires perl(Bio::PrimarySeq)
On i386:
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::SeqFeature::Lite)
perl-Bio-SamTools-1.35-2.fc19.i686 requires perl(Bio::PrimarySeq)
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

[Bug 980883] New: perl-DBD-MySQL requires libmysqlclient.so.18 provided by mariadb.-libs

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=980883

Bug ID: 980883
   Summary: perl-DBD-MySQL requires libmysqlclient.so.18 provided
by mariadb.-libs
   Product: Fedora
   Version: 19
 Component: perl-DBD-MySQL
  Severity: unspecified
  Priority: unspecified
  Assignee: mmasl...@redhat.com
  Reporter: rfuj...@redhat.com
QA Contact: extras...@fedoraproject.org
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org

Description of problem:
Installing community-mysql-server results the community-mysql and mariadb mixed
environment.

Version-Release number of selected component (if applicable):
perl-DBD-MySQL-4.023-2.fc19

How reproducible:
always

Steps to Reproduce:
1. yum -y intall community-mysql-server
2. 
3.

Actual results:
mariadb-libs is installed.

Expected results:
community-mysql-libs is installed.

Additional info:
The document, Features/ReplaceMySQLwithMariaDB, explains that
exclude=mariadb* in yum.conf can avoid to install mariadb packages.
http://fedoraproject.org/wiki/Features/ReplaceMySQLwithMariaDB

But it fails with the dependencies error because perl-DBD-MySQL requires
libmysqlclient.so.18.

# tail -1 /etc/yum.conf
exclude=mariadb*

# yum -y install community-mysql-server
Loaded plugins: langpacks, refresh-packagekit
Resolving Dependencies
-- Running transaction check
--- Package community-mysql-server.x86_64 0:5.5.32-2.fc19 will be installed
-- Processing Dependency: community-mysql-common(x86-64) = 5.5.32-2.fc19 for
package: community-mysql-server-5.5.32-2.fc19.x86_64
-- Processing Dependency: perl-DBI for package:
community-mysql-server-5.5.32-2.fc19.x86_64
-- Processing Dependency: perl-DBD-MySQL for package:
community-mysql-server-5.5.32-2.fc19.x86_64
-- Processing Dependency: perl(DBI) for package:
community-mysql-server-5.5.32-2.fc19.x86_64
-- Processing Dependency: mysql(x86-64) for package:
community-mysql-server-5.5.32-2.fc19.x86_64
-- Running transaction check
--- Package community-mysql.x86_64 0:5.5.32-2.fc19 will be installed
--- Package community-mysql-common.x86_64 0:5.5.32-2.fc19 will be installed
--- Package perl-DBD-MySQL.x86_64 0:4.023-2.fc19 will be installed
-- Processing Dependency: libmysqlclient.so.18(libmysqlclient_16)(64bit) for
package: perl-DBD-MySQL-4.023-2.fc19.x86_64
-- Processing Dependency: libmysqlclient.so.18()(64bit) for package:
perl-DBD-MySQL-4.023-2.fc19.x86_64
--- Package perl-DBI.x86_64 0:1.623-2.fc19 will be installed
-- Processing Dependency: perl(RPC::PlServer) = 0.2001 for package:
perl-DBI-1.623-2.fc19.x86_64
-- Processing Dependency: perl(RPC::PlClient) = 0.2000 for package:
perl-DBI-1.623-2.fc19.x86_64
-- Processing Dependency: perl(Coro::Select) for package:
perl-DBI-1.623-2.fc19.x86_64
-- Processing Dependency: perl(Coro::Handle) for package:
perl-DBI-1.623-2.fc19.x86_64
-- Processing Dependency: perl(Coro) for package: perl-DBI-1.623-2.fc19.x86_64
-- Running transaction check
--- Package perl-Coro.x86_64 0:6.23-2.fc19 will be installed
-- Processing Dependency: perl(IO::AIO) = 3.1 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(Guard) = 0.5 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(Event) = 1.08 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(EV) = 4 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent::BDB) = 1 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent::AIO) = 1 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent) = 7 for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(common::sense) for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(Net::HTTP) for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(BDB) for package: perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent::Util) for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent::Socket) for package:
perl-Coro-6.23-2.fc19.x86_64
-- Processing Dependency: perl(AnyEvent::DNS) for package:
perl-Coro-6.23-2.fc19.x86_64
--- Package perl-DBD-MySQL.x86_64 0:4.023-2.fc19 will be installed
-- Processing Dependency: libmysqlclient.so.18(libmysqlclient_16)(64bit) for
package: perl-DBD-MySQL-4.023-2.fc19.x86_64
-- Processing Dependency: libmysqlclient.so.18()(64bit) for package:
perl-DBD-MySQL-4.023-2.fc19.x86_64
--- Package perl-PlRPC.noarch 0:0.2020-13.fc19 will be installed
-- Processing Dependency: perl(Net::Daemon) = 0.13 for package:
perl-PlRPC-0.2020-13.fc19.noarch
-- Processing Dependency: perl(Net::Daemon::Test) for package:
perl-PlRPC-0.2020-13.fc19.noarch
-- Processing Dependency: perl(Net::Daemon::Log) for package:
perl-PlRPC-0.2020-13.fc19.noarch
-- Processing Dependency: perl(Compress::Zlib) for package:
perl-PlRPC-0.2020-13.fc19.noarch
-- Running transaction check

[Bug 967719] Segfault in Perl_gv_fetchpvn_flags when trying to initialize back_perl openldap backend

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967719

--- Comment #2 from Petr Pisar ppi...@redhat.com ---
What's expected output on the client site?

I have patched perl so that it links all XS modules to libperl.so explicitly in
my private F20 machine, and I do not get any segfaults. Instead I just get an
error message from the second command:

$ sh try.sh
SASL/EXTERNAL authentication started
SASL username: gidNumber=500+uidNumber=500,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry cn=module,cn=config
ldap_add: Insufficient access (50)

SASL/EXTERNAL authentication started
SASL username: gidNumber=500+uidNumber=500,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry olcDatabase=perl,cn=config
ldap_add: Invalid syntax (21)
additional info: objectClass: value #1 invalid per syntax

I guess this is how to should work.

If this is the real fix, than this issue will be fixed in F20.

-- 
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=810l1ShPYga=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 967719] Segfault in Perl_gv_fetchpvn_flags when trying to initialize back_perl openldap backend

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967719

--- Comment #3 from Jan Synacek jsyna...@redhat.com ---
All LDAP operations should succeed without any errors. You don't have
sufficient access rights to modify the LDAP database. Running the script as
root should do it.

You should see something like this:
# ./try.sh 
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry cn=module,cn=config

SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry olcDatabase=perl,cn=config
ldap_result: Can't contact LDAP server (-1)

The last line indicates the termination (you can see that slapd segfaulted in
the console where you ran go.sh). Expected output would look like the one above
minus the 'ldap_result: ...' line. Plus there may be one additional 'adding new
entry' line.

-- 
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=yXGjYWvWFWa=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 967719] Segfault in Perl_gv_fetchpvn_flags when trying to initialize back_perl openldap backend

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967719

--- Comment #4 from Petr Pisar ppi...@redhat.com ---
I run it as a non-root. I get much better results as a root:

# ./try.sh
SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry cn=module,cn=config

SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
adding new entry olcDatabase=perl,cn=config

adding new entry dc=perl-example,dc=com

However the server sometimes segfaults as you reported.

-- 
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=CFW1YMfZwWa=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-XML-LibXML] Correct changelog entry

2013-07-03 Thread Petr Pisar
commit c788fc6121798b171ca3b687a9b6326344c760f8
Author: Petr Písař ppi...@redhat.com
Date:   Wed Jul 3 16:45:08 2013 +0200

Correct changelog entry

 perl-XML-LibXML.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-XML-LibXML.spec b/perl-XML-LibXML.spec
index 14df3de..094e655 100644
--- a/perl-XML-LibXML.spec
+++ b/perl-XML-LibXML.spec
@@ -4,7 +4,7 @@ Name:   perl-XML-LibXML
 # it might not be needed anymore
 # this module is maintained, the other is not
 Version:2.0018
-Release:2%{?dist}
+Release:3%{?dist}
 Epoch:  1
 Summary:Perl interface to the libxml2 library
 Group:  Development/Libraries
@@ -108,6 +108,9 @@ fi
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jul 03 2013 Petr Pisar ppi...@redhat.com - 1:2.0018-3
+- Correct changelog entry
+
 * Wed Jul 03 2013 Jitka Plesnikova jples...@redhat.com - 1:2.0018-2
 - Specify all dependencies
 
@@ -200,7 +203,7 @@ fi
 - Declare all dependencies
 - Enable thread tests
 
-* Wed Jan 10 2012 Marcela Mašláňová mmasl...@redhat.com - 1:1.90-1
+* Tue Jan 10 2012 Marcela Mašláňová mmasl...@redhat.com - 1:1.90-1
 - update to 1.90
 
 * Wed Dec 21 2011 Dan Horák dan[at]danny.cz - 1:1.88-3
--
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-XML-Writer] Change license to CC0

2013-07-03 Thread Jitka Plesnikova
commit 8f9ce19eb3e8e68ba9b3714ad033d26a5487fbe7
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Jul 3 17:15:30 2013 +0200

Change license to CC0

 perl-XML-Writer.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-XML-Writer.spec b/perl-XML-Writer.spec
index 1b5d8a4..6ec3813 100644
--- a/perl-XML-Writer.spec
+++ b/perl-XML-Writer.spec
@@ -1,10 +1,10 @@
 Name:   perl-XML-Writer
 Version:0.623
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:A simple Perl module for writing XML documents
 
 Group:  Development/Libraries
-License:MIT
+License:CC0
 URL:http://search.cpan.org/dist/XML-Writer/
 Source0:
http://www.cpan.org/authors/id/J/JO/JOSEPHW/XML-Writer-%{version}.tar.gz
 
@@ -66,6 +66,9 @@ make test
 
 
 %changelog
+* Wed Jul 03 2013 Jitka Plesnikova jples...@redhat.com - 0.623-2
+- Change license to CC0
+
 * Fri Jun 14 2013 Petr Pisar ppi...@redhat.com - 0.623-1
 - 0.623 bump
 
--
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 828819] annoying warning

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828819

--- Comment #1 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=ppXDLtdTU3a=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 867046] [abrt] perl-Padre-0.90-2.fc17: Process /usr/bin/perl was killed by signal 11 (SIGSEGV)

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=867046

--- Comment #12 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=GGOWXsHP02a=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 979621] yum update failed and impossible to resume with yum load-transaction .. as indicated

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=979621

--- Comment #2 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=qH0DhorhXLa=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 838700] please update to new upstream version

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=838700

--- Comment #1 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=6QpdqPxds0a=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 890721] perl-Net-Amazon-S3 in Fedora 17 is dated and needs to be updated to stop warnings

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=890721

--- Comment #1 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=IvHqBD2hL7a=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 850971] Unable to install perl IO::Uncompress::Bunzip2 and Compress::Zlib due to failed dependency

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=850971

--- Comment #1 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=pHoXLpk2Kia=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 863303] missing dependency clamav-server-sysvinit required

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=863303

--- Comment #4 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=3gsaUa6lR7a=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 818651] Conflicts with my package apache-1.3.42-3.fc16.x86_64

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=818651

--- Comment #4 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=FfPIqGIQeSa=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 825678] SDL::App-new() on console framebuffer segfaults

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=825678

--- Comment #11 from Fedora End Of Life endofl...@fedoraproject.org ---
This message is a reminder that Fedora 17 is nearing its end of life.
Approximately 4 (four) weeks from now Fedora will stop maintaining
and issuing updates for Fedora 17. It is Fedora's policy to close all
bug reports from releases that are no longer maintained. At that time
this bug will be closed as WONTFIX if it remains open with a Fedora 
'version' of '17'.

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, simply change the 'version' 
to a later Fedora version prior to Fedora 17's end of life.

Bug Reporter:  Thank you for reporting this issue and we are sorry that 
we may not be able to fix it before Fedora 17 is end of life. If you 
would still like  to see this bug fixed and are able to reproduce it 
against a later version  of Fedora, you are encouraged  change the 
'version' to a later Fedora version prior to Fedora 17's end of life.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events. Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

-- 
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=Gp0dkxbdOna=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 967719] Segfault in Perl_gv_fetchpvn_flags when trying to initialize back_perl openldap backend

2013-07-03 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=967719

--- Comment #5 from Jan Synacek jsyna...@redhat.com ---
(In reply to Petr Pisar from comment #4)
 I run it as a non-root. I get much better results as a root:

Yes, that's how the output is supposed to look.

 However the server sometimes segfaults as you reported.

Ok, it's strange that it segfaults only sometimes. Does this mean that you can
reproduce it even with all the perl modules linked to libperl.so explicitly?

-- 
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=WoYwPIVJBea=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