New guile2 package

2012-10-05 Thread Jan Synacek
Hello all,

since porting apps to guile2 has been pretty painful so far, I decided to take
another try.

My take so far has been to create a new package called guile2. This will allow
for the new packages that depend on guile2 to be built, while the old stuff
won't be broken because guile1.8 will still be around.

What would be the preffered way to proceed? I think the best way is to leave one
version (likely guile2?) as the default and rename the binaries and some other
conflicting files in the old package.

I can also rename the original guile to something like guile1.8 and update the
original content with guile2 stuff, but IMO that is pretty cumbersome.

Some problems I've encountered:

* Multiple info files. I suggest keeping only those in the new package and
remove them from the old one.

* Both packages contain guile.m4. This is the only problem I'm not sure how to
solve yet. Both packages also contain guile-config that can be called by one of
the autotools macros. I guess that renaming that file in both packages and
symlinking it from the default package would be ok in theory, but that still
doesn't solve the problem with the m4 files. Any thoughts?

Anyway, you can find the packages here [1]. They should be installable and
runnable in parallel with guile. These are not meant to be final in any way,
just to demonstrate that it would be quite possible to have both of them in the
system.

Thoughts and feedback appreciated.

[1] http://jsynacek.fedorapeople.org/guile/pkgs/

Cheers,

-- 
Jan Synacek
Software Engineer, BaseOS team Brno, Red Hat
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Packages in need of new maintainers

2012-10-05 Thread Nikos Roussos
I would also like to take this one:

skyviewer -- Program to display HEALPix-based skymaps in FITS files
(but just the Fedora branches)

FAS: comzeradd

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

Re: abrt server report: 20121004

2012-10-05 Thread Richard Marko
On 10/04/2012 08:13 PM, Dave Jones wrote:
 On Thu, Oct 04, 2012 at 11:10:47AM -0400, Dave Jones wrote:

 Feature request:
 Can you do the same backtrace hashing abrt does, and provide a link to 
 any
 bugs in bugzilla with the abrt_hash in the whiteboard ?
   
   Never mind. It seems you do that, and I was looking at reports where no bug
   had been filed. Perhaps print no bug filed yet in that case ?

 Something else just occurred to me, that might be useful, would be to print 
 the top-most function
 in the summary page.  Looking at 
 https://retrace.fedoraproject.org/faf/problems/hot/*/*/kernel/
 it would be useful if I could see at a glance that bug 13935 was a wireless 
 bug, without
 needing to click into it.

I agree.


 But...  A lot of the 'function' fields on kernel bugs are going to be the 
 same.
 warn_slowpath_common or warn_slowpath_null.  We have a billion WARN() 
 statements all over
 the kernel, and it's more useful knowing the location of where those are 
 placed than the
 function name of the WARN statement.

We will add the location and line numbers to these reports
but the implementation is not ready yet.

 Ie, the summary for https://retrace.fedoraproject.org/faf/problems/13955/
 should show function: brcms_c_wait_for_tx_completion.


 There may be a few other function names that would also require similar 
 special casing.

Sounds good. I've created tickets for all these improvements. Thanks!


-- 
Richard Marko

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

File Data-Dumper-2.136.tar.gz uploaded to lookaside cache by ppisar

2012-10-05 Thread Petr Pisar
A file has been added to the lookaside cache for perl-Data-Dumper:

60f7071afa260fb30df74d6c1b116967  Data-Dumper-2.136.tar.gz
--
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

[perl-Data-Dumper] 2.136 bump

2012-10-05 Thread Petr Pisar
commit 5df848364d4c8ff0b642fcd02f0f8904dc876731
Author: Petr Písař ppi...@redhat.com
Date:   Fri Oct 5 11:06:11 2012 +0200

2.136 bump

 .gitignore|1 +
 .rpmlint  |2 ++
 perl-Data-Dumper.spec |   13 -
 sources   |2 +-
 4 files changed, 12 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 13fb7ce..815acf3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /Data-Dumper-2.131.tar.gz
 /Data-Dumper-2.135_07.tar.gz
+/Data-Dumper-2.136.tar.gz
diff --git a/.rpmlint b/.rpmlint
new file mode 100644
index 000..2e32ee3
--- /dev/null
+++ b/.rpmlint
@@ -0,0 +1,2 @@
+from Config import *
+addFilter(spelling-error .* (eval|Stringify));
diff --git a/perl-Data-Dumper.spec b/perl-Data-Dumper.spec
index 4e10251..f70c07a 100644
--- a/perl-Data-Dumper.spec
+++ b/perl-Data-Dumper.spec
@@ -1,12 +1,12 @@
-%global real_version 2.135_07
+%global cpan_version 2.136
 Name:   perl-Data-Dumper
-Version:2.135.07
-Release:241%{?dist}
+Version:%(echo '%{cpan_version}' | tr '_' '.')
+Release:1%{?dist}
 Summary:Stringify perl data structures, suitable for printing and eval
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Data-Dumper/
-Source0:
http://www.cpan.org/authors/id/S/SM/SMUELLER/Data-Dumper-%{real_version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/S/SM/SMUELLER/Data-Dumper-%{cpan_version}.tar.gz
 BuildRequires:  perl(ExtUtils::MakeMaker)
 # Run-time:
 BuildRequires:  perl(Carp)
@@ -33,7 +33,7 @@ variable is output in a single Perl statement. Handles 
self-referential
 structures correctly.
 
 %prep
-%setup -q -n Data-Dumper-%{real_version}
+%setup -q -n Data-Dumper-%{cpan_version}
 sed -i '/MAN3PODS/d' Makefile.PL
 
 %build
@@ -59,6 +59,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 05 2012 Petr Pisar ppi...@redhat.com - 2.136-1
+- 2.136 bump
+
 * Fri Aug 24 2012 Petr Pisar ppi...@redhat.com - 2.135.07-241
 - Disable tests on bootstrap
 
diff --git a/sources b/sources
index 7b37505..558a58f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-7a7f0cbce42114ca53bfa3d16b00f765  Data-Dumper-2.135_07.tar.gz
+60f7071afa260fb30df74d6c1b116967  Data-Dumper-2.136.tar.gz
--
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: abrt server report: 20121004

