Re: small tip regarding git branch bash prompt in F18/Rawhide

2012-08-24 Thread Dodji Seketeli
Todd Zullinger t...@pobox.com a écrit:

 I placed git-prompt.sh in /etc/profile.d where it should be sourced
 for normal login shells.  This should make the change transparent to
 most users.

 https://admin.fedoraproject.org/updates/git-1.7.12-2.fc18

Great.  Thank you for doing this.

Do you think it would be possible to take similar actions for things
that are in the contrib package of git, like, e.g, git-new-workdir?
It's a really useful tool that I manually install in /usr/local/bin.
The problem, like for the git-prompt.sh is that each time there is a git
version change, I have to manually update the git-new-workdir.

So I am thinking that maybe we should have a git-contrib package that
properly installs all the juicy stuff that we find today in
/usr/share/doc/git-version/contrib.

If you think the idea could have legs, I can fill a tracker bug for
this.

Thanks.

-- 
Dodji
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Hans de Goede

Hi,

Today I received a bug report to mv sensorsd's pid file from 
/var/run/sensorsd.pid to
/var/run/sensorsd/sensorsd.pid, see:
https://bugzilla.redhat.com/show_bug.cgi?id=851428

As discussed there, I think / guess that the same request has probably been made
for other daemons and I'm not sure if that is a good idea, because:

/var/run/$name.pid is the standard pid file location for daemons and has been so
for ages. A lot of distros depend on this, and we used to depend on it until we
moved to systemd which no longer cares about pid files. Let me quote a snippet
from /etc/init.d/functions

