Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-18 Thread Henrique de Moraes Holschuh
On Sun, 18 Jun 2006, Nelson A. de Oliveira wrote:
 What have changed:
 - foo;
 - bar;
 - bla;
 - the last change.
 
 It's just a personal taste.

It is also how lists should be handled in certain languages (like Brazilian
Portuguses) ;-)

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-18 Thread Nelson A. de Oliveira

Hi!

On 6/18/06, Henrique de Moraes Holschuh [EMAIL PROTECTED] wrote:

On Sun, 18 Jun 2006, Nelson A. de Oliveira wrote:
 What have changed:
 - foo;
 - bar;
 - bla;
 - the last change.

 It's just a personal taste.

It is also how lists should be handled in certain languages (like Brazilian
Portuguses) ;-)


Exactly! :-)

Cheers,
Nelson


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-17 Thread Nelson A. de Oliveira

Hi!

Could someone, please, verify and upload (if there are no problems) an
updated package of OptiPNG, please?

It's a new upstream version, fixing one bug and one typo.
Also, OptiPNG is already on Debian (kindly sponsored by Florian Ragwitz).

Files are all available here:
http://biolinux.df.ibilce.unesp.br/naoliv/optipng/

Thank you very much!

Best regards,
Nelson


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-17 Thread Florian Ragwitz
On Sat, Jun 17, 2006 at 05:57:11PM -0300, Nelson A. de Oliveira wrote:
 Could someone, please, verify and upload (if there are no problems) an
 updated package of OptiPNG, please?
 
 It's a new upstream version, fixing one bug and one typo.
 Also, OptiPNG is already on Debian (kindly sponsored by Florian Ragwitz).
 
 Files are all available here:
 http://biolinux.df.ibilce.unesp.br/naoliv/optipng/

Uploaded.


-Flo

-- 
BOFH excuse #84:
Someone is standing on the ethernet cable, causing a kink in the cable


signature.asc
Description: Digital signature


Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-17 Thread Nico Golde
Hi,
* Nelson A. de Oliveira [EMAIL PROTECTED] [2006-06-17 22:59]:
 Could someone, please, verify and upload (if there are no 
 problems) an
 updated package of OptiPNG, please?

I only did a quick check of your .diff.gz file. Looks ok. 
But is there a reason for using ';' instead of '.' in 
changelog lines?
Regards Nico
-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org
Forget about that mouse with 3/4/5 buttons -
gimme a keyboard with 103/104/105 keys!


pgp75XNVL5AX6.pgp
Description: PGP signature


Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-06-17 Thread Nelson A. de Oliveira

Hi

On 6/17/06, Nico Golde [EMAIL PROTECTED] wrote:

But is there a reason for using ';' instead of '.' in
changelog lines?


When I use ; I try to say that there are more itens after the current
one. A period means it's the end, there isn't anything more below
this line.

It's something like this:

What have changed:
- foo;
- bar;
- bla;
- the last change.

It's just a personal taste.

Best regards,
Nelson


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-02-05 Thread Nelson A. de Oliveira
Hi!

On 1/27/06, Bernhard R. Link [EMAIL PROTECTED] wrote:
 * Nelson A. de Oliveira [EMAIL PROTECTED] [060126 17:16]:
  I am searching for a sponsor for OptiPNG.
 
  Files can be obtained from:
  http://biolinux.df.ibilce.unesp.br/naoliv/optipng/ and it will close
  ITP #347993.

 I won't sponser it myself, as I do not understand cdbs, but some hints:

 It does not compile with -g and is linked with -s.

Right.
Corrected. Now it's compiled with -g and is not being stripped anymore
at compile time (passing -s with LDFLAGS).
Only dh_strip is removing debug symbols from the binary, as you said.

I have also changed description as Bruce Sass suggested.
And I am still searching for a sponsor! :-)

Thank you very much!

Nelson



Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-01-27 Thread Bernhard R. Link
* Nelson A. de Oliveira [EMAIL PROTECTED] [060126 17:16]:
 I am searching for a sponsor for OptiPNG.
 
 Files can be obtained from:
 http://biolinux.df.ibilce.unesp.br/naoliv/optipng/ and it will close
 ITP #347993.

I won't sponser it myself, as I do not understand cdbs, but some hints:

It does not compile with -g and is linked with -s.
The later because you miss to give it proper LDFLAGS (i.e. without -s)
the first because the Makefile is called with those in the environment
CFLAGS=-g -Wall -O2 CXXFLAGS=-g -Wall -O2 make  -f scripts/gcc-syslib.mak
but it overwrites them with
CFLAGS  = -O2 -Wall
LDFLAGS = -s

The easiest way is to simply put them after the call to make. (and place
a LDFLAGS= there fixed the other problem, too).
that is instead of CFLAGS=bla make do a make CFLAGS=bla LDFLAGS=

Things like lintian or linda cannot catch this, as the binaries are
stripped by dh_strip so the resulting binaries do not differ, but if
anyone has a problem with your program and wants to build and debug it,
he first has to patch the Makefile to get the correct flags.
For further reference see section 10.1 of the policy.

Hochachtungsvoll,
  Bernhard R. Link


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-01-26 Thread Nelson A. de Oliveira
Hi!

I am searching for a sponsor for OptiPNG.

  OptiPNG is a PNG optimizer that recompresses the image files to a smaller
  size, without losing any information. It losslessly reduces the bit depth,
  the color type and the color palette of the image, runs a suite of
  compression methods and strategies, and selects the compression parameters
  that yield the smallest output file.
  It also recognizes several external file formats like BMP, GIF and PNM
  (PBM, PGM, PPM).

Homepage is: http://www.cs.toronto.edu/~cosmin/pngtech/optipng/

It's released under the zlib/libpng license, is lintian and linda
clean and builds OK on pbuilder.

Someone may ask Why another PNG optimizer if we already have pngcrush?
pngcrush, at least as I know was last released on 2002 and has some
FTBS (and other) bugs on Debian. OptiPNG is active.
OptiPNG was inspired on pngcrush, so basically, it does the same
thing. However, OptiPNG offers a faster execution per trial and a
wider search space, resulting in better results than pngcrush.

Files can be obtained from:
http://biolinux.df.ibilce.unesp.br/naoliv/optipng/ and it will close
ITP #347993.

sponsors.debian.net -- http://sponsors.debian.net/viewpkg.php?id=199

(I have sent this message before to the list, but since I was not
suscribed, it didn't arrived. So sorry if the message appears again on
some day).

Thank you very much!

Nelson



Re: [RFS] OptiPNG - advanced PNG (Portable Network Graphics) optimizer

2006-01-26 Thread Thomas Viehmann
Hi Nelson,

Nelson A. de Oliveira wrote:
 (I have sent this message before to the list, but since I was not
 suscribed, it didn't arrived. So sorry if the message appears again on
 some day).
IIRC subscribers mails go through more easily. You can also get the
subscriber's by joining the whitelist[1].

Kind regards

T.

1. http://lists.debian.org/whitelist/
-- 
Thomas Viehmann, http://thomas.viehmann.net/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]