2012-10-05 Thread Richard Marko
On 10/05/2012 04:48 AM, Adam Williamson wrote:
 On Thu, 2012-10-04 at 11:10 -0400, Dave Jones wrote:

   Feature request:
   Can you do the same backtrace hashing abrt does, and provide a link to any
   bugs in bugzilla with the abrt_hash in the whiteboard ?

 Never mind. It seems you do that, and I was looking at reports where no bug
 had been filed. Perhaps print no bug filed yet in that case ?
 Wait, how do we have reports with no bugs?

If you cancel reporting to the bugzilla or it isn't successful no bug
is assigned to the report on the server. It might be added later
when someone completes the reporting.

-- 
Richard Marko

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

Re: Packages in need of new maintainers

2012-10-05 Thread Matěj Cepl
On Wed, 03 Oct 2012 13:23:02 -0500, Jon Ciesla wrote:
 git-bugzilla -- Attach patches to a bugzilla bug

I'll take it. FAS name: mcepl

Matěj

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

Re: Packages in need of new maintainers

2012-10-05 Thread Jon Ciesla
On Thu, Oct 4, 2012 at 9:39 PM, Sérgio Basto ser...@serjux.com wrote:
 On Qua, 2012-10-03 at 13:23 -0500, Jon Ciesla wrote:
 kBuild -- A cross-platform build environment

 This could be orphan, kmk_sed fails if kBuild was compiled with gcc 4.7
 and upstream doesn't fix it.

 http://svn.netlabs.org/kbuild/ticket/112

I'll leave it for now.

-J

 Thanks,
 --
 Sérgio M. B.

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



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

F-18 Branched report: 20121005 changes

2012-10-05 Thread Fedora Branched Report
Compose started at Fri Oct  5 09:15:32 UTC 2012

Broken deps for x86_64
--
[almanah]
almanah-0.8.0-7.fc18.x86_64 requires libedataserverui-3.0.so.3()(64bit)
almanah-0.8.0-7.fc18.x86_64 requires libedataserver-1.2.so.16()(64bit)
almanah-0.8.0-7.fc18.x86_64 requires libecal-1.2.so.12()(64bit)
almanah-0.8.0-7.fc18.x86_64 requires libebook-1.2.so.13()(64bit)
[dhcp-forwarder]
dhcp-forwarder-upstart-0.10-1801.fc18.noarch requires /sbin/initctl
[dogtag-pki]
dogtag-pki-10.0.0-0.8.a1.fc18.noarch requires pki-util-javadoc = 
0:10.0.0
dogtag-pki-10.0.0-0.8.a1.fc18.noarch requires pki-java-tools-javadoc = 
0:10.0.0
dogtag-pki-10.0.0-0.8.a1.fc18.noarch requires pki-common-javadoc = 
0:10.0.0
[dragonegg]
dragonegg-3.1-7.fc18.x86_64 requires gcc = 0:4.7.1-5.fc18
[evolution-exchange]
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libedataserverui-3.0.so.3()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libedataserver-1.2.so.16()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libedata-cal-1.2.so.17()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libedata-book-1.2.so.14()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libecal-1.2.so.12()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libebook-1.2.so.13()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libebackend-1.2.so.3()(64bit)
evolution-exchange-3.5.2-1.fc18.x86_64 requires 
libcamel-1.2.so.36()(64bit)
[flush]
flush-0.9.10-7.fc18.x86_64 requires 
libboost_thread-mt.so.1.48.0()(64bit)
flush-0.9.10-7.fc18.x86_64 requires 
libboost_system-mt.so.1.48.0()(64bit)
flush-0.9.10-7.fc18.x86_64 requires 
libboost_signals-mt.so.1.48.0()(64bit)
flush-0.9.10-7.fc18.x86_64 requires 
libboost_filesystem-mt.so.1.48.0()(64bit)
[fontik]
fontik-0.6.1-2.20120305git5dbbc513.fc18.x86_64 requires 
libgee-0.8.so.0()(64bit)
[func]
func-0.28-1.fc17.noarch requires smolt
[gdb-heap]
gdb-heap-0.5-9.fc18.x86_64 requires glibc(x86-64) = 0:2.15
[glom]
glom-1.18.6-1.fc17.x86_64 requires libboost_python.so.1.48.0()(64bit)
glom-libs-1.18.6-1.fc17.i686 requires libboost_python.so.1.48.0
glom-libs-1.18.6-1.fc17.x86_64 requires 
libboost_python.so.1.48.0()(64bit)
[gnome-pilot]
gnome-pilot-eds-2.91.93-5.fc17.x86_64 requires 
libedataserverui-3.0.so.1()(64bit)
gnome-pilot-eds-2.91.93-5.fc17.x86_64 requires 
libedataserver-1.2.so.16()(64bit)
gnome-pilot-eds-2.91.93-5.fc17.x86_64 requires 
libecal-1.2.so.11()(64bit)
gnome-pilot-eds-2.91.93-5.fc17.x86_64 requires 
libebook-1.2.so.13()(64bit)
[gwibber]
1:gwibber-3.4.2-3.fc18.i686 requires libgee-0.8.so.0
1:gwibber-3.4.2-3.fc18.x86_64 requires libgee-0.8.so.0()(64bit)
[ip-sentinel]
ip-sentinel-upstart-0.12-1303.fc18.noarch requires /sbin/initctl
[kismon]
kismon-0.6-2.fc18.noarch requires pyclutter
[libsyncml]
1:libsyncml-0.4.6-4.fc17.i686 requires libsoup-2.2.so.8
1:libsyncml-0.4.6-4.fc17.x86_64 requires libsoup-2.2.so.8()(64bit)
[maniadrive]
raydium-1.2-47.fc18.x86_64 requires libode.so.1()(64bit)
[mapserver]
mapserver-perl-6.0.1-5.fc17.x86_64 requires perl(:MODULE_COMPAT_5.14.2)
[matreshka]
matreshka-0.1.1-9.fc17.i686 requires libgnat-4.6.so
matreshka-0.1.1-9.fc17.x86_64 requires libgnat-4.6.so()(64bit)
matreshka-fastcgi-0.1.1-9.fc17.i686 requires libgnat-4.6.so
matreshka-fastcgi-0.1.1-9.fc17.i686 requires libgnarl-4.6.so
matreshka-fastcgi-0.1.1-9.fc17.x86_64 requires libgnat-4.6.so()(64bit)
matreshka-fastcgi-0.1.1-9.fc17.x86_64 requires libgnarl-4.6.so()(64bit)
matreshka-sql-core-0.1.1-9.fc17.i686 requires libgnat-4.6.so
matreshka-sql-core-0.1.1-9.fc17.x86_64 requires libgnat-4.6.so()(64bit)
matreshka-sql-postgresql-0.1.1-9.fc17.i686 requires libgnat-4.6.so
matreshka-sql-postgresql-0.1.1-9.fc17.x86_64 requires 
libgnat-4.6.so()(64bit)
matreshka-sql-sqlite-0.1.1-9.fc17.i686 requires libgnat-4.6.so
matreshka-sql-sqlite-0.1.1-9.fc17.x86_64 requires 
libgnat-4.6.so()(64bit)
[milter-greylist]
milter-greylist-upstart-4.2.7-1701.fc18.noarch requires /sbin/initctl
[mod_pubcookie]
mod_pubcookie-3.3.4a-7.fc18.x86_64 requires httpd-mmn = 
0:20051115-x86-64
[openvrml]
libopenvrml-0.18.9-3.fc18.i686 requires libboost_thread-mt.so.1.48.0
libopenvrml-0.18.9-3.fc18.i686 requires libboost_system-mt.so.1.48.0
libopenvrml-0.18.9-3.fc18.i686 requires libboost_filesystem-mt.so.1.48.0
libopenvrml-0.18.9-3.fc18.x86_64 requires 
libboost_thread-mt.so.1.48.0()(64bit)
libopenvrml-0.18.9-3.fc18.x86_64 requires 
libboost_system-mt.so.1.48.0()(64bit)
libopenvrml-0.18.9-3.fc18.x86_64 requires 

