Re: minimal install [was Re: systemd requires HTTP server and serves QR codes]

2012-10-16 Thread Nicolas Mailhot


 one may say disk storage is nothing these days
 iw ould say: mulitply it with 20, 50, 100 virtual machines
 on really expensive SAN-storage where disk space is cheap
 is not true

And I would say : get an entreprisey deduping san

-- 
Nicolas Mailhot

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

Re: anacanda: should we ignore the bios raid information on a disk when the raid is broken?

2012-10-16 Thread Joshua C.
2012/10/15 Hans de Goede hdego...@redhat.com:
 Hi,


 On 10/15/2012 10:41 AM, Joshua C. wrote:

 2012/10/15 Hans de Goede hdego...@redhat.com:

 Hi,


 On 10/15/2012 09:23 AM, Joshua C. wrote:


 I have a broken fake raid on my machine (intel p67 chipset with one of
 the disks missing) and when trying to install F17 yesterday (with
 up-to-date respin done with pungi) I was greeted with the following
 message disk sdXXX has bios raid information and. blah. is
 part of a broken raid, ignoring sdXXX. After ignoring the message
 later on I wasn't given the chance to use the spare disk.

 I thought of patching anaconda to ignore the bios-raid-information and
 to allow me to use the disk as I single HDD but I was wondering if
 there are any side effects out of this?



 Yes, the side effect of this is that if we wrongly detect an array as
 being
 broken and allow the user to use it, we will destroy the array, nuking
 any
 data on it. IOW ignoring this error is simply not an acceptable option.

 What you can do is remove the bios raid metadata from the disk by going
 into a rescue shell on the system and run  wipefs on the disk in question

 Regards,

 Hans


 I don't want to remove the bios data because this is the only way to
 rebild the raid when the next disk arrives. Currently I'm using the
 disk under Linux/Windows without any problems (in AHCI mode). Wipping
 the bios data will remove anything when later I build (re-build) the
 raid with the intel orom...

 Can I just install anaything on the second disk and then manually
 adjust the fstab file to automount the disk from the broken raid?


 Assuming your raid array is a mirror, and that you won't be partitioning
 it or something similar, just adding the existing /home partition to
 your fstab yes that should work. Although anaconda will not let you
 touch the mirror member during the install, if you've another disk,
 putting Fedora 17 on that other disk should work fine, and after
 that pointing fstab the disk will work.

 BUT *IMPORTANT IMPORTANT IMPORTANT* you MUST remove the entry from
 fstab, before rebuilding the array, and then after the rebuild re-add
 the entry put now pointing to the raid and not to the single disk,
 otherwise Linux will keep using the single disk for your /home !!!

 Regards,

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

This is what I ment. I'll report back after the installation. Thanks

-- 

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

Re: F17: Illuminated keyboard turns off with kernel 3.6.1 upgrade

2012-10-16 Thread Vratislav Podzimek
On Mon, 2012-10-15 at 19:48 -0400, Gerry Reno wrote:
 I just upgraded my F17 kernel to 3.6.1 and when I reboot then my Logitech 
 illuminated keyboard is not lit until I touch
 a key and then it goes right back off.
 
 Kind of defeats the purpose of having an illuminated keyboard.
 
 Anyone know why this might happen after this particular kernel upgrade?
I have no idea, but probably the best thing to do is file a bug and
provide as much related information as you can.

-- 
Vratislav Podzimek

Anaconda Rider | Red Hat, Inc. | Brno - Czech Republic

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

Re: systemd requires HTTP server and serves QR codes

2012-10-16 Thread Richard W.M. Jones
On Mon, Oct 15, 2012 at 02:36:20PM -0400, john.flor...@dart.biz wrote:
  From: Bill Nottingham nott...@redhat.com
  
  Jesse Keating (jkeat...@j2solutions.net) said: 
   Well, we do currently have the minimal environment, which boils
   down to @core + the couple things anaconda forces (authconfig,
   system-config-firewall-base, kernel, bootloader).  You can get to
   that via kickstart with just:
   
   %packages
   @core
   %end
   
   But it's not close to what some of these people want out of a
   minimal install.
  
  For reference:
  
  @core + kernel:
   Install  38 Packages (+157 Dependent packages)
   Total download size: 128 M
   Installed size: 506 M
  
  But hey, I just want something smaller!
  
  systemd + util-linux + bash + initscripts + passwd + yum:
   Install  7 Packages (+132 Dependent packages)
   Total download size: 106 M
   Installed size: 446 M
  
  But hey, I don't need to install packages or want python!
  
  systemd+ util-linux + bash + initscripts + passwd:
  
  Install  6 Packages (+108 Dependent packages)
  Total download size: 94 M
  Installed size: 401 M
 
 Bill, thanks for that excellent report!  It shows me that even if you 
 strip away some of the conveniences, you really don't save that much 
 over our normal minimal install.  Very enlightening.

If you remove files that are also duplicated on the host (assuption:
host distro + version = guest distro + version) then you can make
things MUCH smaller :-)

$ febootstrap --names bash systemd yum
$ ll -h *
-rw-rw-r--. 1 rjones rjones 4.6M Oct 16 08:44 base.img
-rw-rw-r--. 1 rjones rjones 630K Oct 16 08:44 hostfiles

# To reconstruct the image before boot:
$ febootstrap-supermin-helper -f cpio base.img hostfiles x86_64 kernel.out 
initrd.out
$ ll -h kernel.out initrd.out 
-rw-r--r--. 1 rjones rjones 293M Oct 16 08:46 initrd.out
lrwxrwxrwx. 1 rjones rjones   33 Oct 16 08:46 kernel.out - 
/boot/vmlinuz-3.6.1-1.fc18.x86_64

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-top is 'top' for virtual machines.  Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://et.redhat.com/~rjones/virt-top
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: systemd requires HTTP server and serves QR codes

2012-10-16 Thread Peter Robinson
 Matthew Miller (mat...@fedoraproject.org) said:
  On Mon, Oct 15, 2012 at 02:19:03PM -0400, Bill Nottingham wrote:
   But hey, I don't need to install packages or want python!
   systemd+ util-linux + bash + initscripts + passwd:
   Install  6 Packages (+108 Dependent packages)
   Total download size: 94 M
   Installed size: 401 M
 
  Of which one quarter is the kernel and the other quarter is glibc
  locale support, right?

 Or more:

 122659574   kernel
 117821428   glibc-common
 35623360linux-firmware
 14233540coreutils
 13845828glibc

 I wonder... could we make linux-firmware optional?

 I would expect many virt env's don't need any firmware to work...
 (but of course I could be wrong).

It use to be optional, I know on the olpc xo-1 it use to be optional
and there should be no firmware needed for an average VM. I'd also
love to see it broken down for various profiles because most desktops
don't need enterprise storage controllers, most servers don't need
wifi and most ARM platforms don't need most of the stuff in there but
do need a few ARM only firmware packages.

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

F-18 Branched report: 20121016 changes

