Why we need redhat_lsb_trigger.c in redhat-lsb package?

2012-03-13 Thread Xibo Ning

Hi,
Do we really need a fineness c program to make symbol link? In 
redhat-lsb.spec, we can see:

gcc $RPM_OPT_FLAGS -Os -static -fno-stack-protector -o
redhat_lsb_trigger{.%{_target_cpu},.c} -DLSBSOVER='%{lsbsover}' \
  -DLDSO='%{ldso}' -DLSBLDSO='/%{_lib}/%{lsbldso}' -D_GNU_SOURCE
install -m 700 redhat_lsb_trigger.%{_target_cpu} \
  $RPM_BUILD_ROOT%{_sbindir}/redhat_lsb_trigger.%{_target_cpu}

%triggerpostun -- glibc
if [ -x /usr/sbin/redhat_lsb_trigger.%{_target_cpu} ]; then
  /usr/sbin/redhat_lsb_trigger.%{_target_cpu}
fi

And in redhat_lsb_trigger.c, the main function is as follows:

int main (int argc, char **argv)
{
/* redhat_lsb_trigger.c:428: warning: unused variable 'ret' */
/*  long ret; */
  INTERNAL_SYSCALL_DECL (err);
  char lsbsover[] = LSBSOVER;
  char *LSBVER, *p = lsbsover;
  while ((LSBVER = strtok (p,  \t)) != NULL)
{
  char buf[sizeof LSBLDSO + 1 + strlen (LSBVER)];
  p = buf;
  p = mempcpy (p, LSBLDSO, sizeof LSBLDSO - 1);
  *p++ = '.';
  strcpy (p, LSBVER);
  if (is_ia64 ())
INTERNAL_SYSCALL (symlink, err, 2, /emul/ia32-linux/lib/ 
LDSO, buf);

  else
INTERNAL_SYSCALL (symlink, err, 2, LDSO, buf);
  p = NULL;
}
  INTERNAL_SYSCALL (exit, err, 1, 0);
  return 110;
}

Why need we use a manually c program, not sln command? We can copy a 
copy of sln, so we can use it even when glibc is removed.


Why?

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

Re: Why we need redhat_lsb_trigger.c in redhat-lsb package?

2012-03-13 Thread Xibo Ning

On 03/13/2012 02:04 PM, Xibo Ning wrote:

Hi,
Do we really need a fineness c program to make symbol link? In
redhat-lsb.spec, we can see:
gcc $RPM_OPT_FLAGS -Os -static -fno-stack-protector -o
redhat_lsb_trigger{.%{_target_cpu},.c} -DLSBSOVER='%{lsbsover}' \
-DLDSO='%{ldso}' -DLSBLDSO='/%{_lib}/%{lsbldso}' -D_GNU_SOURCE
install -m 700 redhat_lsb_trigger.%{_target_cpu} \
$RPM_BUILD_ROOT%{_sbindir}/redhat_lsb_trigger.%{_target_cpu}

%triggerpostun -- glibc
if [ -x /usr/sbin/redhat_lsb_trigger.%{_target_cpu} ]; then
/usr/sbin/redhat_lsb_trigger.%{_target_cpu}
fi

And in redhat_lsb_trigger.c, the main function is as follows:

int main (int argc, char **argv)
{
/* redhat_lsb_trigger.c:428: warning: unused variable 'ret' */
/* long ret; */
INTERNAL_SYSCALL_DECL (err);
char lsbsover[] = LSBSOVER;
char *LSBVER, *p = lsbsover;
while ((LSBVER = strtok (p,  \t)) != NULL)
{
char buf[sizeof LSBLDSO + 1 + strlen (LSBVER)];
p = buf;
p = mempcpy (p, LSBLDSO, sizeof LSBLDSO - 1);
*p++ = '.';
strcpy (p, LSBVER);
if (is_ia64 ())
INTERNAL_SYSCALL (symlink, err, 2, /emul/ia32-linux/lib/ LDSO, buf);
else
INTERNAL_SYSCALL (symlink, err, 2, LDSO, buf);
p = NULL;
}
INTERNAL_SYSCALL (exit, err, 1, 0);
return 110;
}

Why need we use a manually c program, not sln command? We can copy a
copy of sln, so we can use it even when glibc is removed.

Why?

Thanks alot
xning


#ifdef __sparc__
register void *__thread_self __asm (g7);
#endif
#include unistd.h
#include string.h
#include fcntl.h
#include syscall.h

