Re: Trusted Boot in Fedora

2011-06-29 Thread Adam Williamson
On Tue, 2011-06-28 at 10:01 -0400, Adam Jackson wrote:
 On Tue, 2011-06-28 at 09:59 +0200, Nicolas Mailhot wrote:
  
  Le Lun 27 juin 2011 15:12, Miloslav Trmač a écrit :
  
   Placing trust in the manufacturer of the hardware puts the user in no
   worse position than they were before.
  
  I don't call placing absolute vetting power in bios writer hands no worse
  position. I don't thing anyone can point to a good bios on real world
  hardware.
 
 I appreciate the disdain - no, really, trust me, I do - but you should
 realize that SMM means you already may have no control over the machine.

Well, the fact that BIOSes aren't open source means that anyway. As far
as we the users are concerned, the BIOS is black box code which runs
with the ultimate in administrative privileges. It could be doing
_anything_ back there. SMM is a fairly standardized example of this,
sure, but there's no way we can really be sure our BIOS isn't doing a
zillion other 'bad things'. The point where you tip over into excessive
paranoia is a bit hard to discern when you start going down this road,
though...
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net

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

Fedora 15 ARM hardfp Virtual FAD (Fedora Activity Day) - FRIDAY

2011-06-29 Thread Jon Masters
Hi Folks,

Join us on Friday to celebrate July with another in our series of VFADs!
This is an awesome opportunity to participate in improving support for
ARM processors, and to learn about architecture bootstrap. Last week, we
successfully added a number of new packages to our bootstrap filesystem
image and got closer to having a working F15 environment we can use to
build official RPMs with hard floating point, on ARMv7 systems.

It's never too soon or too late to help, and you can participate at any
time, by following the instructions linked below - no need to wait for
us, just let us know when you've got bits we can pull into the official
rootfs (which is managed in git) we are building to bootstrap the rest.

Don't forget that you can find out a lot more about the Fedora ARM
project, and about getting involved by visiting the wiki:

http://fedoraproject.org/wiki/Architectures/ARM

Which also contains links to canned images you can use to drop onto your
own ARM system and hit the ground running without any installation time.

Awesomeness!

Jon.

--- Fedora ARM hardfp activity days ---

We are hosting another Fedora 15 hardfp Virtual Fedora Activity Day on
Friday, at 14:00UTC (10:00 Eastern Daylight Time). The purpose of this
session is to co-ordinate the bootstrap of F15 hardfp (hardware floating
point). Going forward, the proposal is that these be on Fridays.

You can find a lot more detail here, along with all the pre-reqs/bits:

https://fedoraproject.org/wiki/Architectures/ARM/Fedora15_HardFP_Bootstrap_Virtual_FAD_20110701

That page contains links to the general instructions on:

https://fedoraproject.org/wiki/Architectures/ARM/Fedora15_HardFP_Bootstrap

Be sure you follow the instructions to use an armv7hl-YOUR_FAS_USERNAME
or group name branch so that we can track who is doing what, and more
easily back out changes if you/we discover a problem with your setup.


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


Re: Fedora 15 ARM hardfp Virtual FAD (Fedora Activity Day) - FRIDAY

2011-06-29 Thread Jon Masters
On Wed, 2011-06-29 at 09:14 +0200, Nikola Pajkovsky wrote:

 Refreshing news! What is pain in the ass is rhel6, because it doesn't
 have qemu-system-arm. I will play around with rhel6 and qemu-system-arm.
 Then I will try to build my packages for arm (if already aren't in). Is
 there a list of built packages?

If you are internal, ping me and I can make available access to a couple
of PandaBoards to save building up emulation bits (should be available
ahead of Friday but not available yet). We're trying to do this
natively, though I've nothing against using qemu if you'd like :)

Jon.


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


About package review and mismatching md5sums

2011-06-29 Thread P J P
   Hi! :)


One of the package review guideline says

===
MUST: The sources used to build the package must match the 
upstream source, as provided in the spec URL. Reviewers should use 
md5sum for this task.
===


Past couple of days, I've been reviewing the python grapefruit package 


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

and the thing is, the spec file provides an - $ svn export -r 31 ... - command 
to pull the sources and create a tarball using $ tar -czvf ...

But as it turns out, it seems, if you create a tarball from the *very same* 
sources on two different machines, they don't match. As in the md5sum for the 
two tarball differs.

Please try this simple test

=

$ echo 'Hello, world'  1
$ tar -cjf 1.tar.bz2 1

$ scp 1.tar.bz2 to a different machine.

$ ssh to that same machine
$ tar -xjf 1.tar.bz2 -C .
$ tar -cjf 2.tar.bz2 1

$ md5sum 1.tar.bz2 2.tar.bz2
d67ea3dac09ed7eee310d9846ecdd879  1.tar.bz2
d4b716716f3cf48139c4112719538513  2.tar.bz2

=

Could someone suggest how to fix this glitch? Or the guideline above??


Thank you.

---
Regards
-Prasad
http://feedmug.com
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: About package review and mismatching md5sums

2011-06-29 Thread Michael Schwendt
On Wed, 29 Jun 2011 12:59:41 +0530 (IST), PJP (P) wrote:

 One of the package review guideline says
 
 ===
 MUST: The sources used to build the package must match the 
 upstream source, as provided in the spec URL. Reviewers should use 
 md5sum for this task.
 ===

It says more than that:

| If no upstream URL can be specified for this package, please see the
| Source URL Guidelines for how to deal with this.

 - https://fedoraproject.org/wiki/Packaging/SourceURL
  - https://fedoraproject.org/wiki/Packaging/SourceURL#Using_Revision_Control

That is the guideline that's releveant.

 Past couple of days, I've been reviewing the python grapefruit package 
 
 
   at - https://bugzilla.redhat.com/show_bug.cgi?id=716808
 
 and the thing is, the spec file provides an - $ svn export -r 31 ... - 
 command to pull the sources and create a tarball using $ tar -czvf ...
 
 But as it turns out, it seems, if you create a tarball from the *very same* 
 sources on two different machines, they don't match. As in the md5sum for the 
 two tarball differs.
 

Examine whether the uncompressed tarball differs already due to file
timestamps or file system differences. A simple md5sum isn't helpful in
that case. You would verify an svn snapshot tarball with a full tree diff,
possibly deleting the revision control maintenance directories beforehand.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: About package review and mismatching md5sums

2011-06-29 Thread Andreas Schwab
P J P pj.pan...@yahoo.co.in writes:

 But as it turns out, it seems, if you create a tarball from the *very same* 
 sources on two different machines, they don't match. As in the md5sum for the 
 two tarball differs.

Make sure to disable the gzip timestamp.

Andreas.

-- 
Andreas Schwab, sch...@redhat.com
GPG Key fingerprint = D4E8 DBE3 3813 BB5D FA84  5EC7 45C6 250E 6F00 984E
And now for something completely different.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


[HEADS-UP] replacing report with libreport

2011-06-29 Thread Jiri Moskovcak
Hi!
I'm going to replace the report library with the new libreport. Today I 
plan to replace it in rawhide and if it goes smoothly I'd like to 
replace it in F15 as well.

pros:
- libreport is written in C (report is in python), so it's easier to 
write bindings for other languages
- it's API compatible with report (it has python bindings)
- it shares configuration with ABRT, so users just need to write their 
credentials and defaults only once
- shares the UI with ABRT (the reporting wizard), so users are presented 
with the same UI despite of from where they are reporting a problem

cons:
- it has a bit different UI
- account information (e.g: bz loging+password) is forgotten and needs 
to be entered again
- some minor breakage expected (hopefully not...)


affected packages (according to repoquery):
- report + subpackages (being obsoleted)
- python-meh
   - anaconda
   - anaconda-0:15.31-1.fc15.x86_64
   - firstboot-0:1.119-1.fc15.x86_64
   - system-config-kickstart-0:2.8.7-2.fc15.noarch
- setroubleshoot

As I said, libreport should be API compatible with report, so no changes 
should needed, but of course can't be 100% sure if it's bugfree ;)
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: About package review and mismatching md5sums

2011-06-29 Thread P J P
- Original Message -
 From: Andreas Schwab sch...@redhat.com
 Make sure to disable the gzip timestamp.


  ...how do you do that?

I tried using - $ tar --atime-preserve - etc. but didn't help.


Thanks.

---
Regards
-Prasad
http://feedmug.com
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Rahul Sundaram
On 06/29/2011 03:20 PM, Jiri Moskovcak wrote:
 Hi!
 I'm going to replace the report library with the new libreport. Today I 
 plan to replace it in rawhide and if it goes smoothly I'd like to 
 replace it in F15 as well.

Why in Fedora 15?  There seems to be no compelling reason to do that

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Jiri Moskovcak
On 06/29/2011 12:18 PM, Rahul Sundaram wrote:
 On 06/29/2011 03:20 PM, Jiri Moskovcak wrote:
 Hi!
 I'm going to replace the report library with the new libreport. Today I
 plan to replace it in rawhide and if it goes smoothly I'd like to
 replace it in F15 as well.

 Why in Fedora 15?  There seems to be no compelling reason to do that

 Rahul

And also no reasons against - if proven stable enough in rawhide.

some minor pros:
- since ABRT needs the libreport even in F15 it would be easier for me 
to not maintain 2 different versions for F15 and rawhide since the only 
difference is the missing python bindings in F15 (this would help avoid 
bugs like #715373)

Jirka

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Daniel J Walsh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 06/29/2011 05:50 AM, Jiri Moskovcak wrote:
 Hi!
 I'm going to replace the report library with the new libreport. Today I 
 plan to replace it in rawhide and if it goes smoothly I'd like to 
 replace it in F15 as well.
 
Hasn't this already reached F15?  Have you readded the GTKIO stuff?
 pros:
 - libreport is written in C (report is in python), so it's easier to 
 write bindings for other languages
 - it's API compatible with report (it has python bindings)
 - it shares configuration with ABRT, so users just need to write their 
 credentials and defaults only once
 - shares the UI with ABRT (the reporting wizard), so users are presented 
 with the same UI despite of from where they are reporting a problem
 
 cons:
 - it has a bit different UI
 - account information (e.g: bz loging+password) is forgotten and needs 
 to be entered again
Why?  Is it remembered within the session?  Can't it save the bugzilla
info within the gnome-keyring?
 - some minor breakage expected (hopefully not...)
 
 
 affected packages (according to repoquery):
 - report + subpackages (being obsoleted)
 - python-meh
- anaconda
- anaconda-0:15.31-1.fc15.x86_64
- firstboot-0:1.119-1.fc15.x86_64
- system-config-kickstart-0:2.8.7-2.fc15.noarch
 - setroubleshoot
 
 As I said, libreport should be API compatible with report, so no changes 
 should needed, but of course can't be 100% sure if it's bugfree ;)