Compiz

2012-10-05 Thread Rave it
Hi,
i've re-retired the compiz package.

There are some old user acl's for rawhide.
https://admin.fedoraproject.org/pkgdb/acls/name/compiz?_csrf_token=d92e6e7618be26b35f4fda2321a71f4e540a37f9

user:

ajax
alexl
caillon
caolanm
davidz
hadess
hicham
johnp
jrb
mbarnes
mclasen
rhughes
rnorwood
rstrode
ssp
xiphmont

Are you really interest to keep your acl's for compiz?
Pls reply, otherwise i assume i can delete your rights.

regards,
Wolfgang

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

orphaning/retiring drivers for old Lexmark inkjet GDI-only printers

2012-10-05 Thread Jiri Popelka

Hi,

I took over Lubomir Rintel's printing packages, investigated them and
most of them are drivers to few old, cheap Lexmark inkjet printers.
The drivers are reverse engineered because Lexmark was considering their 
proprietary protocol top secret.


Here's the list of packages with printers that use them:
lx:Lexmark 1000/1020/1100
pbm2l2030: Lexmark 2030
c2050: Lexmark 2050
c2070: Lexmark 2070
pbm2l7k: Lexmark 5000/7200/Z51/Z82

If you happen to have such a printer and want to maintain any of these 
packages or you just know anybody still using this printer let me knew.
Otherwise I'll retire them as I'd be surprised if there was any such 
working printer out there.



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

Re: Compiz

2012-10-05 Thread Matthias Clasen
On Fri, 2012-10-05 at 14:58 +0200, Rave it wrote:
 Hi,
 i've re-retired the compiz package.
 
 There are some old user acl's for rawhide.

[...]

 Are you really interest to keep your acl's for compiz?
 Pls reply, otherwise i assume i can delete your rights.
 

You can delete them all. They're leftovers.

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

Any progress in Software Center in Fedora effort?

2012-10-05 Thread Jiri Eischmann
Hi,
the possibility of Software Center in Fedora has already been discussed
several times, last time a few month ago.
I read an article about a successful Google Summer of Code project [1]
whose goal was to make Software Center a distribution independent
program using PackageKit.
Matthias even made an Ubuntu-independent infrastructure for AppStream
(additional data about packages/apps).
I wonder if there are still any efforts to get it to Fedora and what it
would require from our infrastructure.

If I understand it correctly, there are currently three options:
1) Software Center based on PackageKit by Matthias
2) Light Software Center - a new app based on PackageKit from the
beginning
3) Apper already supports AppStream [2]

I'm asking because I hear from many (not only) beginners that they would
appreciate something like Ubuntu Software Center in Fedora. I guess it's
one of the main reasons why many users rather go for Ubuntu than Fedora.

Jiri

[1] http://blog.tenstral.net/2012/08/gsoc-appstream-final-report.html
[2] http://blog.tenstral.net/2012/08/appstream-for-apper.html 

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

Re: Packages in need of new maintainers

2012-10-05 Thread Przemek Klosowski

On 10/03/2012 02:23 PM, Jon Ciesla wrote:

As a result of FESCO ticket 952*, Lubomir Rintel's 200+ packages are
in need of new maintainers.  Under normal circumstances we'd simply
orphan them all, but given the large number we want to handle this in
a more orderly fashion.

Please reply to the list with any requests for ownership changes, and
I'll complete them on a first-come, first-served basis


Could you do an updated list of packages that are still looking for 
owners? I would sign up for sdcc. My FAS username is przemekklosowski

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

Re: Packages in need of new maintainers

2012-10-05 Thread Peter Jones
On Thu, Oct 04, 2012 at 03:09:24PM +0200, Hans de Goede wrote:
 pulseaudio -- Improved Linux sound server
 
 ???  !!!

As others have mentioned, packages are on this list even if the only
place he owns them is EPEL.

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

Packages in need of new maintainers UPDATED LIST

2012-10-05 Thread Jon Ciesla
-- Forwarded message --
From: Przemek Klosowski przemek.klosow...@nist.gov
Date: Fri, Oct 5, 2012 at 12:06 PM
Subject: Re: Packages in need of new maintainers
To: devel@lists.fedoraproject.org