2012-10-16 Thread Fedora Branched Report
Compose started at Tue Oct 16 09:15:33 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
[dustmite]
dustmite-1-5.20120304gitcde46e0.fc17.x86_64 requires 
libphobos-ldc.so.59()(64bit)
[epiphany-extensions]
epiphany-extensions-3.5.0-0.2.20120914gitf4fcbfc.fc18.x86_64 requires 
epiphany(abi) = 0:3.5
[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)
[fedmsg]
fedmsg-0.5.4-4.fc18.noarch requires python-moksha-hub = 0:1.0.1
[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)
[func]
func-0.28-1.fc17.noarch requires smolt
[gcc-python-plugin]
gcc-python2-debug-plugin-0.9-5.fc18.x86_64 requires gcc = 0:4.7.2-2.fc18
gcc-python2-plugin-0.9-5.fc18.x86_64 requires gcc = 0:4.7.2-2.fc18
gcc-python3-debug-plugin-0.9-5.fc18.x86_64 requires gcc = 0:4.7.2-2.fc18
gcc-python3-plugin-0.9-5.fc18.x86_64 requires gcc = 0:4.7.2-2.fc18
[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)
[gnome-shell-theme-selene]
gnome-shell-theme-selene-3.4.0-5.fc18.noarch requires 
gnome-shell-extensions-user-theme
[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
[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)
[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 
libboost_filesystem-mt.so.1.48.0()(64bit)
libopenvrml-gl-0.18.9-3.fc18.i686 requires libboost_thread-mt.so.1.48.0
libopenvrml-gl-0.18.9-3.fc18.i686 requires libboost_system-mt.so.1.48.0
libopenvrml-gl-0.18.9-3.fc18.i686 requires 
libboost_filesystem-mt.so.1.48.0
libopenvrml-gl-0.18.9-3.fc18.x86_64 requires 
libboost_thread-mt.so.1.48.0()(64bit)
libopenvrml-gl-0.18.9-3.fc18.x86_64 requires 
libboost_system-mt.so.1.48.0()(64bit)
libopenvrml-gl-0.18.9-3.fc18.x86_64 requires 
libboost_filesystem-mt.so.1.48.0()(64bit)
openvrml-java-0.18.9-3.fc18.x86_64 requires 
libboost_thread-mt.so.1.48.0()(64bit)

modules, firmware, kernel size (was Re: systemd requires HTTP server and serves QR codes)

2012-10-16 Thread Bill Nottingham
Peter Robinson (pbrobin...@gmail.com) said: 
  I wonder... could we make linux-firmware optional?
 
  I would expect many virt env's don't need any firmware to work...
  (but of course I could be wrong).
 
 It use to be optional, I know on the olpc xo-1 it use to be optional
 and there should be no firmware needed for an average VM. I'd also
 love to see it broken down for various profiles because most desktops
 don't need enterprise storage controllers, most servers don't need
 wifi and most ARM platforms don't need most of the stuff in there but
 do need a few ARM only firmware packages.

However, if you go down that route, the kernel should be the same way,
the firmware should be separate subpackages, and requires should be done at
the module - firmware level by generating it from the MODULE_FIRMWARE tags.
(Unless you're relying on packagekit to install your firmware, which if
you're going that minimal seems to have missed the forest for the trees
somewhere.)

I wouldn't be against that, but I also don't have the time to look at that
right now.

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

Re: modules, firmware, kernel size (was Re: systemd requires HTTP server and serves QR codes)

2012-10-16 Thread Matthew Miller
On Tue, Oct 16, 2012 at 09:07:56AM -0400, Bill Nottingham wrote:
   I wonder... could we make linux-firmware optional?
 However, if you go down that route, the kernel should be the same way,
 the firmware should be separate subpackages, and requires should be done at
 the module - firmware level by generating it from the MODULE_FIRMWARE tags.
[...]
 I wouldn't be against that, but I also don't have the time to look at that
 right now.

I think this would be an excellent candidate for the Features process (and
maybe F19 or F20).
 
-- 
Matthew Miller  ☁☁☁  Fedora Cloud Architect  ☁☁☁  mat...@fedoraproject.org
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Broken dependencies: perl-OpenOffice-UNO

2012-10-16 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-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Dario Lesca
Hi, I have download the last Fedora-18-Beta-TC4 to do some tests
http://dl.fedoraproject.org/pub/alt/stage/18-Beta-TC4/Fedora/x86_64/iso/Fedora-18-Beta-TC4-x86_64-netinst.iso

How to install it on a empty disk and use LVM (or create a software
RaID)?

From the new disk manager anaconda panel I did not understand how to
create a new LVM partition and root and swap volume.

Is this features not yet supported or I have lost some HOWTO?

Many thanks

-- 
Dario Lesca - sip:da...@solinos.it
(Inviato dal mio Linux Fedora 17 Gnome3)

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

[Test-Announce] Blockerbugs 0.2 Released

2012-10-16 Thread Tim Flink
The next version of QA's blocker tracking app was pushed to production
today. New features include:
 - Blocker/NTH Fix Tracking
 - Test spin tracking
 - Interface re-design
   * With help from the design team and Máirín Duffy in particular
 - Basic stats on blocker/nth bugs
 - Lots of minor fixes

http://qa.fedoraproject.org/blockerbugs/

For testers:
 - There is always an up-to-date list (synced every 30 minutes)
   of blocker and nth fixing updates that need to be tested

For developers:
 - Since blocker and nth fixes are now being tracked like the bugs are,
   updates with blocker/nth fixes should get more attention
 - If you do have a blocker/nth fix, please mark it as such in bodhi or
   it won't be noticed by the new app.

If you notice bugs or have suggestions on how the app could be
improved, please file an issue in the qa trac:
 - https://fedorahosted.org/fedora-qa/

Thanks,

Tim


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

The GNOME 3.6.1 Megaupdate

2012-10-16 Thread Kalev Lember
If anybody wants to add builds to the GNOME 3.6.1 update, now is the
time to do it. Like usual, please use the spreadsheet:

https://docs.google.com/spreadsheet/ccc?key=0AtzJKpbiGX1zdGJzeU9waFJFZmgyQzBuN2VxU0lxbHcpli=1

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

[Test-Announce] Fedora 18 Beta Change Deadline pushed back by one week

2012-10-16 Thread Jaroslav Reznik
FESCo, in cooperation with Fedora QA and Fedora Program Manager, 
decided to push back Fedora 18 Beta Change Deadline by one week due to
unfinished/non testable functionality required for the Beta release.

For more information (and voting results) see FESCo ticket #946,
Fedora 18 Beta freeze readiness: is major functionality in place? [1].

Beta Change Deadline/Features 100% Complete is now 2012-10-23.

There are still a few unfinished features [2], please update/postpone 
(to F19) your features before reaching the deadline.  

As a result, ALL MAJOR MILESTONES, and their dependent tasks,
will be pushed out by one week [3].

Jaroslav

[1] https://fedorahosted.org/fesco/ticket/946
[2] https://fedoraproject.org/wiki/Releases/18/FeatureList
[3] https://fedoraproject.org/wiki/Releases/18/Schedule

-- 
Jaroslav Řezník jrez...@redhat.com
Your schedule wrangler
___
test-announce mailing list
test-annou...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/test-announce
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Self Introduction

2012-10-16 Thread Josef Stribny
Hi all,

my name is Josef Stříbný and I am now part of GULaG/BaseOS team at Red Hat in 
Brno. I created gem-patch plugin for RubyGems which I also tried to pack as my 
first RPM for Fedora [1]. Apart from that I enjoy programming in Ruby, I am 
passionate about Scotch and I am brewing coffee via French press. My favourite 
dance is Zouk, which I recommend to everyone.

I don't have kids, but I do have a twin brother.

Best Regards
Josef

[1] https://bugzilla.redhat.com/show_bug.cgi?id=866982
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: F17: Illuminated keyboard turns off with kernel 3.6.1 upgrade

2012-10-16 Thread Gerry Reno
Filed:

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



On 10/16/2012 03:40 AM, Vratislav Podzimek wrote:
 On Mon, 2012-10-15 at 19:48 -0400, Gerry Reno wrote:
 I just upgraded my F17 kernel to 3.6.1 and when I reboot then my Logitech 
 illuminated keyboard is not lit until I touch
 a key and then it goes right back off.

 Kind of defeats the purpose of having an illuminated keyboard.

 Anyone know why this might happen after this particular kernel upgrade?
 I have no idea, but probably the best thing to do is file a bug and
 provide as much related information as you can.



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

Re: minimal install [was Re: systemd requires HTTP server and serves QR codes]

2012-10-16 Thread Reindl Harald


Am 16.10.2012 09:19, schrieb Nicolas Mailhot:
 
 
 one may say disk storage is nothing these days
 iw ould say: mulitply it with 20, 50, 100 virtual machines
 on really expensive SAN-storage where disk space is cheap
 is not true
 
 And I would say : get an entreprisey deduping san

for production under load not really a good decision
even if, save ressources is always a good idea over
the long



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

[389-devel] please review ticket 431 - introduce the new systemd macros in spec file (F18)

2012-10-16 Thread Mark Reynolds

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

https://fedorahosted.org/389/attachment/ticket/431/0001-Ticket-431-Introduce-new-systemd-rpm-macros-in-389-d.patch

--
Mark Reynolds
Red Hat, Inc
mreyno...@redhat.com

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

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Ian Pilcher
On 10/16/2012 08:29 AM, Dario Lesca wrote:
 How to install it on a empty disk and use LVM (or create a software
 RaID)?

I don't believe it's currently possible.  Nor is it possible to use
space in existing VGs or RAID devices.

It's unclear whether F18 final is going to include this functionality
or not.

-- 

Ian Pilcher arequip...@gmail.com
Sometimes there's nothing left to do but crash and burn...or die trying.


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

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Dario Lesca
Il giorno mar, 16/10/2012 alle 10.20 -0500, Ian Pilcher ha scritto:
 It's unclear whether F18 final is going to include this functionality
 or not. 

Hopefully it is not so, You're kidding, right?

If this feature is not included then you can not update F1[0-7] on
systems that have used LVM / RAID: all my PCs and laptops.

Mi question is: Why change the interface disk partitioning? the previous
interface was perfect ... here is another thing, that worked well, was
sacrificed in honor of the news.

Thanks for reply

-- 
Dario Lesca - sip:da...@solinos.it
(Inviato dal mio Linux Fedora 17 Gnome3)

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

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Juan Orti Alcaine
On Martes, 16 de octubre de 2012 10:20:50 Ian Pilcher escribió:
 On 10/16/2012 08:29 AM, Dario Lesca wrote:
  How to install it on a empty disk and use LVM (or create a software
  RaID)?

 I don't believe it's currently possible.  Nor is it possible to use
 space in existing VGs or RAID devices.

 It's unclear whether F18 final is going to include this functionality
 or not.

I think It's totally unacceptable to lose this functionality. The new GUI
should have been pushed when it has all the features of the old GUI, we have
lost a lot of testing in alpha because people could not upgrade their existing
setups.

I just hope the support for RAID, LVM, Luks,...  to be available in the beta,
or this feature should be reverted.

signature.asc
Description: This is a digitally signed message part.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Schedule for Wednesday's FESCo Meeting (2012-10-17)

2012-10-16 Thread Miloslav Trmač
Following is the list of topics that will be discussed in the FESCo
meeting Wednesday at 17:00UTC (1:00pm EDT) in #fedora-meeting on
irc.freenode.net.

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

= Followups =

#topic #932 F18 Features - progress at Feature Freeze
.fesco 932
https://fedorahosted.org/fesco/ticket/932

#topic #946 Fedora 18 Beta freeze readiness: is major functionality in place?
.fesco 946
https://fedorahosted.org/fesco/ticket/946

#topic #950 Cleanup of the default enabled services list
.fesco 950
https://fedorahosted.org/fesco/ticket/950

= New business =

#topic #958 Exception for updating ecj across major version boundary in f17
.fesco 958
https://fedorahosted.org/fesco/ticket/958

#topic #959 Mediation needed for cobbler in EPEL
.fesco 959
https://fedorahosted.org/fesco/ticket/959

= Open Floor =

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

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

Re: The GNOME 3.6.1 Megaupdate

2012-10-16 Thread Richard Hughes
On 16 October 2012 15:11, Kalev Lember kalevlem...@gmail.com wrote:
 If anybody wants to add builds to the GNOME 3.6.1 update, now is the
 time to do it. Like usual, please use the spreadsheet:

Cheers for doing this. I'm off until next week on paternity leave, so
I really appreciate you wrangling the update.

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

Re: The GNOME 3.6.1 Megaupdate

2012-10-16 Thread Jon Ciesla
On Tue, Oct 16, 2012 at 11:08 AM, Richard Hughes hughsi...@gmail.com wrote:
 On 16 October 2012 15:11, Kalev Lember kalevlem...@gmail.com wrote:
 If anybody wants to add builds to the GNOME 3.6.1 update, now is the
 time to do it. Like usual, please use the spreadsheet:

 Cheers for doing this. I'm off until next week on paternity leave, so
 I really appreciate you wrangling the update.

Congratulations!Sqquuee!!

-J

 Richard.
 --
 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: F17: Illuminated keyboard turns off with kernel 3.6.1 upgrade

2012-10-16 Thread Stephen John Smoogen
On 15 October 2012 17:48, Gerry Reno gr...@verizon.net wrote:
 I just upgraded my F17 kernel to 3.6.1 and when I reboot then my Logitech 
 illuminated keyboard is not lit until I touch
 a key and then it goes right back off.

 Kind of defeats the purpose of having an illuminated keyboard.

 Anyone know why this might happen after this particular kernel upgrade?

What model of Logitech Illuminated Keyboard. Both my wired  Y-UY95 LIK
seems to work correctly with the 3.6.1 kernel. The keyboard stays lit
all the time.

The wireless one I have at anotehr place I can test tomorrow as it has
the capacitive reaction to light up when touched and goes out after
a bit when not.


-- 
Stephen J Smoogen.
Don't derail a useful feature for the 99% because you're not in it.
Linus Torvalds
Years ago my mother used to say to me,... Elwood, you must be oh
so smart or oh so pleasant. Well, for years I was smart. I
recommend pleasant. You may quote me.  —James Stewart as Elwood P. Dowd
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: F17: Illuminated keyboard turns off with kernel 3.6.1 upgrade

2012-10-16 Thread Gerry Reno
On 10/16/2012 12:59 PM, Stephen John Smoogen wrote:
 On 15 October 2012 17:48, Gerry Reno gr...@verizon.net wrote:
 I just upgraded my F17 kernel to 3.6.1 and when I reboot then my Logitech 
 illuminated keyboard is not lit until I touch
 a key and then it goes right back off.

 Kind of defeats the purpose of having an illuminated keyboard.

 Anyone know why this might happen after this particular kernel upgrade?
 What model of Logitech Illuminated Keyboard. Both my wired  Y-UY95 LIK
 seems to work correctly with the 3.6.1 kernel. The keyboard stays lit
 all the time.

 The wireless one I have at anotehr place I can test tomorrow as it has
 the capacitive reaction to light up when touched and goes out after
 a bit when not.



I have the wired version of the Logitech Illuminated Keyboard.

On the bottom it says LZ212BD

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

Re: minimal install [was Re: systemd requires HTTP server and serves QR codes]

2012-10-16 Thread Peter Robinson
 one may say disk storage is nothing these days
 iw ould say: mulitply it with 20, 50, 100 virtual machines
 on really expensive SAN-storage where disk space is cheap
 is not true

 And I would say : get an entreprisey deduping san

 for production under load not really a good decision
 even if, save ressources is always a good idea over
 the long

That depends. The process of actually de-duping is some what intensive
depending on the process but if you clone off a template it's not and
you get other advantages like improved use of cache and less I/O on
the disk array so it's very dependent. I generally see more
improvement than loss. But that is getting off topic as if there's
less OS it uses less space whether it's de-duped or not and that is
not a bad thing.

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

[perl-Net-Twitter/f18] 866878: Upgrade to 3.18004

2012-10-16 Thread Julian C . Dunn
Summary of changes:

  cfbf86f... 866878: Upgrade to 3.18004 (*)

(*) 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-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Casimiro de Almeida Barreto
People developing kernel, I got a blocker bug at:

Kernel: 3.6.1-1.fc17.x86_64

wpa_supplicant crashes during boot.
Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
Bug deactivates even eth0
System becomes unusable.

*Crash report follows:*

Oct 16 03:21:19 localhost kernel: [   64.574065] CPU 3
Oct 16 03:21:19 localhost kernel: [   64.574086] Pid: 1132, comm:
wpa_supplicant Tainted: P C O 3.6.1-1.fc17.x86_64 #1 SAMSUNG
ELECTRONICS CO., LTD. RF511/RF411/RF711/RF511/RF411/RF711
Oct 16 03:21:19 localhost kernel: [   64.577537] RIP:
0010:[a0579326]  [a0579326] wdev_priv.part.8+0x4/0x6
[wl]
Oct 16 03:21:19 localhost kernel: [   64.579412] RSP:
0018:8801b5a07958  EFLAGS: 00010246
Oct 16 03:21:19 localhost kernel: [   64.581244] RAX: 
RBX: 8801b21321e0 RCX: 8801b21321e0
Oct 16 03:21:19 localhost kernel: [   64.583111] RDX: 8801b21321e0
RSI: 8801b2def400 RDI: 8801b21321e0
Oct 16 03:21:19 localhost kernel: [   64.584975] RBP: 8801b5a07958
R08: 8801bfa76aa0 R09: 0028
Oct 16 03:21:19 localhost kernel: [   64.586750] R10: 0003
R11: 8801b9002a00 R12: 8801b2132000
Oct 16 03:21:19 localhost kernel: [   64.588638] R13: 8801b2def400
R14: 8801b2def400 R15: 
Oct 16 03:21:19 localhost kernel: [   64.590541] FS: 
7f5a1f629800() GS:8801bfa6() knlGS:
Oct 16 03:21:19 localhost kernel: [   64.592479] CS:  0010 DS:  ES:
 CR0: 80050033
Oct 16 03:21:19 localhost kernel: [   64.594418] CR2: 00ca6948
CR3: 0001b5a12000 CR4: 000407e0
Oct 16 03:21:19 localhost kernel: [   64.596241] DR0: 
DR1:  DR2: 
Oct 16 03:21:19 localhost kernel: [   64.598248] DR3: 
DR6: 0ff0 DR7: 0400
Oct 16 03:21:19 localhost kernel: [   64.600257] Process wpa_supplicant
(pid: 1132, threadinfo 8801b5a06000, task 8801b5a08000)
Oct 16 03:21:19 localhost kernel: [   64.602302] Stack:
Oct 16 03:21:19 localhost kernel: [   64.604146]  8801b5a079a8
a0576544 a03e5c78 a03e5c78
Oct 16 03:21:19 localhost kernel: [   64.606221]  0001
8801b5a07a28 8801b2132000 0001
Oct 16 03:21:19 localhost kernel: [   64.608303]  8801b2def400
 8801b5a07a08 a03e6005
Oct 16 03:21:19 localhost kernel: [   64.610399] Call Trace:
Oct 16 03:21:19 localhost kernel: [   64.612516]  [a0576544]
wl_cfg80211_scan+0x3f4/0x480 [wl]
Oct 16 03:21:19 localhost kernel: [   64.614662]  [a03e5c78] ?
nl80211_trigger_scan+0xf8/0x610 [cfg80211]
Oct 16 03:21:19 localhost kernel: [   64.616814]  [a03e5c78] ?
nl80211_trigger_scan+0xf8/0x610 [cfg80211]
Oct 16 03:21:19 localhost kernel: [   64.618940]  [a03e6005]
nl80211_trigger_scan+0x485/0x610 [cfg80211]
Oct 16 03:21:19 localhost kernel: [   64.621083]  [81536f70]
genl_rcv_msg+0x250/0x2d0
Oct 16 03:21:19 localhost kernel: [   64.623041]  [81536d20] ?
genl_rcv+0x40/0x40
Oct 16 03:21:19 localhost kernel: [   64.625153]  [81536891]
netlink_rcv_skb+0xa1/0xb0
Oct 16 03:21:19 localhost kernel: [   64.627230]  [81536d05]
genl_rcv+0x25/0x40
Oct 16 03:21:19 localhost kernel: [   64.629352]  [815361ed]
netlink_unicast+0x19d/0x220
Oct 16 03:21:19 localhost kernel: [   64.631467]  [81536548]
netlink_sendmsg+0x2d8/0x390
Oct 16 03:21:19 localhost kernel: [   64.633558]  [811a1910] ?
__pollwait+0xf0/0xf0
Oct 16 03:21:19 localhost kernel: [   64.635643]  [814f598c]
sock_sendmsg+0xbc/0xf0
Oct 16 03:21:19 localhost kernel: [   64.637732]  [811861db] ?
__mem_cgroup_commit_charge+0x16b/0x3a0
Oct 16 03:21:19 localhost kernel: [   64.639823]  [814f5d6c]
__sys_sendmsg+0x3ac/0x3c0
Oct 16 03:21:19 localhost kernel: [   64.641918]  [81154839] ?
handle_mm_fault+0x259/0x320
Oct 16 03:21:19 localhost kernel: [   64.644027]  [8161e17c] ?
do_page_fault+0x1bc/0x4b0
Oct 16 03:21:19 localhost kernel: [   64.646137]  [810d7a2c] ?
__audit_syscall_exit+0x3ec/0x450
Oct 16 03:21:19 localhost kernel: [   64.648247]  [814f7c09]
sys_sendmsg+0x49/0x90
Oct 16 03:21:19 localhost kernel: [   64.650359]  [816226e9]
system_call_fastpath+0x16/0x1b
Oct 16 03:21:19 localhost kernel: [   64.652470] Code: e7 e8 5f 79 ff ff
48 89 df e8 27 5e d8 e0 31 f6 4c 89 ef e8 1d 53 e4 e0 5b 41 5c 41 5d 41
5e 5d c3 55 48 89 e5 0f 0b 55 48 89 e5 0f 0b 55 48 89 e5 66 66 66 66
90 0f 0b 55 48 89 e5 66 66 66 66
Oct 16 03:21:19 localhost kernel: [   64.657317] RIP 
[a0579326] wdev_priv.part.8+0x4/0x6 [wl]
Oct 16 03:21:19 localhost kernel: [   64.659624]  RSP 8801b5a07958
Oct 16 03:21:19 localhost kernel: [   64.671161] ---[ end trace
82e7d97a9e55da4c ]---
Oct 16 03:21:19 localhost systemd[1]: wpa_supplicant.service: main
process exited, code=killed, status=11
Oct 16 03:21:19 localhost 

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread David Lehman
On Tue, 2012-10-16 at 15:29 +0200, Dario Lesca wrote:
 Hi, I have download the last Fedora-18-Beta-TC4 to do some tests
 http://dl.fedoraproject.org/pub/alt/stage/18-Beta-TC4/Fedora/x86_64/iso/Fedora-18-Beta-TC4-x86_64-netinst.iso
 
 How to install it on a empty disk and use LVM (or create a software
 RaID)?
 
 From the new disk manager anaconda panel I did not understand how to
 create a new LVM partition and root and swap volume.
 

1. Click the + button near the bottom of the screen.
2. Enter '/' for mountpoint and whatever size you want.
3. Hit Confirm or Add or whatever the dialog button is.
4. Select the new mountpoint on the left side of the
   screen.
5. Click the + on the right side of the screen to edit
   the device options.
6. Select your desired device type from the available
   options, which will include LVM.

Repeat for swap. (Hint: enter swap as the mountpoint
when adding the device initially)


Various tips:

Both the size and mountpoint entries in the Add Mountpoint dialog have
tooltips, so hover the mouse pointer on them if you are in doubt as to
how to specify these things.

If you want the device you are adding to grow to occupy as much space as
is possible, leave the size field blank when adding the device
initially. When editing a defined device, if you want to make it as
large as possible, specify a size greater than the available space. The
installer will grow the device as close to your requested size as
possible. This also works when adding a new device.

Devices are not treated as growable once they have been defined, so if
you define one device with a blank size and then try to define another
without adjusting the first one, it will probably fail due to
insufficient free space. This makes sense if you think about it, so
don't file a bug for it.

 Is this features not yet supported or I have lost some HOWTO?

There's a very brief HOWTO above. I am hoping to produce a basic
beginners' guide at some point, but time is scarce.

 
 Many thanks
 
 -- 
 Dario Lesca - sip:da...@solinos.it
 (Inviato dal mio Linux Fedora 17 Gnome3)
 


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

Re: minimal install [was Re: systemd requires HTTP server and serves QR codes]

2012-10-16 Thread Przemek Klosowski

On 10/16/2012 01:39 PM, Peter Robinson wrote:

one may say disk storage is nothing these days
iw ould say: mulitply it with 20, 50, 100 virtual machines
on really expensive SAN-storage where disk space is cheap
is not true


And I would say : get an entreprisey deduping san


for production under load not really a good decision
even if, save ressources is always a good idea over
the long


That depends. The process of actually de-duping is some what intensive
depending on the process but if you clone off a template it's not and
you get other advantages like improved use of cache and less I/O on
the disk array so it's very dependent. I generally see more
improvement than loss.


Moreover, I was under the impression that BTRFS is going to do de-duping 
internally and transparently, because it keeps block checksums anyway so 
detecting duplicate data comes cheap.


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

OCaml 4.00.1 is being uploaded (rawhide only)

2012-10-16 Thread Richard W.M. Jones

This is not a major change, but things may be broken in
Rawhide briefly ...

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
New in Fedora 11: Fedora Windows cross-compiler. Compile Windows
programs, test, and build Windows installers. Over 70 libraries supprt'd
http://fedoraproject.org/wiki/MinGW http://www.annexia.org/fedora_mingw
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Blockerbugs 0.2 Released

2012-10-16 Thread Adam Williamson
On Tue, 2012-10-16 at 07:51 -0600, Tim Flink wrote:

 For developers:
  - Since blocker and nth fixes are now being tracked like the bugs are,
updates with blocker/nth fixes should get more attention
  - If you do have a blocker/nth fix, please mark it as such in bodhi or
it won't be noticed by the new app.

Just wanted to amplify this a bit as it's very important, not just for
this webapp but for the blocker bug process in general: when you fix
blocker or NTH bugs, please ensure the update that fixes the bug is
marked as fixing it in Bodhi (when you submit an update to Bodhi,
there's a field for entering the bug #s of bugs that it fixes). We need
the Bodhi/Bugzilla integration to be sure we're tracking blocker fixes
properly. Also, if you later supersede the update before it gets pushed
stable, remember to make sure the new update is also marked as fixing
the bug. Thanks!
-- 
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

Last call for F19 naming proposals (deadline today 23:59 UTC!)

2012-10-16 Thread Christoph Wickert
Hi everybody,

this is the final reminder that the Fedora 19 naming collection ends
today at 23:59 UTC. That means you have 5 hours left to propose a name
at http://fedoraproject.org/wiki/Name_suggestions_for_Fedora_19

Before proposing a name, please read the guidelines at 
http://fedoraproject.org/wiki/Guidelines_for_release_names

Kind regards,
Christoph

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

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Adam Williamson
On Tue, 2012-10-16 at 15:29 +0200, Dario Lesca wrote:
 Hi, I have download the last Fedora-18-Beta-TC4 to do some tests
 http://dl.fedoraproject.org/pub/alt/stage/18-Beta-TC4/Fedora/x86_64/iso/Fedora-18-Beta-TC4-x86_64-netinst.iso
 
 How to install it on a empty disk and use LVM (or create a software
 RaID)?
 
 From the new disk manager anaconda panel I did not understand how to
 create a new LVM partition and root and swap volume.
 
 Is this features not yet supported or I have lost some HOWTO?

When you pick a disk and hit Continue, check the box that says something
about 'let me customize' before hitting the next Continue. That gets you
into the custom partitioning mode, which you need to use for LVM or RAID
(non-custom partitioning no longer allows LVM).
-- 
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

Re: f18: how to install into a LVM partitions (or RAID)

2012-10-16 Thread Adam Williamson
On Tue, 2012-10-16 at 13:22 -0500, David Lehman wrote:
 On Tue, 2012-10-16 at 15:29 +0200, Dario Lesca wrote:
  Hi, I have download the last Fedora-18-Beta-TC4 to do some tests
  http://dl.fedoraproject.org/pub/alt/stage/18-Beta-TC4/Fedora/x86_64/iso/Fedora-18-Beta-TC4-x86_64-netinst.iso
  
  How to install it on a empty disk and use LVM (or create a software
  RaID)?
  
  From the new disk manager anaconda panel I did not understand how to
  create a new LVM partition and root and swap volume.
  
 
 1. Click the + button near the bottom of the screen.
 2. Enter '/' for mountpoint and whatever size you want.
 3. Hit Confirm or Add or whatever the dialog button is.
 4. Select the new mountpoint on the left side of the
screen.
 5. Click the + on the right side of the screen to edit
the device options.
 6. Select your desired device type from the available
options, which will include LVM.

Note that these instructions cover *what to do when you get into custom
partitioning mode*. My other mail explained how to get into custom
partitioning.
-- 
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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Adam Williamson
On Tue, 2012-10-16 at 15:13 -0300, Casimiro de Almeida Barreto wrote:
 People developing kernel, I got a blocker bug at:
 
 Kernel: 3.6.1-1.fc17.x86_64
 wpa_supplicant crashes during boot.
 Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
 Bug deactivates even eth0
 System becomes unusable.

Please file a bug at http://bugzilla.redhat.com . Thanks.
-- 
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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Chris Murphy



On Oct 16, 2012, at 12:13 PM, Casimiro de Almeida Barreto wrote:

 People developing kernel, I got a blocker bug at:
 
 Kernel: 3.6.1-1.fc17.x86_64
 wpa_supplicant crashes during boot.
 Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
 Bug deactivates even eth0
 System becomes unusable.


Yeah I'm getting this oops as well but have had difficulty extracting any 
information from the system. I suggest you file a bug, and cc: 
bugzi...@colorremedies.com. I'll add what info I have, even if I have to take a 
photograph (egads).

I get this after rebooting from 'yum install broadcom-wl' and I recover after 
using yum erase. It's on a Core 2 Duo. EFI booting. Only with 3.6.1-1, previous 
kernels are OK.

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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Adam Williamson
On Tue, 2012-10-16 at 15:05 -0600, Chris Murphy wrote:
 
 
 
 
 On Oct 16, 2012, at 12:13 PM, Casimiro de Almeida Barreto wrote:
 
  People developing kernel, I got a blocker bug at:
  
  Kernel: 3.6.1-1.fc17.x86_64
  wpa_supplicant crashes during boot.
  Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
  Bug deactivates even eth0
  System becomes unusable.
 
 
 Yeah I'm getting this oops as well but have had difficulty extracting
 any information from the system. I suggest you file a bug, and cc:
 bugzi...@colorremedies.com. I'll add what info I have, even if I have
 to take a photograph (egads).
 
 
 I get this after rebooting from 'yum install broadcom-wl' and I
 recover after using yum erase. It's on a Core 2 Duo. EFI booting. Only
 with 3.6.1-1, previous kernels are OK.

If indeed this is related to using the Broadcom driver from Fusion and
doesn't happen unless that broadcom-wl package is installed, file the
bug in Fusion bugzilla, it's not a Fedora kernel bug.
-- 
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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Nicolas Chauvet
2012/10/16 Chris Murphy li...@colorremedies.com:
...
 wpa_supplicant crashes during boot.
 Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
 Bug deactivates even eth0
 System becomes unusable.


 Yeah I'm getting this oops as well but have had difficulty extracting any
 information from the system. I suggest you file a bug, and cc:
 bugzi...@colorremedies.com. I'll add what info I have, even if I have to
 take a photograph (egads).

 I get this after rebooting from 'yum install broadcom-wl' and I recover
 after using yum erase. It's on a Core 2 Duo. EFI booting. Only with 3.6.1-1,
 previous kernels are OK.

Are you really required to use broadcom-wl or is it a bad habit ?
Because you are not supposed to report issue on this driver here,
unless you un-install it.

thx for your understanding

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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Nicolas Chauvet
2012/10/16 Adam Williamson awill...@redhat.com:
 On Tue, 2012-10-16 at 15:05 -0600, Chris Murphy wrote:




 On Oct 16, 2012, at 12:13 PM, Casimiro de Almeida Barreto wrote:

  People developing kernel, I got a blocker bug at:
 
  Kernel: 3.6.1-1.fc17.x86_64
  wpa_supplicant crashes during boot.
  Hardware: Samsung RF-511 Intel Core i5. Broadcom WiFi.
  Bug deactivates even eth0
  System becomes unusable.


 Yeah I'm getting this oops as well but have had difficulty extracting
 any information from the system. I suggest you file a bug, and cc:
 bugzi...@colorremedies.com. I'll add what info I have, even if I have
 to take a photograph (egads).


 I get this after rebooting from 'yum install broadcom-wl' and I
 recover after using yum erase. It's on a Core 2 Duo. EFI booting. Only
 with 3.6.1-1, previous kernels are OK.

 If indeed this is related to using the Broadcom driver from Fusion and
 doesn't happen unless that broadcom-wl package is installed, file the
 bug in Fusion bugzilla, it's not a Fedora kernel bug.
Indeed, a bug was reported and an hot-fix was provided. So it should
be available as soon as the mirror sync.

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

F17: Saitek Pro Flight controls refuse to operate with kernel 3.6.1 upgrade

2012-10-16 Thread Gerry Reno
I just found another problem with the upgrade to kernel 3.6.1

My Saitek Pro Flight controls (yoke and pedals) refuse to operate now.

I can see them in dmesg but they do nothing when running FlightGear now.


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

Active Directory Integration test day coming up on Thursday, 2012-10-18

2012-10-16 Thread Jakub Hrozek
Hi,

The Fedora Test day scheduled for Thursday, October 18th is focused on
Active Directory integration, in particular the realmd project and to some
extent the Active Directory provider of the SSSD.

This test day should be of particular interest to admins who manage Linux
boxes enrolled in an Active Directory domain.

As usual, join us in #fedora-test-day on FreeNode IRC. All the test
instructions are on the wiki:
https://fedoraproject.org/wiki/Test_Day:2012-10-18_Active_Directory

See the full feature page at if you'd like to learn more about the feature:
http://fedoraproject.org/wiki/Features/ActiveDirectory

If you are interested and have the spare cycles, please join us during
this Fedora Test day and help us make sure that Fedora 18 works with Active
Directory out of the box!
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Chris Murphy

On Oct 16, 2012, at 3:29 PM, Adam Williamson wrote:
 If indeed this is related to using the Broadcom driver from Fusion and
 doesn't happen unless that broadcom-wl package is installed, file the
 bug in Fusion bugzilla, it's not a Fedora kernel bug.

Got it.

On Oct 16, 2012, at 3:29 PM, Nicolas Chauvet wrote:

 Are you really required to use broadcom-wl or is it a bad habit?

Using it is a bad habit, or reporting it here is a bad habit? I'd say neither. 
a.) I tend not to report such things here, hence not a habit; and b.) if I 
don't use it, I don't have wireless, hence does not appear to be a habit.

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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Nicolas Chauvet
2012/10/17 Chris Murphy li...@colorremedies.com:

 On Oct 16, 2012, at 3:29 PM, Adam Williamson wrote:
 If indeed this is related to using the Broadcom driver from Fusion and
 doesn't happen unless that broadcom-wl package is installed, file the
 bug in Fusion bugzilla, it's not a Fedora kernel bug.

 Got it.

 On Oct 16, 2012, at 3:29 PM, Nicolas Chauvet wrote:

 Are you really required to use broadcom-wl or is it a bad habit?

 Using it is a bad habit, or reporting it here is a bad habit? I'd say 
 neither. a.) I tend not to report such things here, hence not a habit; and 
 b.) if I don't use it, I don't have wireless, hence does not appear to be a 
 habit.

