babashka

https://github.com/babashka/babashka. Also see #sci, #nbb and #babashka-circleci-builds .
borkdude 2021-02-07T13:35:55.376600Z

borkdude 2021-02-07T15:31:59.376800Z

borkdude 2021-02-07T15:39:48.377300Z

^ fun lein imitation script based on deps.edn

lvh 2021-02-07T16:27:09.377600Z

klein šŸ˜‚

šŸ‘ 1
2021-02-07T20:13:00.380600Z

I am writing a script that is intending to process multiple projectā€™s deps.edn, install the deps, and generate the classpath. Ideally I would to use babashka.deps or babashka.clojure but how would I isolate them? How would I run it in such a way where .cpcache and such are generated according to the projectā€™s respective directory?

borkdude 2021-02-07T20:15:22.381800Z

@jayzawrotny You mean something like babashka.deps/add-deps but call it multiple times and get only the resulting classpath for each file?

2021-02-07T20:15:38.382Z

Correct

2021-02-07T20:16:48.383500Z

Now that I think about it I donā€™t think babashka.deps or babashka.clojure is the best tool for the job on this one. Perhaps Iā€™m better off shelling out to bb --clojure to process those deps as a separate process in their respective project directories?

borkdude 2021-02-07T20:16:51.383600Z

Calling add-deps does what it says: it only adds deps to the classpath, it doesn't replace the previous classpath. However, you can hack around this by storing the previous classpath and use str/replace to remove it from the next one. This is relying on the impl detail that the classpath is only concatenated currently and there is no de-duplication whatsoever.

borkdude 2021-02-07T20:17:52.384500Z

yeah, you can shell out using babashka.process or clojure.java.shell and set the :dir argument to start the processes from a different dir

borkdude 2021-02-07T20:18:34.385Z

I think that would be the most reliable

2021-02-07T20:18:54.385400Z

And if I combine that with the --clojure flag it should work on windows?

borkdude 2021-02-07T20:19:01.385600Z

yes, it should

borkdude 2021-02-07T20:19:19.386100Z

this is one of the reasons I included this, since clojure on Windows is a bit messy with powershell and shelling out and such

2021-02-07T20:19:53.386600Z

Good idea!

2021-02-07T20:20:32.387200Z

The fs package came at a perfect time too, I didnā€™t even think about how platform specific my path separators were šŸ˜…

borkdude 2021-02-07T20:22:40.387400Z

:)