[Bug 636803] Update mldonkey to ver. 3.0.5

2011-05-02 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=636803

--- Comment #4 from 甘露(Gan Lu) rhythm@gmail.com 2011-05-02 04:20:41 EDT 
---
I think Fedora is a great distro, and its community is quite good, but I am
using Arch Linux, this may be the reason:
https://bugs.archlinux.org/task/22984

-- 
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.
___
ocaml-devel mailing list
ocaml-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/ocaml-devel

Re: adding manual to existing package - soft review ?

2011-05-02 Thread Ville Skyttä
On 05/02/2011 01:48 AM, David Timms wrote:
 The -manual package can be used by either audacity or 
 audacity-freeworld. At the moment the manual spec marks up the 
 datadair/audacity folder and hence dually owns it with audacity if that 
 is installed. Reading the packaging examples, seems that this can 
 sometimes be OK, but does what I've done make sense ?

Seems to make sense if you don't want to add a dependency to either package.

 Or should I Require the audacity (or audacity-freeworld) package, and 
 not add the datadir/audacity folder to the -manual directory.

No opinion on that (don't know enough about it), but if you do, you can
accomplish the or by adding a dependency on /usr/bin/audacity.

 Thirdly, vague recollection of one source/package. Should the -manual 
 just be a separate package anyway (review?) ? It's likely to be updated 
 more often, but not necessarily in sync with the program.

I'd lean towards making it a completely separate subpackage then.  But
whichever way you choose, the manual should be kept in sync with the
main package so that it documents whatever is in the main package, not
earlier nor newer version of the software.

If the intent is to make the manual installable without installing
audacity itself, I'd also consider installing the manual to let's say
/usr/share/doc/audacity-manual and patching the main packages to use it
from there, I think that's a location where people are more likely to
find it than /usr/share/audacity/help.

 4. Being new to git/fedpkg, how can I tell which branch I'm on ?

git branch.

If you use bash, here's how you get it shown directly in your prompt:
http://fedoraproject.org/wiki/Git_Quickref#Display_current_branch_in_bash
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Package with x86 vector instruction support

2011-05-02 Thread Christoph Frieben
On Wed, Apr 20, 2011 at 5:27 PM, Jussi Lehtola wrote:
 x86_64: plain and sse2

This does not look good to me, because the x86-64 instruction set only
includes sse2. sse3 is not available on every amd64 processor and thus
should not be used by default. The maintainer should rather build the
base package for sse2 and create an sse3 optimized subpackage
atlas-sse3. Otherwise illegal instruction errors can occur
unexpectedly.
~C
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: [solved] illegal instruction - create compile variants ?

2011-05-02 Thread David Timms
On 02/05/11 11:01, Reindl Harald wrote:
 the application must cpu-runtime-detect itself what means taht for
 performance-critical parts different code is included and at
 the start the application checks what code-parts have to be used

 but this is nothing anybody can make generic by packaging if
 the developer do not support native nor you can analyze the
 binary to find this out
OK, thanks all responders for clear logic and possible solutions.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: illegal instruction - create compile variants ?

2011-05-02 Thread Hans de Goede
Hi,

On 05/01/2011 09:56 AM, David Timms wrote:
 On 01/05/11 17:41, Hans de Goede wrote:
 Erm, specifying a minimum support CPU in the package description is
 not acceptable IMHO. The fix here is to patch the packages buildsystem,
 so that it gets build for the minimum cpu level which is supported by
 Fedora, and thus will work out of the box on all systems Fedora
 supports.
 Where is that stated currently, and for older releases ?


I was hoping someone who knows the exact answer knows... All I can give
you is:
http://docs.fedoraproject.org/en-US/Fedora/13/html/Release_Notes/index.html#sect-Release_Notes-Hardware_Requirements

Which is not really exact...

 No tricks / hacks with multiple compilation, cpu detect scripts, etc.
 will be necessary then.
 Though it comes at the cost of audio lag/latency increase when we are
 trying to achieve near real time (eg live guitar input to sound effect
 generation output). Even on the my machine (4x core amd 3Ghz), the
 calculations the app performs for difficult presets (convolution) can
 cause jack to abort because rakarrack didn't finish it's calculations
 before it was required to deliver data.

 Should I be suggesting to upstream to attempt to detect CPU before
 running non-available instructions, eg as part of app startup ?
 Can that even be done (reliably) ?

As already answered by others ideal would be one binary, which runtime
chooses between normal C and mmx/sse#/whatever variants based
on CPU capabilities.

This is definitely something to ask to upstream, as this won't
be trivial.

In the mean time, you need to patch the build-system so that
you can control what cpu features it will enable, then you
can build a number of variants, install them as
/usr/libexec/%{name}-$cpufeaturepostfix

And make /usr/bin/%{name} a shell script which checks
/cpu/procinfo for features and then executes the right
binary (passing through all cmdline args using the
$@ magic var for proper quoting)

For which variants it makes sense to build, you would
need to talk to someone who is more of a cpu head then me,
try starting a new thread, with an appropriate $subject.

Note that all of this is only really needed on 32 bits,
on 64 bit I believe (*) all cpu's have at least sse2, so unless
you want to use sse3 you'll only need 1 binary there.

Which brings us to a simpler alternative, build a no cpu
specific optimizations 32 bit version and use sse2 on x86_64,
which is nice and simple.

You could then add a README.fedora advising people to use
the 64 bit version.

Regards,

Hans

*) Still no CPU head, better verify this with someone who is.


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


Re: illegal instruction - create compile variants ?

2011-05-02 Thread Jan Kratochvil
On Sun, 01 May 2011 22:31:42 +0200, Kevin Kofler wrote:
 Yes, all the packages which have WORKING support for SSE etc. in Fedora do 
 that. See e.g.
 https://projects.kde.org/projects/kde/kdelibs/repository/revisions/master/entry/solid/solid/backends/shared/cpufeatures.cpp
 https://projects.kde.org/projects/kde/kdelibs/repository/revisions/master/entry/solid/solid/backends/udev/cpuinfo.cpp
 https://projects.kde.org/projects/kde/kdelibs/repository/revisions/master/entry/solid/solid/backends/udev/udevprocessor.cpp
 for the implementation Solid (in kdelibs) uses.

There is the STT_GNU_IFUNC feature implemented for it - the indirect is handled
by linker without an additional indirect overhead if applied for a shared
library function. For apps it works in a similar way as normal indirect.

In use by glibc:

include/libc-symbols.h:
/* Marker used for indirection function symbols.  */
#define libc_ifunc(name, expr)  \
  extern void *name##_ifunc (void) __asm__ (#name); \
  void *name##_ifunc (void) \
  { \
INIT_ARCH ();   \
__typeof (name) *res = expr;\
return res; \
  } \
  __asm__ (.type  #name , %gnu_indirect_function);

sysdeps/x86_64/multiarch/memmove.c:
libc_ifunc (memmove,
HAS_SSSE3
? (HAS_FAST_COPY_BACKWARD
   ? __memmove_ssse3_back : __memmove_ssse3)
: __memmove_sse2);
etc.

Or a simpler testcase:

http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/testsuite/gdb.base/gnu-ifunc-lib.c?rev=1.1cvsroot=src


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


rawhide report: 20110502 changes

2011-05-02 Thread Rawhide Report
Compose started at Mon May  2 08:15:02 UTC 2011

Broken deps for x86_64
--
beldi-0.9.25-3.fc15.x86_64 requires libhal-storage.so.1()(64bit)
beldi-0.9.25-3.fc15.x86_64 requires libhal.so.1()(64bit)
beldi-0.9.25-3.fc15.x86_64 requires hal
callweaver-javascript-1.2.1-8.fc16.x86_64 requires libjs.so.1()(64bit)
camcardsync-0.1.1-4.fc15.x86_64 requires libhal.so.1()(64bit)
couchdb-1.0.2-2.fc16.x86_64 requires libjs.so.1()(64bit)
cpm-0.23-0.3.beta.fc12.x86_64 requires libdotconf-1.0.so.0()(64bit)
db4o-7.4-2.fc13.x86_64 requires mono(Mono.GetOptions) = 0:2.0.0.0
dh-make-0.55-3.fc15.noarch requires debhelper
emerillon-0.1.2-14.fc15.x86_64 requires 
libchamplain-gtk-0.8.so.1()(64bit)
emerillon-0.1.2-14.fc15.x86_64 requires libchamplain-0.8.so.1()(64bit)
exaile-0.3.2.1-1.fc16.noarch requires hal
file-browser-applet-0.6.6-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gedit-valencia-0.3.0-4.fc14.x86_64 requires libvala-0.10.so.0()(64bit)
2:gimp-2.6.11-8.fc16.x86_64 requires libhal.so.1()(64bit)
glunarclock-0.34.1-1.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-bubblemon-2.0.15-1.fc13.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-cpufire-1.6-3.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-globalmenu-0.7.9-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-grandr-0.4.1-2.fc12.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-music-2.5.1-5.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-sensors-2.2.7-4.fc15.i686 requires libpanel-applet-2.so.0
gnome-applet-sensors-2.2.7-4.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-sshmenu-3.18-3.fc15.noarch requires ruby(panelapplet2)
gnome-applet-window-picker-0.5.8-2.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires 
libpanel-applet-3.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires libgweather.so.1()(64bit)
gnome-device-manager-0.2-6.fc15.x86_64 requires libhal.so.1()(64bit)
gnome-device-manager-devel-0.2-6.fc15.i686 requires hal-devel = 
0:0.5.10
gnome-device-manager-devel-0.2-6.fc15.i686 requires pkgconfig(hal)
gnome-device-manager-devel-0.2-6.fc15.x86_64 requires hal-devel = 
0:0.5.10
gnome-device-manager-devel-0.2-6.fc15.x86_64 requires pkgconfig(hal)
gnome-device-manager-libs-0.2-6.fc15.i686 requires libhal.so.1
gnome-device-manager-libs-0.2-6.fc15.i686 requires hal = 0:0.5.10
gnome-device-manager-libs-0.2-6.fc15.x86_64 requires 
libhal.so.1()(64bit)
gnome-device-manager-libs-0.2-6.fc15.x86_64 requires hal = 0:0.5.10
gnome-netstatus-2.28.2-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotdconduit.so.3()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotd.so.5()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotdcm.so.4()(64bit)
gnome-python2-applet-2.32.0-1.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-python2-brasero-2.32.0-1.fc14.x86_64 requires 
libbrasero-burn.so.1()(64bit)
gnome-python2-brasero-2.32.0-1.fc14.x86_64 requires 
libbrasero-media.so.1()(64bit)
gnome-python2-evince-2.32.0-1.fc14.x86_64 requires 
libevview.so.3()(64bit)
gnome-python2-evince-2.32.0-1.fc14.x86_64 requires 
libevdocument.so.3()(64bit)
gnome-python2-evolution-2.32.0-1.fc14.x86_64 requires 
libcamel-1.2.so.19()(64bit)
gnome-python2-gdl-2.25.3-22.fc15.x86_64 requires libgdl-1.so.3()(64bit)
gnome-python2-totem-2.32.0-1.fc14.x86_64 requires 
libgnome-media-profiles.so.0()(64bit)
gnome-rdp-0.2.3-6.fc12.x86_64 requires mono(Mono.Data.SqliteClient) = 
0:2.0.0.0
gnotime-2.3.0-8.fc15.x86_64 requires libgtkhtml-3.15.so.19()(64bit)
gnubiff-2.2.13-4.fc15.x86_64 requires libpanel-applet-2.so.0()(64bit)
gold-2.1.12.2-5.fc15.noarch requires perl(Data::Properties)
gorm-1.2.13-0.20110331.fc16.i686 requires libgnustep-gui.so.0.19
gorm-1.2.13-0.20110331.fc16.i686 requires libgnustep-base.so.1.21
gorm-1.2.13-0.20110331.fc16.x86_64 requires 
libgnustep-gui.so.0.19()(64bit)
gorm-1.2.13-0.20110331.fc16.x86_64 requires 
libgnustep-base.so.1.21()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires libchamplain-0.6.so.0()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires 
libchamplain-gtk-0.6.so.0()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires libgdl-1.so.3()(64bit)

Re: adding manual to existing package - soft review ?

2011-05-02 Thread Niels de Vos
 Date: Mon, 02 May 2011 08:48:26 +1000
 From: David Timms dti...@iinet.net.au
 Subject: adding manual to existing package - soft review ?
 To: Development discussions related to Fedora
        devel@lists.fedoraproject.org
 Message-ID: 4dbde33a.9030...@iinet.net.au
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed

 Hi, I'm adding a subpackage -manual to audacity to include the
 additional manual archive. It links from the help menu items if it is
 installed, or else points you to the in development online version.

 I already made a mistake and included manual files in both the main and
 sub package. The spec change [1] I've committed fixes this.

 The -manual package can be used by either audacity or
 audacity-freeworld. At the moment the manual spec marks up the
 datadair/audacity folder and hence dually owns it with audacity if that
 is installed. Reading the packaging examples, seems that this can
 sometimes be OK, but does what I've done make sense ?

In your updated spec the manual (from the URL) does not contain a
version. When creating a sub-package, both audacity and
audacity-manual will have the same version. I do not think this is
always correct, you probably want to use the manual from the same
version, or create a separate package if versions can be mixed.

 Or should I Require the audacity (or audacity-freeworld) package, and
 not add the datadir/audacity folder to the -manual directory.

If the manual does not need to be the same version as audacity and/or
audacity-freeworld, I guess that using a Requires and creating an
independent sub-package is the best choice.

 Thirdly, vague recollection of one source/package. Should the -manual
 just be a separate package anyway (review?) ? It's likely to be updated
 more often, but not necessarily in sync with the program.

See above.

 4. Being new to git/fedpkg, how can I tell which branch I'm on ?

$ fedpkg switch-branch -l
or
$ git branch
the active branch is marked with a *.

More git/fedpkg can be found on
http://fedoraproject.org/wiki/Using_Fedora_GIT or even
http://fedoraproject.org/wiki/Git_Quickref#Display_current_branch_in_bash.

Cheers,
Niels


 [1]
 http://pkgs.fedoraproject.org/gitweb/?p=audacity.git;a=blob_plain;f=audacity.spec;hb=f14/master
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Fedora 15 - biosdevname version updated to latest upstream

2011-05-02 Thread Narendra_K
Hello,

Biosdevname version is updated from  0.3.7 to latest upstream in Fedora 15. 
Please expect the following change -

The naming for PCI add-on devices is changed from pcislot numberpport 
number_virtual function instance to pslot numberpport number_virtual 
function instance.  If you are upgrading to F15 from F15-alpha or F15-beta, 
you could encounter following issue  -

/etc/sysconfig/network-scripts/ifup-eth: Device pci5p1 does not
seem to be present, delaying initialization.

The  config  files under /etc/sysconfig/network-scripts/ are of the form 
ifcfg-pciXpY and the DEVICE=  directive will have pciXpY names when 
F15-Beta is installed. As the interface name changes
when upgraded to F15, the ifcfg-* files and DEVICE= field remain same causing 
this issue.

Please rename the ifcfg-pciXpY files to ifcfg-pXpY and change the DEVICE=  
field from pciXpY to  pXpY before reboot to avoid the issue.

With regards,
Narendra K

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

Re: Fedora 15 - biosdevname version updated to latest upstream

2011-05-02 Thread Ralf Ertzinger
Hi.

On Mon, 2 May 2011 18:18:29 +0530, narendr...@dell.com wrote:

 Please rename the ifcfg-pciXpY files to ifcfg-pXpY and change the
 DEVICE=  field from pciXpY to  pXpY before reboot to avoid the issue.

Out of sheer curiosity, why is this considered an improvement?
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


RE: Fedora 15 - biosdevname version updated to latest upstream

2011-05-02 Thread Narendra_K
 -Original Message-
 From: devel-boun...@lists.fedoraproject.org [mailto:devel-
 boun...@lists.fedoraproject.org] On Behalf Of Ralf Ertzinger
 Sent: Monday, May 02, 2011 6:30 PM
 To: devel@lists.fedoraproject.org
 Subject: Re: Fedora 15 - biosdevname version updated to latest upstream
 
 Hi.
 
 On Mon, 2 May 2011 18:18:29 +0530, narendr...@dell.com wrote:
 
  Please rename the ifcfg-pciXpY files to ifcfg-pXpY and change the
  DEVICE=  field from pciXpY to  pXpY before reboot to avoid the issue.
 
 Out of sheer curiosity, why is this considered an improvement?

Hi, the change is done considering the IFNAMSIZ (16 byte) requirement on 
network interface names, as the string length could increase with appending 
virtual function instance number and VLAN information. 

With regards,
Narendra K
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Thunderbird updates mixed up in F14

2011-05-02 Thread Jon Ciesla
Kevin Kofler wrote:
 Michael Schwendt wrote:
   
 Rather find and fix the bug that is the cause of this. There have been
 a few updates like that recently, again.

 The 3.1.10-1.fc14 package is tagged  dist-f14-updates  already:
 http://koji.fedoraproject.org/koji/buildinfo?buildID=241265

 So, during the compose of the updates repo it should be pulled in.
 

 The problem there is Koji's broken idea of newest. For Koji, the newest 
 package is the latest one which was tagged, not the highest EVR. (In fact, 
 Koji doesn't process Epoch at all, so it can't even compare EVRs.) 
 Unfortunately, the Koji developers refuse to acknowledge that this is even a 
 bug, and have no plans to fix it ever. Fixing it would mean 1. telling Koji 
 about Epoch and 2. using EVR comparisons instead of tagging dates to decide 
 on the latest version.

 To fix this particular instance of the problem, rel-eng needs to untag the 
 obsolete 3.1.9 build so the 3.1.10 one becomes the newest also for Koji.

 Kevin Kofler

   
I've filed multiple bugs in rel-engs Trac over the last few years, and 
they've always fixed the tagging, but it would be great to have this be 
fixed in a more long term way.

-J

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

-d. bowie

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


Re: [systemd-devel] systemd - move /selinux to /sys/fs/selinux - maybe remove /srv ?

2011-05-02 Thread Daniel J Walsh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 04/29/2011 07:54 PM, Lennart Poettering wrote:
 On Fri, 29.04.11 16:34, Greg KH (g...@kroah.com) wrote:
 
 I think it's a very good decision - I never understood why selinux dir
 is directly under /.

 Yes, I think this would be a good thing to have in F16.

 Note however that this needs a tiny kernel patch to work, to create the
 mount point under /sys/fs/selinux. This is a trivial patch and has been
 done for /sys/fs/cgroup before, so I assume this would be easy to get
 in and just needs a champion to push this forward.

 As I did this for /sys/fs/cgroup I can do it for /sys/fs/selinux as
 well, just let me know.
 
 I'd say yes, please to this, right-away.
 
 But I guess this is up to Dan Walsh to say.
 
 Dan, could you say yes to this, please? If so, then the first step to
 making this happen for F16 would already have been taken!
 
 Lennart
 
Yes lets go forward with this.  I will work on the libselinux patch.  I
think we might want to hold off in F16 for a little while without the
link. So we can find apps that have hard coded /selinux/.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk2+vy0ACgkQrlYvE4MpobMgwgCggCVquepMFP4DiXf2+2ynYFI7
n/QAoNpk5ssRE/xgekb48b2ummtPiIno
=2ovb
-END PGP SIGNATURE-
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Announcing the release of Fedora 15 Beta!!

2011-05-02 Thread John Keller
On 04/29/2011 11:05 AM, mike cloaked wrote:
 On Fri, Apr 29, 2011 at 8:14 AM, John Keller fed...@johnkeller.com wrote:
 
 Right now the only options, to my knowledge, are to use the netinst
 (hybrid image) or use some special tool/process to convert the DVD ISO
 into a bootable USB key. The former can be flaky (as you mention) and
 the latter is cumbersome (and has the drawback of essentially testing
 something different than the actual DVD image).

 Would hybrid DVD ISOs be feasible going forward?
 
 I use livecd-iso-to-disk (regularly and frequently), to make a
 bootable  USB key for the DVD isos to do installs - it just works -
 
 I am puzzled as to why there is perceived to be a need to have
 additional tools or additional hybrid isos?

I certainly wasn't asking for additional tools, in fact I think
livecd-iso-to-disk already qualifies as one. :-)