Do we have to do anything to our packages to make this work?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk4LCXwACgkQrlYvE4MpobM+pwCg60BiuXW6N3VQmj9jVX4taG76
sAIAn36j2CH2BB+NN7L3cEF2QpcfhS56
=85Zp
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Jiri Moskovcak
On 06/29/2011 01:16 PM, Daniel J Walsh wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On 06/29/2011 05:50 AM, Jiri Moskovcak wrote:
 Hi!
 I'm going to replace the report library with the new libreport. Today I
 plan to replace it in rawhide and if it goes smoothly I'd like to
 replace it in F15 as well.

 Hasn't this already reached F15?  Have you readded the GTKIO stuff?
 pros:
 - libreport is written in C (report is in python), so it's easier to
 write bindings for other languages
 - it's API compatible with report (it has python bindings)
 - it shares configuration with ABRT, so users just need to write their
 credentials and defaults only once
 - shares the UI with ABRT (the reporting wizard), so users are presented
 with the same UI despite of from where they are reporting a problem

 cons:
 - it has a bit different UI
 - account information (e.g: bz loging+password) is forgotten and needs
 to be entered again
 Why?  Is it remembered within the session?  Can't it save the bugzilla
 info within the gnome-keyring?
 - some minor breakage expected (hopefully not...)


 affected packages (according to repoquery):
 - report + subpackages (being obsoleted)
 - python-meh
 - anaconda
 - anaconda-0:15.31-1.fc15.x86_64
 - firstboot-0:1.119-1.fc15.x86_64
 - system-config-kickstart-0:2.8.7-2.fc15.noarch
 - setroubleshoot

 As I said, libreport should be API compatible with report, so no changes
 should needed, but of course can't be 100% sure if it's bugfree ;)

 Do we have to do anything to our packages to make this work?

- mentioned packages should change:
  Requires: report{-gtk} to Requires: libreport{-gtk}

- but that's not needed right now since libreport provides report{-gtk}
- the references to report should be removed once we're done with the 
transition
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: About package review and mismatching md5sums

2011-06-29 Thread Aaron Faanes
On Wed, Jun 29, 2011 at 6:07 AM, Andreas Schwab sch...@redhat.com wrote:

 P J P pj.pan...@yahoo.co.in writes:

  - Original Message -
  From: Andreas Schwab sch...@redhat.com
  Make sure to disable the gzip timestamp.
 
 
...how do you do that?

 $ gzip --help
  -n, --no-name do not save or restore the original name and time stamp


The -j in tar -cjf means to compress using bzip2, so I don't think gzip is
used, at least in his example.



 Andreas.

 --
 Andreas Schwab, sch...@redhat.com
 GPG Key fingerprint = D4E8 DBE3 3813 BB5D FA84  5EC7 45C6 250E 6F00 984E
 And now for something completely different.
 --
 devel mailing list
 devel@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/devel




-- 
Aaron Faanes dafr...@gmail.com
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Trusted Boot in Fedora

2011-06-29 Thread Björn Persson
Adam Williamson wrote:
 On Tue, 2011-06-28 at 10:01 -0400, Adam Jackson wrote:
  On Tue, 2011-06-28 at 09:59 +0200, Nicolas Mailhot wrote:
   Le Lun 27 juin 2011 15:12, Miloslav Trmač a écrit :
Placing trust in the manufacturer of the hardware puts the user in no
worse position than they were before.
   
   I don't call placing absolute vetting power in bios writer hands no
   worse position. I don't thing anyone can point to a good bios on
   real world hardware.
  
  I appreciate the disdain - no, really, trust me, I do - but you should
  realize that SMM means you already may have no control over the machine.
 
 Well, the fact that BIOSes aren't open source means that anyway.

That's not impossible to change though. I have never dared to try Coreboot 
myself, for fear of destroying my motherboard, but in principle it's possible 
to replace the BIOS in most current computers with a free implementation. It's 
looking like the TPM makes it impossible to replace Sinit with a free clone.

Björn Persson


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

[perl-Sys-Virt/f15] Update to 0.2.7 release

2011-06-29 Thread Daniel P. Berrange
commit 9d5dfe8fc5013f66b67ef472827935bb63f29c35
Author: Daniel P. Berrange berra...@redhat.com
Date:   Wed Jun 29 11:52:19 2011 +0100

Update to 0.2.7 release

 Sys-Virt-0.2.6-get_xml_description-flags.patch |  140 
 Sys-Virt-0.2.6-xpath-cast.patch|   16 ---
 perl-Sys-Virt.spec |   13 +-
 sources|2 +-
 4 files changed, 7 insertions(+), 164 deletions(-)
---
diff --git a/perl-Sys-Virt.spec b/perl-Sys-Virt.spec
index f8e80fe..0d3d83b 100644
--- a/perl-Sys-Virt.spec
+++ b/perl-Sys-Virt.spec
@@ -1,19 +1,17 @@
 Name:   perl-Sys-Virt
-Version:0.2.6
-Release:3%{?dist}
+Version:0.2.7
+Release:1%{?dist}
 Summary:Represent and manage a libvirt hypervisor connection
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Sys-Virt/
 Source0:
http://www.cpan.org/authors/id/D/DA/DANBERR/Sys-Virt-%{version}.tar.gz
-Patch1: Sys-Virt-%{version}-xpath-cast.patch
-Patch2: Sys-Virt-%{version}-get_xml_description-flags.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
 BuildRequires:  perl(XML::XPath)
-BuildRequires:  libvirt-devel = 0.8.1
+BuildRequires:  libvirt-devel = 0.8.8
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -23,8 +21,6 @@ virtualization containers to be managed with a consistent API.
 
 %prep
 %setup -q -n Sys-Virt-%{version}
-%patch1 -p1
-%patch2 -p1
 
 sed -i -e '/Sys-Virt\.spec/d' Makefile.PL
 sed -i -e '/\.spec\.PL$/d' MANIFEST
@@ -59,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Daniel P. Berrange berra...@redhat.com - 0.2.7-1
+- Update to 0.2.7 release
+
 * Thu May 19 2011 Matthew Booth mbo...@redhat.com - 0.2.6-3
 - Backport get_xml_description with flags
 
diff --git a/sources b/sources
index bd60c3b..05aa6c5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a4ca5735791e132320bd8546c5deacae  Sys-Virt-0.2.6.tar.gz
+968641ea0f85c6ad25ed13ba235f06ff  Sys-Virt-0.2.7.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: About package review and mismatching md5sums

2011-06-29 Thread Aaron Faanes
On Wed, Jun 29, 2011 at 2:29 AM, P J P pj.pan...@yahoo.co.in wrote:

Hi! :)


 One of the package review guideline says

 ===
 MUST: The sources used to build the package must match the
 upstream source, as provided in the spec URL. Reviewers should use
 md5sum for this task.
 ===


 Past couple of days, I've been reviewing the python grapefruit package


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

 and the thing is, the spec file provides an - $ svn export -r 31 ... -
 command to pull the sources and create a tarball using $ tar -czvf ...

 But as it turns out, it seems, if you create a tarball from the *very same*
 sources on two different machines, they don't match. As in the md5sum for
 the two tarball differs.

 Please try this simple test

 =

 $ echo 'Hello, world'  1
 $ tar -cjf 1.tar.bz2 1

 $ scp 1.tar.bz2 to a different machine.

 $ ssh to that same machine
 $ tar -xjf 1.tar.bz2 -C .
 $ tar -cjf 2.tar.bz2 1

 $ md5sum 1.tar.bz2 2.tar.bz2
 d67ea3dac09ed7eee310d9846ecdd879  1.tar.bz2
 d4b716716f3cf48139c4112719538513  2.tar.bz2

 =

 Could someone suggest how to fix this glitch? Or the guideline above??


I ran your example, but I got the expected results:

$ echo 'Hello, world'  1
$ tar -cjf 1.tar.bz2 1
$ scp 1.tar.bz2 $HOST:~
1.tar.bz2   100%
130 0.1KB/s   00:00
$ ssh $HOST
Last login: Fri Jun  3 21:38:56 2011 from ...

$ tar -xjf 1.tar.bz2 -C .
$ tar -cjf 2.tar.bz2 1
$ md5sum 1.tar.bz2 2.tar.bz2
b87d0f263bfec97456a415f7103b0f35  1.tar.bz2
b87d0f263bfec97456a415f7103b0f35  2.tar.bz2

My guess is that the ssh'd host uses a different username/group or uses a
different filesystem. You could compare the two using rsync:

$ mkdir 1.dir 2.dir
$ ls
1.dir  1.tar.bz2  2.dir  2.tar.bz2
$ tar -xjf 1.tar.bz2 -C 1.dir
$ tar -xjf 2.tar.bz2 -C 2.dir
$ rsync -avznih 1.dir/ 2.dir/
sending incremental file list
.d..t.. ./

sent 62 bytes  received 15 bytes  154.00 bytes/sec
total size is 13  speedup is 0.17 (DRY RUN)

If the files differ, it should show up in rsync's itemized changes, like the
following example:

$ su -c 'chown root:root 2.dir/1'
Password:
$ rsync -avznih 1.dir/ 2.dir/
sending incremental file list
.d..t.. ./
.f.g... 1

sent 65 bytes  received 18 bytes  166.00 bytes/sec
total size is 13  speedup is 0.16 (DRY RUN)


 Thank you.

 ---
 Regards
 -Prasad
 http://feedmug.com
 --
 devel mailing list
 devel@lists.fedoraproject.org
 https://admin.fedoraproject.org/mailman/listinfo/devel


Hope this helps!

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

Re: Trusted Boot in Fedora

2011-06-29 Thread Björn Persson
Miloslav Trmač wrote:
 First, the TPM (nor the CPU) really can't tell the difference between
 the owner of the computer and an author of a virus.

A jumper on the motherboard, or some other kind of physical circuit breaker, 
can do that. It would have been possible to design the TPM to accept a new 
master key only when a certain circuit is closed.

Björn Persson


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

Re: [fedora-arm] Fedora 15 ARM hardfp Virtual FAD (Fedora Activity Day) - FRIDAY

2011-06-29 Thread Chris Tyler
On Wed, 2011-06-29 at 02:17 -0400, Jon Masters wrote:
 Hi Folks,
 
 Join us on Friday to celebrate July with another in our series of VFADs!

Hi Jon,

Just a heads up that you won't have many Canadians joining you -- July 1
is Canada Day, a *big* party date on our calendar.

-Chris

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


Re: About package review and mismatching md5sums

2011-06-29 Thread P J P

From: Aaron Faanes dafr...@gmail.com
$ gzip --help
 -n, --no-name     do not save or restore the original name and time stamp
The -j in tar -cjf means to compress using bzip2, so I don't think gzip is 
used, at least in his example.

  Yep, gzip or even other compressions are are not used separately; but via 
tar(1). 


---
Regards
-Prasad
http://feedmug.com

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


AutoQA 0.5.0 released

2011-06-29 Thread Kamil Paral
AutoQA 0.5.0 has just been released and deployed. Package maintainers will see 
some notable changes. Please read the whole description here:

http://kparal.wordpress.com/2011/06/29/autoqa-0-5-0-released/

Comments welcome.

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


Re: About package review and mismatching md5sums

2011-06-29 Thread P J P

From: Aaron Faanes dafr...@gmail.com

My guess is that the ssh'd host uses a different username/group or uses a
different filesystem. You could compare the two using rsync:

 Hmmn..strange. Nope, username/group are same, even the file system(ext4) is 
same. I checked it on 3-4(F11, F14, RHEL6) different machines, everywhere it 
was different.

If the files differ, it should show up in rsync's itemized changes, like the
following example:

  Will check this rsync(1) test, should work.
 

Thanks.
---
Regards
-Prasad
http://feedmug.com

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