On 10/03/2012 02:23 PM, Jon Ciesla wrote:

 As a result of FESCO ticket 952*, Lubomir Rintel's 200+ packages are
 in need of new maintainers.  Under normal circumstances we'd simply
 orphan them all, but given the large number we want to handle this in
 a more orderly fashion.

 Please reply to the list with any requests for ownership changes, and
 I'll complete them on a first-come, first-served basis


 Could you do an updated list of packages that are still looking for owners?

NaturalDocs -- Documentation generator for multiple programming languages
NetworkManager-pptp -- NetworkManager VPN plugin for pptp
afpfs-ng -- Apple Filing Protocol client
astronomy-menus -- Astronomy menu for the Desktop
bam -- A build-system
btkbdd -- Software bluetooth keyboard
centerim -- Text mode menu- and window-driven IM
corrida -- Application for archivation of meteor observations
derby -- Relational database implemented entirely in java
dissy -- Graphical frontend to the objdump disassembler
earcandy -- Sound level manager
enchant -- An Enchanting Spell Checking Library
extrema -- Extrema is a powerful visualization and data analysis tool
ezmorph -- Object transformation library for Java
flumotion -- Streaming Server based on GStreamer and Twisted
fusecompress -- FUSE based compressed filesystem implementation
gant -- Groovy-based build system that uses Ant tasks
gooddata-cl -- GoodData Integration toolkit
gstreamer-plugins-pulse -- GStreamer 0.10 plugin for the PulseAudio sound server
http-parser -- HTTP request/response parser for C
insight -- Graphical debugger based on GDB
intellij-idea -- IntelliJ IDEA Community Edition IDE
ircp-tray -- Infrared file transfer applet for GNOME panel
isync -- Tool to synchronize IMAP4 and Maildir mailboxes
jackrabbit -- Implementation of the Content Repository for Java Technology API
java-1.6.0-openjdk -- OpenJDK Runtime Environment
jcommon -- JFree Java utility classes
jfreechart -- Java chart library
jgraph -- Java-based Diagram Component and Editor
joda-time -- Java date and time API
jps -- Gant based build framework and DSL
jsl -- Check JavaScript code for common mistakes
json-lib -- JSON library for Java
justmoon -- Just Moon is lunar observing software for Linux
kBuild -- A cross-platform build environment
kdeedu -- Educational/Edutainment applications
koules -- Action game with multiplayer, network and sound support
libatomic_ops -- Atomic memory update operations
libclaw -- C++ Library Absolutely Wonderful
libeio -- Event-based fully asynchronous I/O library
libfli -- Library for FLI CCD Camera  Filter Wheels
libgda -- Library for writing gnome database programs
liboping -- C library to generate ICMP echo requests
librelp -- The Reliable Event Logging Protocol library
libscigraphica -- A library of gtk+ widgets for SciGraphica
libvisual -- Abstraction library for audio visualisation plugins
links -- Web browser running in both graphics and text mode
loudmouth -- XMPP/Jabber C programming library
lsyncd -- File change monitoring and synchronization daemon
lua-rex -- Regular expression handling library for Lua
mars-sim -- Mars Simulation Project
maven-embedder -- The Maven Embedder is used by the Maven CLI, by IDE
integration and others.
maven-enforcer-rule-api -- Generic interfaces needed to implement
custom rules for the maven-enforcer-plugin.
mdbtools -- Access data stored in Microsoft Access databases
mod_python -- An embedded Python interpreter for the Apache HTTP Server
mon -- General-purpose resource monitoring system
netbsd-iscsi -- User-space implementation of iSCSI target from NetBSD project
nightview -- A general astronomical software package to control of a CCD camera
nss-mdns -- glibc plugin for .local name resolution
opengrok -- Source browser and indexer
opticalraytracer -- Utility that analyzes systems of lenses
orsa -- Orbit Reconstruction, Simulation and Analysis
ovaldi -- Reference implementation of the OVAL interpreter
perl-CSS-Tiny -- Read/Write .css files with as little code as possible
perl-Class-C3-XS -- XS speedups for Class::C3
perl-Class-Factory-Util -- Provide utility methods for factory classes
perl-Compress-Raw-Bzip2 -- Low-Level Interface to bzip2 compression library
perl-Config-General -- Generic configuration module for Perl
perl-Contextual-Return -- Create context-senstive return values
perl-Convert-BER -- ASN.1 Basic Encoding Rules
perl-DBM-Deep -- A pure perl multi-level hash/array DBM
perl-DateTime-Format-Builder -- Create DateTime parser classes and objects
perl-DateTime-Format-HTTP -- HTTP protocol date conversion routines
perl-DateTime-Format-IBeat -- Format times in .beat notation
perl-DateTime-Format-MySQL -- Parse and format MySQL dates and times
perl-Declare-Constraints-Simple -- Declarative Validation of Data Structures

Re: Packages in need of new maintainers

2012-10-05 Thread Nikos Roussos


Przemek Klosowski przemek.klosow...@nist.gov wrote:
On 10/03/2012 02:23 PM, Jon Ciesla wrote:
 As a result of FESCO ticket 952*, Lubomir Rintel's 200+ packages are
 in need of new maintainers.  Under normal circumstances we'd simply
 orphan them all, but given the large number we want to handle this in
 a more orderly fashion.

 Please reply to the list with any requests for ownership changes, and
 I'll complete them on a first-come, first-served basis

Could you do an updated list of packages that are still looking for 
owners? I would sign up for sdcc. My FAS username is przemekklosowski

You can check the list here:
https://admin.fedoraproject.org/pkgdb/users/packages/lkundrak?acls=owner

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

Re: Packages in need of new maintainers

2012-10-05 Thread Jon Ciesla
On Fri, Oct 5, 2012 at 12:06 PM, Przemek Klosowski
przemek.klosow...@nist.gov wrote:
 On 10/03/2012 02:23 PM, Jon Ciesla wrote:

 As a result of FESCO ticket 952*, Lubomir Rintel's 200+ packages are
 in need of new maintainers.  Under normal circumstances we'd simply
 orphan them all, but given the large number we want to handle this in
 a more orderly fashion.

 Please reply to the list with any requests for ownership changes, and
 I'll complete them on a first-come, first-served basis


 Could you do an updated list of packages that are still looking for owners?
 I would sign up for sdcc. My FAS username is przemekklosowski