I was asking for two reasons: One, convenience; two, portability. Yes,
the tools used on Fedora just work if you already run a Fedora system.
But if you use a different distro, the same tools are usually
unavailable or don't work with the installed libraries. It's hard to get
more universal than a simple dd.

A third reason came to me while writing the email you quote, but don't
seem to address: When using anything but dd, you're essentially
testing something different than the ISO (since, as I understand it,
tools like livecd-iso-to-disk create their own initrd). If a hybrid were
created, we'd be testing the image as-is, without having to burn a disc.

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


Re: illegal instruction - create compile variants ?

2011-05-02 Thread Kevin Kofler
Jan Kratochvil wrote:
 There is the STT_GNU_IFUNC feature implemented for it - the indirect is
 handled by linker without an additional indirect overhead if applied for a
 shared library function. For apps it works in a similar way as normal
 indirect.

Are there any caveats (initialization order or so) when using this feature? 
E.g. would one get away with calling something like
http://api.kde.org/4.0-api/kdelibs-apidocs/solid/html/tutorial3.html (i.e. 
Solid::Processor::instructionSets) in the ifunc or would trying to call such 
C++ classes lead to errors or unpredictable behavior?

And I presume this is available on ELF glibc targets only, isn't it?

Kevin Kofler

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


File IO-Socket-SSL-1.40.tar.gz uploaded to lookaside cache by pghmcfc

2011-05-02 Thread Paul Howarth
A file has been added to the lookaside cache for perl-IO-Socket-SSL:

af83e5968b892e857b4333c4309b503d  IO-Socket-SSL-1.40.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: [systemd-devel] systemd - move /selinux to /sys/fs/selinux - maybe remove /srv ?

2011-05-02 Thread David Quigley


On Sat, 30 Apr 2011 18:44:13 +0200, Kay Sievers wrote: 

 On Sat,
Apr 30, 2011 at 02:54, Lennart Poettering wrote:
 On Fri, 29.04.11
17:46, Greg KH (g...@kroah.com [1]) wrote:
 
 I think /srv
actually makes a lot of sense. Probably not so much on the

desktop, but the boundaries are blurry, and I see no reason to set

things up differently in this respect between servers and desktops.
I
 see little benefit in removing this directory.
 I think
moving /selinux is a bit more complicated then just a simple
 kernel
change. We have libselinux changes, Lots of tools have learned
 over
the years the path of /selinux and lots of users know about it.


 I am willing to work towards the goal of moving /selinux, but I
might
 end up with a symbolic link if we can not fix all of the
problems.
 
 A symbolic link from /selinux to point at
/sys/fs/selinux/ is a good
 idea to help people migrate. The startup
tools should be able to create
 this if /sys/fs/selinux/ is not
present, right?
 
 This is not necessarily easy to do actually,
since for upgraded systems
 /selinux needs to be an actual directory
in the rootfs to be useful as
 mount points. At boot time the rootfs
is read-only, hence removing the
 dir then and turning it into a
symlink is difficult.
 
 However, we can use the same approach as we
did for moving /var/run to
 /run: on new installs create it as a
symlink and on upgrades simply make
 it a bind mount.
 
 For the
long run we could also add %post scripts to filesystem.rpm which

moves away the old /selinux, and recreates it as symlink.
Unfortunately
 that cannot be done completely atomic, but that
property is not really
 necessary here anyway I think.
 
 So,
yeah, it isn't super-pretty doing this move, but we can handle it

more or less exactly like the /var/run → /run move.
 
 Sounds all
fine. I think we should get the kernel patch merged as soon
 as
possible. It will not harm anything if we don't use it now, and

continue to use /selinux as long as needed. But it will definitely

help solving the chicken egg problem when we are ready to do the

switch.
 
 Kay

Resending since I sent from the wrong email address
and devel rejected it. 

Merging the kernel patch without doing the
legwork for userspace first is a very bad idea. The kernel is what
mounts the FS under /selinux so if you have it mount under
/sys/fs/selinux instead without coordinating with the required usespace
changes you'll have a completely broken system. I'd say let Dan handle
when the right time to merge the kernel patch is since both him and the
tresys people will have to be involved with releasing new versions of
libselinux . Also Dan will have to work with some of the package
maintainers to cleanup and fix their packages as well. I'd really not
like it if I can't test new kernels with my labeled-nfs patches because
we merged an ABI breaking change into mainline without making sure
people can handle it first.

Links:
--
[1] mailto:g...@kroah.com
[2]
mailto:mzerq...@0pointer.de
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: [systemd-devel] systemd - move /selinux to /sys/fs/selinux - maybe remove /srv ?

2011-05-02 Thread Lennart Poettering
On Mon, 02.05.11 12:09, David Quigley (seli...@davequigley.com) wrote:

 Merging the kernel patch without doing the
 legwork for userspace first is a very bad idea. The kernel is what
 mounts the FS under /selinux so if you have it mount under
 /sys/fs/selinux instead without coordinating with the required usespace
 changes you'll have a completely broken system. I'd say let Dan handle
 when the right time to merge the kernel patch is since both him and the
 tresys people will have to be involved with releasing new versions of
 libselinux . Also Dan will have to work with some of the package
 maintainers to cleanup and fix their packages as well. I'd really not
 like it if I can't test new kernels with my labeled-nfs patches because
 we merged an ABI breaking change into mainline without making sure
 people can handle it first.

No, userspace mounts the fs to /selinux.