[perl-Module-Used] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 53fb39c58a4aea1df3bf74d34eefab14d7e7b87b
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-Module-Used.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Module-Used.spec b/perl-Module-Used.spec
index 2b5abae..a1a2838 100644
--- a/perl-Module-Used.spec
+++ b/perl-Module-Used.spec
@@ -1,6 +1,6 @@
 Name:   perl-Module-Used
 Version:1.2.0
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Find modules loaded by Perl code without running it
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.2.0-7
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.2.0-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-File-Find-Rule-PPI] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit a5dda415d3ac958ce62d65d99cba65d69759aae8
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-File-Find-Rule-PPI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-File-Find-Rule-PPI.spec b/perl-File-Find-Rule-PPI.spec
index 5af5056..f4d0a33 100644
--- a/perl-File-Find-Rule-PPI.spec
+++ b/perl-File-Find-Rule-PPI.spec
@@ -1,6 +1,6 @@
 Name:   perl-File-Find-Rule-PPI
 Version:0.05
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Add support for PPI queries to File::Find::Rule
 
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.05-10
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.05-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Perl-Tags] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit e5d0d2d3e7528b89fd6e270a602d2e31a288e709
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-Perl-Tags.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Perl-Tags.spec b/perl-Perl-Tags.spec
index 617b59d..c8804a3 100644
--- a/perl-Perl-Tags.spec
+++ b/perl-Perl-Tags.spec
@@ -1,6 +1,6 @@
 Name:   perl-Perl-Tags
 Version:0.28
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Generate Ctags style tags for Perl sourcecode
 License:(GPL+ or Artistic) or Vim
 Group:  Development/Libraries
@@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.28-5
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.28-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-PPIx-Regexp] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 78c924dd6e142107ea8430372ac013fbafb01781
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-PPIx-Regexp.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-PPIx-Regexp.spec b/perl-PPIx-Regexp.spec
index 869b0b5..92993f6 100644
--- a/perl-PPIx-Regexp.spec
+++ b/perl-PPIx-Regexp.spec
@@ -1,6 +1,6 @@
 Name:   perl-PPIx-Regexp
 Version:0.020
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Represent a regular expression of some sort
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.020-2
+- Perl mass rebuild
+
 * Mon Apr 04 2011 Petr Pisar ppi...@redhat.com - 0.020-1
 - 0.020 bump
 
--
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-Carp-Clan-Share] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit d892fa04da55876d5bef3f2766afd633b130560c
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-Carp-Clan-Share.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Carp-Clan-Share.spec b/perl-Carp-Clan-Share.spec
index 1c24fe9..53fccce 100644
--- a/perl-Carp-Clan-Share.spec
+++ b/perl-Carp-Clan-Share.spec
@@ -1,6 +1,6 @@
 Name:   perl-Carp-Clan-Share
 Version:0.013
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Share your Carp::Clan settings with your whole Clan
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.013-7
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.013-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Sub-Exporter] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit c83ac2f8d6650be59ddf02fa742d2eca8bbc57ca
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:49 2011 +0200

Perl mass rebuild

 perl-Sub-Exporter.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sub-Exporter.spec b/perl-Sub-Exporter.spec
index 6078e50..a085bed 100644
--- a/perl-Sub-Exporter.spec
+++ b/perl-Sub-Exporter.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Exporter
 Version:0.982
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Sophisticated exporter for custom-built routines
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.982-8
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.982-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Declare-Constraints-Simple] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 347f92514524829c596a6647bea0a1f0f7606a63
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-Declare-Constraints-Simple.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Declare-Constraints-Simple.spec 
b/perl-Declare-Constraints-Simple.spec
index 912e41c..0d0852a 100644
--- a/perl-Declare-Constraints-Simple.spec
+++ b/perl-Declare-Constraints-Simple.spec
@@ -1,6 +1,6 @@
 Name:   perl-Declare-Constraints-Simple
 Version:0.03
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:Declarative Validation of Data Structures
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -69,6 +69,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.03-13
+- Perl mass rebuild
+
 * Sun Feb 13 2011 Paul Howarth p...@city-fan.org - 0.03-12
 - Fix dependency filter for rpm 4.9 onwards
 
--
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-Object-Deadly] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 532052351ae6f3f8fb37b272e8f2bf9ab4caf35f
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:35:48 2011 +0200

Perl mass rebuild

 perl-Object-Deadly.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Object-Deadly.spec b/perl-Object-Deadly.spec
index dbd4d65..34f363b 100644
--- a/perl-Object-Deadly.spec
+++ b/perl-Object-Deadly.spec
@@ -1,6 +1,6 @@
 Name:   perl-Object-Deadly
 Version:0.09
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Perl module providing an object that dies whenever examined
 
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.09-10
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.09-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-PPI-HTML] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 33f323738cb502eb7a25907b8720344c19cc7714
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:42:06 2011 +0200

Perl mass rebuild

 perl-PPI-HTML.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-PPI-HTML.spec b/perl-PPI-HTML.spec
index b812cd0..dc3c64f 100644
--- a/perl-PPI-HTML.spec
+++ b/perl-PPI-HTML.spec
@@ -1,6 +1,6 @@
 Name:   perl-PPI-HTML
 Version:1.07
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Generate syntax-hightlighted HTML for Perl using PPI
 
 Group:  Development/Libraries
@@ -54,6 +54,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.07-10
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.07-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-PPIx-Utilities] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit a0dff4c7c997275239fead61a942b7f5ec29
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 15:42:06 2011 +0200

Perl mass rebuild

 perl-PPIx-Utilities.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-PPIx-Utilities.spec b/perl-PPIx-Utilities.spec
index 6e5c25d..edd523f 100644
--- a/perl-PPIx-Utilities.spec
+++ b/perl-PPIx-Utilities.spec
@@ -1,6 +1,6 @@
 Name:  perl-PPIx-Utilities
 Version:   1.001000
-Release:   2%{?dist}
+Release:   3%{?dist}
 Summary:   Extensions to PPI
 Group: Development/Libraries
 License:   GPL+ or Artistic
@@ -60,6 +60,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/PPIx::Utilities::Statement.3pm*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.001000-3
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.001000-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-POE-Server-TCP] Latest upstream release 1.16

2011-06-29 Thread Yanko Kaneti
commit 38405ff8e1db82fc1122ae688b1482b8eec3444e
Author: Yanko Kaneti yan...@declera.com
Date:   Wed Jun 29 16:44:38 2011 +0300

Latest upstream release 1.16

 .gitignore|1 +
 perl-Test-POE-Server-TCP.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 319fe29..cda00ed 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Test-POE-Server-TCP-1.10.tar.gz
 /Test-POE-Server-TCP-1.14.tar.gz
+/Test-POE-Server-TCP-1.16.tar.gz
diff --git a/perl-Test-POE-Server-TCP.spec b/perl-Test-POE-Server-TCP.spec
index e305044..63e6e9b 100644
--- a/perl-Test-POE-Server-TCP.spec
+++ b/perl-Test-POE-Server-TCP.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-POE-Server-TCP
-Version:1.14
-Release:2%{?dist}
+Version:1.16
+Release:1%{?dist}
 Summary:POE Component providing TCP server services for test cases
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Yanko Kaneti yan...@declera.com 1.16-1
+- Latest upstream release - 1.16
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.14-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
diff --git a/sources b/sources
index 5fa22cc..b9822e2 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a60c73067efb0b4a1a8297ab6ff84c4f  Test-POE-Server-TCP-1.14.tar.gz
+ac6b0c3d4609583e56b7ec21e428eb64  Test-POE-Server-TCP-1.16.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


udev in endless loop error Mircocode : CPU0: family 15 not supported

2011-06-29 Thread Cecil Funderburk
I have release 3.0-0.rc3.git0.3.fc16.x86_64-3.0.0 Version Code 196608
running on a Gateway netbook LT3101u CPU - AMD ATHLON 64 ATI Radeon graphic
card

I am getting Mircocode : CPU0: family 15 not supported the udevd is in an
endless loop burning CPU and Virtual memory resouces

How can I add the module to support the CPU and end the loop. while one of
the udev rules initiates the device
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Trusted Boot in Fedora

2011-06-29 Thread Tom Callaway
On 06/27/2011 11:27 AM, Miloslav Trmač wrote:
 It doesn't, really.  My understanding is that it takes a hash of the
 contents of memory (and perhaps other state, I don't know) and submits
 this measurement to the TPM.  The sinit blob doesn't contain any
 policy or configuration: it is only a mechanism for reducing the
 complete system state into a hash value.

One of my biggest concerns here is that we don't know what the
proprietary sinit blob is doing, nor do I think that it is likely that
Intel will show us.

It seems to me that the situation is this:

Intel has convinced some hardware vendors (IBM and Dell, possibly
others) to embed the sinit blob in their BIOSes on very new systems.
Intel wants Fedora to automatically check for:

A) The system's capability to leverage found TPM hardware
B) The presence of the sinit blob in the system BIOS

If A and B are true, then Fedora adds an additional grub configuration
for a trusted-kernel scenario. As uncomfortable as I am with us
enabling process around undocumented BIOS magic, there is some precedent
within the Linux kernel for that sort of thing.

It also sounded like Intel wanted hooks in there so if A is true, but B
is not, Fedora would prompt the user to download the sinit blob
(arguably, B will be false on the majority of Fedora systems for at
least the next few years). I am extremely opposed to this, for
presumably obvious reasons.

~tom

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

[perl-IO-Handle-Util] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit edcf79118f07ea7e45892a90593483fcfe74d3e0
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:30 2011 +0200

Perl mass rebuild

 perl-IO-Handle-Util.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-IO-Handle-Util.spec b/perl-IO-Handle-Util.spec
index 74bcd27..a16fbf3 100644
--- a/perl-IO-Handle-Util.spec
+++ b/perl-IO-Handle-Util.spec
@@ -1,7 +1,7 @@
 Name:   perl-IO-Handle-Util
 Summary:Utilities for working with IO::Handle-like objects
 Version:0.01
-Release:3%{?dist}
+Release:4%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/N/NU/NUFFIN/IO-Handle-Util-%{version}.tar.gz
 
@@ -62,6 +62,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.01-4
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.01-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-String-RewritePrefix] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit dfd127f558d65e87316789df51874a6d8688e03e
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:30 2011 +0200

Perl mass rebuild

 perl-String-RewritePrefix.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-String-RewritePrefix.spec b/perl-String-RewritePrefix.spec
index b9e5165..f15d781 100644
--- a/perl-String-RewritePrefix.spec
+++ b/perl-String-RewritePrefix.spec
@@ -1,7 +1,7 @@
 Name:   perl-String-RewritePrefix 
 Summary:Rewrite strings based on a set of known prefixes 
 Version:0.006
-Release:3%{?dist}
+Release:4%{?dist}
 License:GPL+ or Artistic 
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/String-RewritePrefix-%{version}.tar.gz
 
@@ -46,6 +46,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.006-4
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.006-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Sub-Exporter-GlobExporter] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit c284e87ba737d1937c2f089aba0e5033180d761e
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:31 2011 +0200

Perl mass rebuild

 perl-Sub-Exporter-GlobExporter.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sub-Exporter-GlobExporter.spec 
b/perl-Sub-Exporter-GlobExporter.spec
index 4e16c3e..5ab1666 100644
--- a/perl-Sub-Exporter-GlobExporter.spec
+++ b/perl-Sub-Exporter-GlobExporter.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Exporter-GlobExporter
 Version:0.002
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Export shared globs with Sub::Exporter collectors
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.002-3
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.002-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Sub-Prototype] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit ab24a44c22ef8b098d08634c8e35990ee1230ce9
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:30 2011 +0200

Perl mass rebuild

 perl-Sub-Prototype.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sub-Prototype.spec b/perl-Sub-Prototype.spec
index 53ad9c6..23df490 100644
--- a/perl-Sub-Prototype.spec
+++ b/perl-Sub-Prototype.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Prototype
 Version:0.02
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Allows you to set a subs prototype
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.02-6
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-B-Compiling] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 6ce3caceec21c4a6f2f11b68b3ee72bd81714b0a
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:34 2011 +0200