# Set $pid to pids from /var/run* for {program}.  $pid should be declared
# local in the caller.
# Returns LSB exit code for the 'status' action.
__pids_var_run() {
local base=${1##*/}
local pid_file=${2:-/var/run/$base.pid}

Making the requested change means making changes to the daemon C-code, and if we
then upstream these changes, they will cause issues for other distro's.  So I 
think
that upstreaming the necessary changes is going to be a problem.

Regards,

Hans


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

Re: small tip regarding git branch bash prompt in F18/Rawhide

2012-08-24 Thread Enrico Scholz
Todd Zullinger t...@pobox.com writes:

 I placed git-prompt.sh in /etc/profile.d where it should be sourced
 for normal login shells.

As I wrote in the update comment, please revert it.  It pollutes the
environment of every user with functions which are probably never be
used.

As these functions are useless without doing further modifications to
~/.bash_profile, it does not matter whether the user sources the script
explicitly and modifies $PS1, or whether he modifies $PS1 only, or
whether a script is sourced which modifies $PS1.

Please move the script to /usr/share/git or to /etc/bash_completion.d
where it can be requested by the user explicitly.


Enrico
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: small tip regarding git branch bash prompt in F18/Rawhide

2012-08-24 Thread Ville Skyttä
On 2012-08-24 13:08, Enrico Scholz wrote:

 Please move the script to /usr/share/git or to /etc/bash_completion.d
 where it can be requested by the user explicitly.

+1, but /etc/bash_completion.d would be a bad choice as AFAIK this
script has nothing to do with completion (and besides, everything from
there gets sourced automatically if bash-completion is installed).

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

Re: Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Colin Walters
On Fri, 2012-08-24 at 10:08 +0200, Hans de Goede wrote:

 /var/run/$name.pid is the standard pid file location for daemons and has been 
 so
 for ages. A lot of distros depend on this, and we used to depend on it until 
 we
 moved to systemd which no longer cares about pid files.

Right, so why not just configure the daemon to stop writing the pid file
at all?



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

Re: Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Andrew Price

On 24/08/12 13:41, Colin Walters wrote:

On Fri, 2012-08-24 at 10:08 +0200, Hans de Goede wrote:


/var/run/$name.pid is the standard pid file location for daemons and has been so
for ages. A lot of distros depend on this, and we used to depend on it until we
moved to systemd which no longer cares about pid files.


Right, so why not just configure the daemon to stop writing the pid file
at all?


From systemd.service(5):

  PIDFile=
Takes an absolute file name pointing to the PID file of this
daemon. Use of this option is recommended for services where
Type= is set to forking. systemd will read the PID of the main
process of the daemon after start-up of the service.

If Type=forking is set and PIDFile is unset, systemd will try to guess 
the PID of the main daemon process. I'm not sure what the guessing 
strategy is but specifying the PIDFile explicitly is probably safer, 
particularly for daemons which spawn 1 processes.


Andy
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

[perl] Remove perl-devel dependency from perl-Test-Harness and perl-Test-Simple

2012-08-24 Thread Petr Pisar
commit 105c5312337e3bc5816c21bf62cbbec842c9e757
Author: Petr Písař ppi...@redhat.com
Date:   Fri Aug 24 14:57:57 2012 +0200

Remove perl-devel dependency from perl-Test-Harness and perl-Test-Simple

 perl.spec |7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/perl.spec b/perl.spec
index c1f60f0..396b4d5 100644
--- a/perl.spec
+++ b/perl.spec
@@ -29,7 +29,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:230%{?dist}
+Release:231%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -1097,7 +1097,6 @@ Group:  Development/Languages
 License:GPL+ or Artistic
 Epoch:  0
 Version:3.23
-Requires:   perl-devel
 Requires:   %perl_compat
 BuildArch:  noarch
 # Use rewritten module perl-Test-Harness
@@ -1114,7 +1113,6 @@ Group:  Development/Languages
 License:GPL+ or Artistic
 Epoch:  0
 Version:0.98
-Requires:   perl-devel
 Requires:   %perl_compat
 Requires:   perl(Data::Dumper)
 BuildArch:  noarch
@@ -2629,6 +2627,9 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Fri Aug 24 2012 Petr Pisar ppi...@redhat.com - 4:5.16.1-231
+- Remove perl-devel dependency from perl-Test-Harness and perl-Test-Simple
+
 * Mon Aug 13 2012 Marcela Mašláňová mmasl...@redhat.com - 4:5.16.0-230
 - define perl_compat by macro for rebuilds
 - sub-packages depend on compat rather than on nvr
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: ODE upgrade

2012-08-24 Thread Jon Ciesla
On Tue, Aug 21, 2012 at 5:56 AM, Jon Ciesla limburg...@gmail.com wrote:
 On Tue, Aug 21, 2012 at 3:18 AM, Hans de Goede hdego...@redhat.com wrote:
 Hi,

 On 08/21/2012 12:00 AM, Jon Ciesla wrote:

 Hello, all.

 Hans, the ode maintainer, has asked me to implement and coordinate the
 upgrade of ode to the current release, 0.12.

 The affected packages, so far as we've determined, are delelict,
 machineball, ompl, stormbaancoureur, xmoto and taoframework.  Hans and
 I own the majority of this list, and I've CCd the other owners.

 I've got a build of ode 0.12 ready, and used it to patch all the
 listed packages.  I've tested xmoto, stormbaancoureur, maniadrive, and
 machineball.


 Many thanks for all the work you've put in this, so given that you've
 done test-builds of stormbaancoureur, maniadrive, and machineball against
 ode-0.12 and given them a quick smoke-test, there is nothing for me to
 do, right ?

 Anytime.  That is correct, unless you'd like to test it all yourself,
 in which case I can put those bits up as well.

I've begun this for rawhide, and will do f18 once that's done.

-J

 -J

 Regards,

 Hans



 --
 http://cecinestpasunefromage.wordpress.com/
 
 in your fear, seek only peace
 in your fear, seek only love

 -d. bowie



-- 
http://cecinestpasunefromage.wordpress.com/

in your fear, seek only peace
in your fear, seek only love

-d. bowie
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Self Introduction

2012-08-24 Thread Olivier BONHOMME
Le 05/11/2011 23:50, Olivier BONHOMME a écrit :
 Le 23/07/2011 18:40, Olivier BONHOMME a écrit :
 Hello everybody,

 I am Olivier from France. I work now as a System/Network Architect in
 the Spatial domain especially in Satellite telecommunications. I work
 every day on Linux Platform especially Fedora / Redhat / CentOS platform
 doing software and hardware integration, architecture and packaging work.

 Moreover, I try to contribute to some projects like the SUDO French
 translation [1] and the Fusiondirectory project. [2]

 On this project, I maintain the public services and I am in charge of
 the RPM packaging.

 About that I have two Review requests opened about this project [3] [4]
 and it would be nice to participate to the integration in Fedora.

 Thanks for have read me.

 Regards,
 Olivier BONHOMME

 [1] - https://pootle.fusiondirectory.org/projects/sudo_debian/
 [2] - http://www.fusiondirectory.org
 [3] - https://bugzilla.redhat.com/show_bug.cgi?id=701028
 [4] - https://bugzilla.redhat.com/show_bug.cgi?id=704672


 

Hello,

Our team released RPMs for Fusiondirectory project in 1.0.3 version.
RPMs are available in our own repository for all maintained Fedora and
RHEL/CentOS releases.

We are still looking for a reviewer for the followings RPMs :

- https://bugzilla.redhat.com/show_bug.cgi?id=701028
- https://bugzilla.redhat.com/show_bug.cgi?id=701028

Thanks for your attention

Regards,
Olivier BONHOMME
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Tom Lane
Hans de Goede hdego...@redhat.com writes:
 Today I received a bug report to mv sensorsd's pid file from 
 /var/run/sensorsd.pid to
 /var/run/sensorsd/sensorsd.pid, see:
 https://bugzilla.redhat.com/show_bug.cgi?id=851428

The traditional argument for not creating pidfiles directly in /var/run
is that a daemon that does that has to be started as root, else it won't
have permission to write /var/run.  A daemon that is intended to run
under some non-root UID works a lot better if you make a subdirectory
owned by that UID.  mysql, for instance, has always used
/var/run/mysqld/mysqld.pid.

I know nothing about the security level of sensorsd --- if it has to be
root-privileged anyway, this argument doesn't have any force for you.
But it's generally safer to avoid running daemons as root if that's
not absolutely necessary.

 Making the requested change means making changes to the daemon C-code,
 and if we then upstream these changes, they will cause issues for
 other distro's.  So I think that upstreaming the necessary changes is
 going to be a problem.

IMO, if a daemon makes any such assumption in a nonconfigurable way,
it's broken and upstream ought to be willing to take back a patch to
make it configurable.  /var/run is not a universal standard.  You
don't have to look any further than /var/run versus /run to realize
that some flexibility there is a good idea for any upstream that has
any portability pretensions whatsoever.

regards, tom lane
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Mate-Desktop

2012-08-24 Thread Brendan Jones

On 08/23/2012 04:53 PM, Rex Dieter wrote:

Rave it wrote:


For your information.
I stoped working for the Mate-Desktop project for f18 because


I can understand your frustration, and that you and Dan had trouble
communicating and working together.

I do wish to thank you for the positive contributions you made, and in your
future endeavors.

-- rex


I agree, please do not stop contributing because of one foul-mouthed 
asshole.


The good ones outnumber him grossly!
--
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Colin Walters
On Fri, 2012-08-24 at 13:58 +0100, Andrew Price wrote:

 If Type=forking is set and PIDFile is unset, systemd will try to guess 
 the PID of the main daemon process. I'm not sure what the guessing 
 strategy is but specifying the PIDFile explicitly is probably safer, 
 particularly for daemons which spawn 1 processes.

Or you switch to non-forking, which is just plain better.  We discussed
this recently on the SELinux list:


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

[perl-XML-Simple] Update dependencies

2012-08-24 Thread Jitka Plesnikova
commit a135193526baea411b2ab264a44e110f28558031
Author: Jitka Plesnikova jples...@redhat.com
Date:   Fri Aug 24 16:32:27 2012 +0200

Update dependencies

 perl-XML-Simple.spec |9 +++--
 1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/perl-XML-Simple.spec b/perl-XML-Simple.spec
index 46140b7..d42167a 100644
--- a/perl-XML-Simple.spec
+++ b/perl-XML-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-Simple
 Version:2.20
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Easy API to maintain XML in Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -23,9 +23,10 @@ BuildRequires:  perl(base)
 BuildRequires:  perl(IO::File)
 BuildRequires:  perl(Test::More)
 BuildRequires:  perl(Tie::IxHash)
+BuildRequires:  perl(XML::SAX::Base)
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   perl(File::Spec)
-Requires:   perl(File::Spec)
+Requires:   perl(IO::Handle)
 Requires:   perl(Storable)
 Requires:   perl(XML::NamespaceSupport)
 Requires:   perl(XML::Parser)
@@ -58,6 +59,10 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri Aug 24 2012 Jitka Plesnikova jples...@redhat.com - 2.20-4
+- Add test BR perl(XML::SAX::Base)
+- Add R perl(IO::Handle), remove duplicate R perl(File::Spec).
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.20-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Re: Moving pid files from /var/run/$name.pid to /var/run/$name/$name.pid

2012-08-24 Thread Colin Walters
On Fri, 2012-08-24 at 10:31 -0400, Colin Walters wrote:
 On Fri, 2012-08-24 at 13:58 +0100, Andrew Price wrote:
 
  If Type=forking is set and PIDFile is unset, systemd will try to guess 
  the PID of the main daemon process. I'm not sure what the guessing 
  strategy is but specifying the PIDFile explicitly is probably safer, 
  particularly for daemons which spawn 1 processes.
 
 Or you switch to non-forking, which is just plain better.  We discussed
 this recently on the SELinux list:

[blah, hit control-return accidentally]

http://marc.info/?l=selinuxm=133287147315517w=2

There's docs in systemd.service and elsewhere on the internets too.




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

Re: dkms and corruption of kernel-devel package

2012-08-24 Thread Andre Robatino
Panu Matilainen pmatilai at laiskiainen.org writes:

 Dunno about the System.map (other than I've always relied on the ones in 
 /boot), but as for the timestamps, kernel-devel itself causes that as it 
 runs hardlink on itself at package post-installation.

Thanks for the info. I wasn't aware there was a copy in a different location,
that's handy. Another question though - the copy in /usr/src/kernels/ is
world-readable and the one in /boot/ isn't, for example

[root@compaq-pc ~]# ls -l /boot/System.map-3.5.2-3.fc17.x86_64
/usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
-rw---. 1 root root 2468248 Aug 21 15:24 
/boot/System.map-3.5.2-3.fc17.x86_64
-rw-r--r--. 1 root root 2468248 Aug 21 15:25
/usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
[root@compaq-pc ~]#

Is there a reason for that?




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

Re: dkms and corruption of kernel-devel package

2012-08-24 Thread John Reiser
 the copy in /usr/src/kernels/ is
 world-readable and the one in /boot/ isn't, for example
 
 [root@compaq-pc ~]# ls -l /boot/System.map-3.5.2-3.fc17.x86_64 
 /usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
 -rw---. 1 root root 2468248 Aug 21 15:24 
 /boot/System.map-3.5.2-3.fc17.x86_64
 -rw-r--r--. 1 root root 2468248 Aug 21 15:25 
 /usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
 [root@compaq-pc ~]#


/boot/System.map is always-present system-specific info which may be useful
to malware for an attack on the running system.
The version in /usr/src/kernels is not present on every machine,
and is more generic: at least a little bit less likely to be correct
for the currently-running kernel.

-- 

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

Re: dkms and corruption of kernel-devel package

2012-08-24 Thread Josh Boyer
On Fri, Aug 24, 2012 at 11:34 AM, John Reiser jrei...@bitwagon.com wrote:
 the copy in /usr/src/kernels/ is
 world-readable and the one in /boot/ isn't, for example

 [root@compaq-pc ~]# ls -l /boot/System.map-3.5.2-3.fc17.x86_64 
 /usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
 -rw---. 1 root root 2468248 Aug 21 15:24 
 /boot/System.map-3.5.2-3.fc17.x86_64
 -rw-r--r--. 1 root root 2468248 Aug 21 15:25 
 /usr/src/kernels/3.5.2-3.fc17.x86_64/System.map
 [root@compaq-pc ~]#


 /boot/System.map is always-present system-specific info which may be useful
 to malware for an attack on the running system.

No.

 The version in /usr/src/kernels is not present on every machine,
 and is more generic: at least a little bit less likely to be correct
 for the currently-running kernel.

No.

Unless you've built your own kernel and changed the config, the files
for that particular kernel version are identical.

The kernel-devel copy is 644 because if it was 600 you'd have to build
things against it as root (or change it to 644).  You are correct that
kernel-devel is not installed on every machine though.

josh
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Mate-Desktop

2012-08-24 Thread Rave it
Rex Dieter wrote:

I can understand your frustration, and that you and Dan had trouble 
communicating and working together.

I do wish to thank you for the positive contributions you made, and in
your future endeavors.

-- rex

No mercy, no thanks.

Why do you Mr. Rex Dieter as sponsor accept rude speaking,  and racist
remarks from Dan Marchal?

'Portuguese n00b' 
https://github.com/mate-desktop/mate-doc-utils/issues/3






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

Re: Subject: Re: Mate-Desktop

2012-08-24 Thread Rave it
 
 Rex Dieter wrote:
 
 I can understand your frustration, and that you and Dan had trouble 
 communicating and working together.
 
 I do wish to thank you for the positive contributions you made, and in
 your future endeavors.
 
 -- rex
 
No mercy, no thanks.
 
Why do you Mr. Rex Dieter as sponsor accept rude speaking,  and racist
remarks from Dan Marchal?
 
'Portuguese n00b' 
https://github.com/mate-desktop/mate-doc-utils/issues/3
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Mate-Desktop

2012-08-24 Thread Rave it
Rex Dieter wrote:

I can understand your frustration, and that you and Dan had trouble 
communicating and working together.

I do wish to thank you for the positive contributions you made, and in
your future endeavors.

-- rex

No mercy, no thanks.

Why do you Mr. Rex Dieter as sponsor accept rude speaking,  and racist
remarks from Dan Marchal?

'Portuguese n00b' 
https://github.com/mate-desktop/mate-doc-utils/issues/3

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

F17: DirectFB

2012-08-24 Thread Gerry Reno
I have had no success whatsoever getting DirectFB to run under F17 as a regular 
user on my HP laptop.

# yum list DirectFB

Installed Packages
directfb.x86_64  1.5.3-7.fc17   
   
@updates


I have discussed the problems on the DirectFB mailing list and they direct me 
back to the distro.

When trying to run any DirectFB command as a regular user I get permission 
errors like this:

$ dfbinfo

   ~~| DirectFB 1.5.3 |~~
(c) 2001-2010  The world wide DirectFB Open Source Community
(c) 2000-2004  Convergence (integrated media) GmbH
  

(*) DirectFB/Core: Single Application Core. (2012-05-19 15:35)
(*) Direct/Memcpy: Using Generic 64bit memcpy()
(!) DirectFB/core/vt: Error opening `/dev/tty1'!
-- Permission denied
(!) DirectFB/Core: Could not initialize 'system_core' core!
-- A general initialization error occured
(#) DirectFBError [DirectFBCreate() failed]: A general initialization error 
occured


Even when I go and change the permissions on /dev/ttyX and /dev/fb/0 and then 
put those into udev rules then I still get
an error about MEDIUMRAW mode.


I am able to run some DirectFB commands as root but that is no good for 
creating app for general user.


Can anyone, developer, packager, shed some light on why DirectFB will not run 
on F17 as a regular user?

Thank you.

.

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

Re: Mate-Desktop

2012-08-24 Thread Rex Dieter
Rave it wrote:

 Rex Dieter wrote:
 
 I can understand your frustration, and that you and Dan had trouble
 communicating and working together.
 
 I do wish to thank you for the positive contributions you made, and in
 your future endeavors.

 No mercy, no thanks.
 
 Why do you Mr. Rex Dieter as sponsor accept rude speaking,  and racist
 remarks from Dan Marchal?
 'Portuguese n00b'
 https://github.com/mate-desktop/mate-doc-utils/issues/3

I don't accept it.  Dan reacting poorly is a given, and something he (and I 
with him) are working on.

I personally don't feel it helps taking your greivances public, as now Dan's 
perception of you (and now potentially others) will be colored as hostile.

so, I have a question for you: do you have any wish or intention of 
remaining in the fedora community?  if so, this would be the point to engage 
the community working group for guidance, advice, and mediation.  (my fault 
for being too dense for not suggesting it earlier, sorry).

-- rex

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

[Bug 754689] CGI::Session emits deprecation warning when running under 'use warnings'

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=754689

--- Comment #11 from hkoba buribul...@gmail.com ---
Thank you for your response!

I have just installed perl-CGI-Session-4.35-12.fc17 above
and it worked just fine.

BTW, I can't login to koji (because of ssl cert error
, in both of chrome20 and FF13)
so I can't send any feedback.

Does anyone know any workaround for koji web login ssl issue?
(Or, is this occur only for me?)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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 IPC-Run-SafeHandles-0.04.tar.gz uploaded to lookaside cache by corsepiu

2012-08-24 Thread corsepiu
A file has been added to the lookaside cache for perl-IPC-Run-SafeHandles:

95576d66712cafa22b3c5cd9ce1b2c63  IPC-Run-SafeHandles-0.04.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-IPC-Run-SafeHandles] Upstream update.

2012-08-24 Thread corsepiu
commit 7824305357635ce3e238c7b3ddb8ff440ab3c42b
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Fri Aug 24 08:37:26 2012 +0200

Upstream update.

- Modernize spec.
- BR: perl(List::MoreUtils).
- Add --skipdeps.

 .gitignore|2 +-
 perl-IPC-Run-SafeHandles.spec |   21 -
 sources   |2 +-
 3 files changed, 14 insertions(+), 11 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e750c56..8fe5746 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-IPC-Run-SafeHandles-0.02.tar.gz
+/IPC-Run-SafeHandles-0.04.tar.gz
diff --git a/perl-IPC-Run-SafeHandles.spec b/perl-IPC-Run-SafeHandles.spec
index 3620127..fafb0b8 100644
--- a/perl-IPC-Run-SafeHandles.spec
+++ b/perl-IPC-Run-SafeHandles.spec
@@ -1,16 +1,16 @@
 Name:   perl-IPC-Run-SafeHandles
-Version:0.02
-Release:12%{?dist}
+Version:0.04
+Release:1%{?dist}
 Summary:Use IPC::Run and IPC::Run3 safely
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/IPC-Run-SafeHandles/
 Source0:
http://www.cpan.org/authors/id/C/CL/CLKAO/IPC-Run-SafeHandles-%{version}.tar.gz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildArch:  noarch
 BuildRequires:  perl = 1:5.8.0
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::More)
+BuildRequires:  perl(List::MoreUtils)
 
 # for improved tests
 BuildRequires: perl(Test::Pod::Coverage) = 1.04
@@ -27,12 +27,12 @@ such as under fastcgi.
 %setup -q -n IPC-Run-SafeHandles-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+# --skipdeps causes ExtUtils::AutoInstall not to try auto-installing
+# missing optional features
+%{__perl} Makefile.PL INSTALLDIRS=vendor --skipdeps
 make %{?_smp_mflags}
 
 %install
-rm -rf $RPM_BUILD_ROOT
-
 make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
 
 find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
@@ -43,9 +43,6 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %check
 make test
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files
 %defattr(-,root,root,-)
 %doc Changes README
@@ -53,6 +50,12 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Fri Aug 24 2012 Ralf Corsépius corse...@fedoraproject.org - 0.04-1
+- Upstream update.
+- Modernize spec.
+- BR: perl(List::MoreUtils).
+- Add --skipdeps.
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-12
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 6bfe75f..b909524 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bf4838a74b393d9a827e5b35e3c26a9e  IPC-Run-SafeHandles-0.02.tar.gz
+95576d66712cafa22b3c5cd9ce1b2c63  IPC-Run-SafeHandles-0.04.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-IPC-Run-SafeHandles/f18] Upstream update.

2012-08-24 Thread corsepiu
Summary of changes:

  7824305... Upstream update. (*)

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

[Bug 754689] CGI::Session emits deprecation warning when running under 'use warnings'

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=754689

--- Comment #12 from Simon Andrews simon.andr...@bbsrc.ac.uk ---
Koji uses a self-signed certificate, which appears to have changed recently. 
In firefox there is an option to trust the new certificate which should make
things work.

The system for providing karma is the bodhi link above though which should work
without problem though.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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-IPC-Run-SafeHandles/f17] (4 commits) ...Merge cleanup.

2012-08-24 Thread corsepiu
Summary of changes:

  fe7904c... Perl 5.16 rebuild (*)
  34f5afd... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  7824305... Upstream update. (*)
  5a3b595... Merge cleanup.

(*) 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-IPC-Run-SafeHandles/f17: 4/4] Merge cleanup.

2012-08-24 Thread corsepiu
commit 5a3b59515bdf5a2bf06eeeb852777969062ecbef
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Fri Aug 24 08:40:12 2012 +0200

Merge cleanup.

 perl-IPC-Run-SafeHandles.spec |6 --
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/perl-IPC-Run-SafeHandles.spec b/perl-IPC-Run-SafeHandles.spec
index fafb0b8..729f39f 100644
--- a/perl-IPC-Run-SafeHandles.spec
+++ b/perl-IPC-Run-SafeHandles.spec
@@ -56,12 +56,6 @@ make test
 - BR: perl(List::MoreUtils).
 - Add --skipdeps.
 
-* Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-12
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Tue Jun 12 2012 Petr Pisar ppi...@redhat.com - 0.02-11
-- Perl 5.16 rebuild
-
 * Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-10
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-IPC-Run-SafeHandles/f16] (6 commits) ...Merge cleanup.

2012-08-24 Thread corsepiu
Summary of changes:

  7e9c3d4... - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass (*)
  fe7904c... Perl 5.16 rebuild (*)
  34f5afd... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  7824305... Upstream update. (*)
  5a3b595... Merge cleanup. (*)
  4f94568... Merge cleanup.

(*) 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-IPC-Run-SafeHandles/f16: 6/6] Merge cleanup.

2012-08-24 Thread corsepiu
commit 4f945683b4e19c76e4375a116f86252d6f1b684b
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Fri Aug 24 08:41:36 2012 +0200

Merge cleanup.

 perl-IPC-Run-SafeHandles.spec |3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
---
diff --git a/perl-IPC-Run-SafeHandles.spec b/perl-IPC-Run-SafeHandles.spec
index 729f39f..0792491 100644
--- a/perl-IPC-Run-SafeHandles.spec
+++ b/perl-IPC-Run-SafeHandles.spec
@@ -56,9 +56,6 @@ make test
 - BR: perl(List::MoreUtils).
 - Add --skipdeps.
 
-* Fri Jan 13 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
 * Mon Jun 20 2011 Marcela Mašláňová mmasl...@redhat.com - 0.02-9
 - Perl mass rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 746941] perl-Mojolicious-3.34 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=746941

--- Comment #82 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Latest upstream release: 3.34
Current version in Fedora Rawhide: 3.30
URL: http://search.cpan.org/dist/Mojolicious/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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 746941] perl-Mojolicious-3.34 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=746941

Upstream Release Monitoring upstream-release-monitor...@fedoraproject.org 
changed:

   What|Removed |Added

Summary|perl-Mojolicious-3.32 is|perl-Mojolicious-3.34 is
   |available   |available

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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 828235] perl-Wx-0.9911 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828235

Upstream Release Monitoring upstream-release-monitor...@fedoraproject.org 
changed:

   What|Removed |Added

Summary|perl-Wx-0.9909 is available |perl-Wx-0.9911 is available

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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 828235] perl-Wx-0.9911 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828235

--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Latest upstream release: 0.9911
Current version in Fedora Rawhide: 0.9907
URL: http://search.cpan.org/dist/Wx/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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 851448] New: perlbrew-0.48 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=851448

Bug ID: 851448
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: iarn...@gmail.com, perl-devel@lists.fedoraproject.org
  Assignee: iarn...@gmail.com
   Summary: perlbrew-0.48 is available
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: upstream-release-monitor...@fedoraproject.org
  Type: ---
 Documentation: ---
  Hardware: Unspecified
Mount Type: ---
Status: NEW
 Component: perlbrew
   Product: Fedora

Latest upstream release: 0.48
Current version in Fedora Rawhide: 0.46
URL: http://search.cpan.org/dist/App-perlbrew/

Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy

More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Broken dependencies: perl-PDL

2012-08-24 Thread buildsys


perl-PDL has broken dependencies in the F-18 tree:
On x86_64:
perl-PDL-2.4.10-1.fc17.x86_64 requires perl(:MODULE_COMPAT_5.14.2)
On i386:
perl-PDL-2.4.10-1.fc17.i686 requires perl(:MODULE_COMPAT_5.14.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-OpenOffice-UNO

2012-08-24 Thread buildsys


perl-OpenOffice-UNO has broken dependencies in the F-18 tree:
On x86_64:
perl-OpenOffice-UNO-0.07-3.fc17.x86_64 requires 
perl(:MODULE_COMPAT_5.14.2)
On i386:
perl-OpenOffice-UNO-0.07-3.fc17.i686 requires 
perl(:MODULE_COMPAT_5.14.2)
perl-OpenOffice-UNO-0.07-3.fc17.i686 requires libsal_textenc.so
Please resolve this as soon as possible.


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

[perl-Package-Generator] Drop EPEL-4 support

2012-08-24 Thread Paul Howarth
commit c384bcd8930608777b76df8b44a30d7765bcf52d
Author: Paul Howarth p...@city-fan.org
Date:   Fri Aug 24 13:01:40 2012 +0100

Drop EPEL-4 support

- Drop EPEL-4 support
- Drop %defattr, redundant since rpm 4.4
- Don't need to remove empty directories from the buildroot
- BR: perl(File::Spec)

 perl-Package-Generator.spec |   14 +-
 1 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/perl-Package-Generator.spec b/perl-Package-Generator.spec
index 21cb00f..355f807 100644
--- a/perl-Package-Generator.spec
+++ b/perl-Package-Generator.spec
@@ -1,6 +1,6 @@
 Name:  perl-Package-Generator
 Version:   0.103
-Release:   13%{?dist}
+Release:   14%{?dist}
 Summary:   Generate new packages quickly and easily
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -12,6 +12,7 @@ BuildRequires:perl(Carp)
 BuildRequires: perl(Cwd)
 BuildRequires: perl(ExtUtils::MakeMaker)
 BuildRequires: perl(File::Path)
+BuildRequires: perl(File::Spec)
 BuildRequires: perl(Params::Util)
 BuildRequires: perl(Scalar::Util)
 BuildRequires: perl(Symbol)
@@ -19,8 +20,7 @@ BuildRequires:perl(Test::More)
 # Test::Perl::Critic - Perl::Critic - Exception::Class - Test::EOL -
 #   Pod::Coverage::TrustPod - Pod::Eventual - Mixin::Linewise -
 #   Sub::Exporter - Package::Generator
-# Test::Perl::Critic not available in EPEL-4
-%if %{rhel} != 4  0%{!?perl_bootstrap:1}
+%if 0%{!?perl_bootstrap:1}
 BuildRequires: perl(Test::Perl::Critic)
 %endif
 BuildRequires: perl(Test::Pod)
@@ -42,7 +42,6 @@ make %{?_smp_mflags}
 rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -depth -type d -exec rmdir {} \; 2/dev/null
 %{_fixperms} %{buildroot}
 
 %check
@@ -52,13 +51,18 @@ make test %{!?perl_bootstrap:PERL_TEST_CRITIC=1}
 rm -rf %{buildroot}
 
 %files
-%defattr(-,root,root,-)
 %doc Changes LICENSE README
 %{perl_vendorlib}/Package/
 %{_mandir}/man3/Package::Generator.3pm*
 %{_mandir}/man3/Package::Reaper.3pm*
 
 %changelog
+* Fri Aug 24 2012 Paul Howarth p...@city-fan.org - 0.103-14
+- Drop EPEL-4 support
+- Drop %%defattr, redundant since rpm 4.4
+- Don't need to remove empty directories from the buildroot
+- BR: perl(File::Spec)
+
 * Tue Aug 14 2012 Petr Pisar ppi...@redhat.com - 0.103-13
 - Specify all dependencies
 - Package LICENSE
--
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-XPath] Specify all dependencies

2012-08-24 Thread Jitka Plesnikova
commit 8a0162916a0c568934448faaa120c8efee5abf92
Author: Jitka Plesnikova jples...@redhat.com
Date:   Fri Aug 24 14:25:23 2012 +0200

Specify all dependencies

 perl-XML-XPath.spec |   11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)
---
diff --git a/perl-XML-XPath.spec b/perl-XML-XPath.spec
index 6ed7730..399e16f 100644
--- a/perl-XML-XPath.spec
+++ b/perl-XML-XPath.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-XPath
 Version:1.13
-Release:19%{?dist}
+Release:20%{?dist}
 
 Summary:XPath parser and evaluator for Perl
 
@@ -12,8 +12,12 @@ BuildRoot:  
%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 Patch0: xpath.man.patch
 
 BuildArch:  noarch
-BuildRequires:  perl(XML::Parser)
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
 BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(IO::File)
+BuildRequires:  perl(Test)
+BuildRequires:  perl(XML::Parser)
 Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
 
 %description
@@ -57,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Fri Aug 24 2012 Jitka Plesnikova jples...@redhat.com - 1.13-20
+- Specify all dependencies. 
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.13-19
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Package-Generator] Created tag perl-Package-Generator-0.103-14.fc19

2012-08-24 Thread Paul Howarth
The lightweight tag 'perl-Package-Generator-0.103-14.fc19' was created pointing 
to:

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

Broken dependencies: perl-PDL

2012-08-24 Thread buildsys


perl-PDL has broken dependencies in the rawhide tree:
On x86_64:
perl-PDL-2.4.10-1.fc17.x86_64 requires perl(:MODULE_COMPAT_5.14.2)
On i386:
perl-PDL-2.4.10-1.fc17.i686 requires perl(:MODULE_COMPAT_5.14.2)
Please resolve this as soon as possible.


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

Broken dependencies: perl-OpenOffice-UNO

2012-08-24 Thread buildsys


perl-OpenOffice-UNO has broken dependencies in the rawhide tree:
On x86_64:
perl-OpenOffice-UNO-0.07-3.fc17.x86_64 requires 
perl(:MODULE_COMPAT_5.14.2)
On i386:
perl-OpenOffice-UNO-0.07-3.fc17.i686 requires 
perl(:MODULE_COMPAT_5.14.2)
perl-OpenOffice-UNO-0.07-3.fc17.i686 requires libsal_textenc.so
Please resolve this as soon as possible.


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

[perl-Test-Simple] Spec clean-up

2012-08-24 Thread Paul Howarth
commit e98f4a9c2eca4dc280a9c32c7ceecb3239d9ab52
Author: Paul Howarth p...@city-fan.org
Date:   Fri Aug 24 14:11:12 2012 +0100

Spec clean-up

- Merge tests sub-package back into main package
- Don't need to remove empty directories from the buildroot
- Drop %defattr, redundant since rpm 4.4
- Make %files list more explicit
- Don't use macros for commands
- Mark Tutorial.pod as %doc
- Drop explicit dependency on perl-devel

 perl-Test-Simple.spec |   69 +---
 1 files changed, 42 insertions(+), 27 deletions(-)
---
diff --git a/perl-Test-Simple.spec b/perl-Test-Simple.spec
index dd09aad..f51057f 100644
--- a/perl-Test-Simple.spec
+++ b/perl-Test-Simple.spec
@@ -1,14 +1,12 @@
 Name:   perl-Test-Simple
 Summary:Basic utilities for writing tests
 Version:0.98
-Release:240%{?dist}
+Release:241%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
-Source0:
http://search.cpan.org/CPAN/authors/id/M/MS/MSCHWERN/Test-Simple-%{version}.tar.gz
 
 URL:http://search.cpan.org/dist/Test-Simple
-Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Source0:
http://search.cpan.org/CPAN/authors/id/M/MS/MSCHWERN/Test-Simple-%{version}.tar.gz
 
 BuildArch:  noarch
-
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(Data::Dumper)
 BuildRequires:  perl(Exporter)
@@ -17,21 +15,22 @@ BuildRequires:  perl(IO::Handle)
 BuildRequires:  perl(IO::Pipe)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Test::Harness) = 2.03
+Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   perl(Data::Dumper)
 Requires:   perl(Test::Harness) = 2.03
 
-# note this is right out of perl.spec
-Requires:   perl-devel
+# Drop old -tests subpackage (can be removed F21 development cycle)
+Obsoletes:  perl-Test-Simple-tests  %{version}-%{release}
+Provides:   perl-Test-Simple-tests = %{version}-%{release}
 
 ## testing
 #Requires:   perl-tests
 #Requires:   /usr/bin/prove
 
 %{?perl_default_filter}
-%{?perl_default_subpackage_tests}
 
 %description
-This package provides the bulk of the core testing facilities.  For more
+This package provides the bulk of the core testing facilities. For more
 information, see perldoc for Test::Simple, Test::More, etc.
 
 This package is the CPAN component of the dual-lifed core package Test-Simple.
@@ -40,15 +39,13 @@ This package is the CPAN component of the dual-lifed core 
package Test-Simple.
 %setup -q -n Test-Simple-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
+perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
 
 %install
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
-find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null ';'
-
-%{_fixperms} %{buildroot}/*
+%{_fixperms} %{buildroot}
 
 %check
 make test
@@ -57,14 +54,34 @@ make test
 #prove -I %{buildroot}/blib -r t/
 
 %files
-%defattr(-,root,root,-)
-%doc Changes README examples/
-%{perl_vendorlib}/*
-%{_mandir}/man3/*.3*
+%doc Changes README examples/ t/
+%dir %{perl_vendorlib}/Test/
+%{perl_vendorlib}/Test/Builder.pm
+%{perl_vendorlib}/Test/Builder/
+%{perl_vendorlib}/Test/More.pm
+%{perl_vendorlib}/Test/Simple.pm
+%doc %{perl_vendorlib}/Test/Tutorial.pod
+%{_mandir}/man3/Test::Builder.3pm*
+%{_mandir}/man3/Test::Builder::IO::Scalar.3pm*
+%{_mandir}/man3/Test::Builder::Module.3pm*
+%{_mandir}/man3/Test::Builder::Tester.3pm*
+%{_mandir}/man3/Test::Builder::Tester::Color.3pm*
+%{_mandir}/man3/Test::More.3pm*
+%{_mandir}/man3/Test::Simple.3pm*
+%{_mandir}/man3/Test::Tutorial.3pm*
 
 %changelog
+* Thu Aug 23 2012 Paul Howarth p...@city-fan.org - 0.98-241
+- Merge tests sub-package back into main package
+- Don't need to remove empty directories from the buildroot
+- Drop %%defattr, redundant since rpm 4.4
+- Make %%files list more explicit
+- Don't use macros for commands
+- Mark Tutorial.pod as %%doc
+- Drop explicit dependency on perl-devel
+
 * Mon Aug 13 2012 Marcela Mašláňová mmasl...@redhat.com - 0.98-240
-- bump release to override sub-package from perl.spec
+- Bump release to override sub-package from perl.spec
 
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.98-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
@@ -79,26 +96,24 @@ make test
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
 
 * Tue Aug 16 2011 Marcela Mašláňová mmasl...@redhat.com - 0.98-3
-- change path on vendor, so our debuginfo are not conflicting with
+- Change path on vendor, so our debuginfo are not conflicting with
   perl core debuginfos
 
 * Fri Jun 17 2011 Marcela Mašláňová mmasl...@redhat.com - 0.98-2
 - Perl mass rebuild
 
-* Thu Feb 24 2011 Iain Arnell iarn...@gmail.com 0.98-1
-- update to latest upstream version
+* Thu Feb 24 2011 Iain Arnell 

[perl-Test-Simple] Created tag perl-Test-Simple-0.98-241.fc19

2012-08-24 Thread Paul Howarth
The lightweight tag 'perl-Test-Simple-0.98-241.fc19' was created pointing to:

 e98f4a9... Spec clean-up
--
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 845057] Review Request: perl-Sub-Exporter-Progressive - Only use Sub::Exporter if you need it

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=845057

--- Comment #3 from Paul Howarth p...@city-fan.org ---
Petr, have you any comments on this package?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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-Package-Stash] Drop EPEL-4 support

2012-08-24 Thread Paul Howarth
commit e562923a101133a5ff94e32787747f8cc5de4e50
Author: Paul Howarth p...@city-fan.org
Date:   Fri Aug 24 20:03:45 2012 +0100

Drop EPEL-4 support

- Drop EPEL-4 support
  - Drop %defattr, redundant since rpm 4.4
  - Test::LeakTrace, Test::Requires and Test::Script are now universally 
available
  - A suitably recent version of ExtUtils::MakeMaker is now universally 
available
- Don't need to remove empty directories from the buildroot

 Package-Stash-0.31-no-Test::Requires.patch  |   11 ---
 Package-Stash-0.32-EU::MM-version.patch |   30 
 Package-Stash-0.32-no-Test::LeakTrace.patch |   26 -
 perl-Package-Stash.spec |   40 ++-
 4 files changed, 9 insertions(+), 98 deletions(-)
---
diff --git a/perl-Package-Stash.spec b/perl-Package-Stash.spec
index dfd307d..43359f9 100644
--- a/perl-Package-Stash.spec
+++ b/perl-Package-Stash.spec
@@ -1,21 +1,15 @@
 # We need to patch the test suite if we have an old version of Test::More
-%global old_test_more %(perl -MTest::More -e 'printf %d\\n, 
$Test::More::VERSION  0.88 ? 1 : 0;' 2/dev/null || echo 0)
-
-# We don't really need ExtUtils::MakeMaker ≥ 6.30
-%global old_eumm %(perl -MExtUtils::MakeMaker -e 'printf %d\\n, 
$ExtUtils::MakeMaker::VERSION  6.30 ? 1 : 0;' 2/dev/null || echo 0)
+%global old_test_more %(perl -MTest::More -e 'print (($Test::More::VERSION  
0.88) ? 1 : 0);' 2/dev/null || echo 0)
 
 Name:  perl-Package-Stash
 Version:   0.33
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Routines for manipulating stashes
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/Package-Stash/
 Source0:   
http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Package-Stash-%{version}.tar.gz
-Patch0:Package-Stash-0.32-EU::MM-version.patch
 Patch1:Package-Stash-0.32-old-Test::More.patch
-Patch2:Package-Stash-0.31-no-Test::Requires.patch
-Patch3:Package-Stash-0.32-no-Test::LeakTrace.patch
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 BuildRequires: perl(Carp)
@@ -35,15 +29,9 @@ BuildRequires:   perl(Test::More)
 BuildRequires: perl(Test::NoTabs)
 BuildRequires: perl(Test::Pod)
 BuildRequires: perl(Test::Pod::Coverage)
-# Test::Requires not in EPEL-4
-%if %{?rhel} != 4
 BuildRequires: perl(Test::Requires)
-%endif
-# Test::LeakTrace and Test::Script not in EPEL-4 or EPEL-5
-%if %{?rhel} != 4  %{?rhel} != 5
 BuildRequires: perl(Test::LeakTrace)
 BuildRequires: perl(Test::Script)
-%endif
 Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 # For performance and consistency
 Requires:  perl(Package::Stash::XS) = 0.24
@@ -58,26 +46,11 @@ a simple API.
 %prep
 %setup -q -n Package-Stash-%{version}
 
-# Don't really need ExtUtils::MakeMaker ≥ 6.30
-%if %{old_eumm}
-%patch0 -p1
-%endif
-
 # Compatibility with old Test::More versions
 %if %{old_test_more}
 %patch1 -p1
 %endif
 
-# Work around absence of Test::Requires in EPEL-4
-%if %{?rhel} == 4
-%patch2 -p1
-%endif
-
-# Skip the memory leak tests if we don't have Test::LeakTrace
-%if %{?rhel} == 4 || %{?rhel} == 5
-%patch3 -p1
-%endif
-
 %build
 perl Makefile.PL INSTALLDIRS=vendor
 make %{?_smp_mflags}
@@ -86,7 +59,6 @@ make %{?_smp_mflags}
 rm -rf %{buildroot}
 make pure_install DESTDIR=%{buildroot}
 find %{buildroot} -type f -name .packlist -exec rm -f {} \;
-find %{buildroot} -depth -type d -exec rmdir {} \; 2/dev/null
 %{_fixperms} %{buildroot}
 
 %check
@@ -96,7 +68,6 @@ make test AUTHOR_TESTING=1 RELEASE_TESTING=1
 rm -rf %{buildroot}
 
 %files
-%defattr(-,root,root,-)
 %doc Changes LICENSE README
 %{_bindir}/package-stash-conflicts
 %{perl_vendorlib}/Package/
@@ -104,6 +75,13 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Package::Stash::PP.3pm*
 
 %changelog
+* Fri Aug 24 2012 Paul Howarth p...@city-fan.org - 0.33-6
+- Drop EPEL-4 support
+  - Drop %%defattr, redundant since rpm 4.4
+  - Test::LeakTrace, Test::Requires and Test::Script are now universally 
available
+  - A suitably recent version of ExtUtils::MakeMaker is now universally 
available
+- Don't need to remove empty directories from the buildroot
+
 * Tue Aug 14 2012 Petr Pisar ppi...@redhat.com - 0.33-5
 - Specify all dependendencies
 
--
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-Package-Stash] Created tag perl-Package-Stash-0.33-6.fc19

2012-08-24 Thread Paul Howarth
The lightweight tag 'perl-Package-Stash-0.33-6.fc19' was created pointing to:

 e562923... Drop EPEL-4 support
--
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 Wx-0.9911.tar.gz uploaded to lookaside cache by spot

2012-08-24 Thread Tom Callaway
A file has been added to the lookaside cache for perl-Wx:

528fe939dca2e50b050d78abf6866e3f  Wx-0.9911.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-Wx] 0.9911

2012-08-24 Thread Tom Callaway
commit c1072f1895dee48af536ee1779a13bf5349b98e3
Author: Tom Callaway s...@fedoraproject.org
Date:   Fri Aug 24 17:24:51 2012 -0400

0.9911

 .gitignore   |1 +
 perl-Wx.spec |8 ++--
 sources  |2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index a04b26e..99bf840 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ Wx-0.92.tar.gz
 /Wx-0.9905.tar.gz
 /Wx-0.9906.tar.gz
 /Wx-0.9907.tar.gz
+/Wx-0.9911.tar.gz
diff --git a/perl-Wx.spec b/perl-Wx.spec
index 2209496..99b043f 100644
--- a/perl-Wx.spec
+++ b/perl-Wx.spec
@@ -9,8 +9,8 @@
 # for i in `grep -r PACKAGE= * | cut -d   -f 2 | sed 's|PACKAGE=|perl(|g' 
| grep Wx:: | sort -n |uniq`; do printf Provides: $i)\\n; done
 
 Name:   perl-Wx
-Version:0.9907
-Release:3%{?dist}
+Version:0.9911
+Release:1%{?dist}
 Summary:Interface to the wxWidgets cross-platform GUI toolkit
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -249,6 +249,7 @@ Provides: perl(Wx::Printer)
 Provides: perl(Wx::PrinterDC)
 Provides: perl(Wx::PrintFactory)
 Provides: perl(Wx::Printout)
+Provides: perl(Wx::PrintPaperDatabase)
 Provides: perl(Wx::PrintPreview)
 Provides: perl(Wx::Process)
 Provides: perl(Wx::ProcessEvent)
@@ -388,6 +389,9 @@ chmod -R u+w $RPM_BUILD_ROOT/*
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Fri Aug 24 2012 Tom Callaway s...@fedoraproject.org - 0.9911-1
+- update to 0.9911
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.9907-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 475896e..409b6e5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-66f0455a67457644d6c16e5c44abb5e0  Wx-0.9907.tar.gz
+528fe939dca2e50b050d78abf6866e3f  Wx-0.9911.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-Wx/f18] 0.9911

2012-08-24 Thread Tom Callaway
commit 563aeb5862d0e0d316fbb4df98a0c669267e93ba
Author: Tom Callaway s...@fedoraproject.org
Date:   Fri Aug 24 17:25:07 2012 -0400

0.9911

 perl-Wx.spec |8 ++--
 sources  |2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/perl-Wx.spec b/perl-Wx.spec
index 2209496..99b043f 100644
--- a/perl-Wx.spec
+++ b/perl-Wx.spec
@@ -9,8 +9,8 @@
 # for i in `grep -r PACKAGE= * | cut -d   -f 2 | sed 's|PACKAGE=|perl(|g' 
| grep Wx:: | sort -n |uniq`; do printf Provides: $i)\\n; done
 
 Name:   perl-Wx
-Version:0.9907
-Release:3%{?dist}
+Version:0.9911
+Release:1%{?dist}
 Summary:Interface to the wxWidgets cross-platform GUI toolkit
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -249,6 +249,7 @@ Provides: perl(Wx::Printer)
 Provides: perl(Wx::PrinterDC)
 Provides: perl(Wx::PrintFactory)
 Provides: perl(Wx::Printout)
+Provides: perl(Wx::PrintPaperDatabase)
 Provides: perl(Wx::PrintPreview)
 Provides: perl(Wx::Process)
 Provides: perl(Wx::ProcessEvent)
@@ -388,6 +389,9 @@ chmod -R u+w $RPM_BUILD_ROOT/*
 %{_mandir}/man3/*.3pm*
 
 %changelog
+* Fri Aug 24 2012 Tom Callaway s...@fedoraproject.org - 0.9911-1
+- update to 0.9911
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.9907-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 475896e..409b6e5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-66f0455a67457644d6c16e5c44abb5e0  Wx-0.9907.tar.gz
+528fe939dca2e50b050d78abf6866e3f  Wx-0.9911.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 828235] perl-Wx-0.9911 is available

2012-08-24 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=828235

--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Wx-0.9911-1.fc18 has been submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/perl-Wx-0.9911-1.fc18

-- 
You are receiving this mail because:
You are on the CC list for the bug.
--
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