Re: [gentoo-dev] rfc: news item for png15

2011-10-15 Thread Samuli Suominen
On 10/14/2011 11:48 AM, Pacho Ramos wrote:
 El vie, 14-10-2011 a las 01:01 +0300, Samuli Suominen escribió:
 small news item for stable users. lets keep it simple...

 
 Is early rebuilding of gdk-pixbuf still needed now that fixed version
 will be stabilized before libpng15?

The blockers that will force gdk-pixbuf to rebuilt first will just
ensure there are no -lpng14 or -lpng15 entries in gdk-pixbuf-2.0.pc that
would break apps compile-time.

The rebuilding of gdk-pixbuf and cairo is still necessary early, because
apps using gdk-pixbuf to handle .png at buildtime AND runtime (mostly
gnome apps) will fail with message .png: File type is not supported
(Maybe not with this exact wording, but close to it.) that is an result
of condition where eg. cairo is built against png14 but gdk-pixbuf with
png15 or otherway around -- conflict




Re: [gentoo-dev] rfc: news item for png15

2011-10-15 Thread Pacho Ramos
El sáb, 15-10-2011 a las 19:35 +0300, Samuli Suominen escribió:
 On 10/14/2011 11:48 AM, Pacho Ramos wrote:
  El vie, 14-10-2011 a las 01:01 +0300, Samuli Suominen escribió:
  small news item for stable users. lets keep it simple...
 
  
  Is early rebuilding of gdk-pixbuf still needed now that fixed version
  will be stabilized before libpng15?
 
 The blockers that will force gdk-pixbuf to rebuilt first will just
 ensure there are no -lpng14 or -lpng15 entries in gdk-pixbuf-2.0.pc that
 would break apps compile-time.
 
 The rebuilding of gdk-pixbuf and cairo is still necessary early, because
 apps using gdk-pixbuf to handle .png at buildtime AND runtime (mostly
 gnome apps) will fail with message .png: File type is not supported
 (Maybe not with this exact wording, but close to it.) that is an result
 of condition where eg. cairo is built against png14 but gdk-pixbuf with
 png15 or otherway around -- conflict
 
 

OK, thanks a lot for the explanation :)


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-dev] rfc: news item for png15

2011-10-14 Thread Pacho Ramos
El vie, 14-10-2011 a las 01:01 +0300, Samuli Suominen escribió:
 small news item for stable users. lets keep it simple...
 

Is early rebuilding of gdk-pixbuf still needed now that fixed version
will be stabilized before libpng15?


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-dev] rfc: news item for png15

2011-10-14 Thread Markos Chandras
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

On 10/13/2011 11:01 PM, Samuli Suominen wrote:
 small news item for stable users. lets keep it simple... You can
 identify those files with following one-liner: ... # find /usr/
 -name '*.la' -exec grep png14 {} +
What happens once you identify the broken .la files? Should people
delete these .la files? Should they just rebuild the package? Should
they run lafilefixer? I think you need to add some bits here on how to
deal with the remaining .la files ;)

- -- 
Regards,
Markos Chandras / Gentoo Linux Developer / Key ID: B4AFF2C2
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.18 (GNU/Linux)

iQIcBAEBCgAGBQJOmMRpAAoJEPqDWhW0r/LCleIQAJkRkWEIMyQR1Zwlq+3Ykb81
T9a2MluJZ52G+wJfy7UoeSJ9rAU6W23EXabS6l/ENiIwFmiAg9V7LmFFslyWFLCE
noSjJxcoknDfWGWAhIiYBX7k2JBwwMZG/6NJpQLNs68L5MhJP/tgt6LNlvdfHs0P
Ats3DY4K+1NF098rtgpV9wE8wlcBuyABeZIbsY4jHGeIl4QalLOm0oqq4V+wVM4l
6QVTgRGYGz0mlWooHLmjBRqao2yAk0ZBFnHOEhClUfiz1tpPftZP7h91k8YLOkca
rpthTHzN1OxEQS5BGvUjq0IX54WPjnlOuKz6RSfm4QFFP5zn9mnovW5hcLu1f+68
fOvbNvzlJ6SHdr/iXuGT/U8DcUTqFWucoSJa0Yxi2qFfiLnvmkrPQKKdfhb2e9xx
l29OVGzN/BKs213XCrlVY40ghWucUd8jzr5WGE1heV7t3Nhx5YYcn0GRBmoyD7L6
Vk/Z6GhD5BE/rYVBUsQqOEq1JkYQ3qAWgW/0pOrHi8xwguGiENx8PnX816JrRS2J
DJDLxpoayU9Li9URZBmgBNCjtyVKoZWjwe9QZjQhVTTq+MXGfl3En727jiMqjKSq
kZa6rczspDebnTNCD6l48VcDbnqIAhbHUopm+ACStLVIVx0j++4vZiYIdY4nQFqb
yFy6/eNVw3JMdsHRb0D1
=v70x
-END PGP SIGNATURE-



Re: [gentoo-dev] rfc: news item for png15

2011-10-13 Thread Peter Volkov
В Птн, 14/10/2011 в 01:01 +0300, Samuli Suominen пишет:
 small news item for stable users. lets keep it simple...

I think it's better to put all knowledge from forum post inside:
1.  --keep-going option for revdep-rebuild.
2. better find:
find /usr -name *.la -o -name *.pc -o -name *-config -exec grep -H
png14 {} \;
or even better to provide one-liner for user's convenience.

--
Peter.




Re: [gentoo-dev] rfc: news item for png15

2011-10-13 Thread Michał Górny
On Fri, 14 Oct 2011 04:30:56 +0400
Peter Volkov p...@gentoo.org wrote:

 2. better find:
 find /usr -name *.la -o -name *.pc -o -name *-config -exec grep
 -H png14 {} \;

find /usr -name *.la -o -name *.pc -o -name *-config \
-exec grep -H png14 {} +

This is going to take less grep calls, and it is easier to type too.

-- 
Best regards,
Michał Górny


signature.asc
Description: PGP signature