Perl mass rebuild

 perl-B-Compiling.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-B-Compiling.spec b/perl-B-Compiling.spec
index 304988a..2bc1ca6 100644
--- a/perl-B-Compiling.spec
+++ b/perl-B-Compiling.spec
@@ -1,6 +1,6 @@
 Name:   perl-B-Compiling
 Version:0.02
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Expose PL_compiling to perl
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -43,6 +43,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.02-5
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.02-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Mixin-Linewise] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit b1f20b6a091a13ac3396d2ab350b377ca94314d2
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:33 2011 +0200

Perl mass rebuild

 perl-Mixin-Linewise.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Mixin-Linewise.spec b/perl-Mixin-Linewise.spec
index 20221fe..8a2304a 100644
--- a/perl-Mixin-Linewise.spec
+++ b/perl-Mixin-Linewise.spec
@@ -1,6 +1,6 @@
 Name:   perl-Mixin-Linewise
 Version:0.003
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Write your linewise code for handles; this does the rest
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.003-5
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.003-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-Test-Output] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 098886c68079cc913e40c28479dc42133162208b
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:34 2011 +0200

Perl mass rebuild

 perl-Test-Output.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Output.spec b/perl-Test-Output.spec
index 19a3ded..abcb0f9 100644
--- a/perl-Test-Output.spec
+++ b/perl-Test-Output.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Output
 Version:1.01
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Utilities to test STDOUT and STDERR messages
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -45,6 +45,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.01-2
+- Perl mass rebuild
+
 * Sat May 14 2011 Iain Arnell iarn...@gmail.com 1.01-1
 - update to latest upstream version
 - clean up spec for modern rpmbuild
--
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-Devel-GlobalDestruction] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 5c570628e2e5ab7a28b329906f40cb110af305d0
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 16:15:30 2011 +0200

Perl mass rebuild

 perl-Devel-GlobalDestruction.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Devel-GlobalDestruction.spec 
b/perl-Devel-GlobalDestruction.spec
index 25f24d1..baae208 100644
--- a/perl-Devel-GlobalDestruction.spec
+++ b/perl-Devel-GlobalDestruction.spec
@@ -3,7 +3,7 @@
 
 Name:   perl-Devel-GlobalDestruction 
 Version:0.03 
-Release:1%{?dist}
+Release:2%{?dist}
 # see lib/Devel/GlobalDestruction.pm
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -65,6 +65,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/Devel::GlobalDestruction.3pm*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.03-2
+- Perl mass rebuild
+
 * Fri Jun 24 2011 Paul Howarth p...@city-fan.org - 0.03-1
 - Update to 0.03
   - Drop the XS code on perl versions recent enough to have ${^GLOBAL_PHASE}
--
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: udev in endless loop error Mircocode : CPU0: family 15 not supported

2011-06-29 Thread Bruno Wolff III
On Wed, Jun 29, 2011 at 09:54:41 -0400,
  Cecil Funderburk cfunder...@gmail.com wrote:
 I have release 3.0-0.rc3.git0.3.fc16.x86_64-3.0.0 Version Code 196608
 running on a Gateway netbook LT3101u CPU - AMD ATHLON 64 ATI Radeon graphic
 card
 
 I am getting Mircocode : CPU0: family 15 not supported the udevd is in an
 endless loop burning CPU and Virtual memory resouces

The short term fix is rpm -e microcode_ctl .

This issue is being tracked in bug:
https://bugzilla.redhat.com/show_bug.cgi?id=690930
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Packages that will be orphaned

2011-06-29 Thread Laurent Rineau
On mercredi 22 juin 2011 14:00:40 Jaroslav Reznik wrote:
 We (as KDE SIG) should probably take care about the rest of K* and Q*
 apps/libs, I'll talk to guys.


 knutclient

If nobody wants knutclient, I will maintain it. I have an UPS and use nut and 
knutclient to monitor it.

-- 
Laurent Rineau
http://fedoraproject.org/wiki/LaurentRineau
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Packages that will be orphaned

2011-06-29 Thread Michael Cronenworth
Laurent Rineau wrote:
 If nobody wants knutclient, I will maintain it. I have an UPS and use nut and
 knutclient to monitor it.

Instead of nut, you should use UPower. Just a suggestion as that is what 
Gnome does.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


RE: Trusted Boot in Fedora

2011-06-29 Thread Wei, Gang
Eric Paris wrote on 2011-06-23:
 On 06/22/2011 03:20 PM, seth vidal wrote:
 On Wed, 2011-06-22 at 20:02 +0100, Matthew Garrett wrote:
 
 Are we going to continue the double grub entries? while I realize
 that tboot SHOULD allow non TXT hw to boot properly I also realize
 that any differences will be pointed to as a point of contention
 when debugging semirelated problems. so it seems like the double entries are 
 wise.
 
 Additionally, is the grub modifyication implemented in grubby and
 does this behave properly on a yum update of the kernel?
 
 I'd say how to handle the grub entries is basically the entire point
 of the feature request.  I was surprised to learn the other day that
 they filed a request at all since this was really just about making a
 change to grubby.  I don't know how they plan to handle it.

What we want to do is just provide an easy-to-be-found option on install UI to 
select tboot package, and handle the grub entries while doing tboot package 
installation. We just want to follow what xen package previously did. We will 
look into details for how to achieve it via coordination among 
Anaconda/grubby/tboot package.

 So yeah, installing tboot if it automatically enables itself can be a
 problem on some broken hardware.  I would certainly recommend against
 making tboot a part of the default install.  But if a user installs
 it, it should 'just work', without manually updating grub on ever kernel 
 update.

We are not seeking for making tboot a part of the default install, just want to 
make the tboot install/configuration easier for end users.

BTW, I am trying to update the tboot feature page to include more 
documentations and other necessary information.

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


i915 errors from 3.0 kernel

2011-06-29 Thread Genes MailLists


  I am getting a lot of these in kernel 3.0-0.rc5.git0.1.fc16.x86_64
testing on F15 - i915 - happens on wake from sleep I think. Is this
advisory/benign or a problem ?

 thanks

 gene/.


-- /var/log/messages --


Jun 29 08:37:25 lap3 kernel: [72538.407300] [ cut here
]
Jun 29 08:37:25 lap3 kernel: [72538.407305] WARNING: at
drivers/gpu/drm/i915/i915_drv.c:322 gen6_gt_force_wake_ge
t+0x2a/0xa3 [i915]()
Jun 29 08:37:25 lap3 kernel: [72538.407306] Hardware name: 4270CTO
Jun 29 08:37:25 lap3 kernel: [72538.407307] Modules linked in: tcp_lp
fuse ebtable_nat ebtables ipt_MASQUERADE ip
table_nat nf_nat xt_CHECKSUM iptable_mangle bridge stp llc hidp sunrpc
cpufreq_ondemand acpi_cpufreq freq_table m
perf capi kernelcapi rfcomm bnep ip6t_REJECT nf_conntrack_ipv6
nf_defrag_ipv6 ip6table_filter ip6_tables nf_connt
rack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack xts gf128mul dm_crypt
arc4 uvcvideo videodev media v4l2_compat_ioc
tl32 microcode btusb bluetooth snd_hda_codec_conexant joydev xhci_hcd
iwlagn mac80211 snd_hda_intel snd_hda_codec
 iTCO_wdt i2c_i801 snd_hwdep cfg80211 snd_seq snd_seq_device
iTCO_vendor_support snd_pcm snd_timer e1000e snd_pag
e_alloc thinkpad_acpi rfkill snd soundcore virtio_net kvm_intel kvm
sdhci_pci firewire_ohci sdhci firewire_core m
mc_core crc_itu_t wmi i915 drm_kms_helper drm i2c_algo_bit i2c_core
video [last unloaded: scsi_wait_scan]
Jun 29 08:37:25 lap3 kernel: [72538.407334] Pid: 24420, comm:
kworker/u:15 Tainted: GW   3.0-0.rc5.git0.1
.fc16.x86_64 #1
Jun 29 08:37:25 lap3 kernel: [72538.407335] Call Trace:
Jun 29 08:37:25 lap3 kernel: [72538.407337]  [81057b0c]
warn_slowpath_common+0x83/0x9b
Jun 29 08:37:25 lap3 kernel: [72538.407339]  [81057b3e]
warn_slowpath_null+0x1a/0x1c
Jun 29 08:37:25 lap3 kernel: [72538.407345]  [a006b4d7]
gen6_gt_force_wake_get+0x2a/0xa3 [i915]
Jun 29 08:37:25 lap3 kernel: [72538.407351]  [a0075a54]
i915_read32+0x34/0x6b [i915]
Jun 29 08:37:25 lap3 kernel: [72538.407358]  [a0077f7c]
i915_save_state+0x170/0x1e9 [i915]
Jun 29 08:37:25 lap3 kernel: [72538.407364]  [a006b07b]
i915_drm_freeze+0x7b/0x95 [i915]
Jun 29 08:37:25 lap3 kernel: [72538.407370]  [a006b25e]
i915_pm_suspend+0x55/0x77 [i915]
Jun 29 08:37:25 lap3 kernel: [72538.407372]  [812763dd]
pci_pm_suspend+0x7d/0x100
Jun 29 08:37:25 lap3 kernel: [72538.407373]  [813278d1]
pm_op+0x8b/0x149
Jun 29 08:37:25 lap3 kernel: [72538.407375]  [81327b3d]
__device_suspend+0x150/0x1cc
Jun 29 08:37:25 lap3 kernel: [72538.407376]  [81327bd8]
async_suspend+0x1f/0x47
Jun 29 08:37:25 lap3 kernel: [72538.407378]  [8107b928]
async_run_entry_fn+0x9e/0x132
Jun 29 08:37:25 lap3 kernel: [72538.407380]  [8107b88a] ?
async_schedule+0x17/0x17
Jun 29 08:37:25 lap3 kernel: [72538.407382]  [8106ff45]
process_one_work+0x1ce/0x379
Jun 29 08:37:25 lap3 kernel: [72538.407384]  [8106fec4] ?
process_one_work+0x14d/0x379
Jun 29 08:37:25 lap3 kernel: [72538.407386]  [81070c45]
worker_thread+0xda/0x15d
Jun 29 08:37:25 lap3 kernel: [72538.407388]  [81070b6b] ?
manage_workers+0x175/0x175
Jun 29 08:37:25 lap3 kernel: [72538.407390]  [81070b6b] ?
manage_workers+0x175/0x175
Jun 29 08:37:25 lap3 kernel: [72538.407392]  [810745e1]
kthread+0xa8/0xb0
Jun 29 08:37:25 lap3 kernel: [72538.407394]  [814fb324]
kernel_thread_helper+0x4/0x10
Jun 29 08:37:25 lap3 kernel: [72538.407396]  [814f39d4] ?
retint_restore_args+0x13/0x13
Jun 29 08:37:25 lap3 kernel: [72538.407398]  [81074539] ?
__init_kthread_worker+0x5a/0x5a
Jun 29 08:37:25 lap3 kernel: [72538.407400]  [814fb320] ?
gs_change+0x13/0x13
Jun 29 08:37:25 lap3 kernel: [72538.407401] ---[ end trace
33a887dd07d385e2 ]---
Jun 29 08:37:25 lap3 kernel: [72538.407675] [ cut here
]

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Adam Williamson
On Wed, 2011-06-29 at 13:11 +0200, Jiri Moskovcak wrote:
 On 06/29/2011 12:18 PM, Rahul Sundaram wrote:
  On 06/29/2011 03:20 PM, Jiri Moskovcak wrote:
  Hi!
  I'm going to replace the report library with the new libreport. Today I
  plan to replace it in rawhide and if it goes smoothly I'd like to
  replace it in F15 as well.
 
  Why in Fedora 15?  There seems to be no compelling reason to do that
 
  Rahul
 
 And also no reasons against - if proven stable enough in rawhide.