You've probably miss understood what I meat, there is a better free
driver that should be tried first.
Such as brcmsmac or even b43 with the extracted firmware if not the
free firmware:
http://ask.fedoraproject.org/question/2053/wireless-broadcom-4312

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

Re: Samsung RF-511 wpa_supplicant crashes under kernel 3.6.1-1.fc17.x86_64

2012-10-16 Thread Chris Murphy

On Oct 16, 2012, at 4:59 PM, Nicolas Chauvet wrote:
 
 You've probably miss understood what I meat, there is a better free
 driver that should be tried first.
 Such as brcmsmac or even b43 with the extracted firmware if not the
 free firmware:
 http://ask.fedoraproject.org/question/2053/wireless-broadcom-4312

b43 with the extracted firmware doesn't support 802.11N on BCM4321, and 
brcmsmac doesn't support the BCM4321 at all. But oops vs 802.11g, I guess it's 
not quite a toss up.


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

Re: Help with review

2012-10-16 Thread Brendan Jones

On 10/08/2012 08:44 AM, Gianluca Sforna wrote:

Hi, I have a package sitting in the review queue for a while:

rdkit - A toolkit for cheminformatics and machine learning
https://bugzilla.redhat.com/show_bug.cgi?id=804125

 From a packaging standpoint it's an interesting piece, with different
