File XML-Parser-2.44.tar.gz uploaded to lookaside cache by jplesnik

2015-02-10 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-XML-Parser:

af4813fe3952362451201ced6fbce379  XML-Parser-2.44.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

[fusioninventory-agent] initial import (#1090933)

2015-02-10 Thread jehane
commit 8a4a7107ba23be1f56fae6070625d10d77623cfa
Author: jehane maria...@tuxette.fr
Date:   Mon Feb 9 19:38:40 2015 +0100

initial import (#1090933)

 .gitignore|1 +
 dead.package  |1 -
 fusioninventory-agent.cron|   37 
 fusioninventory-agent.service |   11 +
 fusioninventory-agent.spec|  476 +
 sources   |1 +
 6 files changed, 526 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..d25ea84
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/FusionInventory-Agent-2.3.15.tar.gz
diff --git a/fusioninventory-agent.cron b/fusioninventory-agent.cron
new file mode 100644
index 000..e09c0db
--- /dev/null
+++ b/fusioninventory-agent.cron
@@ -0,0 +1,37 @@
+#!/bin/bash
+NAME=fusioninventory-agent
+LOG=/var/log/$NAME/$NAME.log
+
+exec $LOG 21
+
+[ -f   /etc/sysconfig/$NAME ] || exit 0
+source /etc/sysconfig/$NAME
+export PATH
+
+i=0
+while [ $i -lt ${#OCSMODE[*]} ]
+do
+   if [ ${OCSMODE[$i]:-none} == cron ]; then
+   OPTS=
+   if [ ! -z ${OCSPAUSE[$i]} ]; then
+   OPTS=--wait ${OCSPAUSE[$i]}
+   fi
+
+   if [ ! -z ${OCSTAG[$i]} ]; then
+   OPTS=$OPTS --tag=${OCSTAG[$i]}
+   fi
+
+   if [ z${OCSSERVER[$i]} = 'zlocal' ]; then
+   # Local inventory
+   OPTS=$OPTS --local=/var/lib/$NAME
+   elif [ ! -z ${OCSSERVER[$i]} ]; then
+   # Remote inventory
+   OPTS=$OPTS --lazy --server=${OCSSERVER[$i]}
+   fi
+   echo [$(date '+%c')] Running $NAME $OPTS
+   /usr/bin/$NAME $FUSINVOPT --logfile=$LOG $OPTS
+   fi
+   ((i++))
+done
+echo [$(date '+%c')] End of cron job ($PATH)
+
diff --git a/fusioninventory-agent.service b/fusioninventory-agent.service
new file mode 100644
index 000..0f4d9bb
--- /dev/null
+++ b/fusioninventory-agent.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=FusionInventory agent
+After=syslog.target network.target
+
+[Service]
+EnvironmentFile=/etc/sysconfig/fusioninventory-agent
+ExecStart=/usr/bin/fusioninventory-agent $FUSINVOPT 
--logfile=/var/log/fusioninventory-agent/service.log --daemon --no-fork
+
+[Install]
+WantedBy=multi-user.target
+
diff --git a/fusioninventory-agent.spec b/fusioninventory-agent.spec
new file mode 100644
index 000..f5dfb33
--- /dev/null
+++ b/fusioninventory-agent.spec
@@ -0,0 +1,476 @@
+Name:fusioninventory-agent
+Summary: FusionInventory agent
+Group:   Applications/System
+License: GPLv2+
+URL: http://fusioninventory.org/
+
+Version: 2.3.15
+Release: 1%{?dist}
+Source0: 
http://search.cpan.org/CPAN/authors/id/G/GR/GROUSSE/FusionInventory-Agent-%{version}%{?prever}.tar.gz
+
+Source1:   %{name}.cron
+#Source2:   %{name}.init
+Source3:   %{name}.service
+
+Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
+BuildRequires: perl(inc::Module::Install)
+BuildRequires: systemd
+
+Requires:  perl-FusionInventory-Agent = %{version}-%{release}
+Requires:  logrotate
+Requires:  cronie
+%ifarch %{ix86} x86_64
+Requires:  dmidecode
+%endif
+
+Requires(post): systemd
+Requires(preun):systemd
+Requires(postun):   systemd
+
+# excluding internal requires and windows stuff
+%global __provides_exclude 
%{?__provides_exclude:__provides_exclude|}^perl\\(FusionInventory::
+%global __requires_exclude 
%{?__requires_exclude:__requires_exclude|}^perl\\(FusionInventory::
+%global __requires_exclude %__requires_exclude|^perl\\(Win32
+
+%description
+FusionInventory Agent is an application designed to help a network
+or system administrator to keep track of the hardware and software
+configurations of computers that are installed on the network.
+
+This agent can send information about the computer to a OCS Inventory NG
+or GLPI server with the FusionInventory for GLPI plugin.
+
+You can add additional packages for optional tasks:
+
+* perl-FusionInventory-Agent-Task-Network
+Network Discovery and Inventory support
+* perl-Fusion-Inventory-Agent-Inventory
+Local inventory support for FusionInventory
+* perl-FusionInventory-Agent-Task-Deploy
+Software deployment support
+* perl-FusionInventory-Agent-Task-ESX
+vCenter/ESX/ESXi remote inventory
+* perl-FusionInventory-WakeOnLan
+not included due to a licensing issue for perl-Net-Write
+
+Edit the /etc/sysconfig/%{name} file for service configuration.
+
+%package -n perl-FusionInventory-Agent
+Summary:Libraries for Fusioninventory agent
+BuildArch:  noarch
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(LWP)
+Requires:   perl(Net::CUPS)
+Requires:   perl(Net::SSLeay)
+Requires:   perl(Proc::Daemon)
+Requires:   perl(Proc::PID::File)
+Requires:   

[Bug 1178795] perl-HTML-FormatText-WithLinks-0.15 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1178795



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-HTML-FormatText-WithLinks-0.15-1.fc21 has been submitted as an update for
Fedora 21.
https://admin.fedoraproject.org/updates/perl-HTML-FormatText-WithLinks-0.15-1.fc21

-- 
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=Vc9kIsW6gLa=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-Parser] 2.44 bump

2015-02-10 Thread Jitka Plesnikova
commit a88f19f0b1de2331eddf7b58534588114f463f19
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 15:24:25 2015 +0100

2.44 bump

 .gitignore   |1 +
 perl-XML-Parser.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 352e0c1..c4e7306 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ XML-Parser-2.36.tar.gz
 /XML-Parser-2.40.tar.gz
 /XML-Parser-2.41.tar.gz
 /XML-Parser-2.43.tar.gz
+/XML-Parser-2.44.tar.gz
diff --git a/perl-XML-Parser.spec b/perl-XML-Parser.spec
index 541320d..9cc85a5 100644
--- a/perl-XML-Parser.spec
+++ b/perl-XML-Parser.spec
@@ -1,5 +1,5 @@
 Name:   perl-XML-Parser
-Version:2.43
+Version:2.44
 Release:1%{?dist}
 Summary:Perl module for parsing XML documents
 
@@ -82,6 +82,9 @@ make test
 
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 2.44-1
+- 2.44 bump
+
 * Thu Dec 11 2014 Jitka Plesnikova jples...@redhat.com - 2.43-1
 - 2.43 bump
 - Updated BRs; Removed bundled Devel::CheckLib
diff --git a/sources b/sources
index 1646b1d..d0a2272 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2c9ca46832d8e7578bcda99eba3a47f1  XML-Parser-2.43.tar.gz
+af4813fe3952362451201ced6fbce379  XML-Parser-2.44.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

Re: Results of a test mass rebuild of rawhide/x86_64 with gcc-5.0.0-0.5.fc22

2015-02-10 Thread Adam Jackson
On Tue, 2015-02-10 at 07:34 +0100, Ralf Corsepius wrote:
 On 02/10/2015 06:22 AM, Marek Polacek wrote:
  On Mon, Feb 09, 2015 at 02:43:25PM -0700, Jerry James wrote:
  On Sun, Feb 8, 2015 at 10:17 AM, Marek Polacek pola...@redhat.com wrote:
  bigloo-4.1a-6.2.fc22.src.rpm
  memstomp-0.1.4-15.fc22.src.rpm
   build failure due to gnu11 change: -Wimplicit-int is turned on 
  by default now,
   which is the reason these packages didn't compile properly.  See 
  the porting_to
   document for more details.
 
  The bigloo failure had nothing to do with -Wimplicit-int.  One file
  that should have been compiled with -fPIC wasn't.  I don't know why
  this didn't cause problems before.  Fixed in Rawhide.
 
  IIRC bigloo contains various autoconf shell scripts with KR code in
  them (that fail with -Werror now)
 
 Remove these -Werrors and tell upstream to not use -Werror.
 -Werror turns harmless warnings into errors.
 
 As autoconf scripts are based on compilers issuing errors only on real 
 errors and not on otherwise harmless warnings,  -Werror is not useful 
 with autoconf scripts and is _guaranteed_ to break autoconf scripts, 
 because the items GCC warns about are changing with each GCC-release and 
 also depend on other factors (CFLAGS) in effect.

If only there was some way to use different CFLAGS for configure than
for the project.

- ajax

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Results of a test mass rebuild of rawhide/x86_64 with gcc-5.0.0-0.5.fc22

2015-02-10 Thread Jerry James
On Mon, Feb 9, 2015 at 10:22 PM, Marek Polacek pola...@redhat.com wrote:
 IIRC bigloo contains various autoconf shell scripts with KR code in
 them (that fail with -Werror now) to detect e.g. -fpic.  So that's why
 the -fpic wasn't used.

Oh, I see.  Thanks.  I have sent an email upstream to inform them of
the nature of the problem.  Regards,
-- 
Jerry James
http://www.jamezone.org/
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Results of a test mass rebuild of rawhide/x86_64 with gcc-5.0.0-0.5.fc22

2015-02-10 Thread Jakub Jelinek
On Tue, Feb 10, 2015 at 04:05:31PM +0100, Ralf Corsepius wrote:
 On 02/10/2015 03:56 PM, Adam Jackson wrote:
 
 If only there was some way to use different CFLAGS for configure than
 for the project.
 
 Well, wouldn't you agree that developers should be able to read warnings and
 filter out the serious one?

But -Werror automates that, at the cost that when compiler changes, grows
new warnings etc., you might need to adjust your code, and perhaps work
around false positive warnings or individually disable them.

Anyway, the problem was that KR functions with implicit int etc.
are not valid in C99 or C11, and it would be desirable if developers from
time to time compared e.g. config.h files upon major compiler bumps if something
important didn't get turned off.  Lots of failed configure tests will show
up somewhere during the build or in the testsuites, but some changes might
go unnoticed.

Jakub
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Schedule for Wednesday's FESCo Meeting (2015-02-11)

2015-02-10 Thread Miloslav Trmač
Following is the list of topics that will be discussed in the FESCo
meeting Wednesday at 18:00UTC in #fedora-meeting on irc.freenode.net.

To convert UTC to your local time, take a look at
  http://fedoraproject.org/wiki/UTCHowto

or run:
  date -d '2015-02-11 18:00 UTC'


Links to all tickets below can be found at:
https://fedorahosted.org/fesco/report/9

#topic Welcoming new FESCo members

= Followups =

#topic #1269 Closing all 'Merge Review' bugs
.fesco 1269
https://fedorahosted.org/fesco/ticket/1269

#topic #1326 change to fesco replacement process?
.fesco 1326
https://fedorahosted.org/fesco/ticket/1326

#topic #1384 F23 System Wide Change: Harden all packages with 
position-independent code - 
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
.fesco 1384
https://fedorahosted.org/fesco/ticket/1384

#topic #1390 F22 System Wide Change: RpmOstree - Server side composes and 
atomic upgrades - https://fedoraproject.org/wiki/Changes/RpmOstree
.fesco 1390
https://fedorahosted.org/fesco/ticket/1390

#topic #1396 F22 System Wide Change: Atomic Host - 
https://fedoraproject.org/wiki/Changes/AtomicHost
.fesco 1396
https://fedorahosted.org/fesco/ticket/1396

#topic #1397 F22 System Wide Change: Bare Metal Installer for Fedora Atomic 
Host - https://fedoraproject.org/wiki/Changes/Bare_Metal_Atomic
.fesco 1397
https://fedorahosted.org/fesco/ticket/1397

#topic #1392 Review scope of Python 3 as default Change for F22
.fesco 1392
https://fedorahosted.org/fesco/ticket/1392

#topic #1413 F22 System Wide Change: Python 3 Migration Improvements - 
https://fedoraproject.org/wiki/Changes/Python_3_Migration_Improvements
.fesco 1413
https://fedorahosted.org/fesco/ticket/1413

#topic #1406 F22 System Wide Change: Systemd Package Split - 
https://fedoraproject.org/wiki/Changes/SystemdPackageSplit
.fesco 1406
https://fedorahosted.org/fesco/ticket/1406

= New business =

#topic #1377 enable kdump addon by default
.fesco 1377
https://fedorahosted.org/fesco/ticket/1377

#topic #1408 New package/branch request processes (off bugzilla to pkgdb)
.fesco 1408
https://fedorahosted.org/fesco/ticket/1408

#topic #1409 provenpackager request: mstuchli
.fesco 1409
https://fedorahosted.org/fesco/ticket/1409

#topic #1410 Updates Policy should try harder to prevent updates that break 
future updates
.fesco 1410
https://fedorahosted.org/fesco/ticket/1410

#topic #1411 F21 privacy issue, Geolocation done for every install
.fesco 1411
https://fedorahosted.org/fesco/ticket/1411

#topic Meeting time

= Open Floor =

For more complete details, please visit each individual ticket.  The
report of the agenda items can be found at
https://fedorahosted.org/fesco/report/9

If you would like to add something to this agenda, you can reply to
this e-mail, file a new ticket at https://fedorahosted.org/fesco,
e-mail me directly, or bring it up at the end of the meeting, during
the open floor topic. Note that added topics may be deferred until
the following meeting.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1181542] perl-XML-Parser-2.44 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1181542

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
   Fixed In Version||perl-XML-Parser-2.44-1.fc22
 Resolution|--- |RAWHIDE
Last Closed||2015-02-10 09:35:07



-- 
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=QgpyacdX2Ma=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-LibXSLT] 1.94 bump

2015-02-10 Thread Jitka Plesnikova
commit 80beec0fd3c18e3b5cebbe6df07d51d73803d778
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 16:18:54 2015 +0100

1.94 bump

 .gitignore|1 +
 perl-XML-LibXSLT.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0e02fa9..205dc91 100644
--- a/.gitignore
+++ b/.gitignore
@@ -16,3 +16,4 @@ XML-LibXSLT-1.70.tar.gz
 /XML-LibXSLT-1.88.tar.gz
 /XML-LibXSLT-1.89.tar.gz
 /XML-LibXSLT-1.92.tar.gz
+/XML-LibXSLT-1.94.tar.gz
diff --git a/perl-XML-LibXSLT.spec b/perl-XML-LibXSLT.spec
index 2de259a..9deae1c 100644
--- a/perl-XML-LibXSLT.spec
+++ b/perl-XML-LibXSLT.spec
@@ -1,7 +1,7 @@
 Name:  perl-XML-LibXSLT
 # NOTE: also update perl-XML-LibXML to a compatible version.  See below why.
-Version:   1.92
-Release:   5%{?dist}
+Version:   1.94
+Release:   1%{?dist}
 Summary:   Perl module for interfacing to GNOME's libxslt
 Group: Development/Libraries
 License:   GPL+ or Artistic
@@ -70,6 +70,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 1.94-1
+- 1.94 bump
+
 * Thu Jan 08 2015 Petr Pisar ppi...@redhat.com - 1.92-5
 - Do not link against perl extension libraries
 
diff --git a/sources b/sources
index 93b4893..2226aeb 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e543d54493c8be6d4fb26595593818d1  XML-LibXSLT-1.92.tar.gz
+a32045699c001d960d6f94891f9e853c  XML-LibXSLT-1.94.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

[389-devel] Please review: [389 Project] #47836: Do not return '0' as empty fallback value of nsds5replicalastupdatestart and nsds5replicalastupdatestart

2015-02-10 Thread Noriko Hosoi

https://fedorahosted.org/389/ticket/47836

https://fedorahosted.org/389/attachment/ticket/47836/0001-Ticket-47836-Do-not-return-0-as-empty-fallback-value.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

gloox updated to 1.0.13 with soname bump in f22+rawhide[only]

2015-02-10 Thread Christopher Meng
Hi folks,

gloox has been upgraded to 1.0.13 with bumped soname libgloox.so.13
[libgloox.so.12~].

Referring to upstream, this release is *still* source compatible with
previous releases, only some ABI were removed.

ABI diff details:
http://upstream.rosalinux.ru/compat_reports/gloox/1.0.12_to_1.0.13/abi_compat_report.html

Meanwhile gloox 1.0.12 will be pushed to all branches still as
upstream had disabled SSLv3 to avoid POODLE in that release.

Yours sincerely,
Christopher Meng

http://cicku.me
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[perl-Class-Tiny] 1.001 bump

2015-02-10 Thread Jitka Plesnikova
commit 5928622c194967bbfe23660fd6ad72446ce7e5bd
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 17:18:33 2015 +0100

1.001 bump

 .gitignore   |1 +
 perl-Class-Tiny.spec |   19 +--
 sources  |2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index bba0585..7fe8951 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 /Class-Tiny-0.014.tar.gz
 /Class-Tiny-0.015.tar.gz
 /Class-Tiny-1.000.tar.gz
+/Class-Tiny-1.001.tar.gz
diff --git a/perl-Class-Tiny.spec b/perl-Class-Tiny.spec
index 7d1762e..34ef30e 100644
--- a/perl-Class-Tiny.spec
+++ b/perl-Class-Tiny.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Tiny
-Version:1.000
-Release:2%{?dist}
+Version:1.001
+Release:1%{?dist}
 Summary:Minimalist class construction
 License:ASL 2.0
 Group:  Development/Libraries
@@ -23,17 +23,12 @@ BuildRequires:  perl(MRO::Compat)
 %endif 
 # Tests
 BuildRequires:  perl(base)
-BuildRequires:  perl(CPAN::Meta)
-BuildRequires:  perl(CPAN::Meta::Requirements) = 2.120900
+BuildRequires:  perl(CPAN::Meta) = 2.120900
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Spec)
-BuildRequires:  perl(File::Spec::Functions)
-BuildRequires:  perl(File::Temp)
-BuildRequires:  perl(IO::Handle)
-BuildRequires:  perl(IPC::Open3)
 BuildRequires:  perl(lib)
-BuildRequires:  perl(List::Util)
 BuildRequires:  perl(subs)
+BuildRequires:  perl(Test::FailWarnings)
 BuildRequires:  perl(Test::More) = 0.96
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 %if 0%(perl -e 'print $]  5.014')
@@ -82,11 +77,15 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} 
\;
 make test
 
 %files
-%doc Changes CONTRIBUTING LICENSE README
+%license LICENSE
+%doc Changes CONTRIBUTING.mkdn README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 1.001-1
+- 1.001 bump
+
 * Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 1.000-2
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index a62fb9f..975fe93 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a8acb0d05e384573d3624406813bf6b4  Class-Tiny-1.000.tar.gz
+2a5bfa3a8bb50a1ea930fa97514eeed4  Class-Tiny-1.001.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

Re: Schedule for Wednesday's FESCo Meeting (2015-02-11)

2015-02-10 Thread Josh Boyer
On Tue, Feb 10, 2015 at 11:08 AM, Miloslav Trmač m...@redhat.com wrote:
 Following is the list of topics that will be discussed in the FESCo
 meeting Wednesday at 18:00UTC in #fedora-meeting on irc.freenode.net.

 To convert UTC to your local time, take a look at
   http://fedoraproject.org/wiki/UTCHowto

 or run:
   date -d '2015-02-11 18:00 UTC'


 Links to all tickets below can be found at:
 https://fedorahosted.org/fesco/report/9

Whew... this is a rather large list.  I'm somewhat doubtful we're
going to get through all of this even in 2 hours.  Do we want to
prioritize the order a bit?

josh
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Schedule for Wednesday's FESCo Meeting (2015-02-11)

2015-02-10 Thread Kevin Fenzi
FYI, I am going to be moving machines around at a datacenter and likely
won't be able to attend. 

I'll try and vote in tickets later tonight... 

kevin


pgpUiADtoug9J.pgp
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1187906] perl-Class-Tiny-1.001 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1187906

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Class-Tiny-1.001-1.fc2
   ||2
 Resolution|--- |RAWHIDE
Last Closed||2015-02-10 11:22:58



-- 
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=2DfyXZevl4a=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

Re: git - possible rebase on F21

2015-02-10 Thread Adam Williamson
On Tue, 2015-02-10 at 10:03 +, Peter Robinson wrote:
 On Tue, Feb 10, 2015 at 9:58 AM, Petr Stodulka pstod...@redhat.com 
 wrote:
  Hi guys,
  I have this request [0] for rebase of git from version 2.1.0 to 
  2.2.2 for
  Fedora 21. Can I do this? Do you know someone about any 
  incompatibilities?
  For me there are not so big changes but I have not problem with 
  this. We have now version 2.3.0 on rawhide. In the case that yo 
  prefer rebase to 2.2.2 or even to 2.3.0?
 
 What are the pros of moving from 2.1.x to a newer release?

2.3 would somewhat reduce the chance of idiotic monkeys messing up 
important repositories:

https://github.com/git/git/commit/00a6fa0720283b93eb011adcfea850fe21345548

if that's of interest to anyone. :)
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | XMPP: adamw AT happyassassin . net
http://www.happyassassin.net

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Results of a test mass rebuild of rawhide/x86_64 with gcc-5.0.0-0.5.fc22

2015-02-10 Thread Josh Stone
On 02/10/2015 07:05 AM, Ralf Corsepius wrote:
 Well, wouldn't you agree that developers should be able to read warnings 
 and filter out the serious one?

If a project has more than a screen-full of harmless warnings, then
it's very easy to miss when a serious one slips in.  I prefer -Werror so
that nothing gets by, all warnings must be considered.  It's not that
much of a burden after you first get to a warning-free build.

I could see the argument that this approach belongs in upstream
development, not so much distro packaging.  I still think it's useful to
know that any patches applied are warning-free too though.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

File Class-Tiny-1.001.tar.gz uploaded to lookaside cache by jplesnik

2015-02-10 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Class-Tiny:

2a5bfa3a8bb50a1ea930fa97514eeed4  Class-Tiny-1.001.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

Re: another dnf kernel issue?

2015-02-10 Thread Radek Holy
- Original Message -
 From: Neal Becker ndbeck...@gmail.com
 To: devel@lists.fedoraproject.org
 Sent: Monday, February 9, 2015 3:08:17 PM
 Subject: another dnf kernel issue?
 
 [nbecker@nbecker1 ~]$ sudo dnf remove kernel*3.18.3*
 [sudo] password for nbecker:
 No match for argument: kernel*3.18.3*
 Error: No packages marked for removal.
 [nbecker@nbecker1 ~]$ sudo dnf remove kernel*3.18.3-201.fc21
 No match for argument: kernel*3.18.3-201.fc21
 Error: No packages marked for removal.
 [nbecker@nbecker1 ~]$ sudo yum remove kernel*3.18.3-201.fc21
 Loaded plugins: fastestmirror, langpacks, merge-conf, versionlock
 Repodata is over 2 weeks old. Install yum-cron? Or run: yum makecache fast
 Resolving Dependencies
 -- Running transaction check
 --- Package kernel-core.x86_64 0:3.18.3-201.fc21 will be erased
 --- Package kernel-modules.x86_64 0:3.18.3-201.fc21 will be erased
 --- Package kernel-modules-extra.x86_64 0:3.18.3-201.fc21 will be erased
 -- Finished Dependency Resolution

Does sudo dnf remove kernel*-3.18.3* work for you?

From the DNF's persepective 
(http://dnf.readthedocs.org/en/latest/command_ref.html#specifying-packages), 
your specification is in the form name (because of the missing dash) and 
there is no package with a name matching kernel*3.18.3*. Also in the second 
query, it is assumed that the name must match kernel*3.18.3.

TBH, I don't know whether we should extend the forms of package specifications 
to support your case. The current behaviour seems to be safer to me. I mean, if 
we improve it, user wouldn't be able to query just package names as easily as 
now.
-- 
Radek Holý
Associate Software Engineer
Software Management Team
Red Hat Czech
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1078438] Templated types are causing Could not find a typemap for C type

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1078438

Ondrej Vasik ova...@redhat.com changed:

   What|Removed |Added

 Blocks||1191021



-- 
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=HUNjHSvW4wa=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 1190777] perl-CPAN-Uploader-0.103008 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190777



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-CPAN-Uploader-0.103008-1.fc21 has been submitted as an update for Fedora
21.
https://admin.fedoraproject.org/updates/perl-CPAN-Uploader-0.103008-1.fc21