It's a clear change to the user experience - presenting a different UI
and forgetting stored logins.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net

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


Re: Quite a few reviews needed :)

2011-06-29 Thread Ankur Sinha
On Tue, 2011-06-28 at 20:13 +0200, Mario Blättermann wrote:
 Am 27.06.2011 20:03, schrieb Ankur Sinha:
  Hello,
  
  I've recently been packaging applications for the fedora medical
  initiative. There are quite a few of them. If you have some time to
  spare, please review a few (or just one). Even if you're not a sponsored
  packager, I encourage you to please review them unofficially. It will
  improve your understanding of the guidelines, and also pick out quite a
  few errors and help me :)
  
  Of course, if you accept a ticket, I will review a package for you in 
  return :)
  
  Please have a look at the following url: 
  
  https://bugzilla.redhat.com/show_bug.cgi?id=673841
  
 I've picked up toothchart for the time being, some more reviews will
 follow probably.
 
 My open reviews:
 https://bugzilla.redhat.com/buglist.cgi?query_format=advancedproduct=Fedoraversion=rawhidecomponent=Package+Reviewquery_format=advancedbug_status=NEWbug_status=ASSIGNEDbug_status=NEEDINFObug_status=MODIFIEDkeywords_type=allwordskeywords=emailreporter1=1emailtype1=exactemail1=mariobl%40freenet.de
 
 Cheers,
 Mario


Hi Mario,

I've taken wmSun. 

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

Thanks!
Ankur

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

Re: Trusted Boot in Fedora

2011-06-29 Thread Adam Williamson
On Wed, 2011-06-29 at 13:36 +0200, Björn Persson wrote:
 Adam Williamson wrote:
  On Tue, 2011-06-28 at 10:01 -0400, Adam Jackson wrote:
   On Tue, 2011-06-28 at 09:59 +0200, Nicolas Mailhot wrote:
Le Lun 27 juin 2011 15:12, Miloslav Trmač a écrit :
 Placing trust in the manufacturer of the hardware puts the user in no
 worse position than they were before.

I don't call placing absolute vetting power in bios writer hands no
worse position. I don't thing anyone can point to a good bios on
real world hardware.
   
   I appreciate the disdain - no, really, trust me, I do - but you should
   realize that SMM means you already may have no control over the machine.
  
  Well, the fact that BIOSes aren't open source means that anyway.
 
 That's not impossible to change though. I have never dared to try Coreboot 
 myself, for fear of destroying my motherboard, but in principle it's possible 
 to replace the BIOS in most current computers with a free implementation. 
 It's 
 looking like the TPM makes it impossible to replace Sinit with a free clone.

Most current computers? The support list -
http://www.coreboot.org/Supported_Motherboards - is tiny, and doesn't
include any even vaguely recent Intel chipset that I can see. And it
includes a grand total of four laptops, two of which I've never heard
of.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net


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

Re: i915 errors from 3.0 kernel

2011-06-29 Thread Adam Williamson
On Wed, 2011-06-29 at 12:58 -0400, Genes MailLists wrote:
 
   I am getting a lot of these in kernel 3.0-0.rc5.git0.1.fc16.x86_64
 testing on F15 - i915 - happens on wake from sleep I think. Is this
 advisory/benign or a problem ?

It's benign. We go through this every time we go from a release kernel
to a development kernel: these warnings are enabled in development
kernels. It is just a warning about sub-optimal behaviour, useful to
kernel developers, not at all fatal or particularly problematic to your
use of the system.
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net

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


Re: Deprecating portreserve

2011-06-29 Thread Matt Domsch
On Wed, Jun 29, 2011 at 04:48:58PM +0100, Tim Waugh wrote:
 Now that systemd is used by default, I think it is time to deprecate
 portreserve.
 
 For those unfamiliar with it, portreserve is a small utility which binds
 specific network ports early on during the boot process, so that
 services using those ports can claim them when they start.  The point is
 to avoid accidental clashes when services use random unbound privileged
 ports.
 
 Currently portreserve has a SysV initscript.  It doesn't make a lot of
 sense to migrate it to a systemd service unit because of the fact that
 systemd avoids the problem.

Portreserve is also useful to reserve (not let the OS make use of)
ports that are needed by an embedded management controller that
intercepts delivery of packets to the port and delivers them to the
BMC (e.g. the PowerEdge 1955 BMC).  While we've done away with that
behavior in newer systems, such are still in production use.

-- 
Matt Domsch
Technology Strategist
Dell | Office of the CTO
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Deprecating portreserve

2011-06-29 Thread Matthew Garrett
On Wed, Jun 29, 2011 at 12:27:47PM -0500, Matt Domsch wrote:

 Portreserve is also useful to reserve (not let the OS make use of)
 ports that are needed by an embedded management controller that
 intercepts delivery of packets to the port and delivers them to the
 BMC (e.g. the PowerEdge 1955 BMC).  While we've done away with that
 behavior in newer systems, such are still in production use.

Is that port number exposed to the OS in any way?

-- 
Matthew Garrett | mj...@srcf.ucam.org
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


python-argparse changing license

2011-06-29 Thread Toshio Kuratomi
I've just pushed python-argparse-1.2.1 to EPEL5 and EPEL6.  This should be
a backwards compatible change.  It does, however, change licensing from
Apache-2.0 to Python.  Python license is more permissive than Apache license
and is GPLv2 compatible (where Apache is not) so this shouldn't cause anyone
problems.  If you had a GPLv2+ program that had to be distributed as GPLv3+
because it used python-argparse on EPEL-5 and EPEL-6 you can re-evaluate
the licensing situation now.

Note, this update isn't shipped in Fedora 14+ as argparse is part of
python-2.7's stdlib.  The stdlib is already licensed under the Python
license so this is just making the licensing situation more consistent
across our supported releases.

-Toshio


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

Re: i915 errors from 3.0 kernel

2011-06-29 Thread Genes MailLists
On 06/29/2011 01:22 PM, Adam Williamson wrote:
 On Wed, 2011-06-29 at 12:58 -0400, Genes MailLists wrote:

   I am getting a lot of these in kernel 3.0-0.rc5.git0.1.fc16.x86_64
 testing on F15 - i915 - happens on wake from sleep I think. Is this
 advisory/benign or a problem ?
 
 It's benign. We go through this every time we go from a release kernel
 to a development kernel: these warnings are enabled in development
 kernels. It is just a warning about sub-optimal behaviour, useful to
 kernel developers, not at all fatal or particularly problematic to your
 use of the system.

  I thought so - glad its benign ... I assume the messages will
sometimes be useful to the kernel team ...

  so should I keep mentioning new ones or only if its an actual OOPS?
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Packages that will be orphaned

2011-06-29 Thread Jitesh Shah
Toshio,
I'd like to take tcptrack, if no one has taken it yet. (I had a
cursory look at the long thread and I didn't see anyone taking it)

Jitesh

On Mon, Jun 20, 2011 at 10:34 AM, Toshio Kuratomi a.bad...@gmail.com wrote:
 Due to the requirement for contributors to sign the FPCA by Thursday of last
 week, certain package owners who haven't yet signed will be removed from the
 packager group soon.  When that happens, the packages that they own will be
 orphaned.

 To try and minimize the problems this could cause, I'm publishing the
 current list of packages to be orphaned and will start reassigning owners if
 someone asks to take them over.  We want to make sure that important
 packages are not going to be orphaned by this change.  We're planning on
 removing people from packager and orphaning packages on Thursday if all goes
 well.

 The list of packages being orphaned are listed below and the list of
 packages with first level dependencies will be attached.  Note that the
 dependency list could be incomplete in two ways:

 1) Since I'm using source package names, we don't capture things that dep on
 a subpackage.
 2) The list does not follow the dep chain out to see if something relies on
 something that relies on something that relies on a package that's being
 orphaned.

 Please reply to this thread if you'd like to take any packages or ping me on
 IRC and I'll reply to this thread with what packages have been taken.
 (Needed since we aren't orphaning in the pkgdb until Thursday so you need
 a cvsadmin to reassign ownership for now).


 http://toshio.fedorapeople.org/fpca/packages_losing_owners.txt:

 adanaxisgpl
 adf-accanthis-fonts
 adf-tribun-fonts
 aldo
 apache-commons-collections
 apanov-edrip-fonts
 apanov-heuristica-fonts
 atop
 auto-destdir
 ax25-apps
 ax25-tools
 bibletime
 bitstream-vera-fonts
 boo
 boswars-addons
 brandy
 btanks
 buffer
 callgit
 camcardsync
 cdo
 chess
 ciso
 clex
 cmospwd
 CodeAnalyst-gui
 colrdx
 comoonics-base-py
 contextkit
 cronolog
 ctapi-common
 ctapi-cyberjack
 cwrite
 db4o
 dbh
 dejavu-fonts
 demorse
 django-contact-form
 django-evolution
 django-notification
 django-pagination
 django-sct
 django-tagging
 drbd
 dxcc
 E
 ecolier-court-fonts
 edsadmin
 elfinfo
 ember
 ember-media
 EmfEngine
 espeak
 fcitx
 feh
 fig2sxd
 fldigi
 flite
 fontpackages
 frama-c
 gappa
 gdeskcal
 gdesklets-goodweather
 gdesklets-quote-of-the-day
 gdm
 gfs-ambrosia-fonts
 gfs-artemisia-fonts
 gfs-baskerville-fonts
 gfs-bodoni-classic-fonts
 gfs-bodoni-fonts
 gfs-complutum-fonts
 gfs-decker-fonts
 gfs-didot-classic-fonts
 gfs-didot-fonts
 gfs-eustace-fonts
 gfs-fleischman-fonts
 gfs-garaldus-fonts
 gfs-gazis-fonts
 gfs-goschen-fonts
 gfs-ignacio-fonts
 gfs-jackson-fonts
 gfs-neohellenic-fonts
 gfs-nicefore-fonts
 gfs-olga-fonts
 gfs-philostratos-fonts
 gfs-porson-fonts
 gfs-pyrsos-fonts
 gfs-solomos-fonts
 gfs-theokritos-fonts
 ghost-diagrams
 gnome-globalmenu
 gnome-rdp
 gnome-screensaver
 gnome-themes-extras
 gnubik
 google-droid-fonts
 gpsk31
 granule
 greadelf
 griv
 gtkparasite
 gtksourceview2-sharp
 gtksourceview-sharp
 gtranslator
 gts
 gurlchecker
 gwaei
 halibut
 harminv
 healpy
 HippoDraw
 imagej
 imgtarget
 initng
 initng-conf-gtk
 initng-ifiles
 itpp
 jomolhari-fonts
 kanjistrokeorders-fonts
 kbibtex
 kcheckers
 kde-plasma-ihatethecashew
 kde-plasma-translatoid
 kdetv
 kgtk
 klibido
 knutclient
 krusader
 leafpad
 libaccounts-glib
 libaccounts-qt
 libassa
 libax25
 libcgroup
 libcmpiutil
 libctl
 libdwarf
 libglfw
 libibverbs
 libkdcraw
 liblicense
 libmatheval
 libmlx4
 libmthca
 liborigin2
 libqttracker
 libvirt-cim
 libvirt-qpid
 libwfut
 libwps
 LinLog
 linpsk
 linuxdcpp
 lpsk31
 ltl2ba
 madwimax
 meshmagick
 minisat2
 mod_auth_pam
 mod_dnssd
 mod_mono
 moin-latex
 mono-addins
 mono-basic
 mono-debugger
 monodevelop
 monodevelop-boo
 monodevelop-debugger-gdb
 monodevelop-debugger-mdb
 monodevelop-vala
 mono-tools
 monotorrent
 mono-zeroconf
 moto4lin
 mpdscribble
 mrepo
 multiget
 mumbles
 muParser
 mx
 nabi
 nant
 ncview
 netcdf
 netsniff-ng
 notification-daemon-engine-slider
 ocfs2-tools
 oflb-riordonfancy-fonts
 ogre
 ois
 olpcsound
 osiv
 paratype-pt-sans-fonts
 pcmanx-gtk2
 perl-Config-Simple
 perl-Font-TTF
 perl-Ham-Reference-QRZ
 perl-Makefile-DOM
 perl-Net-SMTP-SSL
 pgRouting
 phoronix-test-suite
 photoprint
 photoprint-borders
 picocom
 pisg
 pitivi
 polipo
 presto
 procbench
 proxychains
 purple-plugin_pack
 pyOpenSSL
 python-Chaco
 python-Enable
 python-mechanoid
 python-memcached
 python-pip
 python-polib
 python-pydns
 python-pyspf
 python-rabbyt
 python-tilecache
 python-TraitsBackendWX
 python-werkzeug
 python-zc-lockfile
 python-zdaemon
 python-zope-event
 python-zope-testing
 pywebkitgtk
 pyxmms
 qjson
 qoauth
 qps
 qt4-qsa
 qterm
 QTeXEngine
 qtiplot
 quazip
 qwit
 qwt
 qwt-doc
 rubygem-heroku
 rubygem-mail
 rubygem-mustache
 rubygem-railties
 rubygem-tzinfo
 scala
 scantailor
 scidavis
 scitools
 scrip
 secstate
 seedit
 senamirmir-washra-fonts
 