subpackages including a postgresql cartridge and python bindings.

However, I believe it is fairly good already, so if you can help me
getting it into Fedora I would really appreciate that, and of course
can return the favor with one or more reviews.

Thanks in advance

Gianluca



Hi Gain,

do you still need this reviewed? If so , could you please take 
https://bugzilla.redhat.com/show_bug.cgi?id=866358


thanks

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

File perl-5.14.3.tar.bz2 uploaded to lookaside cache by jplesnik

2012-10-16 Thread Jitka Plesnikova
A file has been added to the lookaside cache for perl:

0005793e734e42f62d26e16640b7490d  perl-5.14.3.tar.bz2
--
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-CaptureOutput] Specify all dependencies

2012-10-16 Thread Petr Pisar
commit bd6cf3e0b76805a4080d9b47615fcbf65d3d3500
Author: Petr Písař ppi...@redhat.com
Date:   Tue Oct 16 10:21:41 2012 +0200

Specify all dependencies

 perl-IO-CaptureOutput.spec |   18 +++---
 1 files changed, 15 insertions(+), 3 deletions(-)
---
diff --git a/perl-IO-CaptureOutput.spec b/perl-IO-CaptureOutput.spec
index 0f6c6d9..f151fb6 100644
--- a/perl-IO-CaptureOutput.spec
+++ b/perl-IO-CaptureOutput.spec
@@ -1,6 +1,6 @@
 Name:   perl-IO-CaptureOutput
 Version:1.1102
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Capture STDOUT/STDERR from subprocesses and XS/C modules
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -9,8 +9,17 @@ Source0:   
http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-%
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:  noarch
-BuildRequires:  perl(Inline), perl(Parse::RecDescent), 
perl(Test::Pod::Coverage), perl(Test::Pod)
-BuildRequires:  perl(Test::More)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+# Run-time:
+BuildRequires:  perl(Carp)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(File::Temp) = 0.16
+# Tests:
+BuildRequires:  perl(File::Spec) = 3.27
+BuildRequires:  perl(IO::File)
+BuildRequires:  perl(Test::More) = 0.62
+# Optional test:
+BuildRequires:  perl(Inline::C)
 Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo $version))
 
 %description