It wouldn't let me assign since your BZ and FAS emails apparently
don't match, so I've orphaned it, take it.  EL-6 only.

-J

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



-- 
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: Packages in need of new maintainers UPDATED LIST

2012-10-05 Thread Paul Howarth
I'll take:

 perl-Class-C3-XS
 perl-Class-Factory-Util
 perl-Compress-Raw-Bzip2
 perl-DBM-Deep
 perl-DateTime-Format-Builder
 perl-DateTime-Format-MySQL
 perl-Declare-Constraints-Simple
 perl-File-Slurp
 perl-IO-Compress-Base
 perl-IO-Compress-Bzip2
 perl-JSON-XS
 perl-MRO-Compat
 perl-Module-Refresh
 perl-Test-LongString
 perl-aliased
 perl-common-sense

Paul (pghmcfc).
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Packages in need of new maintainers UPDATED LIST

2012-10-05 Thread Eric H. Christensen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Oct 05, 2012 at 12:32:11PM -0500, Jon Ciesla wrote:
 skychart -- Planetarium software for the advanced amateur astronomer
 starlab -- A Software Environment for Collisional Stellar Dynamics
 starplot -- 3-dimensional perspective star map viewer
 starplot-contrib -- Stellar data set for use by the StarPlot tool
 starplot-gliese3 -- Stellar data set for use by the StarPlot tool
 starplot-yale5 -- Stellar data set for use by the StarPlot tool

I'll take these as either owner or co-maintainer.

FAS: sparks

- -- Eric

- --
Eric H Christensene...@christensenplace.us
Sparks  spa...@fedoraproject.org
    .. .-.. .-.. ---   .-- --- .-. .-.. -..
097C 82C3 52DF C64A 50C2  E3A3 8076 ABDE 024B B3D1
- --
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBAgAGBQJQbyrtAAoJEIB2q94CS7PRh2IQAIlKBs4/IO0hRvYOWncuQuei
bKaIz2qUdpDyOndnN1yNUZjS5I16QyAnCg4qgra+fLh1ZoV1MhJHCQt8Eowa8Hot
od+xbNfd3zL0G/kzzfr4uTtap2/zGew3z0/fT7bA6yslfFI5q/5xZUyT139PuIY8
S4o2U5nodf7Q5kWrf9ZkaaiCObz+CB3ayEp8RCe3+JCOfVIMjPlhkUyT7sJv3cXK
S4PRBn6/Qzyl9Yg04NFTc593G9+clxdGmXvBCcgJjaVvyAlNdKTMcO8boMEEmOPs
haUUhToYCSig7S5PbU1ghv8JQCspa3hsleEbHSnUQ2yutb1NYU00Qa1oBGUgi3xs
/BTOZguUK0UHqpMHJBb03IbI8p6W80XmHewxWZ54bit5VkmPFhhb0hnU2/Z+LbN0
ke/X7B7kazLUgVcc8Cd8DBJOpXT4LngR0iiLoq2j5vgfwdYs7hlEwYE+MIae8nzU
GHtlS09Gsk3wIl+hVb7wY42OHohAlcxf9SNB68ruEhFhNx35C2EPp/s24z/gFoyM
KkAsbbtUJi6srNcAQQ2HKnWD23ZOcxeO/wQh+3re59+9CiQ8R+n9z+cGsL+N+b5a
I4NcSoBYc1saYl5cNbxHKhOljWNLIeg0fUbg1bPp9a7zwkiiMcqiFibu2sUR36v7
tv5Lh9tGhoek4Sop7ZoO
=ZdBI
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Packages in need of new maintainers UPDATED LIST

2012-10-05 Thread Greg Swift
On Fri, Oct 5, 2012 at 12:32 PM, Jon Ciesla limburg...@gmail.com wrote:
 pure-ftpd -- Lightweight, fast and secure FTP server

i'll take that.  fas = xaeth

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

Re: Any progress in Software Center in Fedora effort?

2012-10-05 Thread Richard Hughes
On 5 October 2012 16:19, Jiri Eischmann eischm...@redhat.com wrote:
 1) Software Center based on PackageKit by Matthias
 2) Light Software Center - a new app based on PackageKit from the
 beginning
 3) Apper already supports AppStream [2]

Basically, Fedora needs to ship Appstream metadata and then we can
just include any one of the two existing projects. To that, we need
someone who's got an interest in working with the infrastructure guys
in Fedora. I tried, but failed.

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

Update mongodb to 2.2.0 (latest release)

2012-10-05 Thread Troy Dawson
Hello,
I have updated mongodb from 2.0.7 to 2.2.0.
It is currently going through the normal channels for rawhide and Fedora 18.

10gen has a very good track record for being backwards compatible.
According to their documentation When upgrading a standalone mongod,
2.2 is a drop-in replacement. and MongoDB 2.0 data files are
compatible with 2.2-series binaries without any special migration process.
If upgrading replica sets and sharded cluster, you should follow the
procedures from their release notes.
http://docs.mongodb.org/manual/release-notes/2.2/#upgrading

What are people's thoughts on bringing it into Fedora 16, Fedora 17,
EPEL6 and EPEL5?

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

Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Till Maas
Hi,

I noticed that the revelation security update was not pushed to stable.
It is now 91 days old, which makes me suspect that Jef is somehow
hindered to take care of it:
https://admin.fedoraproject.org/updates/FEDORA-2012-10269/revelation-0.4.14-1.fc17
https://admin.fedoraproject.org/updates/FEDORA-2012-10314/revelation-0.4.14-1.fc16

I remember he was very eager to push it in a timely manner. I already
wrote an e-mail to revelation-owner at 21 August. Can someone with the
appropriate permissions please push the updates to stable?

