I'm a RERO fan. Why not cut a release ASAP and iron out the process? Then
you can come back and work on your 30 issues. That's a lot of issues! ;-)

Gary

On Thu, Jun 18, 2015 at 10:21 AM, Kristian Rosenvold <
kristian.rosenv...@gmail.com> wrote:

> I know about the new policy, I've been using it in compress :)
>
>  I'm still not entirely sure I'd be able to stage a release in nexus :)
>
> But time will tell; I have 30 some issues on my "triage" list right now. I
> was planning to start that a few weeks ago but I had so many other yaks to
> shave.
>
> Kristian
>
>
> 2015-06-18 19:17 GMT+02:00 Gary Gregory <garydgreg...@gmail.com>:
>
> > We implemented a new policy a couple of months ago: All Apache Committer
> > can commit to Apache Commons! Pretty cool eh?
> >
> > But a PMC member might need to do some tasks, I'm not sure about that
> one.
> >
> > Gary
> >
> > On Thu, Jun 18, 2015 at 10:04 AM, Kristian Rosenvold <
> > krosenv...@apache.org>
> > wrote:
> >
> > > I can do the release, but I'm not entirely sure I'd have the necessary
> > > priveiliges (since I'm not even a committer in commons). Then again I
> > might
> > > have them since I'm a member, I'm a bit unsure :) I suspect nexus wont
> > let
> > > me deploy...
> > >
> > > Kristian
> > >
> > >
> > > 2015-06-18 18:50 GMT+02:00 Gary Gregory <garydgreg...@gmail.com>:
> > >
> > > > [io] needs a release bad, it's been way to long. I can live with 1.6
> > for
> > > a
> > > > release if is soon. Then switch to Java 7.
> > > >
> > > > Are you willing to RM?
> > > >
> > > > Gary
> > > >
> > > > On Thu, Jun 18, 2015 at 9:28 AM, Kristian Rosenvold <
> > > krosenv...@apache.org
> > > > >
> > > > wrote:
> > > >
> > > > > We (maven) /just/ managed to switch to 1.6 baseline. So I'm +1 for
> > > making
> > > > > at least one more release with 1.6 ;)
> > > > >
> > > > > Kristian
> > > > >
> > > > >
> > > > > 2015-06-18 18:16 GMT+02:00 Gary Gregory <garydgreg...@gmail.com>:
> > > > >
> > > > > > On Thu, Jun 18, 2015 at 8:57 AM, <krosenv...@apache.org> wrote:
> > > > > >
> > > > > > > Author: krosenvold
> > > > > > > Date: Thu Jun 18 15:57:56 2015
> > > > > > > New Revision: 1686260
> > > > > > >
> > > > > > > URL: http://svn.apache.org/r1686260
> > > > > > > Log:
> > > > > > > Language level code changes
> > > > > > >
> > > > > > >
> > > > > > > ...
> > > > > >
> > > > > >
> > > > > > >
> > > > > > > Modified:
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java
> > > > > > > URL:
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java?rev=1686260&r1=1686259&r2=1686260&view=diff
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> ==============================================================================
> > > > > > > ---
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java
> > > > > > > (original)
> > > > > > > +++
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileSystemUtils.java
> > > > > > > Thu Jun 18 15:57:56 2015
> > > > > > > @@ -75,23 +75,23 @@ public class FileSystemUtils {
> > > > > > >              }
> > > > > > >              osName = osName.toLowerCase(Locale.ENGLISH);
> > > > > > >              // match
> > > > > > > -            if (osName.indexOf("windows") != -1) {
> > > > > > > +            if (osName.contains("windows")) {
> > > > > > >                  os = WINDOWS;
> > > > > > > -            } else if (osName.indexOf("linux") != -1 ||
> > > > > > > -                osName.indexOf("mpe/ix") != -1 ||
> > > > > > > -                osName.indexOf("freebsd") != -1 ||
> > > > > > > -                osName.indexOf("irix") != -1 ||
> > > > > > > -                osName.indexOf("digital unix") != -1 ||
> > > > > > > -                osName.indexOf("unix") != -1 ||
> > > > > > > -                osName.indexOf("mac os x") != -1) {
> > > > > > > +            } else if (osName.contains("linux") ||
> > > > > > > +                    osName.contains("mpe/ix") ||
> > > > > > > +                    osName.contains("freebsd") ||
> > > > > > > +                    osName.contains("irix") ||
> > > > > > > +                    osName.contains("digital unix") ||
> > > > > > > +                    osName.contains("unix") ||
> > > > > > > +                    osName.contains("mac os x")) {
> > > > > > >                  os = UNIX;
> > > > > > > -            } else if (osName.indexOf("sun os") != -1 ||
> > > > > > > -                osName.indexOf("sunos") != -1 ||
> > > > > > > -                osName.indexOf("solaris") != -1) {
> > > > > > > +            } else if (osName.contains("sun os") ||
> > > > > > > +                    osName.contains("sunos") ||
> > > > > > > +                    osName.contains("solaris")) {
> > > > > > >                  os = POSIX_UNIX;
> > > > > > >                  dfPath = "/usr/xpg4/bin/df";
> > > > > > > -            } else if (osName.indexOf("hp-ux") != -1 ||
> > > > > > > -                osName.indexOf("aix") != -1) {
> > > > > > > +            } else if (osName.contains("hp-ux") ||
> > > > > > > +                    osName.contains("aix")) {
> > > > > > >                  os = POSIX_UNIX;
> > > > > > >              } else {
> > > > > > >                  os = OTHER;
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > How about finally updating [io] to Java 7 and using a switch?
> > > > > >
> > > > > > Gary
> > > > > >
> > > > > >
> > > > > > --
> > > > > > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
> > > > > > Java Persistence with Hibernate, Second Edition
> > > > > > <http://www.manning.com/bauer3/>
> > > > > > JUnit in Action, Second Edition <
> http://www.manning.com/tahchiev/>
> > > > > > Spring Batch in Action <http://www.manning.com/templier/>
> > > > > > Blog: http://garygregory.wordpress.com
> > > > > > Home: http://garygregory.com/
> > > > > > Tweet! http://twitter.com/GaryGregory
> > > > > >
> > > > >
> > > >
> > > >
> > > >
> > > > --
> > > > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
> > > > Java Persistence with Hibernate, Second Edition
> > > > <http://www.manning.com/bauer3/>
> > > > JUnit in Action, Second Edition <http://www.manning.com/tahchiev/>
> > > > Spring Batch in Action <http://www.manning.com/templier/>
> > > > Blog: http://garygregory.wordpress.com
> > > > Home: http://garygregory.com/
> > > > Tweet! http://twitter.com/GaryGregory
> > > >
> > >
> >
> >
> >
> > --
> > E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
> > Java Persistence with Hibernate, Second Edition
> > <http://www.manning.com/bauer3/>
> > JUnit in Action, Second Edition <http://www.manning.com/tahchiev/>
> > Spring Batch in Action <http://www.manning.com/templier/>
> > Blog: http://garygregory.wordpress.com
> > Home: http://garygregory.com/
> > Tweet! http://twitter.com/GaryGregory
> >
>



-- 
E-Mail: garydgreg...@gmail.com | ggreg...@apache.org
Java Persistence with Hibernate, Second Edition
<http://www.manning.com/bauer3/>
JUnit in Action, Second Edition <http://www.manning.com/tahchiev/>
Spring Batch in Action <http://www.manning.com/templier/>
Blog: http://garygregory.wordpress.com
Home: http://garygregory.com/
Tweet! http://twitter.com/GaryGregory

Reply via email to