Re: Leiningen in Python

2009-12-20 Thread John
Hi Rob, I made the changes src/leiningen/jar.clj that you suggested. Then issued the commands: E:\etc\clojure\Leiningen\lein.py clean E:\etc\clojure\Leiningen\lein.py deps E:\etc\clojure\Leiningen\lein.py compile E:\etc\clojure\Leiningen\lein.py jar E:\etc\clojure\Leiningen\lein.py uberjar and

Re: Leiningen in Python

2009-12-20 Thread Rob Wolfe
John john.b.ga...@gmail.com writes: Hi Rob, I made the changes src/leiningen/jar.clj that you suggested. Then issued the commands: E:\etc\clojure\Leiningen\lein.py clean E:\etc\clojure\Leiningen\lein.py deps E:\etc\clojure\Leiningen\lein.py compile E:\etc\clojure\Leiningen\lein.py jar

Re: Leiningen in Python

2009-12-19 Thread John
Hi, I am trying to use lein.py, from above, on Windows (Vista). It works nicely for some commands (e.g. lein.py compile), after removing the extra space in two places e.g. 'leiningen-%s-standalone .jar' - 'leiningen-%s-standalone.jar' and '1.1.0-alpha-SNAPSHOT/cloju re-1.1.0-alpha-SNAPSHOT.jar'

Re: Leiningen in Python

2009-12-19 Thread Rob Wolfe
John john.b.ga...@gmail.com writes: Hi, I am trying to use lein.py, from above, on Windows (Vista). It works nicely for some commands (e.g. lein.py compile), after removing the extra space in two places e.g. 'leiningen-%s-standalone .jar' - 'leiningen-%s-standalone.jar' and

Re: Leiningen in Python

2009-12-19 Thread Phil Hagelberg
John john.b.ga...@gmail.com writes: I am trying to use lein.py, from above, on Windows (Vista). But I still have the following error with the 'lein.py install' and 'lein.py jar' commands: I don't know Python myself, so I will wait until I hear about these being resolved before I check this

Re: Leiningen in Python

2009-12-15 Thread Phil Hagelberg
Rob Wolfe r...@smsnet.pl writes: Yes, there are some escaping problems on Windows. I changed a little bit lein.py and this worked for me on Windows and Linux: Can I include this in Leiningen 1.1.0+ with a note saying it's only experimentally supported? -Phil -- You received this message

Re: Leiningen in Python

2009-12-15 Thread Rob Wolfe
Phil Hagelberg napisał(a): Rob Wolfe r...@smsnet.pl writes: Yes, there are some escaping problems on Windows. I changed a little bit lein.py and this worked for me on Windows and Linux: Can I include this in Leiningen 1.1.0+ with a note saying it's only experimentally supported? Sure.

Re: Leiningen in Python

2009-12-13 Thread Jonghyouk, Yun
Thanks, I'll fix reported those problems, soon :-) Thanks! On 12월13일, 오전7시31분, Rob Wolfe r...@smsnet.pl wrote: Mike K mbk.li...@gmail.com writes: All, I tried to use this script on Windows and it blew up real good!  I'm a Clojure, Java, and Leiningen newbie, so perhaps a kind soul can

Re: Leiningen in Python

2009-12-12 Thread Mike K
I could not get the python script to work, so I switched to the powershell version. I now understand that the leiningen-1.0.0-SNAPSHOT.jar is a so-called uberjar and contains all the dependencies for leiningen. However, the python script assumes clojure is from a separate jar which is not

Re: Leiningen in Python

2009-12-12 Thread Rob Wolfe
Mike K mbk.li...@gmail.com writes: All, I tried to use this script on Windows and it blew up real good! I'm a Clojure, Java, and Leiningen newbie, so perhaps a kind soul can help me out. 1. lein self-install worked. It downloaded leiningen-1.0.0- standalone.jar. However, that

Re: Leiningen in Python

2009-12-11 Thread Mike K
All, I tried to use this script on Windows and it blew up real good! I'm a Clojure, Java, and Leiningen newbie, so perhaps a kind soul can help me out. 1. lein self-install worked. It downloaded leiningen-1.0.0- standalone.jar. However, that contradicts the description at

Re: Leiningen in Python

2009-12-08 Thread Phil Hagelberg
Jonghyouk, Yun ageld...@gmail.com writes: I've write some python script for leiningen for Windows machines without wget/curl. I expect it is nicer than as-is bourne-shell-script version of 'lein'. here is my little script: http://github.com/ageldama/configs/blob/master/lein/lein.py It'd

Re: Leiningen in Python

2009-12-07 Thread liebke
That's great. Roland Sadowski has also written a Windows-friendly lein script in PowerShell: http://gist.github.com/239210 On Dec 7, 8:15 am, Jonghyouk, Yun ageld...@gmail.com wrote: Hi, I've write some python script for leiningen for Windows machines without wget/curl. I expect it is