@@ -44,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Oct 16 2012 Petr Pisar ppi...@redhat.com - 1.1102-8
+- Specify all dependencies
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.1102-7
 - 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/f17] Update to perl 5.14.3

2012-10-16 Thread Jitka Plesnikova
commit b2fb0d34691c1944bb8a870172a4e5535ad4f6fc
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Oct 16 10:32:07 2012 +0200

Update to perl 5.14.3

 .gitignore |1 +
 ...erl-101710-Regression-with-i-latin1-chars.patch |   83 
 perl-5.14.2-digest_eval.patch  |   28 ---
 perl.spec  |   20 ++---
 sources|6 +-
 5 files changed, 10 insertions(+), 128 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4f0fc9a..fcb7765 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ filter-requires.sh
 /perl-5.14.0.tar.gz
 /perl-5.14.1.tar.gz
 /perl-5.14.2.tar.bz2
+/perl-5.14.3.tar.bz2
diff --git a/perl.spec b/perl.spec
index 9443a9d..4cddecf 100644
--- a/perl.spec
+++ b/perl.spec
@@ -1,4 +1,4 @@
-%global perl_version5.14.2
+%global perl_version5.14.3
 %global perl_epoch  4
 %global perl_arch_stem -thread-multi
 %global perl_archname %{_arch}-%{_os}%{perl_arch_stem}
@@ -24,7 +24,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:215%{?dist}
+Release:216%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -70,9 +70,6 @@ Patch7: perl-5.10.0-x86_64-io-test-failure.patch
 # switch off test, which is failing only on koji (fork)
 Patch8: perl-5.14.1-offtest.patch
 
-# Fix code injection in Digest, rhbz #743010, RT#71390, fixed in Digest-1.17.
-Patch9: perl-5.14.2-digest_eval.patch
-
 # Change Perl_repeatcpy() prototype to allow repeat count above 2^31
 # rhbz #720610, Perl RT#94560, accepted as v5.15.4-24-g26e1303.
 Patch10:perl-5.14.2-large-repeat-heap-abuse.patch
@@ -104,9 +101,6 @@ Patch17:
perl-5.14.2-RT-113730-should-be-cleared-on-do-IO-error.patch
 # Do not truncate syscall() return value to 32 bits, rhbz#838551, RT#113980
 Patch18:
perl-5.16.1-perl-113980-pp_syscall-I32-retval-truncates-the-retu.patch
 
-# Match starting byte in non-UTF-8 mode, rhbz#801739, RT#101710
-Patch19:
perl-5.14.2-PATCH-perl-101710-Regression-with-i-latin1-chars.patch
-
 # Free hash entries before values on delete, rhbz#771303, RT#100340
 Patch20:
perl-5.14.2-perl-100340-Free-hash-entries-before-values-on-delet.patch
 
@@ -128,6 +122,7 @@ BuildRequires:  procps, rsyslog
 # The long line of Perl provides.
 
 # Compat provides
+Provides: perl(:MODULE_COMPAT_5.14.3)
 Provides: perl(:MODULE_COMPAT_5.14.2)
 Provides: perl(:MODULE_COMPAT_5.14.1)
 Provides: perl(:MODULE_COMPAT_5.14.0)
@@ -1273,7 +1268,6 @@ tarball from perl.org.
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
-%patch9 -p1
 %patch10 -p1
 %patch11 -p1
 %patch12 -p1
@@ -1283,7 +1277,6 @@ tarball from perl.org.
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
-%patch19 -p1
 %patch20 -p1
 %patch21 -p1
 
@@ -1484,7 +1477,6 @@ pushd %{build_archlib}/CORE/
 'Fedora Patch5: USE_MM_LD_RUN_PATH' \
 'Fedora Patch6: Skip hostname tests, due to builders not being network 
capable' \
 'Fedora Patch7: Dont run one io test due to random builder failures' \
-'Fedora Patch9: Fix code injection in Digest-new()' \
 'Fedora Patch10: Change Perl_repeatcpy() to allow count above 2^31' \
 'Fedora Patch11: Fix leak with non-matching named captures' \
 'Fedora Patch12: Fix interrupted reading' \
@@ -1494,7 +1486,6 @@ pushd %{build_archlib}/CORE/
 'Fedora Patch16: Fix find2perl to translate ? glob properly (RT#113054)' \
 'Fedora Patch17: Clear $@ before do I/O error (RT#113730)' \
 'Fedora Patch18: Do not truncate syscall() return value to 32 bits 
(RT#113980)' \
-'Fedora Patch19: Match starting byte in non-UTF-8 mode (RT#101710)' \
 'Fedora Patch20: Free hash entries before values on delete (RT#100340)' \
 'Fedora Patch21: Override the Pod::Simple::parse_file (CPANRT#77530)' \
 %{nil}
@@ -2448,6 +2439,11 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Mon Oct 15 2012 Jitka Plesnikova jples...@redhat.com - 4:5.14.3-216
+- 5.14.3 bump (see
+  https://metacpan.org/module/DOM/perl-5.14.3/pod/perldelta.pod for release
+  notes).
+
 * Fri Sep 14 2012 Petr Pisar ppi...@redhat.com - 4:5.14.2-215
 - Override the Pod::Simple::parse_file to set output to STDOUT by default
   (bug #826872)
diff --git a/sources b/sources
index 8811357..77782a3 100644
--- a/sources
+++ b/sources
@@ -1,5 +1 @@
-aceea3db13a159cd5f7e5f2e3ad9534f  perl-5.8.0-libdir64.patch
-ad5d07285d6e4914384b43c9abc2bdba  filter-requires.sh
-1737a36154bb5bca781296794afc6791  perl.stp
-df28fe2c574e8807d0a803308c545dca  perl-example.stp
-04a4c5d3c1f9f19d77daff8e8cd19a26  perl-5.14.2.tar.bz2
+0005793e734e42f62d26e16640b7490d  perl-5.14.3.tar.bz2
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl

[Bug 866878] New: perl-Net-Twitter-3.18004 is available

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

Bug ID: 866878
  Keywords: FutureFeature, Triaged
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
   Version: rawhide
  Priority: unspecified
CC: jd...@aquezada.com, perl-devel@lists.fedoraproject.org
  Assignee: jd...@aquezada.com
   Summary: perl-Net-Twitter-3.18004 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-Net-Twitter
   Product: Fedora

Latest upstream release: 3.18004
Current version in Fedora Rawhide: 3.18003
URL: http://search.cpan.org/dist/Net-Twitter/

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/f17] update sources

2012-10-16 Thread Jitka Plesnikova
commit 14537f2ec03dba6b758af95967a0b187421b397e
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Oct 16 10:58:56 2012 +0200

update sources

 sources |4 
 1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/sources b/sources
index 77782a3..20fee49 100644
--- a/sources
+++ b/sources
@@ -1 +1,5 @@
+aceea3db13a159cd5f7e5f2e3ad9534f  perl-5.8.0-libdir64.patch
+ad5d07285d6e4914384b43c9abc2bdba  filter-requires.sh
+1737a36154bb5bca781296794afc6791  perl.stp
+df28fe2c574e8807d0a803308c545dca  perl-example.stp
 0005793e734e42f62d26e16640b7490d  perl-5.14.3.tar.bz2
--
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/f18] Revert the patch. It breaks backward compatibility for some apps. The xpath has still man page insta

2012-10-16 Thread Marcela Mašláňová
commit 9827575ee31c584cc720b8cbf25826373dc4d5c3
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Tue Oct 16 11:21:24 2012 +0200

Revert the patch. It breaks backward compatibility for some apps. The xpath 
has still man page installed.

 perl-XML-XPath.spec |   13 ++---
 1 files changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/perl-XML-XPath.spec b/perl-XML-XPath.spec
index 6ed7730..07e794d 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
 
@@ -9,7 +9,6 @@ License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/XML-XPath/
 Source0:http://www.cpan.org/authors/id/M/MS/MSERGEANT/XML-XPath-1.13.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Patch0: xpath.man.patch
 
 BuildArch:  noarch
 BuildRequires:  perl(XML::Parser)
@@ -25,7 +24,6 @@ this as they support functionality beyond XPath.
 
 %prep
 %setup -q -n XML-XPath-%{version}
-%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -39,6 +37,11 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} 
';'
 find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
+mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/
+cat  $RPM_BUILD_ROOT/%{_mandir}/man1/xpath.1  EOF
+.so man3/XML::XPath.3pm
+EOF
+
 %check
 make test
 
@@ -57,6 +60,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Oct 16 2012 Marcela Mašláňová mmasl...@redhat.com - 1.13-20
+- revert the patch. It breaks backward compatibility for some apps. 
+- the xpath has still man page installed.
+
 * 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-XML-XPath] Revert the patch. It breaks backward compatibility for some apps. The xpath has still man page insta

2012-10-16 Thread Marcela Mašláňová
commit 7068ae13e177239a8e1ccb6913467c87e6784f17
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Tue Oct 16 11:21:24 2012 +0200

Revert the patch. It breaks backward compatibility for some apps. The xpath 
has still man page installed.

 perl-XML-XPath.spec |   15 +++
 1 files changed, 11 insertions(+), 4 deletions(-)
---
diff --git a/perl-XML-XPath.spec b/perl-XML-XPath.spec
index 399e16f..267e118 100644
--- a/perl-XML-XPath.spec
+++ b/perl-XML-XPath.spec
@@ -1,6 +1,6 @@
 Name:   perl-XML-XPath
 Version:1.13
-Release:20%{?dist}
+Release:21%{?dist}
 
 Summary:XPath parser and evaluator for Perl
 
@@ -9,7 +9,6 @@ License:GPL+ or Artistic
 URL:http://search.cpan.org/dist/XML-XPath/
 Source0:http://www.cpan.org/authors/id/M/MS/MSERGEANT/XML-XPath-1.13.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Patch0: xpath.man.patch
 
 BuildArch:  noarch
 BuildRequires:  perl(Carp)
@@ -29,7 +28,6 @@ this as they support functionality beyond XPath.
 
 %prep
 %setup -q -n XML-XPath-%{version}
