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-30 Thread Daniel Janus
On 28 Sie, 07:00, Stuart Sierra the.stuart.sie...@gmail.com wrote: On Aug 27, 3:42 pm, B Smith-Mannschott bsmith.o...@gmail.com 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

Re: 1.2 contrib shuffles

2010-08-28 Thread B Smith-Mannschott
On Sat, Aug 28, 2010 at 07:00, Stuart Sierra the.stuart.sie...@gmail.comwrote: On Aug 27, 3:42 pm, B Smith-Mannschott bsmith.o...@gmail.com 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

Re: 1.2 contrib shuffles

2010-08-27 Thread B Smith-Mannschott
On Fri, Aug 27, 2010 at 13:54, Daniel Janus nath...@gmail.com 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

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
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]

Re: 1.2 contrib shuffles

2010-08-27 Thread gary ng
On Fri, Aug 27, 2010 at 7:02 AM, B Smith-Mannschott bsmith.o...@gmail.com 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

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 garyng2...@gmail.com wrote: I need to exclude/modify a few test when running under windows, due to the crlf vs

Re: 1.2 contrib shuffles

2010-08-27 Thread gary ng
On Fri, Aug 27, 2010 at 8:17 AM, Btsai benny.t...@gmail.com 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

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

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

Re: 1.2 contrib shuffles

2010-08-27 Thread Stuart Sierra
On Aug 27, 3:42 pm, B Smith-Mannschott bsmith.o...@gmail.com 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