Re: i915 errors from 3.0 kernel

2011-06-29 Thread Dave Jones
On Wed, Jun 29, 2011 at 01:40:06PM -0400, Genes MailLists wrote:
 
I thought so - glad its benign ... I assume the messages will
  sometimes be useful to the kernel team ...
  
so should I keep mentioning new ones or only if its an actual OOPS?

If you have abrt installed it will file bugs where necessary,
(and also take care of dupes so you won't have to search for them first).

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


[389-devel] Please review: Bug 710372 - Not able to open the Manage Certificate from DS-console

2011-06-29 Thread Rich Megginson
https://bugzilla.redhat.com/show_bug.cgi?id=710372

https://bugzilla.redhat.com/attachment.cgi?id=510505action=diff

https://bugzilla.redhat.com/attachment.cgi?id=510505action=edit
--
389-devel mailing list
389-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel


Re: i915 errors from 3.0 kernel

2011-06-29 Thread Genes MailLists
On 06/29/2011 01:48 PM, Dave Jones wrote:
 On Wed, Jun 29, 2011 at 01:40:06PM -0400, Genes MailLists wrote:
  
 I thought so - glad its benign ... I assume the messages will
   sometimes be useful to the kernel team ...
   
 so should I keep mentioning new ones or only if its an actual OOPS?
 
 If you have abrt installed it will file bugs where necessary,
 (and also take care of dupes so you won't have to search for them first).
 
   Dave
  

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Camilo Mesias
Hmm,

something has broken in F15 for me:

Opps, sealert hit an error!

Traceback (most recent call last):
  File /usr/bin/sealert, line 692, in module
run_as_dbus_service(username)
  File /usr/bin/sealert, line 112, in run_as_dbus_service
app = SEAlert(user, dbus_service.presentation_manager,
watch_setroubleshootd=True)
  File /usr/bin/sealert, line 326, in __init__
from setroubleshoot.browser import BrowserApplet
  File /usr/lib/python2.7/site-packages/setroubleshoot/browser.py,
line 46, in module
import report.io.GTKIO
ImportError: No module named GTKIO

from setroubleshoot-server-3.0.35-1.fc15.i686
in conjunction with libreport-gtk-2.0.4-1.fc15.i686

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Adam Williamson
On Wed, 2011-06-29 at 17:24 -0400, Camilo Mesias wrote:
 Hmm,
 
 something has broken in F15 for me:
 
 Opps, sealert hit an error!
 
 Traceback (most recent call last):
   File /usr/bin/sealert, line 692, in module
 run_as_dbus_service(username)
   File /usr/bin/sealert, line 112, in run_as_dbus_service
 app = SEAlert(user, dbus_service.presentation_manager,
 watch_setroubleshootd=True)
   File /usr/bin/sealert, line 326, in __init__
 from setroubleshoot.browser import BrowserApplet
   File /usr/lib/python2.7/site-packages/setroubleshoot/browser.py,
 line 46, in module
 import report.io.GTKIO
 ImportError: No module named GTKIO
 
 from setroubleshoot-server-3.0.35-1.fc15.i686
 in conjunction with libreport-gtk-2.0.4-1.fc15.i686

https://bugzilla.redhat.com/show_bug.cgi?id=715373
-- 
Adam Williamson
Fedora QA Community Monkey
IRC: adamw | Fedora Talk: adamwill AT fedoraproject DOT org
http://www.happyassassin.net

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


Re: [HEADS-UP] replacing report with libreport

2011-06-29 Thread Michael Schwendt
On Wed, 29 Jun 2011 17:24:17 -0400, CM (Camilo) wrote:

 Hmm,
 
 something has broken in F15 for me:
 
 Opps, sealert hit an error!
 
 Traceback (most recent call last):
   File /usr/bin/sealert, line 692, in module
 run_as_dbus_service(username)
   File /usr/bin/sealert, line 112, in run_as_dbus_service
 app = SEAlert(user, dbus_service.presentation_manager,
 watch_setroubleshootd=True)
   File /usr/bin/sealert, line 326, in __init__
 from setroubleshoot.browser import BrowserApplet
   File /usr/lib/python2.7/site-packages/setroubleshoot/browser.py,
 line 46, in module
 import report.io.GTKIO
 ImportError: No module named GTKIO
 
 from setroubleshoot-server-3.0.35-1.fc15.i686
 in conjunction with libreport-gtk-2.0.4-1.fc15.i686

Known. A faulty libreport update. Look up the existing ticket at
  http://bugz.fedoraproject.org/libreport
if you're interested in background information.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Trusted Boot in Fedora

2011-06-29 Thread Björn Persson
Adam Williamson wrote:
 On Wed, 2011-06-29 at 13:36 +0200, Björn Persson wrote:
  That's not impossible to change though. I have never dared to try
  Coreboot myself, for fear of destroying my motherboard, but in principle
  it's possible to replace the BIOS in most current computers with a free
  implementation. It's looking like the TPM makes it impossible to replace
  Sinit with a free clone.
 
 Most current computers? The support list -
 http://www.coreboot.org/Supported_Motherboards - is tiny, and doesn't
 include any even vaguely recent Intel chipset that I can see. And it
 includes a grand total of four laptops, two of which I've never heard
 of.

Most current computers have their BIOS stored in a flash memory and allow you 
to overwrite it with a newer version. Instead of a newer version of the unfree 
BIOS you can install a free BIOS, if you have one. That is, *in principle* 
it's possible to replace the BIOS in any computer where the BIOS can be 
upgraded. Getting a free BIOS for your particular motherboard is a so-called 
simple matter of programming.

The point I'm trying to make is that there's a difference between an unfree 
Sinit and an unfree BIOS, in that while you can *theoretically* replace the 
BIOS, you will never be able to replace Sinit no matter how much you program, 
because the TPM will reject any Sinit clone that isn't signed by Intel. (At 
least that's what people seem to be saying around here.)

Björn Persson


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

[perl-Test-Most] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit cad0d0457c6c720d82e1939cd1144029d5743753
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 10:41:58 2011 +0200

Perl mass rebuild

 perl-Test-Most.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Most.spec b/perl-Test-Most.spec
index 51b25cc..524479a 100644
--- a/perl-Test-Most.spec
+++ b/perl-Test-Most.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Most
 Version:0.23
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Perl module with test functions and features
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.23-4
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.23-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-CPAN-Meta-YAML] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit d4aa88a64351d8f2d6a07642b92f4d6c4494395b
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:29 2011 +0200

Perl mass rebuild

 perl-CPAN-Meta-YAML.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CPAN-Meta-YAML.spec b/perl-CPAN-Meta-YAML.spec
index f7cc5e3..2330a72 100644
--- a/perl-CPAN-Meta-YAML.spec
+++ b/perl-CPAN-Meta-YAML.spec
@@ -3,7 +3,7 @@
 
 Name:  perl-CPAN-Meta-YAML
 Version:   0.003
-Release:   4%{?dist}
+Release:   5%{?dist}
 Summary:   Read and write a subset of YAML for CPAN Meta files
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -57,6 +57,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/CPAN::Meta::YAML.3pm*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.003-5
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.003-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-String-Diff] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 94ef8c37340754e8b57ad28f4cf33733802cec5f
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:28 2011 +0200

Perl mass rebuild

 perl-String-Diff.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-String-Diff.spec b/perl-String-Diff.spec
index 6c43132..f51dbc1 100644
--- a/perl-String-Diff.spec
+++ b/perl-String-Diff.spec
@@ -1,6 +1,6 @@
 Name:   perl-String-Diff
 Version:0.04
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Simple diff to String
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -50,6 +50,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.04-8
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.04-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Test-Base] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 8e0ed93aaa94cb051eb77a55de275c47e8fa5bec
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:29 2011 +0200

Perl mass rebuild

 perl-Test-Base.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Base.spec b/perl-Test-Base.spec
index 6697536..1581885 100644
--- a/perl-Test-Base.spec
+++ b/perl-Test-Base.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Base
 Version:0.60
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Data Driven Testing Framework
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -49,6 +49,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.60-2
+- Perl mass rebuild
+
 * Sat May 14 2011 Iain Arnell iarn...@gmail.com 0.60-1
 - update to latest upstream version
 - clean up spec for modern rpmbuild
--
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-XXX] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 3f6307e763a3be4bbec10e2c77fb117a57e7242b
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:28 2011 +0200

Perl mass rebuild

 perl-XXX.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-XXX.spec b/perl-XXX.spec
index fb02468..e81c76c 100644
--- a/perl-XXX.spec
+++ b/perl-XXX.spec
@@ -1,6 +1,6 @@
 Name:   perl-XXX
 Version:0.17
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:See Your Data in the Nude
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.17-4
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.17-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Config-Auto] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 5f3306ae855bb2cf4613f9b1747e2e4275482412
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:27 2011 +0200

Perl mass rebuild

 perl-Config-Auto.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Config-Auto.spec b/perl-Config-Auto.spec
index 265a75e..60ac164 100644
--- a/perl-Config-Auto.spec
+++ b/perl-Config-Auto.spec
@@ -1,6 +1,6 @@
 Name:   perl-Config-Auto
 Version:0.34
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Magical config file parser
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.34-2
+- Perl mass rebuild
+
 * Wed Mar 09 2011 Emmanuel Seyman emmanuel.sey...@club-internet.fr - 0.34-1
 - Update to 0.34
 
