Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add task to generate lein project.clj from boot environment #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 40 additions & 24 deletions src/tailrecursion/boot/core/task.clj
Original file line number Diff line number Diff line change
Expand Up @@ -162,36 +162,52 @@
((binding [*sh-dir* pdir] (sh "make" "boot")))
(io/copy (io/file pdir "boot") (io/file (or outfile "boot")))))))

(defn- generate-lein-project-file!
[& {:keys [keep-project] :or {:keep-project true}}]
(let [pfile (io/file "project.clj")
pname (or (core/get-env :project) 'boot-project)
pvers (or (core/get-env :version) "0.1.0-SNAPSHOT")
prop #(when-let [x (core/get-env %2)] [%1 x])
head (list* 'defproject pname pvers
(concat
(prop :url :url)
(prop :license :license)
(prop :description :description)
[:dependencies (core/get-env :dependencies)
:source-paths (vec (core/get-env :src-paths))]))
proj (pp-str (concat head (mapcat identity (core/get-env :lein))))]
(if-not keep-project (.deleteOnExit pfile))
(spit pfile proj)))

(core/deftask lein-generate
"Generate a leiningen `project.clj` file.

This task generates a leiningen `project.clj` file based on the boot
environment configuration, including project name and version (generated
if not present), dependencies, and source paths. Additional keys may be added
to the generated `project.clj` file by specifying a `:lein` key in the boot
environment whose value is a map of keys-value pairs to add to `project.clj`."
[]
(core/with-pre-wrap
(generate-lein-project-file! :keep-project true)))

(core/deftask lein
"Run a leiningen task with a generated `project.clj`.

This task creates a temporary `project.clj` file based on the boot environment
configuration, including project name and version (generated if not present),
dependencies, and source paths. Additional keys may be added to the generated
`project.clj` file by specifying a `:lein` key in the boot environment whose
value is a map of keys-value pairs to add to `project.clj`.
This task generates a leiningen `project.clj` file based on the boot
environment configuration, including project name and version (generated
if not present), dependencies, and source paths. Additional keys may be added
to the generated `project.clj` file by specifying a `:lein` key in the boot
environment whose value is a map of keys-value pairs to add to `project.clj`.

Note that leiningen is run in another process. This task cannot be used to run
interactive lein tasks (yet) because stdin is not currently piped to leiningen."
Once the `project.clj` file has been generated, the specified lein task is
then run. Note that leiningen is run in another process. This task cannot be
used to run interactive lein tasks (yet) because stdin is not currently piped
to leiningen."
[& args]
(core/with-pre-wrap
(let [pfile (io/file "project.clj")
pname (or (core/get-env :project) 'boot-project)
pvers (or (core/get-env :version) "0.1.0-SNAPSHOT")
prop #(when-let [x (core/get-env %2)] [%1 x])
head (list* 'defproject pname pvers
(concat
(prop :url :url)
(prop :license :license)
(prop :description :description)
[:dependencies (core/get-env :dependencies)
:source-paths (vec (core/get-env :src-paths))]))]
(if (.exists pfile)
(println "Warning: A project.clj file already exists. Using that one.")
(doto pfile
(.deleteOnExit)
(spit (pp-str (concat head (mapcat identity (core/get-env :lein)))))))
((apply sh "lein" (map str args))))))
(generate-lein-project-file! :keep-project true)
((apply sh "lein" (map str args)))))

(defn auto
"Run every `msec` (default 200) milliseconds."
Expand Down