#if defined __i386__
# define INTERNAL_SYSCALL_DECL(err) do { } while (0)
# define INTERNAL_SYSCALL(name, err, nr, args...) \
  ({	  \
register unsigned int resultvar;	  \
asm volatile (			  \
movl %1, %%eax\n\t		  \
int $0x80\n\t			  \
: =a (resultvar)			  \
: i (__NR_##name) ASMFMT_##nr(args) : memory, cc);		  \
(int) resultvar; })
# define INTERNAL_SYSCALL_ERROR_P(val, err) \
  ((unsigned int) (val) = 0xf001u)
# define ASMFMT_0()
# define ASMFMT_1(arg1) \
	, b (arg1)
# define ASMFMT_2(arg1, arg2) \
	, b (arg1), c (arg2)
# define ASMFMT_3(arg1, arg2, arg3) \
	, b (arg1), c (arg2), d (arg3)
#elif defined __x86_64__
# define INTERNAL_SYSCALL_DECL(err) do { } while (0)
# define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \
  ({	  \
unsigned long resultvar;		  \
LOAD_ARGS_##nr (args)		  \
LOAD_REGS_##nr			  \
asm volatile (			  \
syscall\n\t			  \
: =a (resultvar)			  \
: 0 (name) ASM_ARGS_##nr : memory, cc, r11, cx);		  \
(long) resultvar; })
# define INTERNAL_SYSCALL(name, err, nr, args...) \
  INTERNAL_SYSCALL_NCS (__NR_##name, err, nr, ##args)
# define INTERNAL_SYSCALL_ERROR_P(val, err) \
  ((unsigned long) (val) = -4095L)
# define LOAD_ARGS_0()
# define LOAD_REGS_0
# define ASM_ARGS_0
# define LOAD_ARGS_1(a1)\
  long int __arg1 = (long) (a1);			\
  LOAD_ARGS_0 ()
# define LOAD_REGS_1	\
  register long int _a1 asm (rdi) = __arg1;		\
  LOAD_REGS_0
# define ASM_ARGS_1	ASM_ARGS_0, r (_a1)
# define LOAD_ARGS_2(a1, a2)\
  long int __arg2 = (long) (a2);			\
  LOAD_ARGS_1 (a1)
# define LOAD_REGS_2	\
  register long int _a2 asm (rsi) = __arg2;		\
  LOAD_REGS_1
# define ASM_ARGS_2	ASM_ARGS_1, r (_a2)
# define LOAD_ARGS_3(a1, a2, a3)			\
  long int __arg3 = (long) (a3);			\
  LOAD_ARGS_2 (a1, a2)
# define LOAD_REGS_3	\
  register long int _a3 asm (rdx) = __arg3;		\
  LOAD_REGS_2
# define ASM_ARGS_3	ASM_ARGS_2, r (_a3)
#elif defined __powerpc__
# define INTERNAL_SYSCALL_DECL(err) long int err
# define INTERNAL_SYSCALL_NCS(name, err, nr, args...) \
  ({	\
register long int r0  __asm__ (r0);\
register long int r3  __asm__ (r3);\
register long int r4  __asm__ (r4);\
register long int r5  __asm__ (r5);\
register long int r6  __asm__ (r6);\
register long int r7  __asm__ (r7);\
register long int r8  __asm__ (r8);\
LOADARGS_##nr(name, args);		\
__asm__ __volatile__		\
  (sc\n\t\
   mfcr  %0\n\t			\
   : =r (r0),			\
 =r (r3), =r (r4), =r (r5),\
 =r (r6), =r (r7), =r (r8)\
   : ASM_INPUT_##nr			\
   : r9, r10, r11, r12,	\
 cr0, ctr, memory);	\
	  err = r0;  \
(int) r3;  \
  })
# define INTERNAL_SYSCALL(name, err, nr, args...)			\
  INTERNAL_SYSCALL_NCS (__NR_##name, err, nr, ##args)
# define INTERNAL_SYSCALL_ERROR_P(val, err) \
  ((void) (val), __builtin_expect ((err)  (1  28), 0))
# define LOADARGS_0(name, dummy) \
	r0 = name
# define LOADARGS_1(name, __arg1) \
	long int arg1 = (long int) (__arg1); \
	LOADARGS_0(name, 0); \
	r3 = arg1
# define LOADARGS_2(name, __arg1, __arg2) \
	long int arg2 = (long int) (__arg2); \
	LOADARGS_1(name, __arg1); \
	r4 = arg2
# define LOADARGS_3(name, __arg1, __arg2, __arg3) \
	long int arg3 = (long int) (__arg3); \
	LOADARGS_2(name, __arg1, __arg2); \
	

Help with Mock error

2012-03-13 Thread Amit Saha

Hello:

I am in the process of building my first package [1], and have got most 
of it sorted. 'rpmbuild -ba' executes successfully with the current SPEC 
file[3].


However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob: 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file 
passes successfully).



[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm
[3] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec



I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit

--
http://echorand.me

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

Re: Help with Mock error

2012-03-13 Thread Alec Leamas

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got 
most of it sorted. 'rpmbuild -ba' executes successfully with the 
current SPEC file[3].


However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob: 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file 
passes successfully).



[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm
[3] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec



I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit

The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin. To 
verify, run rpmbuild -bi your spec, and look into 
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing 
actually installs


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

Re: Help with Mock error

2012-03-13 Thread Alec Leamas

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got 
most of it sorted. 'rpmbuild -ba' executes successfully with the 
current SPEC file[3].


However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob: 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file 
passes successfully).



[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm
[3] 
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec



I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit

The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin. 
To verify, run rpmbuild -bi your spec, and look into 
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing 
actually installs


Oops... that should be Look into 
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Help with Mock error

2012-03-13 Thread Amit Saha

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm
[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec


I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in 
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .


-Amit

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

Possible to access Koji build directory?

2012-03-13 Thread Richard W.M. Jones

I suspect the answer is 'no', but is is possible to access or download
the build directory of a failed build, on the Fedora Koji servers?

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines.  Supports shell scripting,
bindings from many languages.  http://libguestfs.org
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Help with Mock error

2012-03-13 Thread Alec Leamas

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm 


[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec 




I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in 
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .


-Amit

What a mess... I think I would run a  mock build with the  
--no-cleanup-after flag, and then a mock --shell. This way you should be 
able to see what's built in mock in a similar way to rpmbuild -bi.

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

Re: Possible to access Koji build directory?

2012-03-13 Thread Jan Kratochvil
On Tue, 13 Mar 2012 09:45:22 +0100, Richard W.M. Jones wrote:
 
 I suspect the answer is 'no', but is is possible to access or download
 the build directory of a failed build, on the Fedora Koji servers?

GDB (and GCC) tar and uuencode their testsuite results into build.log:
* Mon Jun 21 2004 Andrew Cagney cag...@redhat.com1.200400607.4
- Tar/uuencode both the .sum and .log test results.

It is a bit hack, providing back also other files besides rpms would be great
but in fact it works well enough this way.

Using then a simple extraction script build.log - files (*.{sum,log}):

http://git.jankratochvil.net/?p=nethome.git;a=blob_plain;f=bin/gdbunpack;hb=master


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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Chris Murphy
On Feb 28, 2012, at 12:53 PM, Matthew Garrett wrote:

 Yes. I'm mostly working on the netinst isos, and right now if you take 
 that and dd it onto a USB stick, then insert that and hold down alt on 
 boot, you'll get a Mac install. Unfortunately, alpha ended up getting 
 built with a grub that dies on any Macs that don't have built-in 
 ethernet, so you may have some problems with that. The alpha kernel also 
 has a bug that seems to trigger on Macs that results in incredible 
 slowness. But other than that! Fixed kernel is in the archive now, and 
 I've just commited a fix for the grub bug.

Fedora-17-Beta-TC1-x86_64-netinst.iso. I'm getting the same problems as with 
alpha ISO.


Burned to DVD
--
Macbook Pro 4,1 (2008)
Four additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI Boot, 
EFI Boot
*2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD icon.

Windows=Boots CSM/BIOS mode successfully
EFI Boot= Grub prompt, no menu
*EFI Boot= Grub prompt, no menu
EFI Boot= Boots Mac OS X


Macbook Pro 8,2 (2011)
Three additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI Boot
*2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD icon.

Windows=Boots CSM/BIOS mode successfully
EFI Boot= Grub prompt, no menu
*EFI Boot= Grub prompt, no menu



dd to USB stick
--
Macbook Pro 4,1 (2008)
Three additional USB icon options labeled as: EFI Boot, EFI Boot, EFI Boot
*2nd icon is a custom Fedora logo icon, not generic USB icon.

EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine
*EFI Boot= Grub prompt, no menu
EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine


Macbook Pro 8,2 (2011)
Three additional CD/DVD icon options labeled as: EFI Boot, EFI Boot, EFI Boot
*2nd icon is a custom Fedora logo icon, not generic USB icon.

EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must force 
shutdown.
*EFI Boot= Grub prompt, no menu
EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must force 
shutdown.


Further, upon completion of CSM-BIOS installation, Fedora isn't bootable by 
default because a hybrid MBR hasn't been created, requiring manual post install 
work to make it bootable. Same situation as F16.
https://bugzilla.redhat.com/show_bug.cgi?id=746901


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

Re: Help with Mock error

2012-03-13 Thread Amit Saha

On 03/13/2012 07:48 PM, Alec Leamas wrote:

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm

[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec



I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .

-Amit


What a mess... I think I would run a mock build with the
--no-cleanup-after flag, and then a mock --shell. This way you should be
able to see what's built in mock in a similar way to rpmbuild -bi.


I did that. I think I should expect to see 'picloud' in /usr/bin and the 
man pages in /usr/share/man/man1/ ? I don't see any of after i do mock 
--shell.


From the build.log, the last few lines are:

+ cp -pr doc README.txt CHANGELOG 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2

+ exit 0
RPM build errors:
File not found by glob: 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1


So, obviously something is wrong. What else I can look into?

Thanks!
-Amit








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

F16 problems with git

2012-03-13 Thread Michał Piotrowski
Hi,

I noticed recently a worrying git behavior. I often do something like that:
git fsck --full
git gc
git push origin master | backup of the entire tree in tar archive

'git fsck' or 'git gc' sometimes causes damage to the repository ie:

$ git fsck --full
error: packed 694728b9fe62ad667f051a109c389403ffa0cb29 from
.git/objects/pack/pack-a4bae2576b36116f1962a5496674ea921eebb6c5.pack
is corrupt

This time, however, after 'git fsck' rerun I don't get this error
message, but in other cases, the repository is corrupted. Has anyone
noticed similar problems with git on F16?

-- 
Best regards,
Michal

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

Re: Possible to access Koji build directory?

2012-03-13 Thread Richard W.M. Jones
On Tue, Mar 13, 2012 at 10:00:59AM +0100, Jan Kratochvil wrote:
 On Tue, 13 Mar 2012 09:45:22 +0100, Richard W.M. Jones wrote:
  
  I suspect the answer is 'no', but is is possible to access or download
  the build directory of a failed build, on the Fedora Koji servers?
 
 GDB (and GCC) tar and uuencode their testsuite results into build.log:
 * Mon Jun 21 2004 Andrew Cagney cag...@redhat.com1.200400607.4
 - Tar/uuencode both the .sum and .log test results.
 
 It is a bit hack, providing back also other files besides rpms would be great
 but in fact it works well enough this way.
 
 Using then a simple extraction script build.log - files (*.{sum,log}):
   
 http://git.jankratochvil.net/?p=nethome.git;a=blob_plain;f=bin/gdbunpack;hb=master

Neat trick, thanks :-)

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-p2v converts physical machines to virtual machines.  Boot with a
live CD or over the network (PXE) and turn machines into Xen guests.
http://et.redhat.com/~rjones/virt-p2v
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: Help with Mock error

2012-03-13 Thread Alec Leamas

On 03/13/2012 10:10 AM, Amit Saha wrote:

On 03/13/2012 07:48 PM, Alec Leamas wrote:

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC 
file

passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm 



[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec 





I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .

-Amit


What a mess... I think I would run a mock build with the
--no-cleanup-after flag, and then a mock --shell. This way you should be
able to see what's built in mock in a similar way to rpmbuild -bi.


I did that. I think I should expect to see 'picloud' in /usr/bin and 
the man pages in /usr/share/man/man1/ ? I don't see any of after i do 
mock --shell.

Yes, they should be there.


From the build.log, the last few lines are:

+ cp -pr doc README.txt CHANGELOG 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2

+ exit 0
RPM build errors:
File not found by glob: 
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1


So, obviously something is wrong. What else I can look into?

Thanks!
-Amit


I guess our common understanding is that the %install has failed... 
sometimes, the installation paths are wrong. Have you looked into the 
complete /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386 tree 
to see if the %install has placed in other places there?


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

F-17 Branched report: 20120313 changes

2012-03-13 Thread Branched Report
Compose started at Tue Mar 13 08:15:07 UTC 2012

Broken deps for x86_64
--
[HippoDraw]
HippoDraw-devel-1.21.3-2.fc17.i686 requires python-numarray
HippoDraw-devel-1.21.3-2.fc17.x86_64 requires python-numarray
HippoDraw-python-1.21.3-2.fc17.x86_64 requires python-numarray
[aeolus-conductor]
aeolus-conductor-0.4.0-2.fc17.noarch requires ruby(abi) = 0:1.8
[aeolus-configserver]
aeolus-configserver-0.4.1-5.fc17.noarch requires ruby-nokogiri
[alexandria]
alexandria-0.6.8-2.fc17.1.noarch requires ruby(abi) = 0:1.8
[amsn]
amsn-0.98.4-9.fc17.x86_64 requires libgstfarsight-0.10.so.0()(64bit)
[aunit]
aunit-2010-3.fc16.i686 requires libgnat-4.6.so
aunit-2010-3.fc16.x86_64 requires libgnat-4.6.so()(64bit)
[catfish]
catfish-engines-0.3.2-4.fc17.1.noarch requires pinot
[comoonics-cdsl-py]
comoonics-cdsl-py-0.2-19.noarch requires comoonics-base-py
[comoonics-cluster-py]
comoonics-cluster-py-0.1-25.noarch requires comoonics-base-py
[contextkit]
contextkit-0.5.15-2.fc15.i686 requires libcdb.so.1
contextkit-0.5.15-2.fc15.x86_64 requires libcdb.so.1()(64bit)
[couchdb]
couchdb-1.0.3-2.fc16.x86_64 requires libicuuc.so.46()(64bit)
couchdb-1.0.3-2.fc16.x86_64 requires libicui18n.so.46()(64bit)
couchdb-1.0.3-2.fc16.x86_64 requires libicudata.so.46()(64bit)
[dh-make]
dh-make-0.55-4.fc17.noarch requires debhelper
[empathy]
empathy-3.3.5-3.fc17.x86_64 requires telepathy-butterfly
empathy-3.3.5-3.fc17.x86_64 requires libtelepathy-farsight.so.0()(64bit)
empathy-3.3.5-3.fc17.x86_64 requires libgstfarsight-0.10.so.0()(64bit)
[eruby]
eruby-1.0.5-17.fc17.x86_64 requires libruby.so.1.8()(64bit)
eruby-libs-1.0.5-17.fc17.i686 requires ruby(abi) = 0:1.8
eruby-libs-1.0.5-17.fc17.i686 requires libruby.so.1.8
eruby-libs-1.0.5-17.fc17.x86_64 requires ruby(abi) = 0:1.8
eruby-libs-1.0.5-17.fc17.x86_64 requires libruby.so.1.8()(64bit)
[gajim]
gajim-0.15-0.4.beta4.fc17.noarch requires farsight2-python
[ganyremote]
ganyremote-5.13-2.fc17.noarch requires bluez-utils = 0:3.35
[gcc-python-plugin]
gcc-python2-debug-plugin-0.9-1.fc17.x86_64 requires gcc = 
0:4.7.0-0.10.fc17
gcc-python2-plugin-0.9-1.fc17.x86_64 requires gcc = 0:4.7.0-0.10.fc17
gcc-python3-debug-plugin-0.9-1.fc17.x86_64 requires gcc = 
0:4.7.0-0.10.fc17
gcc-python3-plugin-0.9-1.fc17.x86_64 requires gcc = 0:4.7.0-0.10.fc17
[gdal]
gdal-ruby-1.7.3-12.fc17.x86_64 requires libruby.so.1.8()(64bit)
[gearmand]
gearmand-0.23-2.fc17.x86_64 requires libtcmalloc.so.0()(64bit)
gearmand-0.23-2.fc17.x86_64 requires libmemcached.so.8()(64bit)
gearmand-0.23-2.fc17.x86_64 requires 
libboost_program_options-mt.so.1.47.0()(64bit)
[genius]
genius-1.0.12-2.fc15.x86_64 requires libgmp.so.3()(64bit)
gnome-genius-1.0.12-2.fc15.x86_64 requires libgmp.so.3()(64bit)
[gnatcoll]
gnatcoll-2011-6.fc17.i686 requires libgnat-4.6.so
gnatcoll-2011-6.fc17.i686 requires libgnarl-4.6.so
gnatcoll-2011-6.fc17.x86_64 requires libgnat-4.6.so()(64bit)
gnatcoll-2011-6.fc17.x86_64 requires libgnarl-4.6.so()(64bit)
[gnome-phone-manager]
gnome-phone-manager-0.66-9.fc17.x86_64 requires 
libgnome-bluetooth.so.9()(64bit)
[gnome-user-share]
gnome-user-share-3.0.1-3.fc17.x86_64 requires 
libgnome-bluetooth.so.9()(64bit)
[gorm]
gorm-1.2.13-0.2.20110331.fc17.i686 requires libobjc.so.3
gorm-1.2.13-0.2.20110331.fc17.i686 requires libgnustep-gui.so.0.20
gorm-1.2.13-0.2.20110331.fc17.i686 requires libgnustep-base.so.1.23
gorm-1.2.13-0.2.20110331.fc17.x86_64 requires libobjc.so.3()(64bit)
gorm-1.2.13-0.2.20110331.fc17.x86_64 requires 
libgnustep-gui.so.0.20()(64bit)
gorm-1.2.13-0.2.20110331.fc17.x86_64 requires 
libgnustep-base.so.1.23()(64bit)
[gphpedit]
gphpedit-0.9.95-0.2.20090209snap.fc15.x86_64 requires 
libgtkhtml-2.so.0()(64bit)
[gpsdrive]
gpsdrive-2.11-10.fc17.x86_64 requires libmapnik.so.0.7()(64bit)
gpsdrive-2.11-10.fc17.x86_64 requires 
libboost_thread-mt.so.1.47.0()(64bit)
gpsdrive-2.11-10.fc17.x86_64 requires 
libboost_system-mt.so.1.47.0()(64bit)
gpsdrive-2.11-10.fc17.x86_64 requires 
libboost_filesystem-mt.so.1.47.0()(64bit)
[gscribble]
gscribble-0.1.2-2.fc17.noarch requires gnome-python2-gtkhtml2
[i3]
i3-4.0.1-2.fc17.x86_64 requires libxcb-property.so.1()(64bit)
i3-4.0.1-2.fc17.x86_64 requires libxcb-keysyms.so.1()(64bit)
i3-4.0.1-2.fc17.x86_64 requires libxcb-icccm.so.1()(64bit)
i3-4.0.1-2.fc17.x86_64 requires libxcb-event.so.1()(64bit)
i3-4.0.1-2.fc17.x86_64 requires libxcb-aux.so.0()(64bit)
i3-4.0.1-2.fc17.x86_64 requires libxcb-atom.so.1()(64bit)
[kanyremote]

Re: Help with Mock error

2012-03-13 Thread Mathieu Bridon
On Tue, 2012-03-13 at 20:10 +1100, Amit Saha wrote:
 From the build.log, the last few lines are:
 
 + cp -pr doc README.txt CHANGELOG 
 /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2
 + exit 0
 RPM build errors:
  File not found by glob: 
 /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
 Child return code was: 1
 
 
 So, obviously something is wrong. What else I can look into?

You could paste the full build.log somewhere.


-- 
Mathieu


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

Re: Help with Mock error

2012-03-13 Thread Amit Saha

On 03/13/2012 09:17 PM, Alec Leamas wrote:

On 03/13/2012 10:10 AM, Amit Saha wrote:

On 03/13/2012 07:48 PM, Alec Leamas wrote:

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC
file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm


[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec




I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in $RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .

-Amit


What a mess... I think I would run a mock build with the
--no-cleanup-after flag, and then a mock --shell. This way you should be
able to see what's built in mock in a similar way to rpmbuild -bi.


I did that. I think I should expect to see 'picloud' in /usr/bin and
the man pages in /usr/share/man/man1/ ? I don't see any of after i do
mock --shell.

Yes, they should be there.


From the build.log, the last few lines are:

+ cp -pr doc README.txt CHANGELOG
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2

+ exit 0
RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1


So, obviously something is wrong. What else I can look into?

Thanks!
-Amit



I guess our common understanding is that the %install has failed...
sometimes, the installation paths are wrong. Have you looked into the
complete /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386 tree
to see if the %install has placed in other places there?


I see that the bash_completion file has been placed in 
etc/bash_completion.d directory and the man page has also been copied in 
usr/share/man/man1


So, the install step is obviously failing in mock.

Here is the complete build.log file: https://gist.github.com/2028090

Hope something can be identified.

Many thanks!
-Amit












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

Re: Help with Mock error

2012-03-13 Thread Alec Leamas

On 03/13/2012 11:55 AM, Amit Saha wrote:

On 03/13/2012 09:17 PM, Alec Leamas wrote:

On 03/13/2012 10:10 AM, Amit Saha wrote:

On 03/13/2012 07:48 PM, Alec Leamas wrote:

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/* 


Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC
file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm 




[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec 






I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit

The spec most likely doesn't put anything in 
$RPM_BUILD_ROOT/usr/bin.

To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .

-Amit


What a mess... I think I would run a mock build with the
--no-cleanup-after flag, and then a mock --shell. This way you 
should be

able to see what's built in mock in a similar way to rpmbuild -bi.


I did that. I think I should expect to see 'picloud' in /usr/bin and
the man pages in /usr/share/man/man1/ ? I don't see any of after i do
mock --shell.

Yes, they should be there.


From the build.log, the last few lines are:

+ cp -pr doc README.txt CHANGELOG
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2 



+ exit 0
RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1


So, obviously something is wrong. What else I can look into?

Thanks!
-Amit



I guess our common understanding is that the %install has failed...
sometimes, the installation paths are wrong. Have you looked into the
complete /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386 tree
to see if the %install has placed in other places there?


I see that the bash_completion file has been placed in 
etc/bash_completion.d directory and the man page has also been copied 
in usr/share/man/man1


So, the install step is obviously failing in mock.

Here is the complete build.log file: https://gist.github.com/2028090

Hope something can be identified.

Many thanks!
-Amit


Basically, this beats me. An educated guess is that something in your 
own environment makes %install work when using rpmbuild. I note there 
are some warnings when running setup.py...


Hopefully, someone who knows this python stuff kan give you some advice 
(that person is certainly not me, sorry :) )


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

Re: Help with Mock error

2012-03-13 Thread Amit Saha

On 03/13/2012 10:45 PM, Alec Leamas wrote:

On 03/13/2012 11:55 AM, Amit Saha wrote:

On 03/13/2012 09:17 PM, Alec Leamas wrote:

On 03/13/2012 10:10 AM, Amit Saha wrote:

On 03/13/2012 07:48 PM, Alec Leamas wrote:

On 03/13/2012 08:58 AM, Amit Saha wrote:

Hello:

On 03/13/2012 06:50 PM, Alec Leamas wrote:

On 03/13/2012 08:43 AM, Alec Leamas wrote:

On 03/13/2012 07:21 AM, Amit Saha wrote:

Hello:

I am in the process of building my first package [1], and have got
most of it sorted. 'rpmbuild -ba' executes successfully with the
current SPEC file[3].

However, the SRPM [2] fails in Mock with the error:

RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*

Child return code was: 1

I am not sure why? (Having the incorrect %{_bindir}/ in the SPEC
file
passes successfully).


[1] https://bugzilla.redhat.com/show_bug.cgi?id=799810
[2]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud-2.4.2-3.fc16.src.rpm



[3]
http://amitksaha.fedorapeople.org/contribs/picloud_packaging/python-picloud.spec





I am probably missing something very basic here. Kindly suggest.

Thanks!
Amit


The spec most likely doesn't put anything in
$RPM_BUILD_ROOT/usr/bin.
To verify, run rpmbuild -bi your spec, and look into
~/rpmbuild/BUILD/python-picloud-2.4.2* to find out what the thing
actually installs


Oops... that should be Look into
~/rpmbuild/BUILDROOT/python-picloud-2.4.2* to find out...


Just checked it. It places the 'picloud' binary in
~/rpmbuild/BUILDROOT/python-picloud-2.4.2-3.fc16/usr/bin .

-Amit


What a mess... I think I would run a mock build with the
--no-cleanup-after flag, and then a mock --shell. This way you
should be
able to see what's built in mock in a similar way to rpmbuild -bi.


I did that. I think I should expect to see 'picloud' in /usr/bin and
the man pages in /usr/share/man/man1/ ? I don't see any of after i do
mock --shell.

Yes, they should be there.


From the build.log, the last few lines are:

+ cp -pr doc README.txt CHANGELOG
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/share/doc/python-picloud-2.4.2


+ exit 0
RPM build errors:
File not found by glob:
/builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386/usr/bin/*
Child return code was: 1


So, obviously something is wrong. What else I can look into?

Thanks!
-Amit



I guess our common understanding is that the %install has failed...
sometimes, the installation paths are wrong. Have you looked into the
complete /builddir/build/BUILDROOT/python-picloud-2.4.2-3.fc16.i386 tree
to see if the %install has placed in other places there?


I see that the bash_completion file has been placed in
etc/bash_completion.d directory and the man page has also been copied
in usr/share/man/man1

So, the install step is obviously failing in mock.

Here is the complete build.log file: https://gist.github.com/2028090

Hope something can be identified.

Many thanks!
-Amit



Basically, this beats me. An educated guess is that something in your
own environment makes %install work when using rpmbuild. I note there
are some warnings when running setup.py...


Yes, the setup.py attempts to do a direct copy of the man and the bash 
completion files to /usr/share and /etc/ sub-dirs respectively. (I think 
i will patch it in the SPEC to work around this).




Hopefully, someone who knows this python stuff kan give you some advice
(that person is certainly not me, sorry :) )


Thank you for looking into this. I hope somebody can help.

Best,
Amit

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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Andreas Tunek
Thanks for all your testing! It certainly seems like Fedora has quite a way
to go before it is possible to install on clean macs.

Have you done any testing using refit, or is this all with vanilla apple
efi?
On Mar 13, 2012 10:06 AM, Chris Murphy li...@colorremedies.com wrote:

 On Feb 28, 2012, at 12:53 PM, Matthew Garrett wrote:

  Yes. I'm mostly working on the netinst isos, and right now if you take
  that and dd it onto a USB stick, then insert that and hold down alt on
  boot, you'll get a Mac install. Unfortunately, alpha ended up getting
  built with a grub that dies on any Macs that don't have built-in
  ethernet, so you may have some problems with that. The alpha kernel also
  has a bug that seems to trigger on Macs that results in incredible
  slowness. But other than that! Fixed kernel is in the archive now, and
  I've just commited a fix for the grub bug.

 Fedora-17-Beta-TC1-x86_64-netinst.iso. I'm getting the same problems as
with alpha ISO.


 Burned to DVD
 --
 Macbook Pro 4,1 (2008)
 Four additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI
Boot, EFI Boot
 *2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD
icon.

 Windows=Boots CSM/BIOS mode successfully
 EFI Boot= Grub prompt, no menu
 *EFI Boot= Grub prompt, no menu
 EFI Boot= Boots Mac OS X


 Macbook Pro 8,2 (2011)
 Three additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI
Boot
 *2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD
icon.

 Windows=Boots CSM/BIOS mode successfully
 EFI Boot= Grub prompt, no menu
 *EFI Boot= Grub prompt, no menu



 dd to USB stick
 --
 Macbook Pro 4,1 (2008)
 Three additional USB icon options labeled as: EFI Boot, EFI Boot, EFI Boot
 *2nd icon is a custom Fedora logo icon, not generic USB icon.

 EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine
 *EFI Boot= Grub prompt, no menu
 EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine


 Macbook Pro 8,2 (2011)
 Three additional CD/DVD icon options labeled as: EFI Boot, EFI Boot, EFI
Boot
 *2nd icon is a custom Fedora logo icon, not generic USB icon.

 EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must
force shutdown.
 *EFI Boot= Grub prompt, no menu
 EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must
force shutdown.


 Further, upon completion of CSM-BIOS installation, Fedora isn't bootable
by default because a hybrid MBR hasn't been created, requiring manual post
install work to make it bootable. Same situation as F16.
 https://bugzilla.redhat.com/show_bug.cgi?id=746901


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

Re: Help with Mock error

2012-03-13 Thread Mathieu Bridon
On Tue, 2012-03-13 at 22:48 +1100, Amit Saha wrote:
  Hopefully, someone who knows this python stuff kan give you some advice
  (that person is certainly not me, sorry :) )
 
 Thank you for looking into this. I hope somebody can help.

From your build.log:
--
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown
distribution option: 'entry_points'
  warnings.warn(msg)
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown
distribution option: 'install_requires'
  warnings.warn(msg)
--

Try adding BuildRequires: python-setuptools to your spec file.


-- 
Mathieu


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

Re: Notice: IPv6 breaking issues tentatively considered blocker for F17

2012-03-13 Thread Glen Turner
Hi,

I am the network engineer at Australia's Academic and Research Network
responsible for assisting the deployment of IPv6 across Australian
universities. Your posting was bought to my attention.

Your phrasing of the condition for blocking is pretty broad: there are
lots of ways to break IPv6, just as there are with IPv4, and just as
with IPv4 not all of them are significant enough to be blocking.

Can I suggest the following as a starting point:
 - failure in configuration of interface addresses with a link scope
address via stateless address autoconfiguration should block
 - failure in configuration of interface addresses with a global scope
via stateless address autoconfiguration should block
 - failure in configuration of interface addresses with a global scope
via manual configuration should block
 - failure in configuration of DNS forwarding via stateless DHCP6 should
block
 - failure in configuration of DNS forwarding via RAs should block
 - failure of connectivity of network ::1/128 (localhost) of all
services should block
 - failure of unicast or multicast connectivity of link local addressing
of allowed services should block
 - failure of unicast connectivity of global addressing of allowed
services should block
 - failure of connectivity of ICMP6 service for codes = 127 should
block

Non-stateless DHCP6 is primarily used by ISPs to configure customer
routers. Those routers present SLAAC to their downstream users.

Non-stateless DHCP6 is also used by enterprises who wish to parallel
their existing management of computers via IPv4 DHCP into IPv6. In my
view that is a poor network design choice, but there is no denying that
it is a choice made by some enterprise networks.

At this point in time you could deploy a IPv6 with manual configuration
and with SLAAC (with both stateless DHCP6 and RAs to configure DNS) and
make most people happy. The significance of the proportion of people
made unhappy may or may not be enough for a release blocking bug (as
opposed to simple lack of support for that IPv6 feature) -- that's
really your choice.

It also depends if statefull DHCP6 host configuration was supported in a
previous release, in that case a regression leads to such a complicated
scenario for network engineers and systems administrators that the bug
should be release blocking.

Cheers,
Glen

-- 
 Glen Turner http://www.gdt.id.au/~gdt/

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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Matthew Garrett
On Tue, Mar 13, 2012 at 03:06:31AM -0600, Chris Murphy wrote:

 EFI Boot= Grub prompt, no menu

Can you type root and see what it says, followed by findiso and then 
root?

 EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine

That'll be a kernel bug of some description...

 EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must 
 force shutdown.

This too. Can you try adding noefi to the kernel command line for 
both?

CSM boots aren't expected to work in the slightest.
-- 
Matthew Garrett | mj...@srcf.ucam.org
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: /etc/default in Fedora

2012-03-13 Thread James Antill
On Sat, 2012-03-10 at 18:20 +, Richard W.M. Jones wrote:
 'Course we could go further and rename /etc/httpd - /etc/apache (and
 rename the package, both matching Debian), which should have been done
 a long time ago.

 It used to be like that:

http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/3/html/Reference_Guide/ch-httpd.html#S2-HTTPD-V2-DIFF-RPM

...but upstream explicitly requested that we change it.

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

Re: Help with Mock error

2012-03-13 Thread Amit Saha

On 03/13/2012 11:10 PM, Mathieu Bridon wrote:

On Tue, 2012-03-13 at 22:48 +1100, Amit Saha wrote:

Hopefully, someone who knows this python stuff kan give you some advice
(that person is certainly not me, sorry :) )


Thank you for looking into this. I hope somebody can help.


 From your build.log:
--
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown
distribution option: 'entry_points'
   warnings.warn(msg)
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown
distribution option: 'install_requires'
   warnings.warn(msg)
--

Try adding BuildRequires: python-setuptools to your spec file.




And it succeeds. Thanks a lot, Mathieu!

Best,
-Amit

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

Re: Non-free tarball checked in

2012-03-13 Thread Toshio Kuratomi
On Mon, Mar 12, 2012 at 12:21:52PM -0500, Jon Ciesla wrote:
 On Mon, Mar 12, 2012 at 12:17 PM, Mattia Verga mattia.ve...@tiscali.it 
 wrote:
 
  And what about for pre-built binary files contained in source that are not
  installed in the final rpm (ex. deleted in the %setup stage)? Should the
  source be purged from those?
 
 If the licensing is such that they can't be redistributed, yes.
 
And just to be clear for people who search the mailing list archives later:

* If the licensing is okay, the source tarball doesn't need to be repacked
  with those files excluded.
* The binaries (for a definition of binaries that includes code/executable
  content but not necessarily data) do need to be removed from the build
  environment in the %prep stage of the rpm build.

https://fedoraproject.org/wiki/Packaging:Guidelines#No_inclusion_of_pre-built_binaries_or_libraries

-Toshio


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

Re: [Test-Announce] Test Day 2012-03-15: GNOME Shell and Extensions

2012-03-13 Thread Stephen Gallagher
On Mon, 2012-03-12 at 19:36 -0400, Matthias Clasen wrote:
 On Mon, 2012-03-12 at 11:07 -0400, Stephen Gallagher wrote:
 
  
  I know this should most likely be directed at upstream Gnome, but would
  it be possible to redesign extensions.gnome.org so that it's... usable?
  I mean, it's a list of extensions, ten to a page, ordered by popularity,
  name or number of downloads.
  
  Would it be so hard to add tags or categories of functionality? Right
  now, I have to read through fourteen pages (and growing!) to get any
  idea of whether an extension happens to provide a feature I might want.
  
  I like gnome-shell, and I'd like to tweak it a little bit to fit my
  needs better. But the extension website is so difficult to navigate that
  it's really a deterrent. It will only get worse as people continue to
  write new extensions (which, because of the default ordering of
  popularity will always show up in the later pages of the site first).
 
 Thanks for the feedback.
 
 We have recently added search to the website, and some other
 improvements may still land before we remove the 'alpha' label from it.
 
 If you want to report your problem in more detail, feel free to go to
 https://bugzilla.gnome.org/enter_bug.cgi?product=websitecomponent=extensions.gnome.org
 - or just walk by Jaspers desk.


Ask and ye shall receive:
https://bugzilla.gnome.org/show_bug.cgi?id=672008


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

Weird koji/mock problem with libpng-devel

2012-03-13 Thread Richard Shaw
I'm trying to rebuild OpenImageIO for an updated dependency and I ran
into an issue. When I try to build it in koji or even on a local mock
build the build fails with a cmake error saying it couldn't find the
PNG library.

Looking in root.log in both cases shows that it was installed.

I did a mock --shell and then tried rpm -ql libpng-devel:

mock-chroot# rpm -ql libpng-devel
package libpng-devel is not installed

Intresting... root.log said it was installed.

Doing a mock --install libpng-devel a second time seems to fix it but
of course I can't do that on a koji build.

I also tried a straight mock --init, mock --install libpng-devel and
it works as expected, so this only appears to fail when it's getting
the BuildRequires: from the spec/srpm.

This is only happening on f16 as far as I can tell. Any ideas?

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

[Bug 802983] New: perl-Date-Manip-6.31 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Date-Manip-6.31 is available

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

   Summary: perl-Date-Manip-6.31 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Date-Manip
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 6.31
Current version in Fedora Rawhide: 6.30
URL: http://search.cpan.org/dist/Date-Manip/

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

[Bug 802981] New: perl-Archive-Tar-1.84 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Archive-Tar-1.84 is available

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

   Summary: perl-Archive-Tar-1.84 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Archive-Tar
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.84
Current version in Fedora Rawhide: 1.82
URL: http://search.cpan.org/dist/Archive-Tar/

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

Re: Weird koji/mock problem with libpng-devel

2012-03-13 Thread Richard Shaw
On Tue, Mar 13, 2012 at 2:15 PM, Richard Shaw hobbes1...@gmail.com wrote:
 I'm trying to rebuild OpenImageIO for an updated dependency and I ran
 into an issue. When I try to build it in koji or even on a local mock
 build the build fails with a cmake error saying it couldn't find the
 PNG library.

Never mind, somehow f15, f17, and f18 didn't care that I only had
libpng and not libpng-devel in the spec file. weird.

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

[Bug 802985] New: perl-DBD-Pg-2.19.2 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-DBD-Pg-2.19.2 is available

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

   Summary: perl-DBD-Pg-2.19.2 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-DBD-Pg
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: dev...@gunduz.org, fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 2.19.2
Current version in Fedora Rawhide: 2.18.0
URL: http://search.cpan.org/dist/DBD-Pg/

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

[Bug 802989] New: perl-IO-Socket-IP-0.09 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-IO-Socket-IP-0.09 is available

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

   Summary: perl-IO-Socket-IP-0.09 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-IO-Socket-IP
AssignedTo: psab...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.09
Current version in Fedora Rawhide: 0.08
URL: http://search.cpan.org/dist/IO-Socket-IP/

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

[Bug 802993] New: perl-Mozilla-CA-20120309 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Mozilla-CA-20120309 is available

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

   Summary: perl-Mozilla-CA-20120309 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Mozilla-CA
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 20120309
Current version in Fedora Rawhide: 20120118
URL: http://search.cpan.org/dist/Mozilla-CA/

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

[Bug 802991] New: perl-Marpa-XS-1.006000 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Marpa-XS-1.006000 is available

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

   Summary: perl-Marpa-XS-1.006000 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Marpa-XS
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, lkund...@v3.sk, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.006000
Current version in Fedora Rawhide: 1.004000
URL: http://search.cpan.org/dist/Marpa-XS/

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

[Bug 802995] New: perl-Object-InsideOut-3.92 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Object-InsideOut-3.92 is available

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

   Summary: perl-Object-InsideOut-3.92 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Object-InsideOut
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com,
psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 3.92
Current version in Fedora Rawhide: 3.91
URL: http://search.cpan.org/dist/Object-InsideOut/

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

[Bug 746941] perl-Mojolicious-2.59 is available

2012-03-13 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=746941

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

   What|Removed |Added

Summary|perl-Mojolicious-2.55 is|perl-Mojolicious-2.59 is
   |available   |available

--- Comment #40 from Upstream Release Monitoring 
upstream-release-monitor...@fedoraproject.org 2012-03-13 15:24:21 EDT ---
Latest upstream release: 2.59
Current version in Fedora Rawhide: 2.56
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-de...@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/perl-devel

[Bug 802994] New: perl-NetAddr-IP-4.059 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-NetAddr-IP-4.059 is available

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

   Summary: perl-NetAddr-IP-4.059 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-NetAddr-IP
AssignedTo: andr...@bawue.net
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: andr...@bawue.net, fedora-perl-devel-l...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 4.059
Current version in Fedora Rawhide: 4.058
URL: http://search.cpan.org/dist/NetAddr-IP/

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

[Bug 802996] New: perl-POE-1.351 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-POE-1.351 is available

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

   Summary: perl-POE-1.351 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-POE
AssignedTo: psab...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.351
Current version in Fedora Rawhide: 1.350
URL: http://search.cpan.org/dist/POE/

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

[Bug 802990] New: perl-Jemplate-0.262 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Jemplate-0.262 is available

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

   Summary: perl-Jemplate-0.262 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Jemplate
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.262
Current version in Fedora Rawhide: 0.261
URL: http://search.cpan.org/dist/Jemplate/

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

[Bug 802986] New: perl-Debug-Client-0.18 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Debug-Client-0.18 is available

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

   Summary: perl-Debug-Client-0.18 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Debug-Client
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.18
Current version in Fedora Rawhide: 0.16
URL: http://search.cpan.org/dist/Debug-Client/

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

[Bug 802987] New: perl-Digest-SHA-5.71 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Digest-SHA-5.71 is available

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

   Summary: perl-Digest-SHA-5.71 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Digest-SHA
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 5.71
Current version in Fedora Rawhide: 5.70
URL: http://search.cpan.org/dist/Digest-SHA/

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

[Bug 802998] New: perl-POE-Component-Client-HTTP-0.945 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-POE-Component-Client-HTTP-0.945 is available

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

   Summary: perl-POE-Component-Client-HTTP-0.945 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-POE-Component-Client-HTTP
AssignedTo: psab...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.945
Current version in Fedora Rawhide: 0.944
URL: http://search.cpan.org/dist/POE-Component-Client-HTTP/

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

[Bug 803008] New: perlbrew-0.42 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perlbrew-0.42 is available

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

   Summary: perlbrew-0.42 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perlbrew
AssignedTo: iarn...@gmail.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: iarn...@gmail.com, fedora-perl-devel-l...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


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

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

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

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

[Bug 803005] New: perl-YAML-Tiny-1.51 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-YAML-Tiny-1.51 is available

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

   Summary: perl-YAML-Tiny-1.51 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-YAML-Tiny
AssignedTo: st...@silug.org
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: st...@silug.org, fedora-perl-devel-l...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.51
Current version in Fedora Rawhide: 1.50
URL: http://search.cpan.org/dist/YAML-Tiny/

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

[Bug 803003] New: perl-Tk-Pod-0.9940 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Tk-Pod-0.9940 is available

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

   Summary: perl-Tk-Pod-0.9940 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Tk-Pod
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.9940
Current version in Fedora Rawhide: 0.9939
URL: http://search.cpan.org/dist/Tk-Pod/

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

[Bug 803000] New: perl-Socket-2.000 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Socket-2.000 is available

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

   Summary: perl-Socket-2.000 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Socket
AssignedTo: ppi...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 2.000
Current version in Fedora Rawhide: 1.99
URL: http://search.cpan.org/dist/Socket/

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

[Bug 803004] New: perl-XML-LibXML-1.95 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-XML-LibXML-1.95 is available

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

   Summary: perl-XML-LibXML-1.95 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-XML-LibXML
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.95
Current version in Fedora Rawhide: 1.93
URL: http://search.cpan.org/dist/XML-LibXML/

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

[Bug 802999] New: perl-POE-Test-Loops-1.351 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-POE-Test-Loops-1.351 is available

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

   Summary: perl-POE-Test-Loops-1.351 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-POE-Test-Loops
AssignedTo: psab...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, psab...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 1.351
Current version in Fedora Rawhide: 1.350
URL: http://search.cpan.org/dist/POE-Test-Loops/

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

[Bug 803001] New: perl-Text-CSV_XS-0.87 is available

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: perl-Text-CSV_XS-0.87 is available

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

   Summary: perl-Text-CSV_XS-0.87 is available
   Product: Fedora
   Version: rawhide
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Keywords: FutureFeature, Triaged
  Severity: unspecified
  Priority: unspecified
 Component: perl-Text-CSV_XS
AssignedTo: mmasl...@redhat.com
ReportedBy: upstream-release-monitor...@fedoraproject.org
 QAContact: extras...@fedoraproject.org
CC: fedora-perl-devel-l...@redhat.com,
mmasl...@redhat.com, ppi...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Latest upstream release: 0.87
Current version in Fedora Rawhide: 0.86
URL: http://search.cpan.org/dist/Text-CSV_XS/

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

Review swap request

2012-03-13 Thread Jon Ciesla
lzip just split out lziprecover.  If someone would be so kind as to do
this quick review, I'll take one in return.

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

Thanks!

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

[389-devel] please review ticket #24 - Add nsTLS1 attribute to schema and objectclass nsEncryptionConfig

2012-03-13 Thread Mark Reynolds

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

https://fedorahosted.org/389/attachment/ticket/24/0001-Ticket-24-Add-nsTLS1-to-the-DS-schema.patch

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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Chris Murphy
On Mar 13, 2012, at 7:10 AM, Matthew Garrett wrote:

 On Tue, Mar 13, 2012 at 03:06:31AM -0600, Chris Murphy wrote:
 
 EFI Boot= Grub prompt, no menu
 
 Can you type root and see what it says, followed by findiso and then 
 root?

USB stick:
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
 (hd0): Filesystem type is iso9660,  using whole disk

DVD:
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
  (fd256): Filesystem type is iso9660, using whole disk



 
 EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine
 
 That'll be a kernel bug of some description...
 
 EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must 
 force shutdown.
 
 This too. Can you try adding noefi to the kernel command line for 
 both?

Makes no difference in either case. Same result. This is inserted after 
'rd.dm=0'.

 
 CSM boots aren't expected to work in the slightest.

But it does work. All the way to anaconda and installation. It's the EFI 
options that aren't working so far.


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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Chris Murphy
Detail version of previous post's in-line summary results.


Burned to DVD
--
Macbook Pro 4,1 (2008)
 Four additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI Boot, 
EFI Boot
*2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD icon.

1. Windows= Boots fine, all the way to anaconda.

2. EFI Boot= Grub prompt, no menu.
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
  (fd256): Filesystem type is iso9660, using whole disk


3. *EFI Boot= Grub prompt, no menu
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
  (fd256): Filesystem type is iso9660, using whole disk


4. EFI Boot= Boots Mac OS X. 


Macbook Pro 8,2 (2011)
Three additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI Boot
*2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD icon.

1. Windows=Boots CSM/BIOS mode successfully, to anaconda.

2. EFI Boot= Grub prompt, no menu
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
  (fd256): Filesystem type is iso9660, using whole disk


3. *EFI Boot= Grub prompt, no menu
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
  (fd256): Filesystem type is iso9660, using whole disk




dd to USB stick
--
Macbook Pro 4,1 (2008)
 Four additional CD/DVD icon options labeled as: Windows, EFI Boot, EFI Boot, 
EFI Boot
*2nd EFI Boot option has a custom Fedora logo icon, not generic CD/DVD icon.

1. EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine.
When inserting noefi as kernel parameter, there is no change in behavior. FYI 
I'm inserting it right after 'rd.dm=0'.

2. *EFI Boot= Grub prompt, no menu
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
 (hd0): Filesystem type is iso9660,  using whole disk

3. EFI Boot= Grub menu, loads from stick for ~45 seconds then reboots machine
When inserting noefi as kernel parameter, there is no change in behavior.


Macbook Pro 8,2 (2011)
Three additional CD/DVD icon options labeled as: EFI Boot, EFI Boot, EFI Boot
*2nd icon is a custom Fedora logo icon, not generic USB icon.

1. EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must 
force shutdown.
With noefi as kernel parameter, no change in behavior.

2. *EFI Boot= Grub prompt, no menu
grub root
  (hd0,2,a): Filesystem type unknown, partition type 0x0
grub findiso
grub root
 (hd0): Filesystem type is iso9660,  using whole disk

3. EFI Boot= Grub menu, loads from stick for ~6 seconds, then beeping, must 
force shutdown.
With noefi as kernel parameter, no change in behavior.
-- 
devel mailing list
devel@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Matthew Garrett
On Tue, Mar 13, 2012 at 02:02:50PM -0600, Chris Murphy wrote:
 On Mar 13, 2012, at 7:10 AM, Matthew Garrett wrote:
 
  On Tue, Mar 13, 2012 at 03:06:31AM -0600, Chris Murphy wrote:
  
  EFI Boot= Grub prompt, no menu
  
  Can you type root and see what it says, followed by findiso and then 
  root?
 
 USB stick:
 grub root
   (hd0,2,a): Filesystem type unknown, partition type 0x0
 grub findiso
 grub root
  (hd0): Filesystem type is iso9660,  using whole disk
 
 DVD:
 grub root
   (hd0,2,a): Filesystem type unknown, partition type 0x0
 grub findiso
 grub root
   (fd256): Filesystem type is iso9660, using whole disk

Interesting. This probably means that grub is failing to find its config 
file for some reason, which really isn't something that should go wrong. 
I'll look into it.

  This too. Can you try adding noefi to the kernel command line for 
  both?
 
 Makes no difference in either case. Same result. This is inserted after 
 'rd.dm=0'.

Ok, so it's nothing to do with our efi accesses. Irritating. I'll 
probably need to track down hardware.

  
  CSM boots aren't expected to work in the slightest.
 
 But it does work. All the way to anaconda and installation. It's the EFI 
 options that aren't working so far.

You pointed out that CSM installs don't work - the partition table is 
entirely inappropriate for them. We're not planning on fixing that.

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

Re: Review swap request

2012-03-13 Thread Richard Shaw
On Tue, Mar 13, 2012 at 2:36 PM, Jon Ciesla limburg...@gmail.com wrote:
 lzip just split out lziprecover.  If someone would be so kind as to do
 this quick review, I'll take one in return.

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

I'll take it.

Here's my only open review for Fedora:
https://bugzilla.redhat.com/show_bug.cgi?id=773011

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

Re: Review swap request

2012-03-13 Thread Jon Ciesla
On Tue, Mar 13, 2012 at 3:13 PM, Richard Shaw hobbes1...@gmail.com wrote:
 On Tue, Mar 13, 2012 at 2:36 PM, Jon Ciesla limburg...@gmail.com wrote:
 lzip just split out lziprecover.  If someone would be so kind as to do
 this quick review, I'll take one in return.

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

 I'll take it.

 Here's my only open review for Fedora:
 https://bugzilla.redhat.com/show_bug.cgi?id=773011

On it, thanks!

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



-- 
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: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Chris Murphy


On Mar 13, 2012, at 2:07 PM, Matthew Garrett wrote:
 
 You pointed out that CSM installs don't work - the partition table is 
 entirely inappropriate for them. We're not planning on fixing that.


CSM boot from install media does work. CSM installations don't reboot 
successfully, without manual creation of a hybrid MBR.

While I understand the reluctance to support hybrid MBR, that is how Apple 
supports Windows CSM installations. I don't know which is more difficult, 
squashing the myriad VBIOS bugs with Apple EFI booting, or tolerating hybrid 
MBRs.

Even with successful livecd-iso-to-disk USB stick boots in EFI, both of my test 
computers have outstanding video bugs that translate into no GUI. By 
successful, I mean the kernel, initrd, and services load - except for X and 
gnome/kde. I can ssh in and interact text only.

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


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

[Bug 803044] New: RFE: update to at least 0.86

2012-03-13 Thread bugzilla
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.

Summary: RFE: update to at least 0.86

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

   Summary: RFE: update to at least 0.86
   Product: Fedora EPEL
   Version: el5
  Platform: Unspecified
OS/Version: Unspecified
Status: NEW
  Severity: unspecified
  Priority: unspecified
 Component: perl-File-HomeDir
AssignedTo: rob.my...@gtri.gatech.edu
ReportedBy: p...@city-fan.org
 QAContact: extras...@fedoraproject.org
CC: rob.my...@gtri.gatech.edu,
fedora-perl-devel-l...@redhat.com
Classification: Fedora
  Story Points: ---
  Type: ---
Regression: ---
Mount Type: ---
 Documentation: ---


Please consider updating perl-File-HomeDir in EPEL-5 to at least version 0.86,
which I need for perl-Test-Valgrind. Cloning the EL-6 package would do nicely.

Looking at the upstream changelog, there don't appear to be any incompatible
changes after the current EPEL-5 version (0.62) until version 0.90.

I (pghmcfc) would be happy to co-maintain this package if you're busy or have
lost interest.

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

[389-devel] Please review: [389 Project] #303: make DNA range requests work with transactions

2012-03-13 Thread Noriko Hosoi

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

https://fedorahosted.org/389/attachment/ticket/303/0001-Trac-Ticket-303-make-DNA-range-requests-work-with-tr.patch

 Fix Description:
 1. pre_op: Adding missing dnatypes (e.g., uidNumber) should be done
in the pre op phase (outside of the transaction) to satisfy the
schema checking. To avoid calling the internal search for modify,
set the target entry before calling pre op plugin in op_shared_
modify (modify.c).
Also, if the operation is a replication op, the pre_op is skipped.
 2. post_op: Moving dna_config_check_post_op to BE_TXN_POST_OP.
If it is an internal operation, the dna post op is being skipped
to avoid self re-entrant deadlock.
 3. Fixed memory leaks on DNA_NEEDS_UPDATE and an uninitialized
variable access.



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

SPDY in F18 (was Re: F17 httpd 2.4?)

2012-03-13 Thread Michał Piotrowski
2012/2/21 Jon Ciesla limburg...@gmail.com:
 2012/2/21 Michał Piotrowski mkkp...@gmail.com:
 Hi,

 Is there a chance to get httpd 2.4 in Fedora 17
 http://www.apache.org/dist/httpd/Announcement2.4.html
 ?

 This is the first major release from a few years and has some nice features.

 Not likely this late in the cycle, though the timing is great for f18.

How about SPDY support?
http://code.google.com/p/mod-spdy/

Firefox supports SPDY
http://hacks.mozilla.org/2012/02/spdy-brings-responsive-and-scalable-transport-to-firefox-11/

If there are any work in progress packages for mod_spdy I would like
to help test them :)



 -J

 --
 Best regards,
 Michal

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



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



-- 
Best regards,
Michal

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

[Test-Announce] Announcing 389 Directory Server version 1.2.10.4 Testing

2012-03-13 Thread Rich Megginson
The 389 Project team is pleased to announce the release of 
389-ds-base-1.2.10.4.  This release contains a fix for a bug that causes 
the directory server to hang when using compare operations with virtual 
attributes. No new features were added after alpha 8, just many bug 
fixes.  There are also 389-adminutil, 389-admin, and 389-dsgw packages 
in Testing.


NEW: EL6 support

Beginning with RHEL 6.2, the 389-ds-base package is included in the base 
OS.  Therefore, the 389-ds-base package can no longer be provided via 
EPEL, due to RHEL/EPEL packaging restrictions.


However, the 389 Project will still make the full 389-ds-base package 
available via http://repos.fedorapeople.org/repos/rmeggins/389-ds-base. 
 See http://directory.fedoraproject.org/wiki/Download for more information.


NEW: Issue Tracking System

We have moved our ticket tracking system from the Red Hat Bugzilla 
https://bugzilla.redhat.com/enter_bug.cgi?product=389 to our Fedora 
Hosted Trac https://fedorahosted.org/389. All of the old 389 bugs have 
been copied to Trac. All new bugs, feature requests, and tasks should be 
entered in Trac


This link shows all of the issues fixed in the 1.2.10 branch - 
https://fedorahosted.org/389/report/12
In addition to the tickets for Milestone 1.2.10.3 there were a couple of 
issues found by valgrind that have been fixed.


NEW: Plugin Authors

WARNING: Plugins should be made transaction aware so that they can be 
called from within a backend pre/post transaction plugin. Otherwise,
attempting to perform an internal operation will cause a deadlock. See 
http://directory.fedoraproject.org/wiki/Plugins


Installation

 yum install --enablerepo=updates-testing 389-ds
 # or for EPEL
 yum install --enablerepo=epel-testing 
[--enablerepo=epel-testing-389-ds-base] 389-ds

 setup-ds-admin.pl

Upgrade

 yum upgrade --enablerepo=updates-testing 389-ds-base 
idm-console-framework 389-admin 389-ds-console 389-admin-console 
389-dsgw 389-adminutil

 # or for EPEL
 yum upgrade --enablerepo=epel-testing 
[--enablerepo=epel-testing-389-ds-base] 389-ds-base 
idm-console-framework 389-admin 389-ds-console 389-admin-console 
389-dsgw 389-adminutil

 setup-ds-admin.pl -u

How to Give Feedback

The best way to provide feedback is via the Fedora Update system.

* Go to https://admin.fedoraproject.org/updates
* In the Search box in the upper right hand corner, type in the name of 
the package
* In the list, find the version and release you are using (if you're not 
sure, use rpm -qi package name on your system) and click on the release
* On the page for the update, scroll down to Add a comment and provide 
your input


Or just send us an email to 389-us...@lists.fedoraproject.org

Reporting Issues

https://fedorahosted.org/389

More Information
* Release Notes - http://port389.org/wiki/Release_Notes
* Install_Guide - http://port389.org/wiki/Install_Guide
* Download - http://port389.org/wiki/Download


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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Matthew Garrett
On Tue, Mar 13, 2012 at 02:26:03PM -0600, Chris Murphy wrote:

 CSM boot from install media does work. CSM installations don't reboot 
 successfully, without manual creation of a hybrid MBR.

Yes, and support for handling and managing hybrid MBRs is difficult. 
Apple can manage it by simply constraining it to a very simple case. 
Create more partitions and disk utility stops wanting to be your friend. 
Trying to handle hybrid media in the larger number of storage cases we 
have to support is a non-starter.

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

Re: How can we make F17 be able to boot on Macs (with or without reFit)

2012-03-13 Thread Chris Murphy
On Mar 13, 2012, at 3:37 PM, Matthew Garrett wrote:

 Yes, and support for handling and managing hybrid MBRs is difficult. 
 Apple can manage it by simply constraining it to a very simple case. 
 Create more partitions and disk utility stops wanting to be your friend. 
 Trying to handle hybrid media in the larger number of storage cases we 
 have to support is a non-starter.

Perhaps it's unreasonable to try to handle the larger number of storage cases 
with Apple hardware, at least in the short/medium term. Limiting the possible 
cases, it's at least possible to have a functioning system, with a GUI, using 
CSM-BIOS+hybrid MBR.

With a wider set of cases, I have effectively a useless system in all such 
cases with EFI, as I have no graphics with either test hardware. And one of 
them I have neither graphics nor text with built-in display, I can only 
interact via ssh - requiring a 2nd system to do so.


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

help with package review

2012-03-13 Thread Julian C. Dunn
Hi all,

I'm new to the Fedora project although I've been a long-time Fedora user. I'm 
hoping someone can review and sponsor a package that I've had in the pipe for a 
while, and am only getting back to dealing with:

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

I'm not sure if I need to trade reviews with someone to push this forward, but 
I'm happy to do that as well.

- Julian

[ Julian C. Dunn jd...@aquezada.com  * Sorry, I'm]
[ WWW: http://www.juliandunn.net/  * only Web 1.0  ]
[ gopher://sdf.org/1/users/keymaker/   * compliant!]
[ PGP: 91B3 7A9D 683C 7C16 715F 442C 6065 D533 FDC2 05B9   ]

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

Re: FAT and HFS/HFS+ file system resizing restored in parted-3.1

2012-03-13 Thread Brian C. Lane
On Thu, Mar 08, 2012 at 06:11:49PM -0700, Chris Murphy wrote:
 On Mar 3, 2012, at 1:27 AM, Jim Meyering wrote:
 
  FYI, I released parted-3.1 yesterday,
  
 http://thread.gmane.org/gmane.comp.gnu.parted.bugs/10790
  
  In addition to pretty many bug fixes,
  
 This is to announce parted-3.1, a bug fix release that also reintroduces
 a minimal subset of the file system resizing capability that was removed
 in 3.0.  It adds a new, separate library, libparted-fs-resize, that
 provides for resizing of FAT and HFS/HFS+ file systems.
 
 FYI, there is a possible problem resizing certain JHFS+/JHFSX volumes. 
 Currently the code fails if the jhdr_header size is something other than 
 sector size. When volume size is  1TiB, depending on the version of Apple's 
 Disk Utility used, the jhdr_header size won't be 512 bytes, is instead 4096 
 bytes. Details here:
 
 http://lists.apple.com/archives/filesystem-dev/2012/Feb/msg1.html

I have rebased master to parted-3.1 and rebuilt pyparted against it. The
new libparted-fs-resize library is included, but there is currently no
user interface for the code.

I am going to be leaving parted at 3.0 for F17, I don't want to
introduce a large change at this stage.

-- 
Brian C. Lane | Anaconda Team | IRC: bcl #anaconda | Port Orchard, WA (PST8PDT)


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

Re: FAT and HFS/HFS+ file system resizing restored in parted-3.1

2012-03-13 Thread Kevin Kofler
Brian C. Lane wrote:
 I am going to be leaving parted at 3.0 for F17, I don't want to
 introduce a large change at this stage.

This is really unhelpful, it's going to leave frontends with no way to readd 
support for the lost functionality for another release.

(FYI, I filed an RFE against upstream kde-partitionmanager to get support 
for this in: https://bugs.kde.org/show_bug.cgi?id=295339 . I might try to 
come up with a patch if upstream doesn't react soon.)

IMHO, we should actually either also upgrade F16 to parted 3.1 or backport 
the new libparted-fs-resize library.

Kevin Kofler

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

Re: FAT and HFS/HFS+ file system resizing restored in parted-3.1

2012-03-13 Thread Kevin Kofler
I wrote:

 Brian C. Lane wrote:
 I am going to be leaving parted at 3.0 for F17, I don't want to
 introduce a large change at this stage.
 
 This is really unhelpful, it's going to leave frontends with no way to
 readd support for the lost functionality for another release.
 
 (FYI, I filed an RFE against upstream kde-partitionmanager to get support
 for this in: https://bugs.kde.org/show_bug.cgi?id=295339 . I might try to
 come up with a patch if upstream doesn't react soon.)
 
 IMHO, we should actually either also upgrade F16 to parted 3.1 or backport
 the new libparted-fs-resize library.

PS: I also don't see how an added library which Anaconda doesn't even use 
could have any potential for breakage.

Kevin Kofler

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

[Bug 719874] perl-threads-lite keeps hanging during self checks

2012-03-13 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=719874

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-threads-lite-0.031-6.f
   ||c17
 Resolution||ERRATA
Last Closed||2012-03-13 14:29:45

--- Comment #4 from Fedora Update System upda...@fedoraproject.org 2012-03-13 
14:29:45 EDT ---
perl-threads-lite-0.031-6.fc17 has been pushed to the Fedora 17 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
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 800241] Catalyst fails to locate user application library via Catalyst::ScriptRunner-run('MyApp', 'Server')

2012-03-13 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=800241

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

   What|Removed |Added

 Status|ON_QA   |CLOSED
   Fixed In Version||perl-Catalyst-Runtime-5.900
   ||11-1.fc17
 Resolution||ERRATA
Last Closed||2012-03-13 14:35:00

--- Comment #5 from Fedora Update System upda...@fedoraproject.org 2012-03-13 
14:35:00 EDT ---
perl-Catalyst-Runtime-5.90011-1.fc17 has been pushed to the Fedora 17 stable
repository.  If problems still persist, please make note of it in this bug
report.

-- 
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 App-perlbrew-0.42.tar.gz uploaded to lookaside cache by iarnell

2012-03-13 Thread Iain Arnell
A file has been added to the lookaside cache for perlbrew:

185894e4539d83f685a3a40174ed4324  App-perlbrew-0.42.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

[perlbrew] update to 0.42

2012-03-13 Thread Iain Arnell
commit c0e1f0060baca35127c98e86aaa49fa0ee5a6d75
Author: Iain Arnell iarn...@gmail.com
Date:   Tue Mar 13 16:38:19 2012 -0600

update to 0.42

 .gitignore|1 +
 perlbrew.spec |5 -
 sources   |2 +-
 3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index aba98a4..9fc6865 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@
 /App-perlbrew-0.33.tar.gz
 /App-perlbrew-0.39.tar.gz
 /App-perlbrew-0.41.tar.gz
+/App-perlbrew-0.42.tar.gz
diff --git a/perlbrew.spec b/perlbrew.spec
index 79176c9..2366d54 100644
--- a/perlbrew.spec
+++ b/perlbrew.spec
@@ -1,5 +1,5 @@
 Name:   perlbrew
-Version:0.41
+Version:0.42
 Release:1%{?dist}
 Summary:Manage perl installations in your $HOME
 License:MIT
@@ -80,6 +80,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Tue Mar 13 2012 Iain Arnell iarn...@gmail.com 0.42-1
+- update to latest upstream version
+
 * Tue Feb 07 2012 Iain Arnell iarn...@gmail.com 0.41-1
 - update to latest upstream version
 
diff --git a/sources b/sources
index 00026e0..3620e15 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-67ea22c077e28a7018b43fdc30865182  App-perlbrew-0.41.tar.gz
+185894e4539d83f685a3a40174ed4324  App-perlbrew-0.42.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

[perlbrew/f17] update to 0.42

2012-03-13 Thread Iain Arnell
Summary of changes:

  c0e1f00... update to 0.42 (*)

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

[Bug 803008] perlbrew-0.42 is available

2012-03-13 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=803008

--- Comment #1 from Fedora Update System upda...@fedoraproject.org 2012-03-13 
18:52:46 EDT ---
perlbrew-0.42-1.fc17 has been submitted as an update for Fedora 17.
https://admin.fedoraproject.org/updates/perlbrew-0.42-1.fc17

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