--
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-B-Keywords] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 7ddbffa73a0b19deca3e84611b9e592ee7721fc1
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:28 2011 +0200

Perl mass rebuild

 perl-B-Keywords.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-B-Keywords.spec b/perl-B-Keywords.spec
index 6887e57..9c7e0e7 100644
--- a/perl-B-Keywords.spec
+++ b/perl-B-Keywords.spec
@@ -1,6 +1,6 @@
 Name:   perl-B-Keywords
 Version:1.10
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Lists of reserved barewords and symbol names
 
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.10-3
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.10-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-DBIx-POS] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 80498fe368c9cd5fb3709f855082273eb6c2be86
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:28 2011 +0200

Perl mass rebuild

 perl-DBIx-POS.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-DBIx-POS.spec b/perl-DBIx-POS.spec
index 19521e3..471b5f9 100644
--- a/perl-DBIx-POS.spec
+++ b/perl-DBIx-POS.spec
@@ -1,6 +1,6 @@
 Name:   perl-DBIx-POS
 Version:0.03
-Release:11%{?dist}
+Release:12%{?dist}
 Summary:Define a dictionary of SQL statements in a POD dialect (POS)
 # There was some code that was taken from Class::Singleton, which was Artistic 
only at the time.
 # That code has since been relicensed to GPL+ or Artistic.
@@ -55,6 +55,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.03-12
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.03-11
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-HTTP-BrowserDetect] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit b74cf9e27ca5e4ce51b1b5c78ae3c53e15fd91b2
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:28 2011 +0200

Perl mass rebuild

 perl-HTTP-BrowserDetect.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTTP-BrowserDetect.spec b/perl-HTTP-BrowserDetect.spec
index ec6b437..9bfc05a 100644
--- a/perl-HTTP-BrowserDetect.spec
+++ b/perl-HTTP-BrowserDetect.spec
@@ -1,7 +1,7 @@
 Name:   perl-HTTP-BrowserDetect
 Summary:Determine the Web browser, version, and platform from an HTTP 
user agent string
 Version:1.21
-Release:2%{?dist}
+Release:3%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/HTTP-BrowserDetect/
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.21-3
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.21-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Module-Compile] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit d5699fd6a4b501e22a30cd5282fbe20957349070
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 11:54:29 2011 +0200

Perl mass rebuild

 perl-Module-Compile.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Module-Compile.spec b/perl-Module-Compile.spec
index 75277b9..9a91b7e 100644
--- a/perl-Module-Compile.spec
+++ b/perl-Module-Compile.spec
@@ -1,6 +1,6 @@
 Name:   perl-Module-Compile
 Version:0.20
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Perl Module Compilation
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.20-10
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.20-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Test-Dependencies] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 8c67d01d61cd8b95b844c7d2616f1ad7b1a3cec9
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 12:02:27 2011 +0200

Perl mass rebuild

 perl-Test-Dependencies.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Test-Dependencies.spec b/perl-Test-Dependencies.spec
index 8b1783e..86ee3ec 100644
--- a/perl-Test-Dependencies.spec
+++ b/perl-Test-Dependencies.spec
@@ -1,6 +1,6 @@
 Name:   perl-Test-Dependencies 
 Version:0.12
-Release:1%{?dist}
+Release:2%{?dist}
 # see lib/Test/Dependencies.pm
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -55,6 +55,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.12-2
+- Perl mass rebuild
+
 * Fri Feb 25 2011 Iain Arnell iarn...@gmail.com 0.12-1
 - update to latest upstream version
 - clean up spec for modern rpmbuild
--
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-SDL] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit eac7d487dae51d1d7500456d034a195c3ec06f37
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 12:02:47 2011 +0200

Perl mass rebuild

 perl-SDL.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-SDL.spec b/perl-SDL.spec
index 0816fb4..b5fbdd4 100644
--- a/perl-SDL.spec
+++ b/perl-SDL.spec
@@ -1,6 +1,6 @@
 Name:   perl-SDL
 Version:2.2.6
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:SDL bindings for the Perl language
 Group:  Development/Libraries
 License:LGPLv2+
@@ -60,6 +60,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 2.2.6-2
+- Perl mass rebuild
+
 * Tue Feb 22 2011 Hans de Goede hdego...@redhat.com - 2.2.6-1
 - Rebase to 2.2.6 upstream release (#679313)
 
--
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-Data-Denter] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 26c606e1fd68f9a15a9cdd47fb50472dcf024841
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 12:02:50 2011 +0200

Perl mass rebuild

 perl-Data-Denter.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Data-Denter.spec b/perl-Data-Denter.spec
index cd83569..22eed84 100644
--- a/perl-Data-Denter.spec
+++ b/perl-Data-Denter.spec
@@ -1,6 +1,6 @@
 Name:   perl-Data-Denter 
 Version:0.15 