-- 
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=oEnP9irkYva=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-Digest-CRC] 0.20 bump

2015-02-10 Thread Petr Šabata
commit 568e6e108a84e42e905d0c6118d356d504a7006d
Author: Petr Šabata con...@redhat.com
Date:   Tue Feb 10 10:55:30 2015 +0100

0.20 bump

 .gitignore   |1 +
 perl-Digest-CRC.spec |   29 -
 sources  |2 +-
 3 files changed, 22 insertions(+), 10 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4c49f40..dd3ecb5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Digest-CRC-0.14.tar.gz
 /Digest-CRC-0.16.tar.gz
 /Digest-CRC-0.17.tar.gz
 /Digest-CRC-0.18.tar.gz
+/Digest-CRC-0.20.tar.gz
diff --git a/perl-Digest-CRC.spec b/perl-Digest-CRC.spec
index be7a47d..dd433e8 100644
--- a/perl-Digest-CRC.spec
+++ b/perl-Digest-CRC.spec
@@ -1,16 +1,26 @@
 Name:   perl-Digest-CRC
-Version:0.18
-Release:10%{?dist}
+Version:0.20
+Release:1%{?dist}
 Summary:Generic CRC functions
 Group:  Development/Libraries
 License:Public Domain
 URL:http://search.cpan.org/dist/Digest-CRC
 Source0:
http://search.cpan.org/CPAN/authors/id/O/OL/OLIMAUL/Digest-CRC-%{version}.tar.gz
+# Build
+BuildRequires:  perl
+BuildRequires:  perl(Config)
 BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(Exporter)
+# Runtime
 BuildRequires:  perl(DynaLoader)
-Requires:   perl(DynaLoader)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Symbol)
+BuildRequires:  perl(vars)
+# Tests only
+BuildRequires:  perl(Fcntl)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(DynaLoader)
+Requires:   perl(Symbol)
 
 %description
 The Digest::CRC module calculates CRC sums of all sorts. It contains wrapper
@@ -20,26 +30,27 @@ functions with the correct parameters for CRC-CCITT, CRC-16 
and CRC-32.
 %setup -qn Digest-CRC-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags} NO_PACKLIST=1
 make %{?_smp_mflags}
 
 %install
 make pure_install PERL_INSTALL_ROOT=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null ';'
+find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} +
 chmod -R u+w %{buildroot}/*
-find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
 
 %check
 make test
 
 %files
-%doc Changes META.yml README t
+%doc Changes README
 %{perl_vendorarch}/auto/*
 %{perl_vendorarch}/Digest
 %{_mandir}/man3/*.3*
 
 %changelog
+* Mon Feb 09 2015 Petr Šabata con...@redhat.com - 0.20-1
+- 0.20 bump
+
 * Wed Aug 27 2014 Jitka Plesnikova jples...@redhat.com - 0.18-10
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index 7da1d8c..58497a6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-baf8cb6c50782416b10f470b2e29bf7a  Digest-CRC-0.18.tar.gz
+b12f2da6a7f8c4934b872cc0aad4261a  Digest-CRC-0.20.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 Digest-CRC-0.20.tar.gz uploaded to lookaside cache by psabata

2015-02-10 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Digest-CRC:

b12f2da6a7f8c4934b872cc0aad4261a  Digest-CRC-0.20.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 1190779] perl-Digest-CRC-0.20 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190779

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Digest-CRC-0.20-1.fc22
 Resolution|--- |RAWHIDE
Last Closed||2015-02-10 05:01:25



-- 
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=CF9mtHJO7oa=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-Text-Autoformat/f21] (3 commits) ...1.669007 bump

2015-02-10 Thread Petr Šabata
Summary of changes:

  ab236be... Perl 5.20 rebuild (*)
  fc35fd0... 1.669006 bump (*)
  31fe359... 1.669007 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

git - possible rebase on F21

2015-02-10 Thread Petr Stodulka

Hi guys,
I have this request [0] for rebase of git from version 2.1.0 to 2.2.2 
for Fedora 21. Can I do this? Do you know someone about any 
incompatibilities? For me there are not so big changes but I have not 
problem with this. We have now version 2.3.0 on rawhide. In the case 
that yo prefer rebase to 2.2.2 or even to 2.3.0?


Thanks for responses :-)
Petr

[0] https://bugzilla.redhat.com/show_bug.cgi?id=1187874
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: git - possible rebase on F21

2015-02-10 Thread Peter Robinson
On Tue, Feb 10, 2015 at 9:58 AM, Petr Stodulka pstod...@redhat.com wrote:
 Hi guys,
 I have this request [0] for rebase of git from version 2.1.0 to 2.2.2 for
 Fedora 21. Can I do this? Do you know someone about any incompatibilities?
 For me there are not so big changes but I have not problem with this. We
 have now version 2.3.0 on rawhide. In the case that yo prefer rebase to
 2.2.2 or even to 2.3.0?

What are the pros of moving from 2.1.x to a newer release? What are
the possible issues? Is there a soname bump? API/ABI changes? The bug
just asks for it to rebase and doesn't state why it would be useful.
In general you should outline things like does it have features that
are useful, does it have functionality that is needed to interact with
new features of some public tool or infrastructure (say signed pushes
for kernel upstream, some new functionality in github etc).

Peter
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

File Text-Autoformat-1.669007.tar.gz uploaded to lookaside cache by psabata

2015-02-10 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Text-Autoformat:

7c81ac5839d27028f2a7f50d0676c67e  Text-Autoformat-1.669007.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-Text-Autoformat] 1.669007 bump

2015-02-10 Thread Petr Šabata
commit 31fe35993714f3212c0b005b6267d11d6bed8aeb
Author: Petr Šabata con...@redhat.com
Date:   Tue Feb 10 11:13:22 2015 +0100

1.669007 bump

 perl-Text-Autoformat.spec |   14 --
 sources   |2 +-
 2 files changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/perl-Text-Autoformat.spec b/perl-Text-Autoformat.spec
index 7668be6..1bf82c7 100644
--- a/perl-Text-Autoformat.spec
+++ b/perl-Text-Autoformat.spec
@@ -1,5 +1,5 @@
 Name:   perl-Text-Autoformat
-Version:1.669006
+Version:1.669007
 Release:1%{?dist}
 Summary:Automatic text wrapping and reformatting
 License:GPL+ or Artistic
@@ -9,14 +9,14 @@ Source0:
http://www.cpan.org/authors/id/D/DC/DCONWAY/Text-Autoformat-%{ve
 BuildArch:  noarch
 # Module Build
 BuildRequires:  perl
-BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.76
+BuildRequires:  perl(strict)
 BuildRequires:  perl(warnings)
 # Module Runtime
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(overload)
-BuildRequires:  perl(strict)
 BuildRequires:  perl(Text::Reform) = 1.11
 BuildRequires:  perl(Text::Tabs)
 BuildRequires:  perl(utf8)
@@ -24,7 +24,7 @@ BuildRequires:  perl(vars)
 # Test Suite
 BuildRequires:  perl(Test::More)
 # Runtime
-Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(:MODULE_COMPAT_%(eval $(perl -V:version); echo 
$version))
 
 # Do not export private modules
 %global __provides_exclude 
%{?__provides_exclude|%__provides_exclude|}^perl\\((Hang|NullHang)\\)
@@ -46,12 +46,11 @@ the built-in Perl format() mechanism.
 chmod -c -x config.*
 
 %build
-perl Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1
 make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
-find %{buildroot} -type f -name .packlist -exec rm -f {} \;
 %{_fixperms} %{buildroot}/*
 
 %check
@@ -63,6 +62,9 @@ make test
 %{_mandir}/man3/Text::Autoformat.3pm*
 
 %changelog
+* Tue Feb 10 2015 Petr Šabata con...@redhat.com - 1.669007-1
+- 1.669007 bump
+
 * Fri Nov 14 2014 Petr Pisar ppi...@redhat.com - 1.669006-1
 - 1.669006 bump
 
diff --git a/sources b/sources
index cf478ef..326f0d2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-24fd91e41790cdd7a800922a76845b2c  Text-Autoformat-1.669006.tar.gz
+7c81ac5839d27028f2a7f50d0676c67e  Text-Autoformat-1.669007.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

Changing default configuration

2015-02-10 Thread Marek Skalický
Hi,

does someone know what are Fedora Guidelines (or something similar)
saying about this bug
https://bugzilla.redhat.com/show_bug.cgi?id=1077369 ?
Is is possible to change default configuration file depending on
available free space?

(this change is about adding smallfile=true into mongod.conf file)

Thanks,
Marek

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[perl-MCE] Correct dependencies

2015-02-10 Thread Petr Pisar
commit 7461fb1f7da96bd70bd5ff5ff9351c0b854ddca6
Author: Petr Písař ppi...@redhat.com
Date:   Tue Feb 10 12:44:06 2015 +0100

Correct dependencies

If the script is installed by EU::MM, the sharp-bang is fixed
automatically.

 MCE-1.600-Fix-sharp-bang-line.patch |   26 ++
 MCE-1.600-Install-mce_grep.patch|   33 +
 perl-MCE.spec   |   24 +---
 3 files changed, 80 insertions(+), 3 deletions(-)
---
diff --git a/MCE-1.600-Fix-sharp-bang-line.patch 
b/MCE-1.600-Fix-sharp-bang-line.patch
new file mode 100644
index 000..3fa1de0
--- /dev/null
+++ b/MCE-1.600-Fix-sharp-bang-line.patch
@@ -0,0 +1,26 @@
+From c959e067ee5bb6c4ad5b139058b7e3bb29716c15 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Tue, 10 Feb 2015 11:48:32 +0100
+Subject: [PATCH] Fix sharp-bang line
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ bin/mce_grep | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/bin/mce_grep b/bin/mce_grep
+index 44cfc8a..028bb04 100755
+--- a/bin/mce_grep
 b/bin/mce_grep
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env perl
++#!perl
+ 
###
+ ## 

+ ## A MCE-driven wrapper script for the following C binaries.
+-- 
+1.9.3
+
diff --git a/MCE-1.600-Install-mce_grep.patch b/MCE-1.600-Install-mce_grep.patch
new file mode 100644
index 000..70e38b6
--- /dev/null
+++ b/MCE-1.600-Install-mce_grep.patch
@@ -0,0 +1,33 @@
+From 9d9cce744e8cb9c6573578beb18cb25089cd6b86 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Tue, 10 Feb 2015 11:44:18 +0100
+Subject: [PATCH] Install mce_grep
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+CPAN RT#102040
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ Makefile.PL | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index 9508423..6fdf236 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -33,7 +33,9 @@ WriteMakefile(
+ 
+VERSION= '1.600',
+ 
+-   EXE_FILES  = [],
++   EXE_FILES  = [
++   'bin/mce_grep'
++   ],
+ 
+(($ExtUtils::MakeMaker::VERSION lt '6.25') ?
+   (PL_FILES = { }) : ()),
+-- 
+1.9.3
+
diff --git a/perl-MCE.spec b/perl-MCE.spec
index d69ae17..314569b 100644
--- a/perl-MCE.spec
+++ b/perl-MCE.spec
@@ -1,10 +1,14 @@
 Name:   perl-MCE
 Version:1.600
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Many-core Engine for Perl providing parallel processing 
capabilities
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/MCE/
 Source0:
http://www.cpan.org/authors/id/M/MA/MARIOROY/MCE-%{version}.tar.gz
+# Install mce_grep tool, CPAN RT#102040
+Patch0: MCE-1.600-Install-mce_grep.patch
+# Fix sharp-bang line
+Patch1: MCE-1.600-Fix-sharp-bang-line.patch
 BuildArch:  noarch
 # Build
 BuildRequires:  perl
@@ -31,9 +35,19 @@ Requires:   perl(:MODULE_COMPAT_%(eval $(perl 
-V:version); echo $version))
 Requires:   perl(Carp)
 Requires:   perl(File::Path)
 Requires:   perl(IO::Handle)
+Requires:   perl(MCE::Util)
+Requires:   perl(MCE::Core::Input::Generator)
+Requires:   perl(MCE::Core::Input::Handle)
+Requires:   perl(MCE::Core::Input::Iterator)
+Requires:   perl(MCE::Core::Input::Request)
+Requires:   perl(MCE::Core::Input::Sequence)
+Requires:   perl(MCE::Core::Validation)
+Requires:   perl(MCE::Core::Manager)
+Requires:   perl(MCE::Core::Worker)
 Requires:   perl(Storable) = 2.04
 
-%global __requires_exclude 
%{?__requires_exclude|%__requires_exclude|}^perl\\(Storable\\)$
+%{?perl_default_filter}
+%global __requires_exclude 
%{?__requires_exclude|%__requires_exclude|}^perl\\((MCE|Storable)\\)$
 %global __provides_exclude 
%{?__provides_exclude|%__provides_exclude|}^perl\\(MCE\\)$
 
 %description
@@ -46,6 +60,8 @@ the next n elements from the input stream to the next 
available worker.
 
 %prep
 %setup -q -n MCE-%{version}
+%patch0 -p1
+%patch1 -p1
 chmod -c a-x examples/*pl
 
 %build
@@ -55,7 +71,6 @@ make %{?_smp_mflags}
 %install
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -exec rm -f {} +
-install -m0755 -p bin/mce_grep -D %{buildroot}%{_bindir}/mce_grep
 %{_fixperms} %{buildroot}/*
 
 %check
@@ -68,6 +83,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 10 2015 Petr Pisar ppi...@redhat.com - 1.600-2
+- Correct dependencies
+
 * Wed Feb 04 2015 Petr Šabata con...@redhat.com - 1.600-1
 - 1.600 bump
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list

[perl-Net-Appliance-Session] Specify all dependencies

2015-02-10 Thread Petr Pisar
commit 165a7b88460cb3e57b1071dc8975ade91286
Author: Petr Písař ppi...@redhat.com
Date:   Tue Feb 10 12:57:25 2015 +0100

Specify all dependencies

 perl-Net-Appliance-Session.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/perl-Net-Appliance-Session.spec b/perl-Net-Appliance-Session.spec
index ffe578b..3a29e0a 100644
--- a/perl-Net-Appliance-Session.spec
+++ b/perl-Net-Appliance-Session.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-Appliance-Session
 Version:4.131260
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Run command-line sessions to network appliances
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -8,6 +8,8 @@ URL:
http://search.cpan.org/dist/Net-Appliance-Session/
 Source0:
http://www.cpan.org/authors/id/O/OL/OLIVER/Net-Appliance-Session-%{version}.tar.gz
 BuildArch:  noarch
 
+BuildRequires:  perl
+BuildRequires:  perl(Class::Load)
 BuildRequires:  perl(Cwd)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -23,6 +25,7 @@ BuildRequires:  perl(Text::Glob)
 BuildRequires:  perl(Text::ParseWords)
 BuildRequires:  perl(Try::Tiny)
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:   perl(Class::Load)
 Requires:   perl(Net::CLI::Interact) = 1.122100
 
 %description
@@ -57,6 +60,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 10 2015 Petr Pisar ppi...@redhat.com - 4.131260-4
+- Specify all dependencies
+
 * Fri Aug 29 2014 Jitka Plesnikova jples...@redhat.com - 4.131260-3
 - Perl 5.20 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 1190793] perl-Text-Autoformat-1.669007 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190793



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-Text-Autoformat-1.669007-1.fc21 has been submitted as an update for Fedora
21.
https://admin.fedoraproject.org/updates/perl-Text-Autoformat-1.669007-1.fc21

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

Re: Changing default configuration

2015-02-10 Thread Matthew Miller
On Tue, Feb 10, 2015 at 12:12:15PM +0100, Marek Skalický wrote:
 does someone know what are Fedora Guidelines (or something similar)
 saying about this bug
 https://bugzilla.redhat.com/show_bug.cgi?id=1077369 ?
 Is is possible to change default configuration file depending on
 available free space?

Generally, making such a decision at install time is bad, because that
might not reflect _runtime_. For example, in the cloud image, we use a
/ filesystem as small as Anaconda will allow, but that grows to fill
available storage when the image is booted.

Is there a way to make this decision when mongodb runs?

-- 
Matthew Miller
mat...@fedoraproject.org
Fedora Project Leader
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Migration to Zanata

2015-02-10 Thread Harald Hoyer
On 10.02.2015 04:44, Noriko Mizumoto wrote:
 Hi Fedora developers
 
 I have not heard yet from the maintainers of the following packages.
 Fedora Localization Project would like to have them migrated in Zanata
 asap for good kickstart of F22.
 We all are much appreciated your immediate attention.
 
 * If you are happy to delegate the migration work to us, please advise
 me by mailing to noriko at redhat.com. The migration timing can be
 specified according to your development schedule, let me know.
 
 * If you like to complete the migration work by yourself, please advise
 the date when your package will be available at Zanata. I will inform to
 all translators.
 
 * If your package is Upstream, and your team decide not to migrate to
 Zanata. Please let me know, I will inform to all translators.
 
 AGAIN, THOSE ARE UNTOUCHED AND NOT MIGRATED
 [Fedora Packages]


  readahead

dead.package

  system-config-boot   

dead.package

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[perl-generators/f21] 1.03 bump

2015-02-10 Thread Jitka Plesnikova
commit bb1b137c18daf7ae55ee0cbd6d21a0c3df0d090c
Author: Jitka Plesnikova jples...@redhat.com
Date:   Fri Feb 6 21:08:05 2015 +0100

1.03 bump

 .gitignore   |3 +++
 perl-generators.spec |   15 ++-
 sources  |2 +-
 3 files changed, 18 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 8a9d624..c66b50d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,4 @@
 /generators-1.00.tar.gz
+/generators-1.01.tar.gz
+/generators-1.02.tar.gz
+/generators-1.03.tar.gz
diff --git a/perl-generators.spec b/perl-generators.spec
index cda5ed3..5123994 100644
--- a/perl-generators.spec
+++ b/perl-generators.spec
@@ -1,5 +1,5 @@
 Name:   perl-generators
-Version:1.00
+Version:1.03
 Release:1%{?dist}
 Summary:RPM Perl dependencies generators
 Group:  Development/Libraries
@@ -45,5 +45,18 @@ make test
 %{_rpmconfigdir}/fileattrs/perl*.attr
 
 %changelog
+* Mon Feb 02 2015 Jitka Plesnikova jples...@redhat.com - 1.03-1
+- 1.03 bump
+- Update parcing of here-doc and quoted section
+
+* Fri Dec 12 2014 Jitka Plesnikova jples...@redhat.com - 1.02-1
+- 1.02 bump
+
+* Tue Oct 21 2014 Jitka Plesnikova jples...@redhat.com - 1.01-1
+- 1.01 bump
+
+* Tue Aug 26 2014 Jitka Plesnikova jples...@redhat.com - 1.00-2
+- Perl 5.20 rebuild
+
 * Mon Jun 16 2014 Jitka Plesnikova jples...@redhat.com - 1.00-1
 - Introduce Perl generators as a standalone package
diff --git a/sources b/sources
index 12324d7..2ae994a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-915226f63afbc7f428365ee271c8d5b8  generators-1.00.tar.gz
+a67a4d9f256dc1c1c021f850346c3a97  generators-1.03.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 1184662] more bad requires generated by use in heredoc

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1184662

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-generators-1.03-1.fc22



-- 
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=r9ta61AvOKa=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 1184662] more bad requires generated by use in heredoc

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1184662



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-generators-1.03-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-generators-1.03-1.fc21

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

Re: Migration to Zanata

2015-02-10 Thread Jaroslav Reznik
- Original Message -
 Hi Fedora developers
 
 I have not heard yet from the maintainers of the following packages.
 Fedora Localization Project would like to have them migrated in Zanata
 asap for good kickstart of F22.
 We all are much appreciated your immediate attention.

  system-config-bind

Let's consider this as EOL, time to kill it officially...

Jaroslav
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

File Archive-Zip-1.45.tar.gz uploaded to lookaside cache by jplesnik

2015-02-10 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-Archive-Zip:

07805e1c2c6b2b6561ac29489a6dd7dd  Archive-Zip-1.45.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-Archive-Zip] 1.45 bump

2015-02-10 Thread Jitka Plesnikova
commit 9e79e4491f81726ef148ad39dcda50e38f8c31d8
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 13:16:21 2015 +0100

1.45 bump

 .gitignore|1 +
 perl-Archive-Zip.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9b4dff6..fd66416 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ Archive-Zip-1.30.tar.gz
 /Archive-Zip-1.37.tar.gz
 /Archive-Zip-1.38.tar.gz
 /Archive-Zip-1.39.tar.gz
+/Archive-Zip-1.45.tar.gz
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index ea330bb..b9547eb 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -1,6 +1,6 @@
 Name:   perl-Archive-Zip
-Version:1.39
-Release:2%{?dist}
+Version:1.45
+Release:1%{?dist}
 Summary:Perl library for accessing Zip archives
 
 Group:  Development/Libraries
@@ -95,6 +95,9 @@ make test
 
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 1.45-1
+- 1.45 bump
+
 * Thu Jan 15 2015 Petr Pisar ppi...@redhat.com - 1.39-2
 - Correct dependencies
 - Improve sharpbang fix
diff --git a/sources b/sources
index 440d758..30c68a6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-851316e59625317a89e40418a26c676c  Archive-Zip-1.39.tar.gz
+07805e1c2c6b2b6561ac29489a6dd7dd  Archive-Zip-1.45.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 HTML-FormatText-WithLinks-0.15.tar.gz uploaded to lookaside cache by jplesnik

2015-02-10 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-HTML-FormatText-WithLinks:

e048c41f600895182df327c6ce9b2cc0  HTML-FormatText-WithLinks-0.15.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 MooseX-App-1.31.tar.gz uploaded to lookaside cache by psabata

2015-02-10 Thread Petr Šabata
A file has been added to the lookaside cache for perl-MooseX-App:

dd2fb948331bd826302d7b0a1219c939  MooseX-App-1.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-MooseX-App] 1.31 bump

2015-02-10 Thread Petr Šabata
commit 7465ea2bbdfca80bae25906455dc6cab726a0e2d
Author: Petr Šabata con...@redhat.com
Date:   Tue Feb 10 14:34:35 2015 +0100

1.31 bump

 .gitignore   |1 +
 perl-MooseX-App.spec |7 +--
 sources  |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d767b8a..19f2e8b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 /MooseX-App-1.30.tar.gz
+/MooseX-App-1.31.tar.gz
diff --git a/perl-MooseX-App.spec b/perl-MooseX-App.spec
index f2def9d..2770419 100644
--- a/perl-MooseX-App.spec
+++ b/perl-MooseX-App.spec
@@ -1,6 +1,6 @@
 Name:   perl-MooseX-App
-Version:1.30
-Release:2%{?dist}
+Version:1.31
+Release:1%{?dist}
 Summary:Write user-friendly command line apps with even less suffering
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/MooseX-App/
@@ -87,6 +87,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Feb 10 2015 Petr Šabata con...@redhat.com - 1.31-1
+- 1.31 bump
+
 * Tue Dec 02 2014 Petr Šabata con...@redhat.com - 1.30-2
 - Fix build issues pointed out in the review
 
diff --git a/sources b/sources
index df90ae6..df441bd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-57d2174847e1a8d313ec62dd0758f212  MooseX-App-1.30.tar.gz
+dd2fb948331bd826302d7b0a1219c939  MooseX-App-1.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-HTML-FormatText-WithLinks] 0.15 bump

2015-02-10 Thread Jitka Plesnikova
commit 28975b68b666973c29a012e60d2aa327aae4fb40
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 14:37:26 2015 +0100

0.15 bump

 .gitignore  |1 +
 perl-HTML-FormatText-WithLinks.spec |   42 ++
 sources |2 +-
 3 files changed, 24 insertions(+), 21 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 824bf58..8e65694 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ HTML-FormatText-WithLinks-0.09.tar.gz
 /HTML-FormatText-WithLinks-0.11.tar.gz
 /HTML-FormatText-WithLinks-0.12.tar.gz
 /HTML-FormatText-WithLinks-0.14.tar.gz
+/HTML-FormatText-WithLinks-0.15.tar.gz
diff --git a/perl-HTML-FormatText-WithLinks.spec 
b/perl-HTML-FormatText-WithLinks.spec
index cc2f74b..89dfadf 100644
--- a/perl-HTML-FormatText-WithLinks.spec
+++ b/perl-HTML-FormatText-WithLinks.spec
@@ -1,23 +1,31 @@
 Name:   perl-HTML-FormatText-WithLinks
-Version:0.14
-Release:11%{?dist}
+Version:0.15
+Release:1%{?dist}
 Summary:HTML to text conversion with links as footnotes
 
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/HTML-FormatText-WithLinks
 Source0:
http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:  noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(HTML::FormatText) perl(HTML::TreeBuilder)
+# Run-time
+BuildRequires:  perl(base)
+BuildRequires:  perl(HTML::FormatText)
+BuildRequires:  perl(HTML::TreeBuilder)
+BuildRequires:  perl(strict)
 BuildRequires:  perl(URI::WithBase)
-BuildRequires:  perl(Test::MockObject) perl(Test::Pod::Coverage) 
-BuildRequires:  perl(Test::Pod) perl(Test::More)
-Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
+BuildRequires:  perl(vars)
+# Tests
+BuildRequires:  perl(Test::More)
+# Optional tests
+BuildRequires:  perl(Test::MockObject) 
+BuildRequires:  perl(Test::Pod) = 1.00
+BuildRequires:  perl(Test::Pod::Coverage) = 0.08
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 # not picked up automatically since it is called through SUPER
-Requires:  perl(HTML::FormatText) = 2
+Requires:   perl(HTML::FormatText) = 2
 
 %description
 HTML::FormatText::WithLinks takes HTML and turns it into plain text but 
@@ -27,36 +35,30 @@ to mimic the format of the lynx text based web browser's 
--dump option.
 %prep
 %setup -q -n HTML-FormatText-WithLinks-%{version}
 
-
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
-
 %check
 make test
 
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*.3*
 
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 0.15-1
+- 0.15 bump; Update BRs
+- Modernize spec file
+
 * Mon Sep 01 2014 Jitka Plesnikova jples...@redhat.com - 0.14-11
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index cf289d5..9da0610 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-264a1436883d20b81e669c65a1f97367  HTML-FormatText-WithLinks-0.14.tar.gz
+e048c41f600895182df327c6ce9b2cc0  HTML-FormatText-WithLinks-0.15.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 1190785] perl-MooseX-App-1.31 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190785

Petr Šabata psab...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-MooseX-App-1.31-1.fc22
 Resolution|--- |RAWHIDE
Last Closed||2015-02-10 08:37:25



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

Re: Changing default configuration

2015-02-10 Thread Marek Skalický
Matthew Miller píše v Út 10. 02. 2015 v 06:19 -0500:
 On Tue, Feb 10, 2015 at 12:12:15PM +0100, Marek Skalický wrote:
  does someone know what are Fedora Guidelines (or something similar)
  saying about this bug
  https://bugzilla.redhat.com/show_bug.cgi?id=1077369 ?
  Is is possible to change default configuration file depending on
  available free space?
 
 Generally, making such a decision at install time is bad, because that
 might not reflect _runtime_. For example, in the cloud image, we use a
 / filesystem as small as Anaconda will allow, but that grows to fill
 available storage when the image is booted.
 
 Is there a way to make this decision when mongodb runs?
 

It should be possible to code this into sysv init script. But I am not
sure if it is possible to do the same in systemd service...?

My question was also about whether this should be done by mongoDB? Or
there should be default configuration and user can easily change it in
configuration file?

Marek

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Changing default configuration

2015-02-10 Thread Reindl Harald


Am 10.02.2015 um 14:38 schrieb Marek Skalický:

Matthew Miller píše v Út 10. 02. 2015 v 06:19 -0500:

On Tue, Feb 10, 2015 at 12:12:15PM +0100, Marek Skalický wrote:

does someone know what are Fedora Guidelines (or something similar)
saying about this bug
https://bugzilla.redhat.com/show_bug.cgi?id=1077369 ?
Is is possible to change default configuration file depending on
available free space?


Generally, making such a decision at install time is bad, because that
might not reflect _runtime_. For example, in the cloud image, we use a
/ filesystem as small as Anaconda will allow, but that grows to fill
available storage when the image is booted.

Is there a way to make this decision when mongodb runs?


It should be possible to code this into sysv init script. But I am not
sure if it is possible to do the same in systemd service...?

My question was also about whether this should be done by mongoDB? Or
there should be default configuration and user can easily change it in
configuration file?


user configuration

as said, you can't make such decisions at install time nor belong they 
to the service unit




signature.asc
Description: OpenPGP digital signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[perl-HTML-FormatText-WithLinks/f21] Perl 5.20 rebuild

2015-02-10 Thread Jitka Plesnikova
commit 4ca4d0ae7f0d5cc2d60e7163a868f2e6be085aeb
Author: Jitka Plesnikova jples...@redhat.com
Date:   Mon Sep 1 10:10:25 2014 +0200

Perl 5.20 rebuild

 perl-HTML-FormatText-WithLinks.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-FormatText-WithLinks.spec 
b/perl-HTML-FormatText-WithLinks.spec
index 785fbb4..cc2f74b 100644
--- a/perl-HTML-FormatText-WithLinks.spec
+++ b/perl-HTML-FormatText-WithLinks.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-FormatText-WithLinks
 Version:0.14
-Release:10%{?dist}
+Release:11%{?dist}
 Summary:HTML to text conversion with links as footnotes
 
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Mon Sep 01 2014 Jitka Plesnikova jples...@redhat.com - 0.14-11
+- Perl 5.20 rebuild
+
 * Sat Jun 07 2014 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.14-10
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_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-HTML-FormatText-WithLinks/f21] 0.15 bump

2015-02-10 Thread Jitka Plesnikova
commit 0d94eb50af93b8111268f4304da056688714c44c
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 14:37:26 2015 +0100

0.15 bump

 .gitignore  |1 +
 perl-HTML-FormatText-WithLinks.spec |   42 ++
 sources |2 +-
 3 files changed, 24 insertions(+), 21 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 824bf58..8e65694 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ HTML-FormatText-WithLinks-0.09.tar.gz
 /HTML-FormatText-WithLinks-0.11.tar.gz
 /HTML-FormatText-WithLinks-0.12.tar.gz
 /HTML-FormatText-WithLinks-0.14.tar.gz
+/HTML-FormatText-WithLinks-0.15.tar.gz
diff --git a/perl-HTML-FormatText-WithLinks.spec 
b/perl-HTML-FormatText-WithLinks.spec
index cc2f74b..89dfadf 100644
--- a/perl-HTML-FormatText-WithLinks.spec
+++ b/perl-HTML-FormatText-WithLinks.spec
@@ -1,23 +1,31 @@
 Name:   perl-HTML-FormatText-WithLinks
-Version:0.14
-Release:11%{?dist}
+Version:0.15
+Release:1%{?dist}
 Summary:HTML to text conversion with links as footnotes
 
 Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/HTML-FormatText-WithLinks
 Source0:
http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:  noarch
 BuildRequires:  perl(ExtUtils::MakeMaker)
-BuildRequires:  perl(HTML::FormatText) perl(HTML::TreeBuilder)
+# Run-time
+BuildRequires:  perl(base)
+BuildRequires:  perl(HTML::FormatText)
+BuildRequires:  perl(HTML::TreeBuilder)
+BuildRequires:  perl(strict)
 BuildRequires:  perl(URI::WithBase)
-BuildRequires:  perl(Test::MockObject) perl(Test::Pod::Coverage) 
-BuildRequires:  perl(Test::Pod) perl(Test::More)
-Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
+BuildRequires:  perl(vars)
+# Tests
+BuildRequires:  perl(Test::More)
+# Optional tests
+BuildRequires:  perl(Test::MockObject) 
+BuildRequires:  perl(Test::Pod) = 1.00
+BuildRequires:  perl(Test::Pod::Coverage) = 0.08
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 # not picked up automatically since it is called through SUPER
-Requires:  perl(HTML::FormatText) = 2
+Requires:   perl(HTML::FormatText) = 2
 
 %description
 HTML::FormatText::WithLinks takes HTML and turns it into plain text but 
@@ -27,36 +35,30 @@ to mimic the format of the lynx text based web browser's 
--dump option.
 %prep
 %setup -q -n HTML-FormatText-WithLinks-%{version}
 
-
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
+make pure_install DESTDIR=$RPM_BUILD_ROOT
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
-
 %check
 make test
 
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
 %files
-%defattr(-,root,root,-)
 %doc Changes README
 %{perl_vendorlib}/*
 %{_mandir}/man3/*.3*
 
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 0.15-1
+- 0.15 bump; Update BRs
+- Modernize spec file
+
 * Mon Sep 01 2014 Jitka Plesnikova jples...@redhat.com - 0.14-11
 - Perl 5.20 rebuild
 
diff --git a/sources b/sources
index cf289d5..9da0610 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-264a1436883d20b81e669c65a1f97367  HTML-FormatText-WithLinks-0.14.tar.gz
+e048c41f600895182df327c6ce9b2cc0  HTML-FormatText-WithLinks-0.15.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 1178795] perl-HTML-FormatText-WithLinks-0.15 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1178795

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED
   Fixed In Version||perl-HTML-FormatText-WithLi
   ||nks-0.15-1.fc22



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

Re: another input/output question (libinput / pulseaudio / ....)

2015-02-10 Thread Matthias Clasen
On Mon, 2015-02-09 at 08:44 +1000, Peter Hutterer wrote:

 However, especially for libinput, it gets hazy and also mostly pointless.
 aside from some special processing required for touchpads and tablets, we
 don't care much _what_ a device is, we just pass on the events.  If a device
 has keys, it'll be a keyboard. if it sents KEY_MUTE we pass that on, the
 compositor/X stack will then handle that however need be. There's no real
 benefit to us trying to figure out what is a headset and what isn't, we'd
 still just pass on the keys.

Fair enough. One thing that is important, though, is to preserve enough
information about the originating device (and the general device
topology) that higher levels have a chance to do the right thing (e.g.
mute the headset and not the speakers, if that is where the mute button
is).

-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: Results of a test mass rebuild of rawhide/x86_64 with gcc-5.0.0-0.5.fc22

2015-02-10 Thread Ralf Corsepius

On 02/10/2015 03:56 PM, Adam Jackson wrote:


If only there was some way to use different CFLAGS for configure than
for the project.


Well, wouldn't you agree that developers should be able to read warnings 
and filter out the serious one?


Ralf
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: [AutoQA] #448: Update repoinfo.conf - Add branch

2015-02-10 Thread AutoQA
#448: Update repoinfo.conf - Add branch
+-
 Reporter:  ausil   |   Owner:
 Type:  task|  Status:  new
 Priority:  critical|   Milestone:  Hot issues
Component:  production  |  Resolution:
 Keywords:  |  Blocked By:
 Blocking:  |
+-

Comment (by ausil):

 that should be F22 has branched and rawhide is now F23

-- 
Ticket URL: https://fedorahosted.org/autoqa/ticket/448#comment:1
AutoQA http://autoqa.fedorahosted.org
Automated QA project
___
qa-devel mailing list
qa-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/qa-devel


[389-devel] please review: Ticket 48028 - lib389 - add valgrind functions

2015-02-10 Thread Mark Reynolds

https://fedorahosted.org/389/ticket/48028

https://fedorahosted.org/389/attachment/ticket/48028/0001-Ticket-48028-lib389-add-valgrind-functions.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

looking for Jeffrey C. Ollie

2015-02-10 Thread Nikos Mavrogiannopoulos
Hi,
 I've filled in https://bugzilla.redhat.com/show_bug.cgi?id=1170578
and I'd like to replace radiusclient-ng-utils with freeradius-client-utils.
Does anyone have more recent contact information of Jeffrey C. Ollie 
(j...@ocjtech.us).

regards,
Nikos
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: another input/output question (libinput / pulseaudio / ....)

2015-02-10 Thread Damian Ivanov
Hello Bastien,
Hello list,

I have no idea how to change the LEDs though, but if they're exposed in sysfs, 
you'd probably
change them in gnome-settings-daemon as well.
I have :)
I will (in the next month) find out using virtualbox/vmware and a
packet sniffer see what the win driver is doing
while changing the LED's, so patches required: ok,
but where would be a proper place in the gnome gui for that?

2015-02-11 0:36 GMT+01:00 Bastien Nocera bnoc...@redhat.com:


 - Original Message -
 On Mon, 2015-02-09 at 08:44 +1000, Peter Hutterer wrote:

  However, especially for libinput, it gets hazy and also mostly pointless.
  aside from some special processing required for touchpads and tablets, we
  don't care much _what_ a device is, we just pass on the events.  If a
  device
  has keys, it'll be a keyboard. if it sents KEY_MUTE we pass that on, the
  compositor/X stack will then handle that however need be. There's no real
  benefit to us trying to figure out what is a headset and what isn't, we'd
  still just pass on the keys.

 Fair enough. One thing that is important, though, is to preserve enough
 information about the originating device (and the general device
 topology) that higher levels have a chance to do the right thing (e.g.
 mute the headset and not the speakers, if that is where the mute button
 is).

 We already do that, when we can match the audio device with the input device,
 in gnome-settings-daemon:
 https://git.gnome.org/browse/gnome-settings-daemon/tree/plugins/media-keys/gsd-media-keys-manager.c#n1184

 It did work to make the volume buttons on a USB speaker control the USB 
 speaker and nothing else.

 I have no idea how to change the LEDs though, but if they're exposed in 
 sysfs, you'd probably
 change them in gnome-settings-daemon as well.

 I'd say patches welcome but in this case it will be patches required.
 --
 devel mailing list
 devel@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/devel
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: another input/output question (libinput / pulseaudio / ....)

2015-02-10 Thread Peter Hutterer
On Tue, Feb 10, 2015 at 02:09:55PM -0500, Matthias Clasen wrote:
 On Mon, 2015-02-09 at 08:44 +1000, Peter Hutterer wrote:
 
  However, especially for libinput, it gets hazy and also mostly pointless.
  aside from some special processing required for touchpads and tablets, we
  don't care much _what_ a device is, we just pass on the events.  If a device
  has keys, it'll be a keyboard. if it sents KEY_MUTE we pass that on, the
  compositor/X stack will then handle that however need be. There's no real
  benefit to us trying to figure out what is a headset and what isn't, we'd
  still just pass on the keys.
 
 Fair enough. One thing that is important, though, is to preserve enough
 information about the originating device (and the general device
 topology) that higher levels have a chance to do the right thing (e.g.
 mute the headset and not the speakers, if that is where the mute button
 is).

I _think_ we do that but I'm open to suggestions if we don't do it
sufficiently.
First, all events in libinput are device-based. There are some seat helpers
but all events are still per libinput device, so you definitely know which
device the event is coming from.

Right now, the only real thing to associate with any topology you get from
libinput is the udev_device. What's in the works for 0.11 are device groups
(see http://who-t.blogspot.com.au/2015/02/libinput-device-groups.html) which
give you a bit more of the topology in some special cases, though that
probably won't apply in this particular case.

if there is anything more we should do pls let us know.

Cheers,
   Peter
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Fedora 22 Mass Branching

2015-02-10 Thread Peter Robinson
Hi All,

Fedora 22 has been branched, please be sure to do a git pull --rebase to
pick up the new branch, as an additional reminder rawhide/f23 has had
inheritance cut off from previous releases,  so this means that
anything you do for f22 you also have to do in the master branch and do
a build there. This is the same as we did for previous Fedora releases

Peter
___
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce

Fedora 22 Mass Branching

2015-02-10 Thread Peter Robinson
Hi All,

Fedora 22 has been branched, please be sure to do a git pull --rebase to
pick up the new branch, as an additional reminder rawhide/f23 has had
inheritance cut off from previous releases,  so this means that
anything you do for f22 you also have to do in the master branch and do
a build there. This is the same as we did for previous Fedora releases

Peter
___
devel-announce mailing list
devel-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

File XML-LibXSLT-1.94.tar.gz uploaded to lookaside cache by jplesnik

2015-02-10 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl-XML-LibXSLT:

a32045699c001d960d6f94891f9e853c  XML-LibXSLT-1.94.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 1183592] perl-XML-LibXSLT-1.94 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1183592

Jitka Plesnikova jples...@redhat.com changed:

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-XML-LibXSLT-1.94-1.fc2
   ||2
 Resolution|--- |RAWHIDE
Last Closed||2015-02-10 10:31:58



-- 
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=LTuorm8XvDa=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 1184838] perl-Net-GitHub-0.71 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1184838



--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-GitHub-0.72-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-Net-GitHub-0.72-1.fc21

-- 
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=qgfHqFPo6aa=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 1190787] perl-Net-GitHub-0.72 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1190787



--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-GitHub-0.72-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-Net-GitHub-0.72-1.fc21

-- 
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=9iJf8Qtwapa=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

Re: git - possible rebase on F21

2015-02-10 Thread Petr Stodulka


Dne 10.2.2015 v 11:03 Peter Robinson napsal(a):

On Tue, Feb 10, 2015 at 9:58 AM, Petr Stodulka pstod...@redhat.com wrote:

Hi guys,
I have this request [0] for rebase of git from version 2.1.0 to 2.2.2 for
Fedora 21. Can I do this? Do you know someone about any incompatibilities?
For me there are not so big changes but I have not problem with this. We
have now version 2.3.0 on rawhide. In the case that yo prefer rebase to
2.2.2 or even to 2.3.0?

What are the pros of moving from 2.1.x to a newer release? What are
the possible issues? Is there a soname bump? API/ABI changes? The bug
just asks for it to rebase and doesn't state why it would be useful.
In general you should outline things like does it have features that
are useful, does it have functionality that is needed to interact with
new features of some public tool or infrastructure (say signed pushes
for kernel upstream, some new functionality in github etc).

Peter
Thanks Peter for advice. There are some API changes according to log and 
I don't see any important issue which is fixed in newer version or some 
really so good features. #1187874 is closed now.

--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[Bug 1178789] perl-Archive-Zip-1.45 is available

2015-02-10 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1178789



--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
perl-Archive-Zip-1.45-1.fc21 has been submitted as an update for Fedora 21.
https://admin.fedoraproject.org/updates/perl-Archive-Zip-1.45-1.fc21

-- 
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=KIdYHjhZ3Ia=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-PDL] Run-require ExtUtils::MakeMaker for script generated by pptemplate tool

2015-02-10 Thread Petr Pisar
commit 9c778df8286883940288a3c3de64d0243825e9cd
Author: Petr Písař ppi...@redhat.com
Date:   Tue Feb 10 13:17:11 2015 +0100

Run-require ExtUtils::MakeMaker for script generated by pptemplate tool

 perl-PDL.spec |6 +-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/perl-PDL.spec b/perl-PDL.spec
index 780b44e..84eeebe 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:6%{?dist}
+Release:7%{?dist}
 Summary:The Perl Data Language
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -107,6 +107,7 @@ BuildRequires:  proj-nad
 # BuildRequires:  ncurses-devel
 BuildRequires:  sharutils
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(ExtUtils::MakeMaker)
 Requires:   perl(File::Map) = 0.57
 Requires:   perl(File::Spec) = 0.6
 Requires:   perl(Filter::Simple) = 0.88
@@ -194,6 +195,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue Feb 10 2015 Petr Pisar ppi...@redhat.com - 2.7.0-7
+- Run-require ExtUtils::MakeMaker for script generated by pptemplate tool
+
 * Mon Sep 01 2014 Jitka Plesnikova jples...@redhat.com - 2.7.0-6
 - Perl 5.20 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-Archive-Zip/f21] 1.39 bump

2015-02-10 Thread Jitka Plesnikova
commit d6cf63b147852d8f4f4a573c52ac83be37bae637
Author: Jitka Plesnikova jples...@redhat.com
Date:   Wed Oct 22 13:31:33 2014 +0200

1.39 bump

 .gitignore  |1 +
 Archive-Zip-cpan-rt-54827.patch |   25 ++---
 perl-Archive-Zip.spec   |   25 ++---
 sources |2 +-
 4 files changed, 26 insertions(+), 27 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index d352068..9b4dff6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@ Archive-Zip-1.30.tar.gz
 /Archive-Zip-1.36.tar.gz
 /Archive-Zip-1.37.tar.gz
 /Archive-Zip-1.38.tar.gz
+/Archive-Zip-1.39.tar.gz
diff --git a/Archive-Zip-cpan-rt-54827.patch b/Archive-Zip-cpan-rt-54827.patch
index e22477d..3ecb815 100644
--- a/Archive-Zip-cpan-rt-54827.patch
+++ b/Archive-Zip-cpan-rt-54827.patch
@@ -1,18 +1,21 @@
-diff -up Archive-Zip-1.33/lib/Archive/Zip/Member.pm.orig 
Archive-Zip-1.33/lib/Archive/Zip/Member.pm
 Archive-Zip-1.33/lib/Archive/Zip/Member.pm.orig2013-11-10 
04:47:27.0 +0100
-+++ Archive-Zip-1.33/lib/Archive/Zip/Member.pm 2013-11-22 12:48:19.848476120 
+0100
-@@ -167,13 +167,13 @@ sub bitFlag {
- 
- # Set General Purpose Bit Flags according to the desiredCompressionLevel 
setting
- if ( $self-desiredCompressionLevel == 1 || 
$self-desiredCompressionLevel == 2 ) {
+diff -up Archive-Zip-1.39/lib/Archive/Zip/Member.pm.orig 
Archive-Zip-1.39/lib/Archive/Zip/Member.pm
+--- Archive-Zip-1.39/lib/Archive/Zip/Member.pm.orig2014-10-22 
13:05:47.852592106 +0200
 Archive-Zip-1.39/lib/Archive/Zip/Member.pm 2014-10-22 13:10:28.151696108 
+0200
+@@ -159,16 +159,16 @@ sub bitFlag {
+ # Set General Purpose Bit Flags according to the desiredCompressionLevel 
setting
+ if (   $self-desiredCompressionLevel == 1
+ || $self-desiredCompressionLevel == 2) {
 -$self-{'bitFlag'} = DEFLATING_COMPRESSION_FAST;
 +$self-{'bitFlag'} |= DEFLATING_COMPRESSION_FAST;
- } elsif ( $self-desiredCompressionLevel == 3 || 
$self-desiredCompressionLevel == 4
-   || $self-desiredCompressionLevel == 5 || 
$self-desiredCompressionLevel == 6
-   || $self-desiredCompressionLevel == 7 ) {
+ } elsif ($self-desiredCompressionLevel == 3
+ || $self-desiredCompressionLevel == 4
+ || $self-desiredCompressionLevel == 5
+ || $self-desiredCompressionLevel == 6
+ || $self-desiredCompressionLevel == 7) {
 -$self-{'bitFlag'} = DEFLATING_COMPRESSION_NORMAL;
 +$self-{'bitFlag'} |= DEFLATING_COMPRESSION_NORMAL;
- } elsif ( $self-desiredCompressionLevel == 8 || 
$self-desiredCompressionLevel == 9 ) {
+ } elsif ($self-desiredCompressionLevel == 8
+ || $self-desiredCompressionLevel == 9) {
 -$self-{'bitFlag'} = DEFLATING_COMPRESSION_MAXIMUM;
 +$self-{'bitFlag'} |= DEFLATING_COMPRESSION_MAXIMUM;
  }
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index 8f250d2..8220b8e 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -1,5 +1,5 @@
 Name:   perl-Archive-Zip
-Version:1.38
+Version:1.39
 Release:1%{?dist}
 Summary:Perl library for accessing Zip archives
 
@@ -7,7 +7,6 @@ Group:  Development/Libraries
 License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/Archive-Zip/
 Source0:
http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/Archive-Zip-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 #https://rt.cpan.org/Public/Bug/Display.html?id=54827
 Patch0: Archive-Zip-cpan-rt-54827.patch
@@ -19,9 +18,9 @@ BuildRequires:  perl(strict)
 # Run-time
 BuildRequires:  perl(bytes)
 BuildRequires:  perl(Carp)
+BuildRequires:  perl(Compress::Raw::Zlib)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Cwd)
-BuildRequires:  perl(Compress::Raw::Zlib)
 BuildRequires:  perl(Encode)
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Basename)
@@ -45,7 +44,7 @@ BuildRequires:  perl(warnings)
 BuildRequires:  unzip
 BuildRequires:  zip
 
-Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
+Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 
 %description
 The Archive::Zip module allows a Perl program to create, manipulate,
@@ -62,20 +61,18 @@ existing Zip files, or from existing directories, files, or 
strings.
 %prep
 %setup -q -n Archive-Zip-%{version}
 %patch0 -p1
-%{__perl} -pi -e 's|^#!/bin/perl|#!%{__perl}|' examples/*.pl
-%{__perl} -pi -e 's|^#!/usr/local/bin/perl|#!%{__perl}|' examples/selfex.pl
+perl -pi -e 's|^#!/bin/perl|#!%{__perl}|' examples/*.pl
+perl -pi -e 's|^#!/usr/local/bin/perl|#!%{__perl}|' examples/selfex.pl
 
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT

[perl-Archive-Zip/f21] Correct dependencies

2015-02-10 Thread Jitka Plesnikova
commit bda73aa29399234b1493e31d504bebebfaea46fe
Author: Petr Písař ppi...@redhat.com
Date:   Thu Jan 15 11:01:36 2015 +0100

Correct dependencies

 perl-Archive-Zip.spec |   17 -
 1 files changed, 12 insertions(+), 5 deletions(-)
---
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index 8220b8e..e24b232 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -1,6 +1,6 @@
 Name:   perl-Archive-Zip
 Version:1.39
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Perl library for accessing Zip archives
 
 Group:  Development/Libraries
@@ -10,7 +10,6 @@ Source0:
http://search.cpan.org/CPAN/authors/id/P/PH/PHRED/Archive-Zip-%{
 BuildArch:  noarch
 #https://rt.cpan.org/Public/Bug/Display.html?id=54827
 Patch0: Archive-Zip-cpan-rt-54827.patch
-
 BuildRequires:  perl
 BuildRequires:  perl(Config)
 BuildRequires:  perl(ExtUtils::MakeMaker)
@@ -21,7 +20,7 @@ BuildRequires:  perl(Carp)
 BuildRequires:  perl(Compress::Raw::Zlib)
 BuildRequires:  perl(constant)
 BuildRequires:  perl(Cwd)
-BuildRequires:  perl(Encode)
+# Encode not used on Linux
 BuildRequires:  perl(Exporter)
 BuildRequires:  perl(File::Basename)
 BuildRequires:  perl(File::Copy)
@@ -33,18 +32,23 @@ BuildRequires:  perl(FileHandle)
 BuildRequires:  perl(integer)
 BuildRequires:  perl(IO::File)
 BuildRequires:  perl(IO::Seekable)
+# lib not used at tests
 BuildRequires:  perl(Time::Local)
 BuildRequires:  perl(vars)
 # Tests
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(File::Spec::Unix)
-BuildRequires:  perl(IO::Scalar)
+# IO::Scalar not used
 BuildRequires:  perl(Test::More) = 0.88
 BuildRequires:  perl(warnings)
 BuildRequires:  unzip
 BuildRequires:  zip
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+Requires:   perl(Exporter)
+Requires:   perl(File::Spec) = 0.80
 
-Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
+# Remove under-specified dependencies
+%global __requires_exclude 
%{?__requires_exclude:%__requires_exclude|}^perl\\(File::Spec\\)$
 
 %description
 The Archive::Zip module allows a Perl program to create, manipulate,
@@ -88,6 +92,9 @@ make test
 
 
 %changelog
+* Thu Jan 15 2015 Petr Pisar ppi...@redhat.com - 1.39-2
+- Correct dependencies
+
 * Wed Oct 22 2014 Jitka Plesnikova jples...@redhat.com - 1.39-1
 - 1.39 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

[perl-Archive-Zip/f21] Improve sharpbang fix

2015-02-10 Thread Jitka Plesnikova
commit 2c69a653ae4fb496681e1120c2594c697bd84a2e
Author: Petr Písař ppi...@redhat.com
Date:   Thu Jan 15 12:40:23 2015 +0100

Improve sharpbang fix

 perl-Archive-Zip.spec |8 ++--
 1 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index e24b232..46ac779 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -65,8 +65,11 @@ existing Zip files, or from existing directories, files, or 
strings.
 %prep
 %setup -q -n Archive-Zip-%{version}
 %patch0 -p1
-perl -pi -e 's|^#!/bin/perl|#!%{__perl}|' examples/*.pl
-perl -pi -e 's|^#!/usr/local/bin/perl|#!%{__perl}|' examples/selfex.pl
+perl -MConfig -pi -e 's|^#!/usr/local/bin/perl|$Config{startperl}|' \
+examples/selfex.pl
+for F in examples/*.pl; do
+perl -MExtUtils::MakeMaker -e ExtUtils::MM_Unix-fixin(q{$F})
+done
 
 
 %build
@@ -94,6 +97,7 @@ make test
 %changelog
 * Thu Jan 15 2015 Petr Pisar ppi...@redhat.com - 1.39-2
 - Correct dependencies
+- Improve sharpbang fix
 
 * Wed Oct 22 2014 Jitka Plesnikova jples...@redhat.com - 1.39-1
 - 1.39 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

[perl-Net-GitHub] 0.72 bump

2015-02-10 Thread Petr Šabata
commit 7d3409baddb19b82b53aaa67f11a7abdc2417741
Author: Petr Šabata con...@redhat.com
Date:   Tue Feb 10 13:38:15 2015 +0100

0.72 bump

 .gitignore   |1 +
 perl-Net-GitHub.spec |5 -
 sources  |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index cc20ddd..46bc6df 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,4 @@ Net-GitHub-0.22.tar.gz
 /Net-GitHub-0.68.tar.gz
 /Net-GitHub-0.69.tar.gz
 /Net-GitHub-0.71.tar.gz
+/Net-GitHub-0.72.tar.gz
diff --git a/perl-Net-GitHub.spec b/perl-Net-GitHub.spec
index 0446389..3bf6ab5 100644
--- a/perl-Net-GitHub.spec
+++ b/perl-Net-GitHub.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-GitHub
 Summary:Perl interface for github.com
-Version:0.71
+Version:0.72
 Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -64,6 +64,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue Feb 10 2015 Petr Šabata con...@redhat.com - 0.72-1
+- 0.72 bump
+
 * Tue Feb 03 2015 Petr Šabata con...@redhat.com - 0.71-1
 - 0.71 bump
 
diff --git a/sources b/sources
index ca41a36..20f0709 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e597cf70e0e3fdb5fef1037bc22ccf4b  Net-GitHub-0.71.tar.gz
+bd9dff198a07978ff9ed8a06dfc6e494  Net-GitHub-0.72.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-GitHub/f21] 0.72 bump

2015-02-10 Thread Petr Šabata
Summary of changes:

  7d3409b... 0.72 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-Archive-Zip/f21] 1.45 bump

2015-02-10 Thread Jitka Plesnikova
commit 9807e08f4d8f52cf82f89978487f15ad1ecc5738
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Feb 10 13:16:21 2015 +0100

1.45 bump

 .gitignore|1 +
 perl-Archive-Zip.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9b4dff6..fd66416 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ Archive-Zip-1.30.tar.gz
 /Archive-Zip-1.37.tar.gz
 /Archive-Zip-1.38.tar.gz
 /Archive-Zip-1.39.tar.gz
+/Archive-Zip-1.45.tar.gz
diff --git a/perl-Archive-Zip.spec b/perl-Archive-Zip.spec
index 46ac779..a34b1a8 100644
--- a/perl-Archive-Zip.spec
+++ b/perl-Archive-Zip.spec
@@ -1,6 +1,6 @@
 Name:   perl-Archive-Zip
-Version:1.39
-Release:2%{?dist}
+Version:1.45
+Release:1%{?dist}
 Summary:Perl library for accessing Zip archives
 
 Group:  Development/Libraries
@@ -95,6 +95,9 @@ make test
 
 
 %changelog
+* Tue Feb 10 2015 Jitka Plesnikova jples...@redhat.com - 1.45-1
+- 1.45 bump
+
 * Thu Jan 15 2015 Petr Pisar ppi...@redhat.com - 1.39-2
 - Correct dependencies
 - Improve sharpbang fix
diff --git a/sources b/sources
index 440d758..30c68a6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-851316e59625317a89e40418a26c676c  Archive-Zip-1.39.tar.gz
+07805e1c2c6b2b6561ac29489a6dd7dd  Archive-Zip-1.45.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-GitHub-0.72.tar.gz uploaded to lookaside cache by psabata

2015-02-10 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Net-GitHub:

bd9dff198a07978ff9ed8a06dfc6e494  Net-GitHub-0.72.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

[389-devel] Please review: [389 Project] #47728: compilation failed with ' incomplete struct/union/enum' if not set USE_POSIX_RWLOCKS

2015-02-10 Thread Noriko Hosoi

ttps://fedorahosted.org/389/ticket/47728

https://fedorahosted.org/389/attachment/ticket/47728/0001-Ticket-47728-compilation-failed-with-incomplete-stru.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

Re: Orphaned Packages in rawhide (2015-02-10)

2015-02-10 Thread Michael Schwendt
 audiofileorphan, ajax, alexl, caillon, caolanm,   1 weeks ago   
  group::gnome-sig, johnp, mbarnes,  
  rhughes, rstrode, ssp, xiphmont

I've added myself there, since there are tons of deps on it down to even
audacious-plugins and dozens of packagers are affected either directly
or indirectly. Though I'm not familiar with this lib [yet]. There are
no open tickets in bugzilla currently. Not much activity in the package
%changelog.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

Re: another input/output question (libinput / pulseaudio / ....)

2015-02-10 Thread Bastien Nocera


- Original Message -
 On Mon, 2015-02-09 at 08:44 +1000, Peter Hutterer wrote:
 
  However, especially for libinput, it gets hazy and also mostly pointless.
  aside from some special processing required for touchpads and tablets, we
  don't care much _what_ a device is, we just pass on the events.  If a
  device
  has keys, it'll be a keyboard. if it sents KEY_MUTE we pass that on, the
  compositor/X stack will then handle that however need be. There's no real
  benefit to us trying to figure out what is a headset and what isn't, we'd
  still just pass on the keys.
 
 Fair enough. One thing that is important, though, is to preserve enough
 information about the originating device (and the general device
 topology) that higher levels have a chance to do the right thing (e.g.
 mute the headset and not the speakers, if that is where the mute button
 is).

We already do that, when we can match the audio device with the input device,
in gnome-settings-daemon:
https://git.gnome.org/browse/gnome-settings-daemon/tree/plugins/media-keys/gsd-media-keys-manager.c#n1184

It did work to make the volume buttons on a USB speaker control the USB speaker 
and nothing else.

I have no idea how to change the LEDs though, but if they're exposed in sysfs, 
you'd probably
change them in gnome-settings-daemon as well.

I'd say patches welcome but in this case it will be patches required.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct

[389-devel] Please review: [389 Project] #47742: 64bit problem on big endian: auth method not supported

2015-02-10 Thread Noriko Hosoi

https://fedorahosted.org/389/ticket/47742

https://fedorahosted.org/389/attachment/ticket/47742/0001-Ticket-47742-64bit-problem-on-big-endian-auth-method.patch
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

[perl-PDL] Fix parallel build in Basic/Core directory

2015-02-10 Thread Petr Pisar
commit d0ec478fe0b313cc91d0aeae908ccb43b5e02261
Author: Petr Písař ppi...@redhat.com
Date:   Tue Feb 10 15:04:05 2015 +0100

Fix parallel build in Basic/Core directory

 ...Declare-dependecies-on-generated-header-f.patch |   48 
 perl-PDL.spec  |9 +++-
 2 files changed, 56 insertions(+), 1 deletions(-)
---
diff --git 
a/PDL-2.007-Basic-Core-Declare-dependecies-on-generated-header-f.patch 
b/PDL-2.007-Basic-Core-Declare-dependecies-on-generated-header-f.patch
new file mode 100644
index 000..82b2d35
--- /dev/null
+++ b/PDL-2.007-Basic-Core-Declare-dependecies-on-generated-header-f.patch
@@ -0,0 +1,48 @@
+From ef7e9cbf22fbe947b123303329efb114198a8757 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= ppi...@redhat.com
+Date: Tue, 10 Feb 2015 14:38:29 +0100
+Subject: [PATCH] Basic/Core: Declare dependecies on generated header files
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+Parallel build can fail because generated C sources requires generated
+header files. This patch adds the missing dependency declarations.
+
+Signed-off-by: Petr Písař ppi...@redhat.com
+---
+ Basic/Core/Makefile.PL | 9 ++---
+ 1 file changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/Basic/Core/Makefile.PL b/Basic/Core/Makefile.PL
+index a6fc6bc..795ed2c 100644
+--- a/Basic/Core/Makefile.PL
 b/Basic/Core/Makefile.PL
+@@ -258,18 +258,21 @@ PDL::Core::Dev::postamble().
+ # there must be a more elegant way of saying that
+ # certain files have additional dependencies!
+ 
+-pdlthread.c :: pdlcore.h\n
++pdlthread.c :: pdl.h pdlcore.h\n
+ .
+ 
+-pdlhash.c :: pdlcore.h\n
++pdlhash.c :: pdl.h pdlcore.h\n
+ .
+ 
+-pdlapi.c :: pdlcore.h\n
++pdlapi.c :: pdl.h pdlcore.h\n
+ .
+ 
+ pdlmagic.c :: pdlcore.h\n
+ .
+ 
++pdlsections.c :: pdl.h pdlcore.h\n
++.
++
+ Core.pm :: Core.pm.PL Types.pm badsupport.p\n
+ . make_from_PL('Core.pm')
+ .
+-- 
+1.9.3
+
diff --git a/perl-PDL.spec b/perl-PDL.spec
index 84eeebe..0e97602 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:7%{?dist}
+Release:8%{?dist}
 Summary:The Perl Data Language
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -29,6 +29,9 @@ Patch4: PDL-2.7.0-Disable-PDL-Slatec.patch
 # Skip PDL::Slatec reverse dependencies if Slatec is disabled, bug #1041304,
 # https://sourceforge.net/p/pdl/bugs/350/
 Patch5: 
PDL-2.7.0-Do-not-install-modules-using-PDL-Slatec-if-Slatec-is.patch
+# Fix parallel build in Basic/Core directory,
+# https://sourceforge.net/p/pdl/bugs/370/
+Patch6: 
PDL-2.007-Basic-Core-Declare-dependecies-on-generated-header-f.patch
 BuildRequires:  fftw2-devel
 BuildRequires:  freeglut-devel
 BuildRequires:  gcc-gfortran
@@ -157,6 +160,7 @@ such commercial packages as IDL and MatLab.
 %patch4 -p1 -b .slatec
 %endif
 %patch5 -p1 -b .slatec_revdep
+%patch6 -p1
 # Fix shebang
 sed -e 's,^#!/usr/bin/env perl,#!/usr/bin/perl,' -i Perldl2/pdl2
 
@@ -195,6 +199,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Tue Feb 10 2015 Petr Pisar ppi...@redhat.com - 2.7.0-8
+- Fix parallel build in Basic/Core directory
+
 * Tue Feb 10 2015 Petr Pisar ppi...@redhat.com - 2.7.0-7
 - Run-require ExtUtils::MakeMaker for script generated by pptemplate tool
 
--
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

[PkgDB] pingou:fusioninventory-agent commit set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: commit of package: fusioninventory-agent from: 
 to: Approved on branch: epel7

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent approveacls set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: approveacls of package: fusioninventory-agent 
from:  to: Approved on branch: epel7

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent approveacls set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: approveacls of package: fusioninventory-agent 
from:  to: Approved on branch: f20

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent commit set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: commit of package: fusioninventory-agent from: 
 to: Approved on branch: f21

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent approveacls set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: approveacls of package: fusioninventory-agent 
from:  to: Approved on branch: f21

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent commit set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: commit of package: fusioninventory-agent from: 
 to: Approved on branch: f20

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

[PkgDB] pingou:fusioninventory-agent commit set to Approved

2015-02-10 Thread pkgdb
user: pingou set for jehane acl: commit of package: fusioninventory-agent from: 
 to: Approved on branch: master

To make changes to this package see:
https://admin.fedoraproject.org/pkgdb/package/fusioninventory-agent
--
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

Re: Changing default configuration

2015-02-10 Thread Alberto Ruiz
On Tue, 2015-02-10 at 14:38 +0100, Marek Skalický wrote:
 Matthew Miller píše v Út 10. 02. 2015 v 06:19 -0500:
  On Tue, Feb 10, 2015 at 12:12:15PM +0100, Marek Skalický wrote:
   does someone know what are Fedora Guidelines (or something similar)
   saying about this bug
   https://bugzilla.redhat.com/show_bug.cgi?id=1077369 ?
   Is is possible to change default configuration file depending on
   available free space?
  
  Generally, making such a decision at install time is bad, because that
  might not reflect _runtime_. For example, in the cloud image, we use a
  / filesystem as small as Anaconda will allow, but that grows to fill
  available storage when the image is booted.
  
  Is there a way to make this decision when mongodb runs?
  
 
 It should be possible to code this into sysv init script. But I am not
 sure if it is possible to do the same in systemd service...?
 
 My question was also about whether this should be done by mongoDB? Or
 there should be default configuration and user can easily change it in
 configuration file?

It should be done by MongoDB, I would get in touch with the upstream and
discuss the problem with them.

 Marek
 

-- 
Greetings,
Alberto Ruiz
Engineering Manager - Desktop Applications Team
Red Hat, Inc.



-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct