Re: [ALL] Get things moving with "random utilities" (Was: [lang] Shuffling arrays (was: [RNG] Scope of "Commons RNG"))

2016-10-15 Thread Bruno P. Kinoshita
Hi Gilles, Definitely interested in helping and learning more about random (number|string|object|etc) generators. Are there any specific tasks that others can jump in and help with? Once the new component has been set up, I'd be happy in trying to work on code related to LANG-1196 and

Re: [TEXT] TEXT-10 A more complex Levenshtein distance

2016-10-16 Thread Bruno P. Kinoshita
Hi Don Jeba, I will have a look at your implementation to compare with a recent improvement in [lang] https://github.com/apache/commons-lang/blob/78134f6b3f1facd019e604d2cd000c4ce7cf9a0a/src/main/java/org/apache/commons/lang3/StringUtils.java#L7710 Instead of keeping a matrix (or even only two

Re: [VOTE] Promote TEXT to Proper

2017-01-03 Thread Bruno P. Kinoshita
+1 > > From: Rob Tompkins >To: Commons Developers List >Sent: Wednesday, 4 January 2017 8:39 AM >Subject: [VOTE] Promote TEXT to Proper > > >Hello all, > >I propose that we move [text] to Commons Proper. >

Re: [TEXT] Support for generating random strings?

2016-12-18 Thread Bruno P. Kinoshita
+1 go for it Duncan. Happy to help testing/reviewing/commenting if necessary. Cheers Bruno > > From: Duncan Jones >To: Commons Developers List >Sent: Monday, 19 December 2016 2:13 AM >Subject: [TEXT] Support for

Re: [TEXT] Remove Commons Lang Dependency?

2016-12-18 Thread Bruno P. Kinoshita
Hi Pascal, I suspect we may need a few other methods in the future, but for now I agree we are not using much of [lang] in [text]. If you would like to release 1.0 without the [lang] dependency, and then we review it later whether we include it or not, I'd be fine with that. Though I'd be happy

Re: [text][TEXT-32] Regarding more edit distances.

2016-12-18 Thread Bruno P. Kinoshita
Hi Rob, LCS can still be useful for bioinformatics/genetics. So I'd say that's worth including. In Java, if I ever needed it, I would probably look for it at Biojava (which I just did and couldn't easily find it there). As for the other string distances, I always look at this GitHub project:

Re: [VOTE] Release Apache Commons CLI 1.4 based on RC1

2017-03-09 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Builds fine on Apache Maven 3.3.9 Maven home: /usr/share/maven Java version: 1.8.0_121, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_NZ, platform encoding: UTF-8 OS name: "linux", version: "4.4.0-64-generic", arch:

Re: [text] (TEXT-70) Build failure with java 9-ea+159

2017-03-03 Thread Bruno P. Kinoshita
Also don't this is a blocker. Sent from Yahoo Mail on Android On Sat, Mar 4, 2017 at 15:01, Rob Tompkins wrote: Hello all, I don’t think that the following issue (guessing it’s something with the maven-site-plugin) when running “mvn clean site” with java 9-ea+159

[lang][crypto] LANG-1145 evaluate JVM architecture

2017-03-07 Thread Bruno P. Kinoshita
Hi all, We have a pull request [1][2] for adding code that detects the JVM architecture. The user has a valid use case for his code, and we have similar code in Apache Spark [3] and Apache Commons Crypto [4]. As this is going into [lang], another Commons component, I thought maybe there could

Re: [text] Please add your release data for 'commons'

2017-03-11 Thread Bruno P. Kinoshita
Added 1.0, release date to 11/Mar/2017, since that's the current day in your time and also UTC (it's the 12th for me) TEXT-1.0: 2017-03-11 Cheers and kudos for the release! Bruno - Original Message - From: Rob Tompkins To: Commons Developers List

Re: [VOTE] Release Commons Text 1.0 based on RC1

2017-03-10 Thread Bruno P. Kinoshita
tom...@apache.org> To: dev@commons.apache.org Sent: Saturday, 11 March 2017 2:12 PM Subject: Re: [VOTE] Release Commons Text 1.0 based on RC1 The vote can pass with the following (in order of appearance): Bruno P. Kinoshita: +1 Oliver Heger: +1 Jörg Schaible: +1. Personally, I’m in the +/-

Re: [ANNOUNCE] Apache Commons Text 1.0 released!

2017-03-13 Thread Bruno P. Kinoshita
Indeed! Impressive work. Thanks a lot Rob! Time to have fun using some edit distances now :-) From: Benedikt Ritter To: Commons Developers List Sent: Tuesday, 14 March 2017 7:55 AM Subject: Re: [ANNOUNCE] Apache

Re: [VOTE] Release Commons Text 1.0 based on RC1

2017-03-07 Thread Bruno P. Kinoshita
[ X ] +1 Release it. Builds OK on Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java version: 1.8.0_121, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding: UTF-8 OS

Re: [VOTE] Release JEXL 3.1 based on RC1

2017-04-07 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Build passed in Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java version: 1.8.0_121, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding:

[beanutils] Merge pull request sent via GitHub, but src in SVN

2017-04-06 Thread Bruno P. Kinoshita
Hi, We have a pending pull request for [beanutils] https://github.com/apache/commons-beanutils/pull/3 As the component is still using Subversion, I am not able to use my normal workflow to merge the pull request (i.e. clone the ASF upstream, checkout GitHub remote branch, merge, push). What

Re: [beanutils] Merge pull request sent via GitHub, but src in SVN

2017-04-06 Thread Bruno P. Kinoshita
and hopefully the pull request will be marked as merged too. Cheers Bruno From: Gary Gregory <garydgreg...@gmail.com> To: Commons Developers List <dev@commons.apache.org> Cc: Bruno P. Kinoshita <brunodepau...@yahoo.com.br> Sent: Friday,

Re: [Math] MATH-1408 (exceptions for control flow)

2017-04-07 Thread Bruno P. Kinoshita
TL;DR we are working to replace ClassCastException (CCE) by either an instanceof check, or a different approach. Right now, adding generics to Frequency would fix it, and (I think) be a better design for the class In Eclipse, I looked for the occurrences of CCE in [math], and the first place I

Re: REMINDER: [VOTE] Release Apache Commons JCS 2.2 based on RC1

2017-08-15 Thread Bruno P. Kinoshita
Had a bit of time while waiting for a training to begin here. So quickly executed tests (mvn clean test install -e -X) with Oracle 7/8, and IBM 7. All tests passing in IBM JDK7 and Oracle JDK7. One test failed for Oracle JDK8. I'm running these in a Ubuntu LTS, running as 6GB mem 4CPU elastic

Re: REMINDER: [VOTE] Release Apache Commons JCS 2.2 based on RC1

2017-08-15 Thread Bruno P. Kinoshita
Forgot to mention that checked out the project with `svn co https://svn.apache.org/repos/asf/commons/proper/jcs/tags/commons-jcs-2.2` Bruno On Tuesday, 15 August 2017, 6:02:32 PM NZST, Bruno P. Kinoshita <brunodepau...@yahoo.com.br> wrote: Had a bit of time while waiting for a tr

Re: [daemon] @author tags

2017-07-07 Thread Bruno P. Kinoshita
No objections, +1, and thanks for taking care of that :) Bruno On Saturday, 8 July 2017, 2:43:24 PM NZST, Gary Gregory wrote: Hi All, I would like to remove @author tags from [daemon] per our guidelines. Any objections? Gary

Re: [Graph] the future of commons-graph and modularization

2017-07-07 Thread Bruno P. Kinoshita
Hi Oliver, >I know, I am very late to rejoin the party. :) Happy to see some activity on [graph] again. I used the snapshot in a project once, but after that only had to use libraries in Python and PHP, so never had time or the need to use the project again. >May I ask whether there is still

Re: [Math] Change on branch "master": Commons Math MasterBranch - Build # 55 - Failure

2017-05-10 Thread Bruno P. Kinoshita
Build passing for me in local workstation. Need to push one more change for PMD, so will see if next build passes. Wonder if just a glitch in one of Jenkins' slaves. Caused by: java.lang.InterruptedException at java.lang.Object.wait(Native Method) at

Re: [Math] JIRA issues with proposed fixes

2017-05-09 Thread Bruno P. Kinoshita
Hi, >>> There are some issues reported that come with a proposed fix.>> If you >>> think that the change is adequate, do not hesitate to >> apply it. E.g.: >> https://issues.apache.org/jira/browse/MATH-1381 Done, pull request submitted [1] and merged. >> Some may be fixed already. If you can

Re: [VOTE] Release Apache Commons Lang 3.6 based on RC3

2017-06-08 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Build passing for Oracle JDK 7, Oracle JDK 8, and IBM JDK 8. Thanks a lot for preparing the release, Bruno From: Benedikt Ritter To: Commons Developers List Sent: Thursday, 8 June

Re: Commons sub project for parallel method execution

2017-06-12 Thread Bruno P. Kinoshita
Interesting idea. And great discussion. Can't really say I'd have a use case for that right now, so abstaining from the discussion around the implementation. I believe if we decide to explore this idea in Commons, we will probably move it to sandbox? Even if we do not move that to Commons or to

[text] Re: CharSequence vs. String (was Re: [GitHub] commons-text pull request #46: TEXT-85:Added CaseUtils class with camel case...)

2017-06-21 Thread Bruno P. Kinoshita
>If a method doesn't intrinsically require a String, then I prefer CharSequence. It's probable that sooner or later something is going to demand a String, but that's not a good reason to be "that guy" :-) I lean towards using CharSequence when that makes sense too (i.e. suggesting we are working

Re: TEXT-77 | String palindrome API

2017-06-21 Thread Bruno P. Kinoshita
Palindromes (and other algorithms like De Bruijn graphs, lcs) are normally taught in most introductory bioinformatics courses. Not sure how much palindromes are used though. I know use cases for De Bruijn and lcs. Maybe taking a look at BioJava could help -

Re: [VOTE] Release Commons Fileupload 1.3.3 based on RC5

2017-06-07 Thread Bruno P. Kinoshita
uno From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> To: Commons Developers List <dev@commons.apache.org> Sent: Wednesday, 7 June 2017 7:19 PM Subject: Re: [VOTE] Release Commons Fileupload 1.3.3 based on RC5 [ X ] +1 Release it. All tests pass, arti

Re: [VOTE] Release Commons Fileupload 1.3.3 based on RC5

2017-06-07 Thread Bruno P. Kinoshita
[ X ] +1 Release it. All tests pass, artifacts generated successfully, and site correctly generated too with `mvn clean test install -e -X` on the following environments. Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java

Re: [jelly] Support for multiple build tools

2017-06-13 Thread Bruno P. Kinoshita
+1 From: Benedikt Ritter To: Commons Developers List Sent: Wednesday, 14 June 2017 8:04 AM Subject: Re: [jelly] Support for multiple build tools +1, drop that stuff! Oliver Heger

Re: [ANNOUNCE] Apache Commons FileUpload 1.3.3 released.

2017-06-15 Thread Bruno P. Kinoshita
A trivial issue, but I found that going to the Xref report link it works fine [1]. However, if you go to the Checkstyle report [2], and then click on any of the links to line numbers (e.g. [3]) you get a 404. Had a quick look if there was some configuration in the maven plug-in that could help

Re: [VOTE] Release Apache Commons Lang 3.6 based on RC4

2017-06-10 Thread Bruno P. Kinoshita
Build passing with Oracle JDK 8 and IBM JDK 8. Successfully generated site, reports look OK. [X] +1 Release these artifacts Cheers Bruno From: Benedikt Ritter To: Commons Developers List Sent: Friday, 9 June 2017

Re: [VOTE] Release Commons Fileupload 1.3.3 based on RC6

2017-06-10 Thread Bruno P. Kinoshita
[x] +1 Release it. Build passing for IBM JDK 8 and Oracle JDK 8. Site generated successfully, reports look good too. Cheers Bruno From: Rob Tompkins To: Commons Developers List Sent: Saturday, 10 June 2017 1:58

Re: [ANNOUNCE] Apache Commons FileUpload 1.3.3 released.

2017-06-15 Thread Bruno P. Kinoshita
Thanks Rob! Bruno From: Rob Tompkins <chtom...@gmail.com> To: Commons Developers List <dev@commons.apache.org>; Bruno P. Kinoshita <brunodepau...@yahoo.com.br> Sent: Thursday, 15 June 2017 11:39 PM Subject: Re: [ANNOUNCE] Apache Common

Re: [CLI] Changing the code style

2017-06-16 Thread Bruno P. Kinoshita
No objection from me. +1 and thanks for taking care of it :) Cheers Bruno From: Benedikt Ritter To: Commons Developers List Sent: Friday, 16 June 2017 8:50 PM Subject: [CLI] Changing the code style Hi, CLI unlike

Re: [FUNCTOR] Why do we have an API module?

2017-06-16 Thread Bruno P. Kinoshita
No objection here too. I've been gathering some links about other libraries and extensions to Java 8, to have a look at functor in the future and see if it would be interesting to have something there, unless it made more sense to put it on lang. The reason for the API module, if memory

[fileupload] Remove @version tags from javadocs

2017-06-10 Thread Bruno P. Kinoshita
Hi all, Looking at https://git.apache.org/, looks like commons-fileupload has been migrated to Git. Any objection to removing the @version tags from the code now? I believe these were used to show the last SVN commit, if my memory serves me well, and are not supported in Git. So should be OK

Re: [Math] JIRA issues with proposed fixes

2017-05-03 Thread Bruno P. Kinoshita
MATH-1401 is not fixed yet. Fixing it doesn't seem so hard, the problem is the required domain knowledge in stats - which I don't have :-) I'm gathering links to study over the next days, so I've assigned that ticket to me. Hopefully by the weekend I will understand Clopper-Pearson intervals,

Re: [LANG] Fix date related test failures on IBM JDKs (Was: Re: [CANCEL][VOTE] Release Apache Commons Lang 3.6 based on RC2)

2017-06-06 Thread Bruno P. Kinoshita
P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> To: Commons Developers List <dev@commons.apache.org> Sent: Tuesday, 6 June 2017 10:13 PM Subject: Re: [LANG] Fix date related test failures on IBM JDKs (Was: Re: [CANCEL][VOTE] Release Apache Commons Lang 3.6 based on RC2) I am

Re: [LANG] Fix date related test failures on IBM JDKs (Was: Re: [CANCEL][VOTE] Release Apache Commons Lang 3.6 based on RC2)

2017-06-06 Thread Bruno P. Kinoshita
I am downloading the latest IBM JDK in order to test other components too, and might have some spare time this week to fix it, as I'm switching jobs next week. But  happy if anyone beats me to it and finds the bug first :) CheersBruno From: Benedikt Ritter To:

Re: [all] Should our gitignore files contain only build-related entries?

2017-06-06 Thread Bruno P. Kinoshita
t fixes and >>> improvements , people tend to fork>work>PR>delete repo on local pc. >>> Instructions should be in UsingGIT and CONTRIBUTING.md but not sure people >>> will follow everything. Ignores already  present in .gitignore of each >>> project makes everything pa

Re: [collections] Uniform null-safe methods in CollectionUtils

2017-06-06 Thread Bruno P. Kinoshita
rit...@apache.org> To: Commons Developers List <dev@commons.apache.org>; Bruno P. Kinoshita <brunodepau...@yahoo.com.br> Sent: Monday, 5 June 2017 10:44 PM Subject: Re: [collections] Uniform null-safe methods in CollectionUtils Hello Bruno, > Am 27.05.2017 um 15:40 schri

Re: [COLLECTIONS] Time for 4.2

2017-09-20 Thread Bruno P. Kinoshita
There is another thread about failing tests on Windows that would need attention before the release. I am still debugging it, but am off to Australia in a few days, and back only in 3 weeks, so not sure if will be able to explain why it's happening. CheersBruno  From: Benedikt Ritter

Re: Commons Parent

2017-09-13 Thread Bruno P. Kinoshita
Sounds like a good plan to me. +1 Bruno From: Gary Gregory To: Commons Developers List Sent: Thursday, 14 September 2017 9:06 AM Subject: Commons Parent Hi All, It looks like a bunch of Maven plugins are being released around Java

Re: [VOTE] Release Apache Commons BCEL 6.1 based on RC1

2017-09-14 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Building from the SVN tag (mvn clean site) passing on JVM 8 Apache Maven 3.3.9 Maven home: /usr/share/maven Java version: 1.8.0_131, vendor: Oracle Corporation Java home: /opt/jdk1.8.0_131/jre Default locale: en_NZ, platform encoding: UTF-8 OS name: "linux",

Re: [VOTE] Release Compress 1.15 based on RC1

2017-10-14 Thread Bruno P. Kinoshita
Hi, I may be doing something wrong, but the site generation with `mvn clean site` appears to be failing on $ git log -n 1 commit 01b06d5ef5c5ac3bd651bedcfec7433231cea371 Author: Stefan Bodewig Date: Sat Oct 14 15:17:09 2017 +0200 prepare RC1 of Commons Compress 1.15

Re: [LANG] Add module-info.java?

2017-10-14 Thread Bruno P. Kinoshita
Can't cast an opinion on that as I haven't read much about modules yet. But a major version was mentioned in other comments. I remember an issue in lang [1] for Java 9 modules around circuit breakers and the java.desktop (or something named like that) module. I have prepared a WIP alternative

Re: [VOTE] Release Apache Commons IO 2.6 based on RC2

2017-10-14 Thread Bruno P. Kinoshita
Hi, [ X ] +1 Release these artifacts Building from tag $ git log -n 1 commit a219081780bb1714876ef3e1109283b96f3b007b Author: Benedikt Ritter Date: Sat Sep 30 16:33:46 2017 +0200 Update version numbers for Commons IO release 2.6 With Apache Maven 3.3.9

Re: commons-collections git commit: MapUtilsTest: fix order of expected and actual parameter in assertions (closes #32)

2017-10-15 Thread Bruno P. Kinoshita
Normally I'm against adding dependencies that are not normally used with other libraries. In most projects I use/contribute to, AssertJ is not used. Said that, I learned to appreciate AssertJ after I wrote some code that handled several map objects. Writing tests to assert things about keys &

Re: [VOTE] Release Compress 1.15 based on RC1

2017-10-14 Thread Bruno P. Kinoshita
RM compress, and for helping me with the building instructions :) Cheers Bruno From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br> To: Commons Developers List <dev@commons.apache.org> Sent: Sunday, 15 October 2017 5:34 PM Subject: Re: [VOTE] Release Compress 1.15 based o

Re: commons-collections git commit: MapUtilsTest: fix order of expected and actual parameter in assertions (closes #32)

2017-10-15 Thread Bruno P. Kinoshita
commit: MapUtilsTest: fix order of expected and actual parameter in assertions (closes #32) Yes AssertJ works fine with JUnit 5. The JUnit team uses AssertJ assertions (in combination with JUnit 5) for the unit test of JUnit 5. Am 15.10.2017 um 10:39 schrieb Bruno P. Kinoshita: > Normally I'm again

Re: [VOTE] Release Compress 1.15 based on RC1

2017-10-14 Thread Bruno P. Kinoshita
;dev@commons.apache.org> Sent: Sunday, 15 October 2017 5:10 PM Subject: Re: [VOTE] Release Compress 1.15 based on RC1 On 2017-10-15, Bruno P. Kinoshita wrote: > I may be doing something wrong, but the site generation with `mvn > clean site` appears to be failing [snip] >

Re: [LANG] Introduce JUnit 5

2017-10-15 Thread Bruno P. Kinoshita
+1 Bruno From: Benedikt Ritter To: Commons Developers List Sent: Sunday, 15 October 2017 10:48 PM Subject: [LANG] Introduce JUnit 5 Hi, I’d like to update Commons Lang to use JUnit 5. Existing tests will still run on the JUnit 5

Re: [text] always use static imports for assertion methods

2017-10-16 Thread Bruno P. Kinoshita
>When you see "assertEquals", you cannot assume that it was>imported from the >(Junit) "Assert" class. >In CM for example, another "assertEquals" is defined in an >internal "TestUtils" class. But the internal class could be named Assert. In that case you still wouldn't know if it was imported

Re: [COLLECTIONS] Test failures on Windows

2017-10-14 Thread Bruno P. Kinoshita
.0> > MapUtilsTest.testgetFloatValue:974 expected:<20.0> but was:<2.0> > > These are new tests added in https://github.com/apache/comm > ons-collections/pull/29 > > Looks like these tests fail when run on a locale that does not use the > point character a

Re: [COLLECTIONS] Test failures on Windows

2017-10-11 Thread Bruno P. Kinoshita
of doing it. CheersBruno From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> To: Commons Developers List <dev@commons.apache.org> Sent: Wednesday, 11 October 2017 12:43 PM Subject: Re: [COLLECTIONS] Test failures on Windows Still investigating. Trying to isolate

Re: Release Commons Jelly 1.0.1 Based on RC2

2017-08-29 Thread Bruno P. Kinoshita
Hi Rob, Thanks for RM'ing Commons Jelly 1.0.1. Here's my initial tests results: Downloaded JDK from Oracle archives, version 5.0u22. Then downloaded Apache Ant following what was in the Dockerfile.     curl http://archive.apache.org/dist/ant/binaries/apache-ant-1.6.0-bin.tar.gz -o

Re: [text] Invalid unicode sequences on .substring of RandomStringGenerator

2017-09-11 Thread Bruno P. Kinoshita
Hi Amey, You created a byte array from the original string (which may contain surrogate chars). But then you created a copy string with `final String copy = new String(bytes, charset);`. There will be encoding to UTF-8, which may fail to encode some values, leading to the error you reported I

Re: [VFS] toward releasing 2.2

2017-09-06 Thread Bruno P. Kinoshita
Going to Australia in a couple of weeks, so if I volunteered now I could be unable to proceed with the release if the first RC failed. Should no one volunteers, and if you haven't already cut the release, I'd be glad to try releasing a SVN + multi-module project in mid-October, and at the

Re: [VFS] Logging levels

2017-09-06 Thread Bruno P. Kinoshita
I'm OK with this change. If it's something important, we can remove and just include a note in the release notes saying it is now logged under a different level. Cheers Bruno From: Gary Gregory To: Commons Developers List

Re: [collections] unit test failures

2017-09-12 Thread Bruno P. Kinoshita
ff8f5e7444045639af65f6095c62210b5713f426; 2017-04-03T13:39:06-06:00) Maven home: C:\Java\apache-maven-3.5.0\bin\.. Java version: 9, vendor: Oracle Corporation Java home: C:\Program Files\Java\jdk-9 Default locale: en_US, platform encoding: Cp1252 OS name: "windows 10", version: "10.0&quo

Re: [collections] unit test failures

2017-09-12 Thread Bruno P. Kinoshita
I built it last night with JVM 7 and the tests were passing (mvn  clean site, but confirmed surefire reports were OK). Submitted a PR that updates common-parent to version 42 that should fix site generation on JVM 8. Could you share your `mvn -v` please? CheersBruno On Wed, 13 Sep 2017 at

Re: [COLLECTIONS] Test failures on Windows

2017-09-25 Thread Bruno P. Kinoshita
I have the environment prepared to debug it but didn't have time for it before going overseas. If anyone has a Win + jvm8 environment, clone the repo and run the HashSetValuedHashMapTest. The failures happen in the inherited tests, from the Abstract... test class. My idea was to copy one of

Re: [IO] Releasing 2.6

2017-09-26 Thread Bruno P. Kinoshita
I wonder if we have some windows jenkins slaves. It would be nice to identify these regressions earlier. Bruno Sent from Yahoo Mail on Android On Wed, 27 Sep 2017 at 8:16, Gary Gregory wrote: This test fails on Windows: org.apache.commons.io.FileUtilsTestCase

Re: Moving component to dormant - Make JIRA read-only?

2017-09-24 Thread Bruno P. Kinoshita
I think dormant  means no activity, but anyone could try to restart work on the component (tho I could be wrong). So maybe we should do it when moving to the attic instead? Bruno Sent from Yahoo Mail on Android On Sun, 24 Sep 2017 at 21:42, Pascal Schumacher

Re: [COLLECTIONS] Test failures on Windows

2017-09-27 Thread Bruno P. Kinoshita
Forgot to mention something important. When I was debugging the hash tests, they would pretty much always pass. But if I ran the tests normally in maven or eclipse they would always fail. Debugging adds a small overhead I think, that could be slowing down some part of the code with a concurrency

Re: [VOTE] Release Apache Commons IO 2.6 based on RC1

2017-10-01 Thread Bruno P. Kinoshita
Build passing OK with Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00)Maven home: /opt/mavenJava version: 1.8.0_144, vendor: Oracle CorporationJava home: /usr/lib/jvm/java-8-oracle/jreDefault locale: en_US, platform encoding: UTF-8OS name: "linux",

Re: Support Percent-Encoding (described in RFC3986 and RFC7578)

2017-10-01 Thread Bruno P. Kinoshita
Hi Giannis, Had a quick look at the ticket, but with limited Internet I can't really thoroughly read and comment about it. Sometimes it may be easier to review a proposal for a new feature like yours if there is some code somewhere. So if creating the pull request wouldn't take too long, it

Re: [SECURITY] CVE-2017-12621 Apache Commons Jelly connects to URL with custom doctype definitions.

2017-09-27 Thread Bruno P. Kinoshita
+1 Amazing work Rob! Kudos! Bruno Sent from Yahoo Mail on Android On Thu, 28 Sep 2017 at 0:29, Benedikt Ritter wrote: I would like to give kudos to Rob for handling this issue. The kind of dedication you put into fixing this issue and releasing a component that has

[VOTE] Release Apache Commons CSV 1.5 based on RC1

2017-08-27 Thread Bruno P. Kinoshita
Hello all, This is a [VOTE] for releasing Apache Commons CSV 1.5 (from RC1). Tag name:   csv-1.5-RC1 (signature can be checked from git using 'git tag -v') Tag URL:    https://git-wip-us.apache.org/repos/asf?p=commons-csv.git;a=commit;h=f76a1357057cd3caaf9b0904d9cc57ce384658a3 Commit ID the tag

[ANNOUNCE] Apache Commons CSV 1.5 has been released

2017-09-03 Thread Bruno P. Kinoshita
at: http://www.apache.org/dist/commons/csv/RELEASE-NOTES.txt For complete information on Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Commons CSV website: http://commons.apache.org/proper/commons-csv/ Best regards, Bruno P

Re: Re: [VOTE] Release Apache Commons CSV 1.5 based on RC1

2017-09-02 Thread Bruno P. Kinoshita
t; > Thank you all! > > Gary > > On Tue, Aug 29, 2017 at 10:09 PM, Bruno P. Kinoshita < > brunodepau...@yahoo.com.br.invalid> wrote: > >> Hi Oliver, >> >> Thank you for taking your time to review this RC! >> >> Interesting, never paid much

Re: Re: [VOTE] Release Commons Jelly 1.0.1 based on RC3.

2017-09-02 Thread Bruno P. Kinoshita
I believe trunk & tag are different as the release process is normally done in a branch (see branches/1.X, I think that one was used). I believe it is normal they may have a few different files related to build/site/release. After the release the main branch (i.e. trunk/master/etc) gets

Re: Re: Re: [VOTE] Release Apache Commons CSV 1.5 based on RC1

2017-09-02 Thread Bruno P. Kinoshita
AM NZST, Bruno P. Kinoshita <brunodepau...@yahoo.com.br> wrote: Thanks for testing the RC Rob. >- Why do we have ignored tests? Not sure if it apply to all ignored tests, but some seem to be tests for issues in the code that need fixing. e.g. CSV-107 and CSV-135, in CSVP

[RESULT] Release Apache Commons CSV 1.5 based on RC1