-Release:6%{?dist}
+Release:7%{?dist}
 # Denter.pod - GPL+ or Artistic
 License:GPL+ or Artistic 
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ rm -rf %{buildroot}
 %{_mandir}/man3/*.3*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.15-7
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.15-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-CPAN-Meta-YAML] Bump release because of koji error.

2011-06-29 Thread Marcela Mašláňová
commit c277bbe7f0e9fce3d43b79f50e1001687aba6aff
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 12:38:24 2011 +0200

Bump release because of koji error.

 perl-CPAN-Meta-YAML.spec |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/perl-CPAN-Meta-YAML.spec b/perl-CPAN-Meta-YAML.spec
index 2330a72..91a1c2d 100644
--- a/perl-CPAN-Meta-YAML.spec
+++ b/perl-CPAN-Meta-YAML.spec
@@ -3,7 +3,7 @@
 
 Name:  perl-CPAN-Meta-YAML
 Version:   0.003
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Read and write a subset of YAML for CPAN Meta files
 License:   GPL+ or Artistic
 Group: Development/Libraries
@@ -57,7 +57,7 @@ rm -rf %{buildroot}
 %{_mandir}/man3/CPAN::Meta::YAML.3pm*
 
 %changelog
-* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.003-5
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.003-6
 - Perl mass rebuild
 
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.003-4
--
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 Sys-Virt-0.2.7.tar.gz uploaded to lookaside cache by berrange

2011-06-29 Thread Daniel P. Berrange
A file has been added to the lookaside cache for perl-Sys-Virt:

968641ea0f85c6ad25ed13ba235f06ff  Sys-Virt-0.2.7.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-Sys-Virt] Update to 0.2.7 release

2011-06-29 Thread Daniel P. Berrange
commit 350c2c75a5d4ed6e435505ca85bc6e9eb4094b01
Author: Daniel P. Berrange berra...@redhat.com
Date:   Wed Jun 29 11:52:19 2011 +0100

Update to 0.2.7 release

 Sys-Virt-0.2.6-get_xml_description-flags.patch |  140 
 Sys-Virt-0.2.6-xpath-cast.patch|   16 ---
 perl-Sys-Virt.spec |   13 +-
 sources|2 +-
 4 files changed, 7 insertions(+), 164 deletions(-)
---
diff --git a/perl-Sys-Virt.spec b/perl-Sys-Virt.spec
index f8e80fe..0d3d83b 100644
--- a/perl-Sys-Virt.spec
+++ b/perl-Sys-Virt.spec
@@ -1,19 +1,17 @@
 Name:   perl-Sys-Virt
-Version:0.2.6
-Release:3%{?dist}
+Version:0.2.7
+Release:1%{?dist}
 Summary:Represent and manage a libvirt hypervisor connection
 License:GPLv2+ or Artistic
 Group:  Development/Libraries
 URL:http://search.cpan.org/dist/Sys-Virt/
 Source0:
http://www.cpan.org/authors/id/D/DA/DANBERR/Sys-Virt-%{version}.tar.gz
-Patch1: Sys-Virt-%{version}-xpath-cast.patch
-Patch2: Sys-Virt-%{version}-get_xml_description-flags.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:  perl(ExtUtils::MakeMaker)
 BuildRequires:  perl(Test::Pod)
 BuildRequires:  perl(Test::Pod::Coverage)
 BuildRequires:  perl(XML::XPath)
-BuildRequires:  libvirt-devel = 0.8.1
+BuildRequires:  libvirt-devel = 0.8.8
 Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
 
 %description
@@ -23,8 +21,6 @@ virtualization containers to be managed with a consistent API.
 
 %prep
 %setup -q -n Sys-Virt-%{version}
-%patch1 -p1
-%patch2 -p1
 
 sed -i -e '/Sys-Virt\.spec/d' Makefile.PL
 sed -i -e '/\.spec\.PL$/d' MANIFEST
@@ -59,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Daniel P. Berrange berra...@redhat.com - 0.2.7-1
+- Update to 0.2.7 release
+
 * Thu May 19 2011 Matthew Booth mbo...@redhat.com - 0.2.6-3
 - Backport get_xml_description with flags
 
diff --git a/sources b/sources
index bd60c3b..05aa6c5 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a4ca5735791e132320bd8546c5deacae  Sys-Virt-0.2.6.tar.gz
+968641ea0f85c6ad25ed13ba235f06ff  Sys-Virt-0.2.7.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-ExtUtils-XSpp] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit db8e2573a0e04b17f99b784b48e38afb934f8db6
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 13:33:13 2011 +0200

Perl mass rebuild

 perl-ExtUtils-XSpp.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-ExtUtils-XSpp.spec b/perl-ExtUtils-XSpp.spec
index 3e56c08..156f893 100644
--- a/perl-ExtUtils-XSpp.spec
+++ b/perl-ExtUtils-XSpp.spec
@@ -1,7 +1,7 @@
 Name:   perl-ExtUtils-XSpp
 # Use four digits since 0.1601
 Version:0.1602
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:C++ variant of Perl's XS language
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -43,6 +43,9 @@ find $RPM_BUILD_ROOT -depth -type d -empty -exec rmdir {} \;
 %{_mandir}/man?/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.1602-2
+- Perl mass rebuild
+
 * Mon Jun 06 2011 Petr Pisar ppi...@redhat.com - 0.1602-1
 - 0.1602 bump
 - Remove defattr
--
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-CGI-Application-Plugin-ConfigAuto] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit f1db69d0a2667fc320490030d7aca2456e4fb403
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 13:33:14 2011 +0200

Perl mass rebuild

 perl-CGI-Application-Plugin-ConfigAuto.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Application-Plugin-ConfigAuto.spec 
b/perl-CGI-Application-Plugin-ConfigAuto.spec
index 8cbf903..58eae10 100644
--- a/perl-CGI-Application-Plugin-ConfigAuto.spec
+++ b/perl-CGI-Application-Plugin-ConfigAuto.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Application-Plugin-ConfigAuto
 Version:1.33
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Easy configuration file management for CGI::Application
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.33-2
+- Perl mass rebuild
+
 * Wed Mar 02 2011 Emmanuel Seyman emmanuel.sey...@club-internet.fr - 1.33-1
 - Update to 1.33
 
--
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-WWW-Curl] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 60d9b1096ed6691013d0737b20df0cf4157f71fa
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 13:33:13 2011 +0200

Perl mass rebuild

 perl-WWW-Curl.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-WWW-Curl.spec b/perl-WWW-Curl.spec
index 442a1ef..6c177d5 100644
--- a/perl-WWW-Curl.spec
+++ b/perl-WWW-Curl.spec
@@ -5,7 +5,7 @@
 
 Name:   perl-WWW-Curl
 Version:4.15
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Perl extension interface for libcurl
 License:MPLv1.1 or MIT
 Group:  Development/Libraries
@@ -66,6 +66,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 4.15-3
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 4.15-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[perl-HTML-Selector-XPath] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 37d49bce76a5a21123ec0453f998e901c5b53334
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 13:33:13 2011 +0200

Perl mass rebuild

 perl-HTML-Selector-XPath.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-Selector-XPath.spec b/perl-HTML-Selector-XPath.spec
index 14f0481..5fc3e50 100644
--- a/perl-HTML-Selector-XPath.spec
+++ b/perl-HTML-Selector-XPath.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-Selector-XPath
 Version:0.07
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:CSS Selector to XPath compiler
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.07-2
+- Perl mass rebuild
+
 * Sun Mar 27 2011 Ralf Corsépius corse...@fedoraproject.org 0.07-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

[Bug 660847] CVE-2010-4334 perl-IO-Socket-SSL: ignores user request for peer verification

2011-06-29 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.


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

--- Comment #9 from Paul Howarth p...@city-fan.org 2011-06-29 08:09:49 EDT ---
I believe this one can be closed now.

-- 
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
--- 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-Eval-Closure] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 7f611346e6b324a6e2b75fff16650530d8db531d
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:07 2011 +0200

Perl mass rebuild

 perl-Eval-Closure.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Eval-Closure.spec b/perl-Eval-Closure.spec
index ec01d6d..244e15e 100644
--- a/perl-Eval-Closure.spec
+++ b/perl-Eval-Closure.spec
@@ -1,6 +1,6 @@
 Name:   perl-Eval-Closure
 Version:0.06
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Safely and cleanly create closures via string eval
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -62,6 +62,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.06-2
+- Perl mass rebuild
+
 * Tue Jun 07 2011 Iain Arnell iarn...@gmail.com 0.06-1
 - update to latest upstream version
 
--
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-Config-INI] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 20606edb8313cf9aff1c18a1e87c0ed41162c686
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:04 2011 +0200

Perl mass rebuild

 perl-Config-INI.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Config-INI.spec b/perl-Config-INI.spec
index 5ae52ad..74240ca 100644
--- a/perl-Config-INI.spec
+++ b/perl-Config-INI.spec
@@ -1,6 +1,6 @@
 Name:   perl-Config-INI
 Version:0.018
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Config::INI Perl module
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -42,6 +42,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.018-2
+- Perl mass rebuild
+
 * Sat Jun 04 2011 Iain Arnell iarn...@gmail.com 0.018-1
 - update to latest upstream version
 
--
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-Software-License] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 4136c1d35b8a2e6e4f2fd9522156d17cd00fd97f
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:07 2011 +0200

Perl mass rebuild

 perl-Software-License.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Software-License.spec b/perl-Software-License.spec
index 53af5b3..4028c72 100644
--- a/perl-Software-License.spec
+++ b/perl-Software-License.spec
@@ -1,6 +1,6 @@
 Name:   perl-Software-License
 Version:0.102341
-Release:3%{?dist}
+Release:4%{?dist}
 Summary:Package that provides templated software licenses
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.102341-4
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.102341-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Sub-WrapPackages] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 23287469463fbdc1ffd38ba08bfdc12dbdf2b6c6
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:04 2011 +0200

Perl mass rebuild

 perl-Sub-WrapPackages.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Sub-WrapPackages.spec b/perl-Sub-WrapPackages.spec
index 687bcaa..349c33a 100644
--- a/perl-Sub-WrapPackages.spec
+++ b/perl-Sub-WrapPackages.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-WrapPackages
 Version:2.0
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Add wrappers around all the subroutines in packages
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -53,6 +53,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 2.0-6
+- Perl mass rebuild
+
 * Wed Feb 09 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.0-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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

[perlbrew] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit a853e04447e23884b22ad00997ab011e7c06d8d3
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:06 2011 +0200

Perl mass rebuild

 perlbrew.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perlbrew.spec b/perlbrew.spec
index c5d3bb6..e2e08f2 100644
--- a/perlbrew.spec
+++ b/perlbrew.spec
@@ -1,6 +1,6 @@
 Name:   perlbrew
 Version:0.24
-Release:2%{?dist}
+Release:3%{?dist}
 Summary:Manage perl installations in your $HOME
 License:MIT
 Group:  Development/Libraries
@@ -60,6 +60,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.24-3
+- Perl mass rebuild
+
 * Sun Jun 12 2011 Iain Arnell iarn...@gmail.com 0.24-2
 - BR perl(Test::Spec) and reinstate t/installation2.t
 
--
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-FillInForm] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit c4b3d52eea095c70e66cefe6086da7460af83fad
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:05 2011 +0200

Perl mass rebuild

 perl-HTML-FillInForm.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-HTML-FillInForm.spec b/perl-HTML-FillInForm.spec
index f3a162c..943aa83 100644
--- a/perl-HTML-FillInForm.spec
+++ b/perl-HTML-FillInForm.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTML-FillInForm
 Version:2.00
-Release:6%{?dist}
+Release:7%{?dist}
 Summary:Populates HTML Forms with data
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -51,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 2.00-7
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 2.00-6
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Mixin-ExtraFields] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 7c38ada952a139318add998facd49a304ab87cb7
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:01:05 2011 +0200

Perl mass rebuild

 perl-Mixin-ExtraFields.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-Mixin-ExtraFields.spec b/perl-Mixin-ExtraFields.spec
index d30f4ab..8b40476 100644
--- a/perl-Mixin-ExtraFields.spec
+++ b/perl-Mixin-ExtraFields.spec
@@ -1,6 +1,6 @@
 Name:   perl-Mixin-ExtraFields
 Version:0.100971
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Add extra stashes of data to your objects
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -57,6 +57,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 0.100971-5
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 0.100971-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-CGI-Application-Plugin-FillInForm] Perl mass rebuild

2011-06-29 Thread Marcela Mašláňová
commit 6d03a02e5fadb06bd2f850db05234bbbda90e147
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Wed Jun 29 17:39:02 2011 +0200

Perl mass rebuild

 perl-CGI-Application-Plugin-FillInForm.spec |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/perl-CGI-Application-Plugin-FillInForm.spec 
b/perl-CGI-Application-Plugin-FillInForm.spec
index 6c714ca..b8f1d97 100644
--- a/perl-CGI-Application-Plugin-FillInForm.spec
+++ b/perl-CGI-Application-Plugin-FillInForm.spec
@@ -1,6 +1,6 @@
 Name:   perl-CGI-Application-Plugin-FillInForm
 Version:1.15
-Release:7%{?dist}
+Release:8%{?dist}
 Summary:Integrate CGI::Application with HTML::FillInForm
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -48,6 +48,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Wed Jun 29 2011 Marcela Mašláňová mmasl...@redhat.com - 1.15-8
+- Perl mass rebuild
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.15-7
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_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-Perl-Critic] Run the author tests if we're not bootstrapping

2011-06-29 Thread Paul Howarth
commit 5eb7be0114af7417c4b596c4834768fdf19c578e
Author: Paul Howarth p...@city-fan.org
Date:   Wed Jun 29 20:01:46 2011 +0100

Run the author tests if we're not bootstrapping

 perl-Perl-Critic.spec |   13 -
 1 files changed, 4 insertions(+), 9 deletions(-)
---
diff --git a/perl-Perl-Critic.spec b/perl-Perl-Critic.spec
index a357ecf..76f8e53 100644
--- a/perl-Perl-Critic.spec
+++ b/perl-Perl-Critic.spec
@@ -1,5 +1,3 @@
-%bcond_with authortests
-
 Name:   perl-Perl-Critic
 Version:1.116
 Release:2%{?dist}
@@ -75,8 +73,8 @@ BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::Memory::Cycle)
 BuildRequires:  perl(Test::More)
 
-# Author tests
-%if %{with authortests}
+# Author tests: not run if we're bootstrapping
+%if 0%{!?perl_bootstrap:1}
 BuildRequires:  perl(Devel::EnforceEncapsulation)
 BuildRequires:  perl(Perl::Critic::Policy::Editor::RequireEmacsFileVariables)
 BuildRequires:  
perl(Perl::Critic::Policy::ErrorHandling::RequireUseOfExceptions)
@@ -134,11 +132,7 @@ find . -type f -exec chmod -c -x {} +
 
 
 %check
-%if %{with authortests}
-LC_ALL=en_US ./Build authortest
-%else
-LC_ALL=en_US ./Build test
-%endif
+LC_ALL=en_US ./Build %{!?perl_bootstrap:author}test
 
 
 %files
@@ -159,6 +153,7 @@ LC_ALL=en_US ./Build test
 %changelog
 * Wed Jun 29 2011 Paul Howarth p...@city-fan.org - 1.116-2
 - move BR: perl(Test::Perl::Critic) to author test section where it belongs
+- run the author tests if we're not bootstrapping
 
 * Mon May 16 2011 Paul Howarth p...@city-fan.org - 1.116-1
 - update to 1.116
--
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-Perl-Critic] Move BR: perl(Test::Perl::Critic) to author test section where it belongs

2011-06-29 Thread Paul Howarth
commit fbad33c454fe1fe08b1df16c3a26b60fda7fd8e4
Author: Paul Howarth p...@city-fan.org
Date:   Wed Jun 29 19:32:26 2011 +0100

Move BR: perl(Test::Perl::Critic) to author test section where it belongs

 perl-Perl-Critic.spec |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/perl-Perl-Critic.spec b/perl-Perl-Critic.spec
index 80eb678..a357ecf 100644
--- a/perl-Perl-Critic.spec
+++ b/perl-Perl-Critic.spec
@@ -2,7 +2,7 @@
 
 Name:   perl-Perl-Critic
 Version:1.116
-Release:1%{?dist}
+Release:2%{?dist}
 Summary:Critique Perl source code for best-practices
 
 Group:  Development/Libraries
@@ -74,7 +74,6 @@ Requires:   perl(Term::ANSIColor) = 2.02
 BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::Memory::Cycle)
 BuildRequires:  perl(Test::More)
-BuildRequires:  perl(Test::Perl::Critic)
 
 # Author tests
 %if %{with authortests}
@@ -82,6 +81,7 @@ BuildRequires:  perl(Devel::EnforceEncapsulation)
 BuildRequires:  perl(Perl::Critic::Policy::Editor::RequireEmacsFileVariables)
 BuildRequires:  
perl(Perl::Critic::Policy::ErrorHandling::RequireUseOfExceptions)
 BuildRequires:  perl(Test::Kwalitee)
+BuildRequires:  perl(Test::Perl::Critic)
 BuildRequires:  perl(Test::Pod) = 1.00
 BuildRequires:  perl(Test::Pod::Coverage) = 1.04
 BuildRequires:  perl(Test::Without::Module)
@@ -157,6 +157,9 @@ LC_ALL=en_US ./Build test
 
 
 %changelog
+* Wed Jun 29 2011 Paul Howarth p...@city-fan.org - 1.116-2
+- move BR: perl(Test::Perl::Critic) to author test section where it belongs
+
 * Mon May 16 2011 Paul Howarth p...@city-fan.org - 1.116-1
 - update to 1.116
   - BuiltInFunctions::ProhibitLvalueSubstr does not report violations if the
--
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-Perl-Critic] Created tag perl-Perl-Critic-1.116-2.fc16

2011-06-29 Thread Paul Howarth
The lightweight tag 'perl-Perl-Critic-1.116-2.fc16' was created pointing to:

 5eb7be0... Run the author tests if we're not bootstrapping
--
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