-%patch0 -p1
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -43,6 +41,11 @@ find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} 
';'
 find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2/dev/null ';'
 chmod -R u+w $RPM_BUILD_ROOT/*
 
+mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1/
+cat  $RPM_BUILD_ROOT/%{_mandir}/man1/xpath.1  EOF
+.so man3/XML::XPath.3pm
+EOF
+
 %check
 make test
 
@@ -61,8 +64,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Tue Oct 16 2012 Marcela Mašláňová mmasl...@redhat.com - 1.13-21
+- revert the patch. It breaks backward compatibility for some apps. 
+- the xpath has still man page installed.
+
 * Fri Aug 24 2012 Jitka Plesnikova jples...@redhat.com - 1.13-20
-- Specify all dependencies. 
+- 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/f16] Update to perl 5.14.3

2012-10-16 Thread Jitka Plesnikova
commit 1e30796349349d6e733d0ec53af86e982db40d2e
Author: Jitka Plesnikova jples...@redhat.com
Date:   Tue Oct 16 13:59:32 2012 +0200

Update to perl 5.14.3

 .gitignore |1 +
 ...erl-101710-Regression-with-i-latin1-chars.patch |   83 
 perl-5.14.2-digest_eval.patch  |   28 ---
 perl.spec  |   20 ++---
 sources|2 +-
 5 files changed, 10 insertions(+), 124 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 4f0fc9a..fcb7765 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,4 @@ filter-requires.sh
 /perl-5.14.0.tar.gz
 /perl-5.14.1.tar.gz
 /perl-5.14.2.tar.bz2
+/perl-5.14.3.tar.bz2
diff --git a/perl.spec b/perl.spec
index f2d9af5..cd7fc76 100644
--- a/perl.spec
+++ b/perl.spec
@@ -1,4 +1,4 @@
-%global perl_version5.14.2
+%global perl_version5.14.3
 %global perl_epoch  4
 %global perl_arch_stem -thread-multi
 %global perl_archname %{_arch}-%{_os}%{perl_arch_stem}
@@ -22,7 +22,7 @@
 Name:   perl
 Version:%{perl_version}
 # release number must be even higher, because dual-lived modules will be 
broken otherwise
-Release:201%{?dist}
+Release:202%{?dist}
 Epoch:  %{perl_epoch}
 Summary:Practical Extraction and Report Language
 Group:  Development/Languages
@@ -68,9 +68,6 @@ Patch7: perl-5.10.0-x86_64-io-test-failure.patch
 # switch off test, which is failing only on koji (fork)
 Patch8: perl-5.14.1-offtest.patch
 
-# Fix code injection in Digest, rhbz #743010, RT#71390, fixed in Digest-1.17.
-Patch9: perl-5.14.2-digest_eval.patch
-
 # Change Perl_repeatcpy() prototype to allow repeat count above 2^31
 # rhbz #720610, Perl RT#94560, accepted as v5.15.4-24-g26e1303.
 Patch10:perl-5.14.2-large-repeat-heap-abuse.patch
@@ -102,9 +99,6 @@ Patch17:
perl-5.14.2-RT-113730-should-be-cleared-on-do-IO-error.patch
 # Do not truncate syscall() return value to 32 bits, rhbz#838551, RT#113980
 Patch18:
perl-5.16.1-perl-113980-pp_syscall-I32-retval-truncates-the-retu.patch
 
-# Match starting byte in non-UTF-8 mode, rhbz#801739, RT#101710
-Patch19:
perl-5.14.2-PATCH-perl-101710-Regression-with-i-latin1-chars.patch
-
 # Free hash entries before values on delete, rhbz#771303, RT#100340
 Patch20:
perl-5.14.2-perl-100340-Free-hash-entries-before-values-on-delet.patch
 
@@ -122,6 +116,7 @@ BuildRequires:  procps, rsyslog
 # The long line of Perl provides.
 
 # Compat provides
+Provides: perl(:MODULE_COMPAT_5.14.3)
 Provides: perl(:MODULE_COMPAT_5.14.2)
 Provides: perl(:MODULE_COMPAT_5.14.1)
 Provides: perl(:MODULE_COMPAT_5.14.0)
@@ -1152,7 +1147,6 @@ tarball from perl.org.
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
-%patch9 -p1
 %patch10 -p1
 %patch11 -p1
 %patch12 -p1
@@ -1162,7 +1156,6 @@ tarball from perl.org.
 %patch16 -p1
 %patch17 -p1
 %patch18 -p1
-%patch19 -p1
 %patch20 -p1
 %patch21 -p1
 
@@ -1354,7 +1347,6 @@ pushd %{build_archlib}/CORE/
 'Fedora Patch5: USE_MM_LD_RUN_PATH' \
 'Fedora Patch6: Skip hostname tests, due to builders not being network 
capable' \
 'Fedora Patch7: Dont run one io test due to random builder failures' \
-'Fedora Patch9: Fix code injection in Digest-new()' \
 'Fedora Patch10: Change Perl_repeatcpy() to allow count above 2^31' \
 'Fedora Patch11: Fix leak with non-matching named captures' \
 'Fedora Patch12: Fix interrupted reading' \
@@ -1364,7 +1356,6 @@ pushd %{build_archlib}/CORE/
 'Fedora Patch16: Fix find2perl to translate ? glob properly (RT#113054)' \
 'Fedora Patch17: Clear $@ before do I/O error (RT#113730)' \
 'Fedora Patch18: Do not truncate syscall() return value to 32 bits 
(RT#113980)' \
-'Fedora Patch19: Match starting byte in non-UTF-8 mode (RT#101710)' \
 'Fedora Patch20: Free hash entries before values on delete (RT#100340)' \
 'Fedora Patch21: Override the Pod::Simple::parse_file (CPANRT#77530)' \
 %{nil}
@@ -2256,6 +2247,11 @@ sed \
 
 # Old changelog entries are preserved in CVS.
 %changelog
+* Tue Oct 16 2012 Jitka Plesnikova jples...@redhat.com - 4:5.14.3-202
+- 5.14.3 bump (see
+  https://metacpan.org/module/DOM/perl-5.14.3/pod/perldelta.pod for release
+  notes).
+
 * Fri Sep 14 2012 Petr Pisar ppi...@redhat.com - 4:5.14.2-201
 - Override the Pod::Simple::parse_file to set output to STDOUT by default
   (bug #826872)
diff --git a/sources b/sources
index 8811357..20fee49 100644
--- a/sources
+++ b/sources
@@ -2,4 +2,4 @@ aceea3db13a159cd5f7e5f2e3ad9534f  perl-5.8.0-libdir64.patch
 ad5d07285d6e4914384b43c9abc2bdba  filter-requires.sh
 1737a36154bb5bca781296794afc6791  perl.stp
 df28fe2c574e8807d0a803308c545dca  perl-example.stp
-04a4c5d3c1f9f19d77daff8e8cd19a26  perl-5.14.2.tar.bz2
+0005793e734e42f62d26e16640b7490d  perl-5.14.3.tar.bz2
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl

Broken dependencies: perl-OpenOffice-UNO

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

File ctstream-6 uploaded to lookaside cache by ppisar

2012-10-16 Thread Petr Pisar
A file has been added to the lookaside cache for ctstream:

34fee13ed76301d5c0c8098df6a1a2ea  ctstream-6
--
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

[ctstream] Import

2012-10-16 Thread Petr Pisar
commit 9c6e84095dd7b379d74aaf8bac23cfbe6b646497
Author: Petr Písař ppi...@redhat.com
Date:   Tue Oct 16 16:22:33 2012 +0200

Import

 .gitignore|1 +
 ctstream.spec |   24 
 sources   |1 +
 3 files changed, 26 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..d23d77c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/ctstream-6
diff --git a/ctstream.spec b/ctstream.spec
new file mode 100644
index 000..362d651
--- /dev/null
+++ b/ctstream.spec
@@ -0,0 +1,24 @@
+Name:   ctstream
+Version:6
+Release:1%{?dist}
+Summary:Get URLs of Czech Television video streams
+Group:  Applications/Internet
+License:GPL+
+URL:http://xpisar.wz.cz/%{name}/
+Source0:%{url}%{name}-%{version}
+BuildArch:  noarch
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%description
+Get locators of Czech Television video streams for given web page.
+
+%install
+install -d %{buildroot}%{_bindir}
+install %{SOURCE0} %{buildroot}%{_bindir}/%{name}
+
+%files
+%{_bindir}/*
+
+%changelog
+* Fri Oct 12 2012 Petr Pisar ppi...@redhat.com - 6-1
+- Initial spec file
diff --git a/sources b/sources
index e69de29..c41c8eb 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+34fee13ed76301d5c0c8098df6a1a2ea  ctstream-6
--
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

[ctstream] Add empty %%build section for hooks

2012-10-16 Thread Petr Pisar
commit d39d339973bcdc284978b8ee3803e0d87b3477f1
Author: Petr Písař ppi...@redhat.com
Date:   Tue Oct 16 16:23:57 2012 +0200

Add empty %%build section for hooks

 ctstream.spec |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)
---
diff --git a/ctstream.spec b/ctstream.spec
index 362d651..c25bba6 100644
--- a/ctstream.spec
+++ b/ctstream.spec
@@ -1,6 +1,6 @@
 Name:   ctstream
 Version:6
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Get URLs of Czech Television video streams
 Group:  Applications/Internet
 License:GPL+
@@ -12,6 +12,9 @@ Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} 
-V:version`; echo $version))
 %description
 Get locators of Czech Television video streams for given web page.
 
+%build
+# Empty %%build section for possible RPM hooks
+
 %install
 install -d %{buildroot}%{_bindir}
 install %{SOURCE0} %{buildroot}%{_bindir}/%{name}
@@ -20,5 +23,8 @@ install %{SOURCE0} %{buildroot}%{_bindir}/%{name}
 %{_bindir}/*
 
 %changelog
+* Tue Oct 16 2012 Petr Pisar ppi...@redhat.com - 6-2
+- Add empty %%build section for hooks
+
 * Fri Oct 12 2012 Petr Pisar ppi...@redhat.com - 6-1
 - Initial spec file
--
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

[ctstream/f18] (2 commits) ...Add empty %%build section for hooks

2012-10-16 Thread Petr Pisar
Summary of changes:

  9c6e840... Import (*)
  d39d339... Add empty %%build section for hooks (*)

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

[ctstream/f17] (2 commits) ...Add empty %%build section for hooks

2012-10-16 Thread Petr Pisar
Summary of changes:

  9c6e840... Import (*)
  d39d339... Add empty %%build section for hooks (*)

(*) 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-HTML-Tree] Do not build-require Test::LeakTrace on RHEL = 7

2012-10-16 Thread Petr Pisar
commit d50bbd5f8c6f26d2cc0e5523054140037dab5692
Author: Petr Písař ppi...@redhat.com
Date:   Tue Oct 16 17:28:27 2012 +0200

Do not build-require Test::LeakTrace on RHEL = 7

 perl-HTML-Tree.spec |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-Tree.spec b/perl-HTML-Tree.spec
index bfb3db6..7e1f838 100644
--- a/perl-HTML-Tree.spec
+++ b/perl-HTML-Tree.spec
@@ -1,7 +1,7 @@
 Name:   perl-HTML-Tree
 Epoch:  1
 Version:5.02
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:HTML tree handling modules for Perl
 Group:  Development/Libraries
 License:GPL+ or Artistic
@@ -19,9 +19,11 @@ BuildRequires:  perl(Test::Fatal)
 %if !%{defined perl_bootstrap}
 # HTML::FormatText (perl-HTML-Format) has BR: perl(HTML::TreeBuilder) from 
this package
 BuildRequires:  perl(HTML::FormatText)
+%if ! (0%{?rhel} = 7)
 # perl-Test-LeakTrace - perl-Test-Valgrind - perl-XML-Twig - perl-HTML-Tree
 BuildRequires:  perl(Test::LeakTrace)
 %endif
+%endif
 Requires:   perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:   perl(HTML::Parser) = 3.46
 Requires:   perl(HTML::Tagset) = 3.02
@@ -54,6 +56,9 @@ perl Build.PL installdirs=vendor
 %{_mandir}/man3/HTML::*3*
 
 %changelog
+* Tue Oct 16 2012 Petr Pisar ppi...@redhat.com - 1:5.02-6
+- Do not build-require Test::LeakTrace on RHEL = 7
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1:5.02-5
 - 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 867046] New: [abrt] perl-Padre-0.90-2.fc17: Process /usr/bin/perl was killed by signal 11 (SIGSEGV)

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

Bug ID: 867046
QA Contact: extras...@fedoraproject.org
  Severity: unspecified
Whiteboard: abrt_hash:fd9c34069ebd24a37b682e7ff1cc9755abce50ba
   Version: 17
  Priority: unspecified
CC: mmasl...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Assignee: mmasl...@redhat.com
   Summary: [abrt] perl-Padre-0.90-2.fc17: Process /usr/bin/perl
was killed by signal 11 (SIGSEGV)
Regression: ---
  Story Points: ---
Classification: Fedora
OS: Unspecified
  Reporter: steinach2...@gmail.com
  Type: ---
 Documentation: ---
  Hardware: i686
Mount Type: ---
Status: NEW
 Component: perl-Padre
   Product: Fedora

Version-Release number of selected component:
perl-Padre-0.90-2.fc17

Additional info:
libreport version: 2.0.14
abrt_version:   2.0.13
backtrace_rating: 4
cmdline:/usr/bin/perl /usr/bin/padre
kernel: 3.6.1-1.fc17.i686.PAE

truncated backtrace:
:Thread no. 1 (10 frames)
: #0 ??
: #1 wxTimerBase::Notify at src/common/timercmn.cpp:57
: #2 wxPliTimer::Notify at cpp/timer.h:38
: #3 timeout_callback at src/gtk/timer.cpp:45
: #8 g_main_context_iteration at gmain.c:3207
: #9 gtk_main_iteration at gtkmain.c:1345
: #10 wxWindow::DoPopupMenu at src/gtk/menu.cpp:1730
: #11 PopupMenu at ../../../include/wx/window.h:926
: #12 Menu::Show at ./PlatWX.cpp:1360
: #13 ScintillaBase::ContextMenu at scintilla/src/ScintillaBase.cxx:420

-- 
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-Net-Twitter] 866878: Upgrade to 3.18004

2012-10-16 Thread Julian C . Dunn
commit cfbf86f2cfb56d6bbcc0d6d5b550d283acf22301
Author: Julian C. Dunn jd...@aquezada.com
Date:   Tue Oct 16 12:25:56 2012 -0400

866878: Upgrade to 3.18004

 Net-Twitter-3.18004.tar.gz |  Bin 0 - 133273 bytes
 perl-Net-Twitter.spec  |8 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/Net-Twitter-3.18004.tar.gz b/Net-Twitter-3.18004.tar.gz
new file mode 100644
index 000..d745e55
Binary files /dev/null and b/Net-Twitter-3.18004.tar.gz differ
diff --git a/perl-Net-Twitter.spec b/perl-Net-Twitter.spec
index 5a5ea33..03af681 100644
--- a/perl-Net-Twitter.spec
+++ b/perl-Net-Twitter.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-Twitter
-Version:3.18003
-Release:3%{?dist}
+Version:3.18004
+Release:1%{?dist}
 Summary:Perl interface to the Twitter API
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -10,6 +10,7 @@ BuildArch:  noarch
 BuildRequires:  perl(base)
 BuildRequires:  perl(lib)
 BuildRequires:  perl(Carp)
+BuildRequires:  perl(CPAN)
 BuildRequires:  perl(Crypt::SSLeay) = 0.5
 BuildRequires:  perl(Data::Visitor::Callback)
 BuildRequires:  perl(DateTime) = 0.51
@@ -78,6 +79,9 @@ env TEST_POD=1 make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Oct 16 2012 Julian C. Dunn jd...@aquezada.com - 3.18004-1
+- Upgrade to 3.18004 (bz#866878)
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 3.18003-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-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Net-Twitter/f17] (3 commits) ...866878: Upgrade to 3.18004

2012-10-16 Thread Julian C . Dunn
Summary of changes:

  2866078... Perl 5.16 rebuild (*)
  f387f1b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  cfbf86f... 866878: Upgrade to 3.18004 (*)

(*) 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-Net-Twitter/f16] (3 commits) ...866878: Upgrade to 3.18004

2012-10-16 Thread Julian C . Dunn
Summary of changes:

  2866078... Perl 5.16 rebuild (*)
  f387f1b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  cfbf86f... 866878: Upgrade to 3.18004 (*)

(*) 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 866878] perl-Net-Twitter-3.18004 is available

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

--- Comment #1 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-Twitter-3.18004-1.fc16 has been submitted as an update for Fedora 16.
https://admin.fedoraproject.org/updates/perl-Net-Twitter-3.18004-1.fc16

-- 
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 866878] perl-Net-Twitter-3.18004 is available

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

--- Comment #2 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-Twitter-3.18004-1.fc17 has been submitted as an update for Fedora 17.
https://admin.fedoraproject.org/updates/perl-Net-Twitter-3.18004-1.fc17

-- 
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 866878] perl-Net-Twitter-3.18004 is available

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

--- Comment #3 from Fedora Update System upda...@fedoraproject.org ---
perl-Net-Twitter-3.18004-1.fc18 has been submitted as an update for Fedora 18.
https://admin.fedoraproject.org/updates/perl-Net-Twitter-3.18004-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

File ZeroMQ-0.23.tar.gz uploaded to lookaside cache by jpo

2012-10-16 Thread Jose Pedro Oliveira
A file has been added to the lookaside cache for perl-ZeroMQ:

d03ec8e4e1f6147b108322c7e9d97a88  ZeroMQ-0.23.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-ZeroMQ] * Update to 0.23.

2012-10-16 Thread Jose Pedro Oliveira
commit 2c22bd4c5dede93dce132ae02f081c34e3710c78
Author: Jose Pedro Oliveira j...@di.uminho.pt
Date:   Wed Oct 17 02:33:59 2012 +0100

 * Update to 0.23.

 .gitignore   |1 +
 perl-ZeroMQ.spec |8 ++--
 sources  |2 +-
 3 files changed, 8 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 9c793cc..7a8b897 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /ZeroMQ-0.19.tar.gz
 /ZeroMQ-0.20.tar.gz
 /ZeroMQ-0.21.tar.gz
+/ZeroMQ-0.23.tar.gz
diff --git a/perl-ZeroMQ.spec b/perl-ZeroMQ.spec
index 50c1b1c..5df62f9 100644
--- a/perl-ZeroMQ.spec
+++ b/perl-ZeroMQ.spec
@@ -1,6 +1,6 @@
 Name:   perl-ZeroMQ
-Version:0.21
-Release:3%{?dist}
+Version:0.23
+Release:1%{?dist}
 Summary:ZeroMQ2 wrapper for Perl
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -61,6 +61,10 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Oct 17 2012 Jose Pedro Oliveira jpo at di.uminho.pt - 0.23-1
+- Update to 0.23 (this module is deprecated in favor of ZMQ::LibZMQ2,
+  ZMQ::LibZMQ3, and ZMQ).
+
 * Fri Jul 20 2012 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.21-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
 
diff --git a/sources b/sources
index 5798a3f..dfcbe4c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-05bc6bf6fca7c5eefebad428ffefda8e  ZeroMQ-0.21.tar.gz
+d03ec8e4e1f6147b108322c7e9d97a88  ZeroMQ-0.23.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-ZeroMQ/f18] * Update to 0.23.

2012-10-16 Thread Jose Pedro Oliveira
Summary of changes:

  2c22bd4...  * Update to 0.23. (*)

(*) 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-ZeroMQ/f17] (3 commits) ... * Update to 0.23.

2012-10-16 Thread Jose Pedro Oliveira
Summary of changes:

  6627d19... Perl 5.16 rebuild (*)
  672dd5a... - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass (*)
  2c22bd4...  * Update to 0.23. (*)

(*) 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 866878] perl-Net-Twitter-3.18004 is available

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

--- Comment #4 from Fedora Update System upda...@fedoraproject.org ---
Package perl-Net-Twitter-3.18004-1.fc18:
* should fix your issue,
* was pushed to the Fedora 18 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing
perl-Net-Twitter-3.18004-1.fc18'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2012-16289/perl-Net-Twitter-3.18004-1.fc18
then log in and leave karma (feedback).

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

Fedora 18 Beta Change Deadline pushed back by one week

2012-10-16 Thread Jaroslav Reznik
FESCo, in cooperation with Fedora QA and Fedora Program Manager, 
decided to push back Fedora 18 Beta Change Deadline by one week due to
unfinished/non testable functionality required for the Beta release.

For more information (and voting results) see FESCo ticket #946,
Fedora 18 Beta freeze readiness: is major functionality in place? [1].

Beta Change Deadline/Features 100% Complete is now 2012-10-23.

There are still a few unfinished features [2], please update/postpone 
(to F19) your features before reaching the deadline.  

As a result, ALL MAJOR MILESTONES, and their dependent tasks,
will be pushed out by one week [3].

Jaroslav

[1] https://fedorahosted.org/fesco/ticket/946
[2] https://fedoraproject.org/wiki/Releases/18/FeatureList
[3] https://fedoraproject.org/wiki/Releases/18/Schedule

-- 
Jaroslav Řezník jrez...@redhat.com
Your schedule wrangler
___
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce

Last call for F19 naming proposals (deadline today 23:59 UTC!)

2012-10-16 Thread Christoph Wickert
Hi everybody,

this is the final reminder that the Fedora 19 naming collection ends
today at 23:59 UTC. That means you have 5 hours left to propose a name
at http://fedoraproject.org/wiki/Name_suggestions_for_Fedora_19

Before proposing a name, please read the guidelines at 
http://fedoraproject.org/wiki/Guidelines_for_release_names

Kind regards,
Christoph

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