2017-09-02 Thread Bruno P. Kinoshita
2017, 11:11:23 AM NZST, Gary Gregory <garydgreg...@gmail.com> wrote: Time to get a result on this VOTE thread? Gary On Sat, Sep 2, 2017 at 2:27 PM, Bruno P. Kinoshita < brunodepau...@yahoo.com.br.invalid> wrote: > Oh, regarding the dist structure and files, looks like th

Re: [VOTE] Release Apache Commons CSV 1.5 based on RC1

2017-08-29 Thread Bruno P. Kinoshita
distribution only contains the jar and a sources-jar. Other components ship with some more artifacts like Javadoc and test jars. But this is not blocking. +1 Oliver Am 27.08.2017 um 12:10 schrieb Bruno P. Kinoshita: > Hello all, > > This is a [VOTE] for releasing Apache Commons CSV 1.5

Re: [VOTE] Release Apache Commons CSV 1.5 based on RC1

2017-08-31 Thread Bruno P. Kinoshita
, please :) Otherwise will announce the result and prepare the release this weekend (NZ time). CheersBruno From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> To: Commons Developers List <dev@commons.apache.org> Sent: Sunday, 27 August 2017,

Re: [COLLECTIONS] Test failures on Windows

2017-10-12 Thread Bruno P. Kinoshita
s Kuhtz <andreas.ku...@gmail.com>: > > Hi, > > Tested with the changes of your PR multiple times with Win7-64bit and JDK7 > and JDK8 without any issues. > > Cheers > Andreas > > > > 2017-10-11 10:03 GMT+02:00 Bruno P. Kinoshita < > brunodepau...@yaho

[jcs] No access to assign an issue in JIRA (JCS-184)

2017-10-12 Thread Bruno P. Kinoshita
Hi, I was working on JCS-184, a low hanging fruit in JCS. After writing the patch to fix it, and adding the changes.xml entry, I was going to check the Fix Version and assign the issue in JIRA, but then realised I had no access to alter the ticket. Tried JCS-183 and other issues in JCS, and

Re: [VOTE] Release Commons Configuration 2.2 based on RC1

2017-10-09 Thread Bruno P. Kinoshita
Builds passing (mvn clean site) on Oracle JVM 8 Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java version: 1.8.0_144, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding:

Re: [COLLECTIONS] Test failures on Windows

2017-10-10 Thread Bruno P. Kinoshita
/jobs/282169803 > > > Am 28.09.2017 um 20:23 schrieb Andreas Kuhtz: > >> Hi, >> >> 2017-09-27 22:28 GMT+02:00 Bruno P. Kinoshita <ki...@apache.org>: >> >> Forgot to mention something important. When I was debugging the hash >>> tests,

Re: [COLLECTIONS] Test failures on Windows

2017-10-12 Thread Bruno P. Kinoshita
> These are new tests added in https://github.com/apache/comm > ons-collections/pull/29 > > Looks like these tests fail when run on a locale that does not use the > point character as a decimal separator. > > Am 12.10.2017 um 08:30 schrieb Bruno P. K

Re: [COLLECTIONS] Test failures on Windows

2017-10-12 Thread Bruno P. Kinoshita
day, 13 October 2017 9:39 AM Subject: Re: [COLLECTIONS] Test failures on Windows I was thinking of something driven by Maven profiles so that anyone could try different settings from the command line. Gary On Thu, Oct 12, 2017 at 1:40 PM, Bruno P. Kinoshita < brunodepau...@yahoo.com.br>

Re: [VOTE] Release Apache Commons Codec 1.11 from RC1

2017-10-17 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Checked out from tag, confirmed revision is 1812411. Build passing with `mvn clean test site` on Apache Maven 3.3.9 Maven home: /usr/share/maven Java version: 1.8.0_131, vendor: Oracle Corporation Java home: /opt/jdk1.8.0_131/jre Default locale: en_NZ, platform

Re: [VOTE] Release Apache Commons Pool 2.5.0 based on RC1

2017-12-16 Thread Bruno P. Kinoshita
[ X ] -1 I oppose this release because... For now, as I was not able to build commons-dbcp with 2.5.0 (see previous thread at [1]). See last part of this e-mail for more. Happy to change my vote in case anyone else can verify we will be able to update commons-dbcp to use commons-pool 2.5.0.

Re: [VOTE] Release Commons JCS 2.2.1 based on RC3

2017-12-13 Thread Bruno P. Kinoshita
Hi, Building from tag with `mvn clean install`. Build passing OK with Java 8, with the following environment settings: Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T20:58:13+13:00) Maven home: /opt/apache-maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle

Re: [VOTE] Release Apache Commons RDF 0.5.0 based on RC3

2017-12-13 Thread Bruno P. Kinoshita
Hi Sergio, Build passing from tag with `mvn clean package install site`, under the following environment Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T20:58:13+13:00) Maven home: /opt/apache-maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle Corporation Java home:

Re: [VOTE] Release Commons JCS 2.2.1 based on RC3

2017-12-13 Thread Bruno P. Kinoshita
Seeing other comments and votes, I believe there are no blockers, just a few things that need to be fixed. So +0 Cheers Bruno From: Bruno P. Kinoshita <brunodepau...@yahoo.com.br.INVALID> To: Commons Developers List <dev@commons.apache.org> Se

Re: [VOTE] Release Apache Commons Pool 2.5.0 based on RC1

2017-12-16 Thread Bruno P. Kinoshita
Gregory <garydgreg...@gmail.com> To: Commons Developers List <dev@commons.apache.org>; Bruno P. Kinoshita <brunodepau...@yahoo.com.br> Sent: Sunday, 17 December 2017 5:47 PM Subject: Re: [VOTE] Release Apache Commons Pool 2.5.0 based on RC1 Bruno: I am able to build Com

Re: [VOTE] Release Apache Commons RDF 0.5.0 based on RC2

2017-11-20 Thread Bruno P. Kinoshita
[ X ] +1 Release this package Build passing from tag with Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T20:58:13+13:00) Maven home: /opt/apache-maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale:

Re: [pool] LinkedBlockingDeque

2017-11-01 Thread Bruno P. Kinoshita
I think it sounds like a good idea. Probably worth creating a JIRA ticket for that and checking if anyone would volunteer to tackle it. CheersBruno From: Gary Gregory To: Commons Developers List Sent: Thursday, 2 November 2017 8:39 AM

Re: [jelly] Site build and Jellydoc plugin

2017-11-01 Thread Bruno P. Kinoshita
I think it may be worth to try to get in touch with Kohsuke. He became the CTO of CloudBees some time ago, but is still involved in the project (not writing as much code as before) mainly with decisions, and eventual pull request review. You can find him sometimes on IRC / FreeNode, in the

Re: [jelly] Site build and Jellydoc plugin

2017-11-05 Thread Bruno P. Kinoshita
Subject: Re: [jelly] Site build and Jellydoc plugin Am 02.11.2017 um 00:33 schrieb Bruno P. Kinoshita: > I think it may be worth to try to get in touch with Kohsuke. He became the > CTO of CloudBees some time ago, but is still involved in the project (not > writing as much c

Re: [VOTE] Release Apache Commons Lang 3.7 based on RC1

2017-11-04 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Build from 425d8085cfcaab5a78bf0632f9ae77b7e9127cf8 passing on Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-11T05:41:47+13:00) Maven home: /opt/maven Java version: 1.8.0_151, vendor: Oracle Corporation Java home:

Re: [VOTE] Release Apache Commons RDF 0.5.0 from RC1

2017-11-02 Thread Bruno P. Kinoshita
[ X ] +1 Release this package Build passing in Ubuntu LTS JDK 8 using git commit, site generated, no blockers in reports. Any plans to use the changes.xml file for next releases? I have an automated script that downloads the KEYS file from https://www.apache.org/dist/commons/KEYS, and it

Re: [PROPOSAL] Apache Commons JUnit

2017-11-03 Thread Bruno P. Kinoshita
+1 for the idea and for looking at JUnit 5.x and maybe AssertJ. CheersBruno From: Matt Sicker To: Commons Developers List Sent: Saturday, 4 November 2017 1:44 PM Subject: Re: [PROPOSAL] Apache Commons JUnit I certainly like the idea,

Re: [VOTE] Release Apache Commons BCEL based on RC1

2017-12-07 Thread Bruno P. Kinoshita
[ X ] +1 Release these artifacts Built successfully from tag with Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T20:58:13+13:00) Maven home: /opt/apache-maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default

Re: [VOTE] Release Commons Text 1.2 based on RC1

2017-12-09 Thread Bruno P. Kinoshita
[ X ] +1 Release it. Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T20:58:13+13:00) Maven home: /opt/apache-maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_NZ, platform encoding: UTF-8 OS name:

Re: [dbcp] update to pool 2.4.3.

2017-10-28 Thread Bruno P. Kinoshita
Hi Gary, Started the tests in Maven command line, found which tests failed. Executed the tests in Eclipse, found which class was related to the failure. Then did a diff between both tags. git diff POOL_2_4_2 POOL_2.4.3-RC1 --

Re: [dbcp] update to pool 2.4.3.

2017-10-29 Thread Bruno P. Kinoshita
54:40 GMT+00:00, "Bruno P. Kinoshita" <brunodepau...@yahoo.com.br.INVALID> wrote: >Hi Gary, > >Started the tests in Maven command line, found which tests failed. >Executed the tests in Eclipse, found which class was related to the >failure. Then did a diff between both

<    1   2   3   4   5   6   >