If the kernel patch is merged (and it will, given that Dan okey'd it)
this wil just create an empty directory in /sys/fs/selinux suitable as
mount point. That's all. Whether this is actually used as mount point is
left to userspace.

Merging the kernel patch is pretty much risk-less. The transition to it
can happen at a later point, slowly, at a pace defined by Dan.

Lennart

-- 
Lennart Poettering - Red Hat, Inc.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: [systemd-devel] systemd - move /selinux to /sys/fs/selinux - maybe remove /srv ?

2011-05-02 Thread Stephen Smalley
On Mon, 2011-05-02 at 19:29 +0200, Lennart Poettering wrote:
 On Mon, 02.05.11 12:09, David Quigley (seli...@davequigley.com) wrote:
 
  Merging the kernel patch without doing the
  legwork for userspace first is a very bad idea. The kernel is what
  mounts the FS under /selinux so if you have it mount under
  /sys/fs/selinux instead without coordinating with the required usespace
  changes you'll have a completely broken system. I'd say let Dan handle
  when the right time to merge the kernel patch is since both him and the
  tresys people will have to be involved with releasing new versions of
  libselinux . Also Dan will have to work with some of the package
  maintainers to cleanup and fix their packages as well. I'd really not
  like it if I can't test new kernels with my labeled-nfs patches because
  we merged an ABI breaking change into mainline without making sure
  people can handle it first.
 
 No, userspace mounts the fs to /selinux.
 
 If the kernel patch is merged (and it will, given that Dan okey'd it)
 this wil just create an empty directory in /sys/fs/selinux suitable as
 mount point. That's all. Whether this is actually used as mount point is
 left to userspace.
 
 Merging the kernel patch is pretty much risk-less. The transition to it
 can happen at a later point, slowly, at a pace defined by Dan.

Yes, agreed.  This does require updating various scripts that directly
reference /selinux though, including anaconda, dracut, puppet, etc.  I'm
guessing that some of these direct references are due to scripts that
need to be able to run before /usr is mounted, so if we moved the
libselinux utils to /bin or /sbin, then the scripts could execute
selinuxenabled, getenforce, and setenforce without concern.

-- 
Stephen Smalley
National Security Agency

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


Self Introduction

2011-05-02 Thread Tim Bielawa
Hey all!

I'm Tim Bielawa, I work at Red Hat (as of Jan. 10 this year) and have
been working in IT in some kind of sysadmin type role for the last 4
years.

Package maintenance isn't a new concept to me as it was a major focus
point in my last role. In the past, when I worked with more Ubuntu
systems I even started down the road to being a MOTU.

Working with OSS projects is something I've been involved with for a
while. I kept track of most of my prior contributions online if you want
to check it out: http://www.tbielawa.com/opensource/ 

I just submitted a package review ticket on bugzilla if some one would
be so kind as to look at it [0]. The package is of a program called
Taboot. In brief, it's for scripted sysadminning using Func. 

I'm the upstream maintainer, so you can rest assured that close contact
will be maintained. This is a program we depend on daily in my working
group so it will continue be receive updates.

I'm looking forward to making more future contribution!


PGP Key (0333AE37): 
http://pgp.mit.edu:11371/pks/lookup?op=getsearch=0xAD05E75E0333AE37

[0] https://bugzilla.redhat.com/show_bug.cgi?id=701426

-- 
Tim Bielawa
Associate Software Engineer
Production Control Team
919.754.4741 Cube / 919.332.6411
Raleigh, NC
1BA0 4FAB 4C13 FBA0 A036  4958 AD05 E75E 0333 AE37


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

Re: Resetting network devices between ifconfig level and desktop level

2011-05-02 Thread Dan Williams
On Sat, 2011-04-30 at 17:54 +0100, Aaron Gray wrote:
 Hope no one minds me writing to the devel list but I got no reply on user 
 list.
 
 I have got inconsistent eth devices between what Fedora Gnome Desktop
 is telling me and what ifconfig is telling me and what 'service
 network restart' is telling me.

Can you be more specific about what your problem is?  What's the
disagreement, and what commands are not returning what you expect?

Dan

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


[Bug 701252] Upgrade to new upstream version

2011-05-02 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=701252

Fedora Update System upda...@fedoraproject.org changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA

--- Comment #6 from Fedora Update System upda...@fedoraproject.org 2011-05-02 
17:28:12 EDT ---
Package perl-Directory-Queue-1.1-1.el4:
* should fix your issue,
* was pushed to the Fedora EPEL 4 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=epel-testing perl-Directory-Queue-1.1-1.el4'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.1-1.el4
then log in and leave karma (feedback).

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


F-15 Branched report: 20110502 changes

2011-05-02 Thread Branched Report
Compose started at Mon May  2 13:16:17 UTC 2011

Broken deps for x86_64
--
claws-mail-plugins-geolocation-3.7.8-8.fc15.x86_64 requires 
libchamplain-gtk-0.8.so.1()(64bit)
claws-mail-plugins-geolocation-3.7.8-8.fc15.x86_64 requires 
libchamplain-0.8.so.1()(64bit)
collectd-mysql-4.10.2-2.fc15.x86_64 requires 
libmysqlclient.so.16()(64bit)
collectd-mysql-4.10.2-2.fc15.x86_64 requires 
libmysqlclient.so.16(libmysqlclient_16)(64bit)
cpm-0.23-0.3.beta.fc12.x86_64 requires libdotconf-1.0.so.0()(64bit)
db4o-7.4-2.fc13.x86_64 requires mono(Mono.GetOptions) = 0:2.0.0.0
dh-make-0.55-3.fc15.noarch requires debhelper
emerillon-0.1.2-14.fc15.x86_64 requires 
libchamplain-gtk-0.8.so.1()(64bit)
emerillon-0.1.2-14.fc15.x86_64 requires libchamplain-0.8.so.1()(64bit)
file-browser-applet-0.6.6-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
glunarclock-0.34.1-1.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-bubblemon-2.0.15-1.fc13.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-cpufire-1.6-3.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-globalmenu-0.7.9-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-grandr-0.4.1-2.fc12.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-music-2.5.1-5.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-sensors-2.2.7-4.fc15.i686 requires libpanel-applet-2.so.0
gnome-applet-sensors-2.2.7-4.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-applet-sshmenu-3.18-3.fc15.noarch requires ruby(panelapplet2)
gnome-applet-window-picker-0.5.8-2.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires 
libpanel-applet-3.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
1:gnome-applets-2.32.0-3.fc15.x86_64 requires libgweather.so.1()(64bit)
gnome-netstatus-2.28.2-1.fc15.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotd.so.5()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotdcm.so.4()(64bit)
gnome-pilot-conduits-2.32.1-2.fc15.x86_64 requires 
libgpilotdconduit.so.3()(64bit)
gnome-python2-applet-2.32.0-1.fc14.x86_64 requires 
libpanel-applet-2.so.0()(64bit)
gnome-python2-brasero-2.32.0-1.fc14.x86_64 requires 
libbrasero-media.so.1()(64bit)
gnome-python2-brasero-2.32.0-1.fc14.x86_64 requires 
libbrasero-burn.so.1()(64bit)
gnome-python2-evince-2.32.0-1.fc14.x86_64 requires 
libevview.so.3()(64bit)
gnome-python2-evince-2.32.0-1.fc14.x86_64 requires 
libevdocument.so.3()(64bit)
gnome-python2-evolution-2.32.0-1.fc14.x86_64 requires 
libcamel-1.2.so.19()(64bit)
gnome-python2-gdl-2.25.3-22.fc15.x86_64 requires libgdl-1.so.3()(64bit)
gnome-python2-totem-2.32.0-1.fc14.x86_64 requires 
libgnome-media-profiles.so.0()(64bit)
gnome-rdp-0.2.3-6.fc12.x86_64 requires mono(Mono.Data.SqliteClient) = 
0:2.0.0.0
gnotime-2.3.0-8.fc15.x86_64 requires libgtkhtml-3.15.so.19()(64bit)
gnubiff-2.2.13-4.fc15.x86_64 requires libpanel-applet-2.so.0()(64bit)
gnustep-back-0.18.0-4.fc14.x86_64 requires libobjc.so.2()(64bit)
gnustep-back-0.18.0-4.fc14.x86_64 requires 
libgnustep-base.so.1.20()(64bit)
gnustep-examples-1.3.0-4.fc15.x86_64 requires 
libgnustep-base.so.1.20()(64bit)
gnustep-examples-1.3.0-4.fc15.x86_64 requires libobjc.so.2()(64bit)
gnustep-gui-0.18.0-2.fc14.x86_64 requires 
libgnustep-base.so.1.20()(64bit)
gnustep-gui-0.18.0-2.fc14.x86_64 requires libobjc.so.2()(64bit)
gnustep-gui-libs-0.18.0-2.fc14.i686 requires libobjc.so.2
gnustep-gui-libs-0.18.0-2.fc14.i686 requires libgnustep-base.so.1.20
gnustep-gui-libs-0.18.0-2.fc14.x86_64 requires 
libgnustep-base.so.1.20()(64bit)
gnustep-gui-libs-0.18.0-2.fc14.x86_64 requires libobjc.so.2()(64bit)
gold-2.1.12.2-5.fc15.noarch requires perl(Data::Properties)
gorm-1.2.12-2.fc15.i686 requires libobjc.so.2
gorm-1.2.12-2.fc15.i686 requires libgnustep-base.so.1.20
gorm-1.2.12-2.fc15.x86_64 requires libgnustep-base.so.1.20()(64bit)
gorm-1.2.12-2.fc15.x86_64 requires libobjc.so.2()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires libchamplain-0.6.so.0()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires 
libchamplain-gtk-0.6.so.0()(64bit)
gpx-viewer-0.2.0-3.fc14.x86_64 requires libgdl-1.so.3()(64bit)
gyachi-plugin-libnotify-1.2.10-3.fc14.x86_64 requires 
libnotify.so.1()(64bit)
honeyd-1.5c-13.fc15.x86_64 requires libevent-1.4.so.2()(64bit)
intellij-idea-9.0.1.94.399-12.fc15.x86_64 requires 

Re: illegal instruction - create compile variants ?

2011-05-02 Thread Jan Kratochvil
On Mon, 02 May 2011 17:24:53 +0200, Kevin Kofler wrote:
 Jan Kratochvil wrote:
  There is the STT_GNU_IFUNC feature implemented for it - the indirect is
  handled by linker without an additional indirect overhead if applied for a
  shared library function. For apps it works in a similar way as normal
  indirect.
 
 Are there any caveats (initialization order or so) when using this feature? 

Yes, a bit.  STT_GNU_IFUNC relocations are sorted as last in the library to be
relocated.  But still they are called before any static initializers (static
constructors), the sample code below outputs:
resolver
constructor
main
func1
destructor


 E.g. would one get away with calling something like
 http://api.kde.org/4.0-api/kdelibs-apidocs/solid/html/tutorial3.html (i.e. 
 Solid::Processor::instructionSets) in the ifunc or would trying to call such 
 C++ classes lead to errors or unpredictable behavior?

Unless there are static initializers it should work.


 And I presume this is available on ELF glibc targets only, isn't it?

It is GNU/Linux feature, unrelated to glibc (glibc is just one of its users).

STT_GNU_IFUNC is ELF feature and it is in STT_LOOS..STT_HIOS, therefore it
needs ELFOSABI_LINUX.


Thanks,
Jan


--

#include stdio.h
#include time.h

class C
{
public:
  C() { puts (constructor); }
  ~C() { puts (destructor); }
} c;

static void
func1 (void)
{
  puts (func1);
}

static void
func2 (void)
{
  puts (func2);
}

typedef void (*func_t) (void);

asm (.type _Z9gnu_ifuncv, @gnu_indirect_function);

func_t
gnu_ifunc (void)
{
  puts (resolver);
  return time (NULL)  1 ? func1 : func2;
}

int
main (void)
{
  puts (main);
  gnu_ifunc ();
  return 0;
}
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel


Re: Some changes to EPEL package reviews

2011-05-02 Thread Jason L Tibbitts III
 GH == Garrett Holmstrom gho...@fedoraproject.org writes:

GH How is this any different, given that process-git-requests creates a
GH rawhide branch without regard to whether one asks for it or not?

I'm catching up with mail after the weekend and noticed this unusually
pointed bit of misinformation which bears correcting.

process-git-requests has no choice in the matter.  Whatsoever.  It
creates the branches requested; the master branch comes along
regardless.

I can't imagine this is remotely a big deal, but being able to
differentiate EPEL-only packages does make it possible for
process-git-requests to automatically dead.package the branch or to make
use of any potential master-branch-less functionality should it appear
in the future.

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


[Bug 701119] perl-Ouch-0.0401 is available

2011-05-02 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=701119

--- Comment #1 from Petr Sabata psab...@redhat.com 2011-05-02 04:13:33 EDT ---
0.0401 requires Test::Trap for Ouch.t

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


[Bug 701119] perl-Ouch-0.0401 is available

2011-05-02 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=701119

Petr Sabata psab...@redhat.com changed:

   What|Removed |Added

 Depends on||701237

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


[Bug 656317] libwx_gtk2u_stc-2.8.so: cannot open shared object file: No such file or directory

2011-05-02 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=656317

--- Comment #27 from Marcela Mašláňová mmasl...@redhat.com 2011-05-02 
04:55:07 EDT ---
*** Bug 700923 has been marked as a duplicate of this bug. ***

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

[Bug 700923] [abrt] perl-Padre-0.64-1.fc14: Process /usr/bin/perl was killed by signal 11 (SIGSEGV)

2011-05-02 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=700923

Marcela Mašláňová mmasl...@redhat.com changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution||DUPLICATE
Last Closed||2011-05-02 04:55:07

--- Comment #2 from Marcela Mašláňová mmasl...@redhat.com 2011-05-02 04:55:07 
EDT ---
I suppose this is also duplicate of 656317.

*** This bug has been marked as a duplicate of bug 656317 ***

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

[Bug 701252] New: Upgrade to new upstream version

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

Summary: Upgrade to new upstream version

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

   Summary: Upgrade to new upstream version
   Product: Fedora EPEL
   Version: el6
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Severity: unspecified
  Priority: unspecified
 Component: perl-Directory-Queue
AssignedTo: steve.tray...@cern.ch
ReportedBy: lionel.c...@cern.ch
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
steve.tray...@cern.ch
Classification: Fedora
  Story Points: ---


The latest version of Directory::Queue on CPAN is now 1.1.

This is the version to use everywhere. Please upgrade in EPEL.

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


[Bug 700045] perl-Mojolicious-1.22 is available

2011-05-02 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=700045

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

   What|Removed |Added

Summary|perl-Mojolicious-1.21 is|perl-Mojolicious-1.22 is
   |available   |available

--- Comment #1 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org 2011-05-02 06:50:27 EDT ---
Latest upstream release: 1.22
Current version in Fedora Rawhide: 1.16
URL: http://search.cpan.org/dist/Mojolicious/

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

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

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


[Bug 656317] libwx_gtk2u_stc-2.8.so: cannot open shared object file: No such file or directory

2011-05-02 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=656317

--- Comment #28 from gat gatlinsulli...@yahoo.com 2011-05-02 07:03:53 EDT ---
perl-Padre runs without wxGTK-devel on F15Beta.

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


File Data-Alias-1.12.tar.gz uploaded to lookaside cache by mmaslano

2011-05-02 Thread Marcela Mašláňová
A file has been added to the lookaside cache for perl-Data-Alias:

6a47e07a7f0fe6e400046aa25c322184  Data-Alias-1.12.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-Data-Alias] Make Data::Alias life again.