It might also be a good idea to look after his 18 other packages:
https://admin.fedoraproject.org/pkgdb/users/packages/jspaleta?acls=owner

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

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Kevin Fenzi
On Sat, 6 Oct 2012 00:32:50 +0200
Till Maas opensou...@till.name wrote:

 Hi,
 
 I noticed that the revelation security update was not pushed to
 stable. It is now 91 days old, which makes me suspect that Jef is
 somehow hindered to take care of it:
 https://admin.fedoraproject.org/updates/FEDORA-2012-10269/revelation-0.4.14-1.fc17
 https://admin.fedoraproject.org/updates/FEDORA-2012-10314/revelation-0.4.14-1.fc16

:( 

 I remember he was very eager to push it in a timely manner. I already
 wrote an e-mail to revelation-owner at 21 August. Can someone with the
 appropriate permissions please push the updates to stable?

Done. 

 It might also be a good idea to look after his 18 other packages:
 https://admin.fedoraproject.org/pkgdb/users/packages/jspaleta?acls=owner

Please see: 

http://lists.fedoraproject.org/pipermail/devel/2012-August/170690.html

and the vacation page, where he noted he would be out of contact: 

http://fedoraproject.org/wiki/Vacation

kevin


signature.asc
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Jeff Spaleta
On Fri, Oct 5, 2012 at 2:32 PM, Till Maas opensou...@till.name wrote:
 I noticed that the revelation security update was not pushed to stable.
 It is now 91 days old, which makes me suspect that Jef is somehow
 hindered to take care of it:

Here's the problem with that update it breaks existing revelation
setups for people because of the gconf schema change.

Upstream has seen it happen in upstream bug reports.

You have to nuke the gconf settings manually.

If I could find a way to avoid it from happening I'd have pushed this
update well ahead of my travel to the ass end of the pacific ocean.

As it stands I'm taking myself off the vacation list as of this
evening. But it doesn't change anything. The problem with the gconf
munching is still there.
I still don't have a solution for it. And noone else I've asked seems
to have one either.

WTF is going on with the gconf stuff that is preventing the schema
change from gracefully taking affect?
What do I need to change in the packaging to get it working so that
the most you have to do is logout and log back into your desktop
again?

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

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Jeff Spaleta
On Fri, Oct 5, 2012 at 2:57 PM, Jeff Spaleta jspal...@fedoraproject.org wrote:
 Here's the problem with that update it breaks existing revelation
 setups for people because of the gconf schema change.

I'll add that the additional wrinkle is that once you move to the new
version, it updates the encryption on your database...which is
great..but then you can't downgrade back to a version that works with
the gconf settings already in your user space. So for unsuspecting
users they end up with a revelation with strong encryption but with
egregiously broken ui.. you can search... you cant generate new
passwords..its all borked.,..until you nuke the gconf settings
manually.

So the fact that you can't downgrade to the old version because of the
encryption change... i'm not keen on pushing this until someone has a
fix for the gconf stuff.

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

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Kevin Fenzi
Ugh. Shall I unpush those from going stable then until this is figured?

Sorry about that... 

kevin


signature.asc
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Jef Spaleta
On Fri, Oct 5, 2012 at 3:06 PM, Kevin Fenzi ke...@scrye.com wrote:
 Ugh. Shall I unpush those from going stable then until this is figured?

 Sorry about that...

I am a firm believer in the Pottery Barn rule.  You break it you buy it.
If you feel this is important enough of a security fix to break ui
then push it as an update, as long as you take point on unwinding the
ui damage.

F18 will have it out of the box regardless.

The other thing to note is that for anyone who uses the revelation key
file across multiple systems, once you upgrade to this version your
other system with the older revelation can't open the file any more.
An additional wrinkle I don't think anyone has considered. People
trying to use revelation out of the box for F18 and then using that
file on another linux distribution is going to be for a big surprise.
See any other desktop oriented distros moving to the new version in
their latest or upcoming releases?  Revelation upstream was
effectively dead for so long, I doubt many people have noticed it was
forked and given a new upstream hope... or even noticed the encryption
weakness when it was announced.



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

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Kevin Fenzi
On Fri, 5 Oct 2012 15:20:16 -0800
Jef Spaleta jspal...@gmail.com wrote:

 On Fri, Oct 5, 2012 at 3:06 PM, Kevin Fenzi ke...@scrye.com wrote:
  Ugh. Shall I unpush those from going stable then until this is
  figured?
 
  Sorry about that...
 
 I am a firm believer in the Pottery Barn rule.  You break it you buy
 it. If you feel this is important enough of a security fix to break ui
 then push it as an update, as long as you take point on unwinding the
 ui damage.

Well, I don't use it, I just wanted to provide the security update. 

If you don't think it's worth pushing as a maintainer due to the
breakage, I can move it back to testing. 

 F18 will have it out of the box regardless.

yeah. 

 The other thing to note is that for anyone who uses the revelation key
 file across multiple systems, once you upgrade to this version your
 other system with the older revelation can't open the file any more.
 An additional wrinkle I don't think anyone has considered. People
 trying to use revelation out of the box for F18 and then using that
 file on another linux distribution is going to be for a big surprise.
 See any other desktop oriented distros moving to the new version in
 their latest or upcoming releases?  Revelation upstream was
 effectively dead for so long, I doubt many people have noticed it was
 forked and given a new upstream hope... or even noticed the encryption
 weakness when it was announced.

Fun. 

kevin


signature.asc
Description: PGP signature
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Unresponsive maintainer Jef Spaleta - Unpushed security update for 91 days

2012-10-05 Thread Adam Williamson
On Fri, 2012-10-05 at 14:57 -0800, Jeff Spaleta wrote:
 On Fri, Oct 5, 2012 at 2:32 PM, Till Maas opensou...@till.name wrote:

25 minutes for an 'unresponsive maintainer' to respond, that has to be
some sort of project record. =)
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Twitter: AdamW_Fedora | identi.ca: adamwfedora
http://www.happyassassin.net

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

[Bug 863303] missing dependency clamav-server-sysvinit required

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=863303

Enrico Scholz enrico.sch...@informatik.tu-chemnitz.de changed:

   What|Removed |Added

 CC||kana...@kanarip.com,
   ||perl-devel@lists.fedoraproj
   ||ect.org
  Component|clamav  |amavisd-new
   Assignee|enrico.sch...@informatik.tu |st...@silug.org
   |-chemnitz.de|

