Re: 1.2 contrib shuffles

2010-08-30 Thread Daniel Janus
On 28 Sie, 07:00, Stuart Sierra wrote: > On Aug 27, 3:42 pm, B Smith-Mannschott wrote: > > > This thread got me thinking that when a namespace is partially promoted to > > Clojure proper, it might be good to provide a reduced version of the old > > namespace, providing just the functionality that

Re: 1.2 contrib shuffles

2010-08-30 Thread Michael Jaaka
I downloaded Clojure Contrib Stable 1.2 from http://github.com/downloads/clojure/clojure-contrib/clojure-contrib-1.2.0.zip And builded with "mvn package". The results are: Testing clojure.contrib.test-io FAIL in (test-as-url) (test_io.clj:21) expected: (= (URL. "file:/foo") (as-url (File. "/foo"

Re: 1.2 contrib shuffles

2010-08-28 Thread B Smith-Mannschott
On Sat, Aug 28, 2010 at 07:00, Stuart Sierra wrote: > On Aug 27, 3:42 pm, B Smith-Mannschott wrote: > > This thread got me thinking that when a namespace is partially promoted > to > > Clojure proper, it might be good to provide a reduced version of the old > > namespace, providing just the funct

Re: 1.2 contrib shuffles

2010-08-27 Thread Stuart Sierra
On Aug 27, 3:42 pm, B Smith-Mannschott wrote: > This thread got me thinking that when a namespace is partially promoted to > Clojure proper, it might be good to provide a reduced version of the old > namespace, providing just the functionality that was not promoted as an > alternative to complete

Re: 1.2 contrib shuffles

2010-08-27 Thread Stuart Sierra
With the 1.2.0 release, there was an effort to get the most useful parts of contrib -- IO and string handling, in particular -- into Clojure proper, with the goal of making contrib unnecessary for everyday programming. Hopefully, contrib can go back to being what it was meant to be: an experimenta

Re: 1.2 contrib shuffles

2010-08-27 Thread B Smith-Mannschott
This thread got me thinking that when a namespace is partially promoted to Clojure proper, it might be good to provide a reduced version of the old namespace, providing just the functionality that was not promoted as an alternative to complete removal. Anyway, I've sketched out the idea as a patch

Re: 1.2 contrib shuffles

2010-08-27 Thread gary ng
On Fri, Aug 27, 2010 at 8:17 AM, Btsai wrote: > How are you grabbing the sources?  I'm also running under Windows, and > get the source from github via msysgit, which handles the crlf vs. cr > issue nicely. > same here. that only handles the source crlf I assume. What I did was specifically for th

Re: 1.2 contrib shuffles

2010-08-27 Thread Btsai
How are you grabbing the sources? I'm also running under Windows, and get the source from github via msysgit, which handles the crlf vs. cr issue nicely. On Aug 27, 8:07 am, gary ng wrote: > > I need to exclude/modify a few test when running under windows, due to > the crlf vs cr stuff -- You

Re: 1.2 contrib shuffles

2010-08-27 Thread gary ng
On Fri, Aug 27, 2010 at 7:02 AM, B Smith-Mannschott wrote: > What test failures are you seeing? I'm not seeing any building > github.com/clojure/clojure-contrib 1.2.0-RC3 > (e4ea06c9ff93df3b3f667ab5768618ece5a98b6e). > Ran 365 tests containing 1298 assertions. > 0 failures, 0 errors. I need to exc

Re: 1.2 contrib shuffles

2010-08-27 Thread B Smith-Mannschott
What test failures are you seeing? I'm not seeing any building github.com/clojure/clojure-contrib 1.2.0-RC3 (e4ea06c9ff93df3b3f667ab5768618ece5a98b6e). Ran 365 tests containing 1298 assertions. 0 failures, 0 errors. [INFO] [I

Re: 1.2 contrib shuffles

2010-08-27 Thread Michael Jaaka
Agree with Daniel Janus. There are some conflicts without any reason. This should be cleaned up for 1.2.1 version. More over when I build clojure-contrib-1.2.jar I get 4 failures on tests due to. It shouldn't appear in a final versions. All contributors and Rick do a great job but you should think

Re: 1.2 contrib shuffles

2010-08-27 Thread B Smith-Mannschott
On Fri, Aug 27, 2010 at 13:54, Daniel Janus wrote: > Hi, > > so I finally got around to port my app to Clojure 1.2 and got confused > about the contrib shuffles. > > There's clojure.java.io and clojure.contrib.io. The docs on the latter > says that most of the functions defined in there are depre

1.2 contrib shuffles

2010-08-27 Thread Daniel Janus
Hi, so I finally got around to port my app to Clojure 1.2 and got confused about the contrib shuffles. There's clojure.java.io and clojure.contrib.io. The docs on the latter says that most of the functions defined in there are deprecated, and one should use clojure.java.io instead. But clojure.ja