2011-05-02 Thread Marcela Mašláňová
commit 6815bfc1e8ca06f42d779f92db32430a1008d3a5
Author: Marcela Mašláňová mmasl...@redhat.com
Date:   Mon May 2 13:20:17 2011 +0200

Make Data::Alias life again.

Module can be built with 5.12 and in next release will be fixed
problem with systemtap. This package should be marked as life
in collection.

 .gitignore |1 +
 Data-Alias-systemtap.patch |   20 
 dead.package   |1 -
 perl-Data-Alias.spec   |  113 
 sources|1 +
 5 files changed, 135 insertions(+), 1 deletions(-)
---
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..d73d548
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/Data-Alias-1.12.tar.gz
diff --git a/Data-Alias-systemtap.patch b/Data-Alias-systemtap.patch
new file mode 100644
index 000..1c81fc8
--- /dev/null
+++ b/Data-Alias-systemtap.patch
@@ -0,0 +1,20 @@
+diff -up Data-Alias-1.12/Alias.xs.old Data-Alias-1.12/Alias.xs
+--- Data-Alias-1.12/Alias.xs.old   2011-02-22 21:41:15.0 +0100
 Data-Alias-1.12/Alias.xs   2011-04-14 09:33:53.391241363 +0200
+@@ -14,6 +14,7 @@
+ #include perl.h
+ #include XSUB.h
+ 
++#define RETURN_PROBE(func, file, line)
+ 
+ #ifdef USE_5005THREADS
+ #error 5.005 threads not supported by Data::Alias
+diff -up Data-Alias-1.12/Changes.old Data-Alias-1.12/Changes
+--- Data-Alias-1.12/Changes.old2011-04-14 10:22:19.245838939 +0200
 Data-Alias-1.12/Changes2011-04-14 10:21:34.830030599 +0200