--- Comment #1 from Enrico Scholz enrico.sch...@informatik.tu-chemnitz.de ---
reassigning to amavis...

-- 
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 863363] New: perl-Data-Dumper-2.136 is available

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=863363

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

Latest upstream release: 2.136
Current version in Fedora Rawhide: 2.135.07
URL: http://search.cpan.org/dist/Data-Dumper/

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 861732] perlbrew-0.52 is available

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=861732

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

   What|Removed |Added

Summary|perlbrew-0.51 is available  |perlbrew-0.52 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 861732] perlbrew-0.52 is available

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=861732

--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org ---
Latest upstream release: 0.52
Current version in Fedora Rawhide: 0.50
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

[perl-IO-Socket-SSL/f18] Update to 1.77

2012-10-05 Thread Paul Howarth
Summary of changes:

  aee95ec... Update to 1.77 (*)

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

File Module-Install-1.06.tar.gz uploaded to lookaside cache by psabata

2012-10-05 Thread Petr Šabata
A file has been added to the lookaside cache for perl-Module-Install:

720e9c700f261b88698ef013a2691d6d  Module-Install-1.06.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-Module-Install] Update to 1.06

2012-10-05 Thread Petr Šabata
commit 8dd2d255f172adcb8993442bd026c275b6f9cbe6
Author: Petr Šabata con...@redhat.com
Date:   Fri Oct 5 14:22:57 2012 +0200

Update to 1.06

 .gitignore   |1 +
 perl-Module-Install.spec |   11 +++
 sources  |2 +-
 3 files changed, 9 insertions(+), 5 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 435bcce..0951fc2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Module-Install-0.95.tar.gz
 /Module-Install-1.00.tar.gz
 /Module-Install-1.01.tar.gz
 /Module-Install-1.04.tar.gz
+/Module-Install-1.06.tar.gz
diff --git a/perl-Module-Install.spec b/perl-Module-Install.spec
index afd3d1a..7f0d2e0 100644
--- a/perl-Module-Install.spec
+++ b/perl-Module-Install.spec
@@ -1,6 +1,6 @@
 Name:   perl-Module-Install
-Version:1.04
-Release:4%{?dist}
+Version:1.06
+Release:1%{?dist}
 Summary:Standalone, extensible Perl module installer
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -14,12 +14,12 @@ BuildArch:  noarch
 
 BuildRequires:  perl(Archive::Tar) = 1.44
 BuildRequires:  perl(CPAN)
-BuildRequires:  perl(Devel::PPPort)
+BuildRequires:  perl(Devel::PPPort) = 3.16
 BuildRequires:  perl(ExtUtils::Install) = 1.52
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(ExtUtils::ParseXS) = 2.19
 BuildRequires:  perl(File::Remove) = 1.42
-BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(File::Spec) = 3.28
 BuildRequires:  perl(JSON) = 2.14
 BuildRequires:  perl(LWP::UserAgent) = 5.812
 BuildRequires:  perl(Module::Build) = 0.29
@@ -74,6 +74,9 @@ make test AUTOMATED_TESTING=1
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 05 2012 Petr Šabata con...@redhat.com - 1.06-1
+- 1.06 bump
+
 * Fri Sep 14 2012 Jitka Plesnikova jples...@redhat.com - 1.04-4
 - Update requires: perl(Carp), perl(CPAN), perl(CPANPLUS::Backend)
 
diff --git a/sources b/sources
index 3a29c22..ceb24f4 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-820564d32c26b90f5f6fedd5225df71d  Module-Install-1.04.tar.gz
+720e9c700f261b88698ef013a2691d6d  Module-Install-1.06.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 863363] perl-Data-Dumper-2.136 is available

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=863363

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-Data-Dumper-2.136-1.fc
   ||19
 Resolution|--- |RAWHIDE
Last Closed||2012-10-05 08:46:40

