Re: [VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Henri Yandell
Random guess - the PrintWriter API is putting platform specific stuff in for \n, so the StringWriter is not the same while on Windows. On Fri, Feb 27, 2009 at 12:10 PM, Oliver Heger wrote: > I tried to build from the sources on Windows Vista with JDK 1.6 and got the > following test errors: > > F

Re: [VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Henri Yandell
Are these new errors Jörg, or do they happen with 1.1? On Fri, Feb 27, 2009 at 6:17 PM, Jörg Schaible wrote: > Hi Henri, > > with RC3 I have the same test failures as with RC2: > http://markmail.org/message/e6awtbsw4ypur2ru > > - Jörg > > > Henri Yandell wrote: > >> Gary's regression bug is fixed

Re: [VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Jörg Schaible
Hi Henri, with RC3 I have the same test failures as with RC2: http://markmail.org/message/e6awtbsw4ypur2ru - Jörg Henri Yandell wrote: > Gary's regression bug is fixed. So voting again. > > > Tag: > > https://svn.apache.org/repos/asf/commons/proper/cli/tags/cli-1.2-RC3 > > Site remains unc

Re: [VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Oliver Heger
I tried to build from the sources on Windows Vista with JDK 1.6 and got the following test errors: Failed tests: testLongLineChunking(org.apache.commons.cli.bug.BugCLI162Test) testLongLineChunkingIndentIgnored(org.apache.commons.cli.bug.BugCLI162Test) Tests run: 186, Failures: 2, Errors: 0, Ski

Re: [compress] Schedule for a release?

2009-02-27 Thread sebb
On 27/02/2009, Stefan Bodewig wrote: > On 2009-02-27, Christian Grobmeier wrote: > > >>> My status: I started with implementing on that this morning and > >>> figured out that its not a very easy task. Even when I have it > >>> finished in a good time, there should be a good amount of testing

Re: svn commit: r748288 - /commons/sandbox/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.java

2009-02-27 Thread sebb
On 27/02/2009, Stefan Bodewig wrote: > On 2009-02-26, wrote: > > > Fix set() methods that do not actually work. > > Ouch. Thanks! Thank Eclipse (and/or Findbugs, don't remember which) ... > Stefan > > - > To unsubscribe,

Re: [compress] State of encoding support in ZIP package

2009-02-27 Thread Stefan Bodewig
On 2009-02-27, Wolfgang Glas wrote: > Additionally, my experience with WinZip shows, that WinZip writes weird > filenames to the single-byte version of the filename when a unicode field is > present. Hmm, native encoding I'd guess. Wolfgang, could you do me a favor and please review what I've w

Re: [compress] State of encoding support in ZIP package

2009-02-27 Thread Wolfgang Glas
Stefan Bodewig schrieb: > On 2009-02-26, Wolfgang Glas wrote: > >> Stefan Bodewig schrieb: > >>> The question on defaults: should ZipFile look for UnicodeExtraFields >>> by default or ignore them (as it does right now)? > >> I'd do this by default, because IMHO we should have a 'smart' unzipper

Re: [MATH] Suggesting new package commons-math.simulation

2009-02-27 Thread Siegfried Goeschl
Hi Hicham, I'm not involved in commons-math but a few general tips ... some obvious and some not so obvious 1) is the code ASF licence compatible, e.g. not having GPL snippets or other license issues 2) each files must contain an Apache License Header 3) you have to follow the coding and naming c

Re: [compress] State of encoding support in ZIP package

2009-02-27 Thread Stefan Bodewig
On 2009-02-26, Wolfgang Glas wrote: > Stefan Bodewig schrieb: >> The question on defaults: should ZipFile look for UnicodeExtraFields >> by default or ignore them (as it does right now)? > I'd do this by default, because IMHO we should have a 'smart' unzipper in > commons-compress ;-) Convince

Re: [compress] Schedule for a release?

2009-02-27 Thread Stefan Bodewig
On 2009-02-27, Christian Grobmeier wrote: >>> My status: I started with implementing on that this morning and >>> figured out that its not a very easy task. Even when I have it >>> finished in a good time, there should be a good amount of testing >>> imho. >> we could label that part of the API

[MATH] Suggesting new package commons-math.simulation

2009-02-27 Thread Hicham Wahbi
Hello, I am interested in contributing to a "commons-math. Simulation" package since the Monte-Carlo estimation method is listed as an item in the wish list. This is the first time I try to contribute to an open source project. I actually have already written the code and just need to submit it f

Re: [VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Russel Winder
Henri As previously, I built a commons-cli-1.2.jar from the branch rather than the tag, so I am not really testing the RC-3 per se -- but they should be identical :-) Groovy and Gant both pass all their tests fine as far as I can see. If I get a vote, I vote for release. On Fri, 2009-02-27 at 0

[g...@vmgump]: Project commons-betwixt (in module apache-commons) failed

2009-02-27 Thread Gump
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at gene...@gump.apache.org. Project commons-betwixt has an issue affecting its community integration. This iss

[VOTE] Release of CLI 1.2 RC3

2009-02-27 Thread Henri Yandell
Gary's regression bug is fixed. So voting again. Tag: https://svn.apache.org/repos/asf/commons/proper/cli/tags/cli-1.2-RC3 Site remains unchanged: http://people.apache.org/~bayard/cli-1.2-rc1 Binaries: http://people.apache.org/builds/commons/cli/1.2/RC3/staged/commons-cli/commons-cli/1.2/ [

Re: [VOTE] CLI 1.2 release (RC2)

2009-02-27 Thread Henri Yandell
I went ahead and did this. No exceptions - just doing the best it can. I'll go ahead and kick off a new vote. On Sat, Feb 21, 2009 at 8:49 PM, Henri Yandell wrote: > Best way might be to discard the concept that the indent under the > parameter occurs. Maybe just do 1 or 2 characters. Choosing 2

[CLI] matching option and options value with a java enum

2009-02-27 Thread jerome . dupont
Hello, I'm currently using commons-cli 1, and I want to store arguments in enum form. I have 2 use case For the first one, I have a set of args for an option. -extract argValue1 -extract argValue2 becomes MyExtractEnum.argValue1 MyExtractEnum.argValue2 Sometime I also want to match a set of opt