+@@ -1,3 +1,4 @@
++package NONSENSE;
+ Revision history for Perl extension Data::Alias
+ 
+ 1.12  Tue Feb 22 20:47 GMT 2011
+ 
diff --git a/perl-Data-Alias.spec b/perl-Data-Alias.spec
new file mode 100644
index 000..585ed4a
--- /dev/null
+++ b/perl-Data-Alias.spec
@@ -0,0 +1,113 @@
+Name:   perl-Data-Alias
+Version:1.12
+Release:1%{?dist}
+Summary:Comprehensive set of aliasing operations
+License:GPL+ or Artistic
+Group:  Development/Libraries
+URL:http://search.cpan.org/dist/Data-Alias/
+Source0:
http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/Data-Alias-%{version}.tar.gz
+# http://rt.cpan.org/Public/Bug/Display.html?id=67430
+Patch0: Data-Alias-systemtap.patch
+
+BuildRequires:  perl(DynaLoader)
+BuildRequires:  perl(Exporter)
+BuildRequires:  perl(ExtUtils::MakeMaker)
+BuildRequires:  perl(File::Spec)
+BuildRequires:  perl(Filter::Util::Call)
+BuildRequires:  perl(lib)
+BuildRequires:  perl(Scalar::Util)
+BuildRequires:  perl(strict)
+BuildRequires:  perl(Test::More)
+BuildRequires:  perl(warnings)
+Requires:   perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+
+%{?perl_default_filter}
+
+%description
+Aliasing is the phenomenon where two different expressions actually refer
+to the same thing. Modifying one will modify the other, and if you take a
+reference to both, the two values are the same.
+
+%prep
+%setup -q -n Data-Alias-%{version}
+%patch0 -p1
+
+%build
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
+make %{?_smp_mflags}
+
+%install
+make pure_install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
+find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
+find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2/dev/null \;
+
+%{_fixperms} $RPM_BUILD_ROOT/*
+
+%check
+make test
+
+%files
+%defattr(-,root,root,-)
+%doc README Changes
+%{perl_vendorarch}/auto/*
+%{perl_vendorarch}/Data*
+%{_mandir}/man3/*
+
+%changelog
+* Thu Apr 14 2011 Marcela Mašláňová mmasl...@redhat.com 1.12-1
+- Specfile autogenerated by cpanspec 1.79 for new release. This package
+  was resurected for 5.12.x
+
+* Mon Dec  7 2009 Stepan Kasal ska...@redhat.com - 1.07-6
+- rebuild against perl 5.10.1
+
+* Sat Jul 25 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.07-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Thu Feb 26 2009 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.07-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Thu Mar 06 2008 Tom spot Callaway tcall...@redhat.com - 1.07-3
+Rebuild for new perl
+
+* Mon Feb 18 2008 Fedora Release Engineering rel-...@fedoraproject.org - 
1.07-2
+- Autorebuild for GCC 4.3
+
+* Mon Nov 05 2007 Chris Weyl cw...@alumni.drew.edu 1.07-1
+- update to 1.07
+
+* Tue Aug 21 2007 Chris Weyl cw...@alumni.drew.edu 1.06-2
+- bump
+
+* Fri Aug 10 2007 Chris Weyl cw...@alumni.drew.edu 1.06-1
+- update to 1.06
+- license tag: GPL - GPL+
+
+* Fri Jun 01 2007 Chris Weyl cw...@alumni.drew.edu 1.05-1
+- update to 1.05
+
+* Fri May 04 2007 Chris Weyl cw...@alumni.drew.edu 1.04-1
+- update to 1.04
+- add t/ to %%doc
+- perl splittage BR's added
+
+* Mon Mar 19 2007 Chris Weyl cw...@alumni.drew.edu 1.03-1
+- update to 1.03
+
+* Mon Feb 19 2007 Chris Weyl cw...@alumni.drew.edu 1.02-1
+- update to 1.02
+
+* Tue Oct 03 2006 Chris Weyl 

File Directory-Queue-1.1.tar.gz uploaded to lookaside cache by stevetraylen

2011-05-02 Thread stevetraylen
A file has been added to the lookaside cache for perl-Directory-Queue:

fdc98ba4f957fe59ba7ba88a89da4eb4  Directory-Queue-1.1.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-Directory-Queue] New upstream 1.1.

2011-05-02 Thread stevetraylen
commit f1bbf9c9145be13ea545b18119e842bb26820c46
Author: Steve Traylen steve.tray...@cern.ch
Date:   Mon May 2 13:39:00 2011 +0200

New upstream 1.1.

 .gitignore|1 +
 perl-Directory-Queue.spec |7 +--
 sources   |2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index fa03236..005e539 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
 Directory-Queue-0.5.tar.gz
 /Directory-Queue-1.0.tar.gz
+/Directory-Queue-1.1.tar.gz
diff --git a/perl-Directory-Queue.spec b/perl-Directory-Queue.spec
index 65bf192..bdca53c 100644
--- a/perl-Directory-Queue.spec
+++ b/perl-Directory-Queue.spec
@@ -1,6 +1,6 @@
 Name:   perl-Directory-Queue
-Version:1.0
-Release:4%{?dist}
+Version:1.1
+Release:1%{?dist}
 Summary:Object oriented interface to a directory based queue
 License:GPL+ or Artistic
 Group:  Development/Libraries
@@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_mandir}/man3/*
 
 %changelog
+* Mon May 2 2011 Steve Traylen steve.tray...@cern.ch 1.1-1
+- New upstream 1.1.
+
 * Tue Feb 08 2011 Fedora Release Engineering rel-...@lists.fedoraproject.org 
- 1.0-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
 
diff --git a/sources b/sources
index 47a1f72..17e15a7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-727f00bdb3f28d05e204bd346f2ff891  Directory-Queue-1.0.tar.gz
+fdc98ba4f957fe59ba7ba88a89da4eb4  Directory-Queue-1.1.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-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.fc16

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.fc16' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:40:05 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_fc14':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (1):
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (4):
  Upstream to 1.0.
  actually change release.
  buildrequire perl(Time::HiRes) always.
  New upstream 1.1.
--
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-Directory-Queue/f15/master] New upstream 1.1.

2011-05-02 Thread stevetraylen
Summary of changes:

  f1bbf9c... New upstream 1.1. (*)

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


[perl-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.fc15

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.fc15' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:41:08 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_fc14':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (1):
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (4):
  Upstream to 1.0.
  actually change release.
  buildrequire perl(Time::HiRes) always.
  New upstream 1.1.
--
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-Directory-Queue/f14/master] (5 commits) ...Merge branch 'master' into f14

2011-05-02 Thread stevetraylen
Summary of changes:

  1173c4b... buildrequire perl(Time::HiRes) always. (*)
  c8178eb... - 661697 rebuild for fixing problems with vendorach/lib (*)
  2d85b68... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  f1bbf9c... New upstream 1.1. (*)
  dda6a45... Merge branch 'master' into f14

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


[perl-Directory-Queue/f14/master: 5/5] Merge branch 'master' into f14

2011-05-02 Thread stevetraylen
commit dda6a45da6f75395a8cb28e57f7e9f32b2adf199
Merge: 7b3f3ad f1bbf9c
Author: Steve Traylen steve.tray...@cern.ch
Date:   Mon May 2 13:42:06 2011 +0200

Merge branch 'master' into f14

Conflicts:
.gitignore

 .gitignore|4 +++-
 perl-Directory-Queue.spec |   20 +++-
 sources   |2 +-
 3 files changed, 19 insertions(+), 7 deletions(-)
---
--
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-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.fc14

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.fc14' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:42:52 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_fc14':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (1):
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (6):
  Upstream to 1.0.
  actually change release.
  Correct ignored file.
  buildrequire perl(Time::HiRes) always.
  New upstream 1.1.
  Merge branch 'master' into f14
--
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-Directory-Queue/el6/master] (4 commits) ...Merge branch 'master' into el6

2011-05-02 Thread stevetraylen
Summary of changes:

  c8178eb... - 661697 rebuild for fixing problems with vendorach/lib (*)
  2d85b68... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  f1bbf9c... New upstream 1.1. (*)
  48b49ce... Merge branch 'master' into el6

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


[perl-Directory-Queue/el6/master: 4/4] Merge branch 'master' into el6

2011-05-02 Thread stevetraylen
commit 48b49ce788500bac569296367744b5a3038f031c
Merge: 948833e f1bbf9c
Author: Steve Traylen steve.tray...@cern.ch
Date:   Mon May 2 13:43:43 2011 +0200

Merge branch 'master' into el6

 .gitignore|1 +
 perl-Directory-Queue.spec |   13 +++--
 sources   |2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)
---
diff --cc .gitignore
index de58323,005e539..064f58b
--- a/.gitignore
+++ b/.gitignore
@@@ -1,1 -1,3 +1,2 @@@
 -Directory-Queue-0.5.tar.gz
  /Directory-Queue-1.0.tar.gz
+ /Directory-Queue-1.1.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-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.el6

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.el6' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:43:58 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_el6':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (2):
  dist-git conversion
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (7):
  Upstream to 1.0.
  actually change release.
  Merge branch 'master' into el6
  buildrequire perl(Time::HiRes) always.
  Merge branch 'master' into el6
  New upstream 1.1.
  Merge branch 'master' into el6

stevetraylen (3):
  Import #607355
  Populate branches: #607355
  Bump release due to my mitake.
--
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-Directory-Queue/el5/master] (5 commits) ...Merge branch 'master' into el5

2011-05-02 Thread stevetraylen
Summary of changes:

  1173c4b... buildrequire perl(Time::HiRes) always. (*)
  c8178eb... - 661697 rebuild for fixing problems with vendorach/lib (*)
  2d85b68... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  f1bbf9c... New upstream 1.1. (*)
  75b7833... Merge branch 'master' into el5

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


[perl-Directory-Queue/el5/master: 5/5] Merge branch 'master' into el5

2011-05-02 Thread stevetraylen
commit 75b7833d553f0e4da408b430e3ab5fe8076ad33c
Merge: 689b217 f1bbf9c
Author: Steve Traylen steve.tray...@cern.ch
Date:   Mon May 2 13:45:47 2011 +0200

Merge branch 'master' into el5

 .gitignore|1 +
 perl-Directory-Queue.spec |   20 +++-
 sources   |2 +-
 3 files changed, 17 insertions(+), 6 deletions(-)
---
diff --cc .gitignore
index de58323,005e539..064f58b
--- a/.gitignore
+++ b/.gitignore
@@@ -1,1 -1,3 +1,2 @@@
 -Directory-Queue-0.5.tar.gz
  /Directory-Queue-1.0.tar.gz
+ /Directory-Queue-1.1.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-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.el5

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.el5' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:46:07 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_el5':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (2):
  dist-git conversion
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (6):
  Upstream to 1.0.
  actually change release.
  Merge branch 'master' into el5
  buildrequire perl(Time::HiRes) always.
  New upstream 1.1.
  Merge branch 'master' into el5

stevetraylen (3):
  Import #607355
  Populate branches: #607355
  Bump release due to my mitake.
--
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-Directory-Queue/el4/master] (5 commits) ...Merge branch 'master' into el4

2011-05-02 Thread stevetraylen
Summary of changes:

  1173c4b... buildrequire perl(Time::HiRes) always. (*)
  c8178eb... - 661697 rebuild for fixing problems with vendorach/lib (*)
  2d85b68... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  f1bbf9c... New upstream 1.1. (*)
  ee2422e... Merge branch 'master' into el4

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


[perl-Directory-Queue/el4/master: 5/5] Merge branch 'master' into el4

2011-05-02 Thread stevetraylen
commit ee2422ee9d5b528c80352ba4c539490db66a69bd
Merge: 058fc48 f1bbf9c
Author: Steve Traylen steve.tray...@cern.ch
Date:   Mon May 2 13:46:42 2011 +0200

Merge branch 'master' into el4

 .gitignore|1 +
 perl-Directory-Queue.spec |   20 +++-
 sources   |2 +-
 3 files changed, 17 insertions(+), 6 deletions(-)
---
diff --cc .gitignore
index de58323,005e539..064f58b
--- a/.gitignore
+++ b/.gitignore
@@@ -1,1 -1,3 +1,2 @@@
 -Directory-Queue-0.5.tar.gz
  /Directory-Queue-1.0.tar.gz
+ /Directory-Queue-1.1.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-Directory-Queue] Created tag perl-Directory-Queue-1.1-1.el4

2011-05-02 Thread stevetraylen
The unsigned tag 'perl-Directory-Queue-1.1-1.el4' was created.

Tagger: Steve Traylen steve.tray...@cern.ch
Date: Mon May 2 13:46:57 2011 +0200

New upstream 1.1.

Changes since the last tag 'perl-Directory-Queue-0_5-3_el4':

Dennis Gilmore (1):
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild

Fedora Release Engineering (2):
  dist-git conversion
  dist-git conversion

Marcela Mašláňová (1):
  - 661697 rebuild for fixing problems with vendorach/lib

Steve Traylen (6):
  Upstream to 1.0.
  actually change release.
  Merge branch 'master' into el4
  buildrequire perl(Time::HiRes) always.
  New upstream 1.1.
  Merge branch 'master' into el4

stevetraylen (3):
  Import #607355
  Populate branches: #607355
  Bump release due to my mitake.
--
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 701252] Upgrade to new upstream version

2011-05-02 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=701252

--- Comment #2 from Fedora Update System upda...@fedoraproject.org 2011-05-02 
07:56:06 EDT ---
perl-Directory-Queue-1.1-1.fc15 has been submitted as an update for Fedora 15.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.1-1.fc15

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


[Bug 701252] Upgrade to new upstream version

2011-05-02 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=701252

--- Comment #1 from Fedora Update System upda...@fedoraproject.org 2011-05-02 
07:55:59 EDT ---
perl-Directory-Queue-1.1-1.el5 has been submitted as an update for Fedora EPEL
5.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.1-1.el5

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


[Bug 701252] Upgrade to new upstream version

2011-05-02 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=701252

--- Comment #5 from Fedora Update System upda...@fedoraproject.org 2011-05-02 
07:56:27 EDT ---
perl-Directory-Queue-1.1-1.fc14 has been submitted as an update for Fedora 14.
https://admin.fedoraproject.org/updates/perl-Directory-Queue-1.1-1.fc14

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


File Sysadm-Install-0.36.tar.gz uploaded to lookaside cache by pghmcfc

2011-05-02 Thread Paul Howarth
A file has been added to the lookaside cache for perl-Sysadm-Install:

89ccec032164b6602eeb842631ec06af  Sysadm-Install-0.36.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-Sysadm-Install/f15/master] Update to 0.36

2011-05-02 Thread Paul Howarth
Summary of changes:

  d62b986... Update to 0.36 (*)

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


[perl-Sysadm-Install/f15/master] (5 commits) ...Merge branch 'master' into el6

2011-05-02 Thread Paul Howarth
Summary of changes:

  16e6ae4... Initialize branch F-12 for perl-Sysadm-Install (*)
  24a42e4... Fix typo that causes a failure to update the common directo (*)
  01e9ee7... dist-git conversion (*)
  4070691... Update to 0.35 (*)
  9ecab22... Merge branch 'master' into el6

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


[perl-Sysadm-Install/f15/master: 5/5] Merge branch 'master' into el6

2011-05-02 Thread Paul Howarth
commit 9ecab228af2ad6f600d3dcd32a9c6bf526d5c51b
Merge: 4070691 d62b986
Author: Paul Howarth p...@city-fan.org
Date:   Mon May 2 13:26:25 2011 +0100

Merge branch 'master' into el6

 .gitignore   |2 +-
 perl-Sysadm-Install.spec |   44 +++-
 sources  |2 +-
 3 files changed, 29 insertions(+), 19 deletions(-)
---
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[perl-IO-Socket-SSL] Update to 1.40

2011-05-02 Thread Paul Howarth
commit 5caac13a67bafb962b543352014c35e67d137068
Author: Paul Howarth p...@city-fan.org
Date:   Mon May 2 18:11:28 2011 +0100

Update to 1.40

- New upstream release 1.40:
  - fix in example/async_https_server
  - get IDN support from URI (CPAN RT#67676)
- Nobody else likes macros for commands

 .gitignore  |2 +-
 perl-IO-Socket-SSL.spec |   33 -
 sources |2 +-
 3 files changed, 22 insertions(+), 15 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 449e97e..357c4e8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1 @@
-/IO-Socket-SSL-1.39.tar.gz
+/IO-Socket-SSL-1.40.tar.gz
diff --git a/perl-IO-Socket-SSL.spec b/perl-IO-Socket-SSL.spec
index a735db9..74b3332 100644
--- a/perl-IO-Socket-SSL.spec
+++ b/perl-IO-Socket-SSL.spec
@@ -4,19 +4,19 @@
 #
 
 Name:  perl-IO-Socket-SSL
-Version:   1.39
+Version:   1.40
 Release:   1%{?dist}
 Summary:   Perl library for transparent SSL
 Group: Development/Libraries
 License:   GPL+ or Artistic
 URL:   http://search.cpan.org/dist/IO-Socket-SSL/
 Source0:   
http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-%{version}.tar.gz
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
 BuildArch: noarch
 BuildRequires: perl(ExtUtils::MakeMaker), perl(Test::Simple)
 BuildRequires: perl(IO::Socket::INET6), perl(Net::LibIDN), perl(Net::SSLeay) 
= 1.21
 BuildRequires: procps
-Requires:  perl(:MODULE_COMPAT_%(eval `%{__perl} -V:version`; echo 
$version))
+Requires:  perl(:MODULE_COMPAT_%(eval `perl -V:version`; echo $version))
 Requires:  perl(Net::LibIDN)
 
 %description
@@ -31,28 +31,29 @@ mod_perl.
 %prep
 %setup -q -n IO-Socket-SSL-%{version}
 for f in README SSL.pm; do
-   /usr/bin/iconv -f iso-8859-1 -t utf-8 -o $f{.utf8,}; %{__mv} $f{.utf8,}
+   iconv -f iso-8859-1 -t utf-8 -o $f{.utf8,}; mv $f{.utf8,}
 done
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %install
-%{__rm} -rf %{buildroot}
-%{__make} pure_install PERL_INSTALL_ROOT=%{buildroot}
-/usr/bin/find %{buildroot} -type f -name .packlist -exec %{__rm} -f {} ';'
-/usr/bin/find %{buildroot} -depth -type d -exec /bin/rmdir {} ';' 2/dev/null
+rm -rf %{buildroot}
+make pure_install PERL_INSTALL_ROOT=%{buildroot}
+find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
+find %{buildroot} -depth -type d -exec rmdir {} ';' 2/dev/null
 %{_fixperms} %{buildroot}
 
 %check
 # Avoid running the session tests (spawns servers, requires 3 free ports
 # and possibly manual configuration).
-%{?!_with_sessiontests:%{__mv} t/sessions.t t/sessions.t.disable}
-%{__make} test
+%{?!_with_sessiontests:mv t/sessions.t{,.disable}}
+make test
+%{?!_with_sessiontests:mv t/sessions.t{.disable,}}
 
 %clean
-%{__rm} -rf %{buildroot}
+rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
@@ -61,6 +62,12 @@ done
 %{_mandir}/man3/IO::Socket::SSL.3pm*
 
 %changelog
+* Mon May  2 2011 Paul Howarth p...@city-fan.org - 1.40-1
+- Update to 1.40
+  - fix in example/async_https_server
+  - get IDN support from URI (CPAN RT#67676)
+- Nobody else likes macros for commands
+
 * Thu Mar  3 2011 Paul Howarth p...@city-fan.org - 1.39-1
 - Update to 1.39
   - fixed documentation of http verification: wildcards in cn is allowed
diff --git a/sources b/sources
index 7f8de2b..d06cec7 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-776f36451970287c9b3c77e1d39dd7ed  IO-Socket-SSL-1.39.tar.gz
+af83e5968b892e857b4333c4309b503d  IO-Socket-SSL-1.40.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[Bug 701354] missing dependencies for rt3

2011-05-02 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=701354

François Cami fc...@winsoft-international.com changed:

   What|Removed |Added

 CC||f...@fcami.net
   Platform|Unspecified |x86_64
 OS/Version|Unspecified |Linux
   Severity|unspecified |high

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

[Bug 701354] New: missing dependencies for rt3

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

Summary: missing dependencies for rt3

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

   Summary: missing dependencies for rt3
   Product: Fedora EPEL
   Version: el6
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Severity: unspecified
  Priority: unspecified
 Component: rt3
AssignedTo: xav...@bachelot.org
ReportedBy: fc...@winsoft-international.com
 QAContact: extras...@fedoraproject.org
CC: xav...@bachelot.org,
fedora-perl-devel-l...@redhat.com, mma...@redhat.com,
trem...@tremble.org.uk
Classification: Fedora
  Story Points: ---


Description of problem:
`yum install rt3` doesn't work due to dependency problems


Version-Release number of selected component (if applicable):
3.8.8-2.el6

How reproductible:
always

Steps to Reproduce:
yum install rt3

Actual results:
-- Finished Dependency Resolution
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(Term::ReadKey)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(XML::RSS)
Error: Package: perl-File-ShareDir-1.00-4.el6.noarch (epel)
   Requires: perl(Params::Util)
Error: Package: rt3-mailgate-3.8.8-2.el6.noarch (epel)
   Requires: perl(HTML::TreeBuilder)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(MIME::Entity)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(MIME::Words)
Error: Package: perl-DBIx-SearchBuilder-1.56-1.el6.noarch (epel)
   Requires: perl(Clone)
Error: Package: perl-Locale-Maketext-Lexicon-0.82-1.el6.noarch (epel)
   Requires: perl(YAML::Loader)
Error: Package: perl-Log-Dispatch-2.27-1.el6.noarch (epel)
   Requires: perl(Params::Validate)
Error: Package: perl-HTML-Format-2.04-11.1.el6.noarch (epel)
   Requires: perl(HTML::Element) = 3.15
Error: Package: perl-HTTP-Server-Simple-Mason-0.13-1.el6.noarch (epel)
   Requires: perl(Hook::LexWrap)
Error: Package: 1:perl-HTML-Mason-1.42-2.el6.noarch (epel)
   Requires: perl(Params::Validate)
Error: Package: perl-File-ShareDir-1.00-4.el6.noarch (epel)
   Requires: perl(Class::Inspector) = 1.12
Error: Package: perl-Locale-Maketext-Lexicon-0.82-1.el6.noarch (epel)
   Requires: perl(PPI)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(MIME::Parser)
Error: Package: perl-File-ShareDir-1.00-4.el6.noarch (epel)
   Requires: perl(Params::Util) = 0.07
Error: Package: perl-Class-ReturnValue-0.55-4.el6.noarch (epel)
   Requires: perl(Devel::StackTrace)
Error: Package: perl-File-ShareDir-1.00-4.el6.noarch (epel)
   Requires: perl(Class::Inspector)
Error: Package: perl-Text-Quoted-2.05-4.el6.noarch (epel)
   Requires: perl(Text::Autoformat)
Error: Package: perl-Locale-Maketext-Lexicon-0.82-1.el6.noarch (epel)
   Requires: perl(Template::Parser)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(GD::Graph::bars)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(HTML::TreeBuilder)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(GD::Graph::pie)
Error: Package: perl-Locale-Maketext-Lexicon-0.82-1.el6.noarch (epel)
   Requires: perl(Template::Constants)
Error: Package: perl-Exception-Class-1.29-1.1.el6.noarch (epel)
   Requires: perl(Devel::StackTrace) = 1.20
Error: Package: 1:perl-HTML-Mason-1.42-2.el6.noarch (epel)
   Requires: perl(Params::Validate) = 0.7
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(Time::ParseDate)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(MIME::Body)
Error: Package: perl-Class-Container-0.12-9.el6.noarch (epel)
   Requires: perl(Params::Validate) = 0.23
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(XML::Simple)
Error: Package: perl-Class-Container-0.12-9.el6.noarch (epel)
   Requires: perl(Params::Validate)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(GD::Text)
Error: Package: rt3-3.8.8-2.el6.noarch (epel)
   Requires: perl(MIME::Head)
 You could try using --skip-broken to work around the problem


Expected results:
rt3 installed successfully

Additional info:
This is a RHEL6 system, registered to RHN, with the EPEL repository installed,
nothing more. Am I missing anything?

-- 
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-IO-Socket-SSL/f15/master] Update to 1.40

2011-05-02 Thread Paul Howarth
Summary of changes:

  5caac13... Update to 1.40 (*)

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


[perl-IO-Socket-SSL] Created tag perl-IO-Socket-SSL-1.40-1.fc15

2011-05-02 Thread Paul Howarth
The lightweight tag 'perl-IO-Socket-SSL-1.40-1.fc15' was created pointing to:

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


[perl-IO-Socket-SSL] Created tag perl-IO-Socket-SSL-1.40-1.fc16

2011-05-02 Thread Paul Howarth
The lightweight tag 'perl-IO-Socket-SSL-1.40-1.fc16' was created pointing to:

 5caac13... Update to 1.40
--
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 701354] missing dependencies for rt3

2011-05-02 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=701354

Paul Howarth p...@city-fan.org changed:

   What|Removed |Added

 CC||p...@city-fan.org

--- Comment #1 from Paul Howarth p...@city-fan.org 2011-05-02 14:38:29 EDT ---
You're probably missing the EL-6 Optional channel, which is required by EPEL-6.
I haven't checked all of those dependencies but I'm sure at least some, if not
all, of them are available there.

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


[Bug 701354] missing dependencies for rt3

2011-05-02 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=701354

--- Comment #2 from Xavier Bachelot xav...@bachelot.org 2011-05-02 14:44:06 
EDT ---
Paul was faster than me :-)
I was going to post this link :
https://fedoraproject.org/wiki/EPEL6-FAQ#How_do_I_use_it.3F

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


[Bug 701354] missing dependencies for rt3

2011-05-02 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=701354

François Cami f...@fcami.net changed:

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution||NOTABUG
Last Closed||2011-05-02 15:30:49

--- Comment #3 from François Cami f...@fcami.net 2011-05-02 15:30:49 EDT ---

My bad. Indeed, this solves the problem. It seems that I'm too used to RHEL5
and didn't take time to see if the documentation changed :)
Thanks to you both. Closing.

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

File Moose-2.0002.tar.gz uploaded to lookaside cache by iarnell

2011-05-02 Thread Iain Arnell
A file has been added to the lookaside cache for perl-Moose:

3f5192fcb533515ecbffd42d36d1b5cc  Moose-2.0002.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-Moose] update to 2.0002

2011-05-02 Thread Iain Arnell
commit 0c391e303dcd2657fdce56c4fc9986d1826eed57
Author: Iain Arnell iarn...@gmail.com
Date:   Tue May 3 05:07:55 2011 +0200

update to 2.0002

 .gitignore  |1 +
 perl-Moose.spec |   10 +++---
 sources |2 +-
 3 files changed, 9 insertions(+), 4 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index b54e79e..a327c6c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@ Moose-1.08.tar.gz
 /Moose-1.25.tar.gz
 /Moose-2..tar.gz
 /Moose-2.0001.tar.gz
+/Moose-2.0002.tar.gz
diff --git a/perl-Moose.spec b/perl-Moose.spec
index 8829f28..3703e1b 100644
--- a/perl-Moose.spec
+++ b/perl-Moose.spec
@@ -1,7 +1,7 @@
 Name:   perl-Moose
 Summary:Complete modern object system for Perl 5
-Version:2.0001
-Release:3%{?dist}
+Version:2.0002
+Release:1%{?dist}
 License:GPL+ or Artistic
 Group:  Development/Libraries
 Source0:
http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Moose-%{version}.tar.gz
@@ -14,7 +14,7 @@ Obsoletes:  perl-Class-MOP-tests = 1.12-2.fc15
 
 # configure
 BuildRequires:  perl(Dist::CheckConflicts) = 0.02
-BuildRequires:  perl(ExtUtils::MakeMaker) = 6.31
+BuildRequires:  perl(ExtUtils::MakeMaker) = 6.30
 
 # develop
 BuildRequires:  perl(Algorithm::C3)
@@ -51,6 +51,7 @@ BuildRequires:  perl(Test::Requires) = 0.05
 # runtime
 BuildRequires:  perl(Data::OptList)
 BuildRequires:  perl(Devel::GlobalDestruction)
+BuildRequires:  perl(Devel::PartialDump) = 0.14
 BuildRequires:  perl(Eval::Closure) = 0.04
 BuildRequires:  perl(List::MoreUtils) = 0.12
 BuildRequires:  perl(MRO::Compat) = 0.05
@@ -165,6 +166,9 @@ make test
 %{_mandir}/man3/Test::Moose*
 
 %changelog
+* Tue May 03 2011 Iain Arnell iarn...@gmail.com 2.0002-1
+- update to latest upstream version
+
 * Tue Apr 26 2011 Iain Arnell iarn...@gmail.com 2.0001-3
 - add explicit perl(Dist::CheckConflicts) requirement
 
diff --git a/sources b/sources
index 198afe2..5db1fbd 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-f55f9361a48dcf11df070d66df494125  Moose-2.0001.tar.gz
+3f5192fcb533515ecbffd42d36d1b5cc  Moose-2.0002.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-Moose/f15/master] update to 2.0002

2011-05-02 Thread Iain Arnell
Summary of changes:

  0c391e3... update to 2.0002 (*)

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


[perl-Devel-Declare] (6 commits) ...update to 0.006004

2011-05-02 Thread Iain Arnell
Summary of changes:

  c5dda9b... Initialize branch F-13 for perl-Devel-Declare (*)
  8c80afd... initial import (*)
  f133d62... - cleanup spec for modern rpmbuild (*)
  4871c7c... dist-git conversion (*)
  6abf0fe... initial pseudo-merge for dist-git setup
  6af73a3... update to 0.006004

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


[perl-Devel-Declare: 5/6] initial pseudo-merge for dist-git setup

2011-05-02 Thread Iain Arnell
commit 6abf0fe48e2ae1e0e99378a154c781583a4af043
Merge: 359995c 4871c7c
Author: Iain Arnell iarn...@gmail.com
Date:   Tue May 3 05:23:10 2011 +0200

initial pseudo-merge for dist-git setup

---
--
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-Devel-Declare: 6/6] update to 0.006004

2011-05-02 Thread Iain Arnell
commit 6af73a35694014734b2df88a4de7f7bd77856890
Author: Iain Arnell iarn...@gmail.com
Date:   Tue May 3 05:24:46 2011 +0200

update to 0.006004

 .gitignore  |1 +
 perl-Devel-Declare.spec |6 --
 sources |2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 2186bdd..5e79b01 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@ Devel-Declare-0.006000.tar.gz
 /Devel-Declare-0.006001.tar.gz
 /Devel-Declare-0.006002.tar.gz
 /Devel-Declare-0.006003.tar.gz
+/Devel-Declare-0.006004.tar.gz
diff --git a/perl-Devel-Declare.spec b/perl-Devel-Declare.spec
index a43ab1b..0ca0d8d 100644
--- a/perl-Devel-Declare.spec
+++ b/perl-Devel-Declare.spec
@@ -1,5 +1,5 @@
 Name:   perl-Devel-Declare
-Version:0.006003
+Version:0.006004
 Release:1%{?dist}
 Summary:Adding keywords to perl, in perl
 License:GPL+ or Artistic
@@ -44,13 +44,15 @@ find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 
2/dev/null \;
 make test
 
 %files
-%defattr(-,root,root,-)
 %doc Changes
 %{perl_vendorarch}/auto/*
 %{perl_vendorarch}/Devel*
 %{_mandir}/man3/*
 
 %changelog
+* Tue May 03 2011 Iain Arnell iarn...@gmail.com 0.006004-1
+- update to latest upstream version
+
 * Wed Apr 20 2011 Iain Arnell iarn...@gmail.com 0.006003-1
 - update to latest upstream version
 
diff --git a/sources b/sources
index 3aa8bd4..380e777 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bdaecb1e4fe9c9f917ad9782cca17799  Devel-Declare-0.006003.tar.gz
+281fbc75967dae1b2c8d4b5b3417eeb5  Devel-Declare-0.006004.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-Devel-Declare/f15/master] (9 commits) ...update to 0.006004

2011-05-02 Thread Iain Arnell
Summary of changes:

  c5dda9b... Initialize branch F-13 for perl-Devel-Declare (*)
  8c80afd... initial import (*)
  f133d62... - cleanup spec for modern rpmbuild (*)
  4871c7c... dist-git conversion (*)
  3861e22... update to 0.006001 (*)
  fed721d... update to 0.006002 (*)
  359995c... update to 0.006003 (*)
  6abf0fe... initial pseudo-merge for dist-git setup (*)
  6af73a3... update to 0.006004 (*)

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


[perl-Devel-Declare/f14/master] (11 commits) ...update to 0.006004

2011-05-02 Thread Iain Arnell
Summary of changes:

  c5dda9b... Initialize branch F-13 for perl-Devel-Declare (*)
  8c80afd... initial import (*)
  f133d62... - cleanup spec for modern rpmbuild (*)
  4871c7c... dist-git conversion (*)
  8c61d20... - 661697 rebuild for fixing problems with vendorach/lib (*)
  6e42901... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  3861e22... update to 0.006001 (*)
  fed721d... update to 0.006002 (*)
  359995c... update to 0.006003 (*)
  6abf0fe... initial pseudo-merge for dist-git setup (*)
  6af73a3... update to 0.006004 (*)

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


[perl-Devel-Declare/f13/master] (10 commits) ...update to 0.006004

2011-05-02 Thread Iain Arnell
Summary of changes:

  52cfbe1... initial import (*)
  c4382fa... - cleanup spec for moderm rpmbuild - BR perl(B::Compiling) (*)
  b8d3b0e... dist-git conversion (*)
  8c61d20... - 661697 rebuild for fixing problems with vendorach/lib (*)
  6e42901... - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass (*)
  3861e22... update to 0.006001 (*)
  fed721d... update to 0.006002 (*)
  359995c... update to 0.006003 (*)
  6abf0fe... initial pseudo-merge for dist-git setup (*)
  6af73a3... update to 0.006004 (*)

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


File DateTime-TimeZone-1.34.tar.gz uploaded to lookaside cache by iarnell

2011-05-02 Thread Iain Arnell
A file has been added to the lookaside cache for perl-DateTime:

08a5951bcb1513c66daadd055e840f9d  DateTime-TimeZone-1.34.tar.gz
--
Fedora Extras Perl SIG
http://www.fedoraproject.org/wiki/Extras/SIGs/Perl
perl-devel mailing list
perl-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel


[389-devel] rfc2307bis.ldif Parsing Error

2011-05-02 Thread Adrien Guillon
Hi fellow programmers!

Today on #389 on freenode we spent some time attempting to understand
why directory 389 did not load changes to the schema.  I shutdown
dirsrv, replaced the rfc2307.ldif schema with rfc2307bis.ldif,
restarted, and noticed that the schema change had not taken effect.
This was due to the formatting of the rfc2307bis.ldif file itself
(basically the DESC field was in the wrong place).  I have attached a
fixed ldif file.

Also... good job on 389, I really prefer it to OpenLDAP so far :-)

AJ


10rfc2307bis.ldif
Description: Binary data
--
389-devel mailing list
389-devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/389-devel

Re: [389-devel] rfc2307bis.ldif Parsing Error

2011-05-02 Thread Noriko Hosoi

Thanks a lot, Adrien.

I've added your fixed schema file to the *Bug 170791* 
https://bugzilla.redhat.com/show_bug.cgi?id=170791 -Schema file 
parsing overly picky?.


On 05/02/2011 05:55 PM, Adrien Guillon wrote:

Today on #389 on freenode we spent some time attempting to understand
why directory 389 did not load changes to the schema.  I shutdown
dirsrv, replaced the rfc2307.ldif schema with rfc2307bis.ldif,
restarted, and noticed that the schema change had not taken effect.
This was due to the formatting of the rfc2307bis.ldif file itself
(basically the DESC field was in the wrong place).  I have attached a
fixed ldif file.


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