--- Comment #1 from Petr Pisar ppi...@redhat.com ---
This release removes `register' storage qualifier from XS code.

-- 
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-OpenOffice-UNO

2012-10-05 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

File ORLite-1.98.tar.gz uploaded to lookaside cache by psabata

2012-10-05 Thread Petr Šabata
A file has been added to the lookaside cache for perl-ORLite:

25912f777daf95114e10f4b3e3a3c35a  ORLite-1.98.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-ORLite] 1.98 bump

2012-10-05 Thread Petr Šabata
commit 74a262e971f640815b795f1812abff8bea869df8
Author: Petr Šabata con...@redhat.com
Date:   Fri Oct 5 15:09:51 2012 +0200

1.98 bump

 .gitignore   |1 +
 perl-ORLite.spec |9 ++---
 sources  |2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e2a23ce..8bcb7f5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ ORLite-1.44.tar.gz
 /ORLite-1.91.tar.gz
 /ORLite-1.96.tar.gz
 /ORLite-1.97.tar.gz
+/ORLite-1.98.tar.gz
diff --git a/perl-ORLite.spec b/perl-ORLite.spec
index a89924a..97073d0 100644
--- a/perl-ORLite.spec
+++ b/perl-ORLite.spec
@@ -1,13 +1,13 @@
 Name:   perl-ORLite
 Summary:Extremely light weight SQLite-specific ORM
-Version:1.97
-Release:3%{?dist}
+Version:1.98
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/ORLite-%{version}.tar.gz 
 URL:http://search.cpan.org/dist/ORLite/
 BuildArch:  noarch
-BuildRequires:  perl(inc::Module::Install::DSL) = 1.04
+BuildRequires:  perl(inc::Module::Install::DSL) = 1.06
 # Run-time
 BuildRequires:  perl(Carp)
 BuildRequires:  perl(DBD::SQLite) = 1.27
@@ -74,6 +74,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Oct 05 2012 Petr Šabata con...@redhat.com - 1.98-1
+- 1.98 bump
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.97-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index cfb141e..5950024 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2f4c00437561072c6c6f5079e5a26638  ORLite-1.97.tar.gz
+25912f777daf95114e10f4b3e3a3c35a  ORLite-1.98.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 861861] perl-ORLite-1.98 is available

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=861861

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

   What|Removed |Added

 Status|ASSIGNED|CLOSED
   Fixed In Version||perl-ORLite-1.98-1.fc19
 Resolution|--- |RAWHIDE
Last Closed||2012-10-05 09:29:11

-- 
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-Term-Animation] add make test and fix typo

2012-10-05 Thread Luis Enrique Bazán De León
commit 2da956daa745b3676b30e427b6198ca7719b4841
Author: Luis Bazan lba...@fedoraproject.org
Date:   Fri Oct 5 15:38:45 2012 -0500

add make test and fix typo

 perl-Term-Animation.spec |   20 
 1 files changed, 12 insertions(+), 8 deletions(-)
---
diff --git a/perl-Term-Animation.spec b/perl-Term-Animation.spec
index 8e1c455..01f1807 100644
--- a/perl-Term-Animation.spec
+++ b/perl-Term-Animation.spec
@@ -1,6 +1,6 @@
 Name:   perl-Term-Animation
 Version:2.6
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:ASCII sprite animation framework
 
 License:GPL+ or Artistic
@@ -34,16 +34,16 @@ make %{?_smp_mflags}
 
 
 %install
-rm -rf $RPM_BUILD_ROOT
-make pure_install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
+rm -rf %{buildroot}
+make pure_install DESTDIR=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
 # Remove the next line from noarch packages (unneeded)
-find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
-find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null ';'
-%{_fixperms} $RPM_BUILD_ROOT/*
+find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
+find %{buildroot} -depth -type d -exec rmdir {} 2/dev/null ';'
+%{_fixperms} %{buildroot}/*
 
 %check
-
+make test
 
 %files
 %doc Changes README MIGRATION
@@ -52,6 +52,10 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null ';'
 
 
 %changelog
+* Fri Oct 05 2012 Luis Bazan lba...@fedoraproject.org - 2.6-13
+- fix typo
+- add test line
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.6-12
 - 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

[Bug 680217] CVE-2011-0009 CVE-2011-1008 CVE-2011-1007 rt3 various flaws [epel-6]

2012-10-05 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=680217

Vincent Danen vda...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |CURRENTRELEASE
Last Closed||2012-10-05 16:50:51

--- Comment #3 from Vincent Danen vda...@redhat.com ---
EPEL6 has 3.8.13, so this is resolved.

-- 
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 rt-3.8.14.tar.gz uploaded to lookaside cache by corsepiu

2012-10-05 Thread corsepiu
A file has been added to the lookaside cache for rt3:

8344b52053c71c438438d97b199561cf  rt-3.8.14.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

[rt3] Upstream update.

2012-10-05 Thread corsepiu
commit 35825fac623b0f0edef4ce29db740626803e12ed
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sat Oct 6 06:09:41 2012 +0200

Upstream update.

 .gitignore |1 +
 rt3.spec   |7 +--
 sources|2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index db376a4..6ec48af 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 /rt-3.8.12.tar.gz
 /rt-3.8.13.tar.gz
+/rt-3.8.14.tar.gz
diff --git a/rt3.spec b/rt3.spec
index d8adf96..bbf843b 100644
--- a/rt3.spec
+++ b/rt3.spec
@@ -40,8 +40,8 @@
 %global RT3_LOCALSTATEDIR  %{_localstatedir}/lib/rt3
 
 Name:  rt3
-Version:   3.8.13
-Release:   3%{?dist}
+Version:   3.8.14
+Release:   1%{?dist}
 Summary:   Request tracker 3
 
 Group: Applications/Internet
@@ -495,6 +495,9 @@ fi
 %endif
 
 %changelog
+* Sat Oct 06 2012 Ralf Corsépius corse...@fedoraproject.org - 3.8.14-1
+- Upstream update.
+
 * Sat Jul 21 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.8.13-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index acd18bf..16abc32 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-0be80e6a477b891f74dd27f80a69de0f  rt-3.8.13.tar.gz
+8344b52053c71c438438d97b199561cf  rt-3.8.14.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

[rt3] Housekeeping.

2012-10-05 Thread corsepiu
commit 8c5e55770f29a1ba9a8fb1d36e474d5b18d0aecf
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sat Oct 6 06:10:53 2012 +0200

Housekeeping.

 .gitignore |2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 6ec48af..d177449 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1 @@
-/rt-3.8.12.tar.gz
-/rt-3.8.13.tar.gz
 /rt-3.8.14.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

[rt3/f18] (2 commits) ...Housekeeping.

2012-10-05 Thread corsepiu
Summary of changes:

  35825fa... Upstream update. (*)
  8c5e557... Housekeeping. (*)

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

[rt3/f17] (5 commits) ...Merge cleanup.

2012-10-05 Thread corsepiu
Summary of changes:

  8c5c054... Perl 5.16 rebuild (*)
  6a593f0... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  35825fa... Upstream update. (*)
  8c5e557... Housekeeping. (*)
  4ee0645... 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

[rt3/f17: 5/5] Merge cleanup.

2012-10-05 Thread corsepiu
commit 4ee0645758a4df50b3f00c333dc4bf26abbb2608
Author: Ralf Corsépius corse...@fedoraproject.org
Date:   Sat Oct 6 06:14:29 2012 +0200

Merge cleanup.

 rt3.spec |6 --
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/rt3.spec b/rt3.spec
index bbf843b..7f16e02 100644
--- a/rt3.spec
+++ b/rt3.spec
@@ -498,12 +498,6 @@ fi
 * Sat Oct 06 2012 Ralf Corsépius corse...@fedoraproject.org - 3.8.14-1
 - Upstream update.
 
-* Sat Jul 21 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.8.13-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Wed Jul 04 2012 Petr Pisar ppi...@redhat.com - 3.8.13-2
-- Perl 5.16 rebuild
-
 * Sat Jun 02 2012 Ralf Corsépius corse...@fedoraproject.org - 3.8.13-1
 - Upstream update.
 
--
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

[rt3/f16] (5 commits) ...Merge cleanup.

2012-10-05 Thread corsepiu
Summary of changes:

  8c5c054... Perl 5.16 rebuild (*)
  6a593f0... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  35825fa... Upstream update. (*)
  8c5e557... Housekeeping. (*)
  4ee0645... 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