-
Notifications
You must be signed in to change notification settings - Fork 415
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
Pipeline-able outputs #1526
Comments
Why don't you just install straight from the opam file? |
I don't have `.opam` files for these packages -- they're not being built to
be published or installed via `opam`.
…On Wed, 7 Nov 2018 at 18:07, Rudi Grinberg ***@***.***> wrote:
Why don't you just install straight from the opam file? $ opam install .
was made for this and will work for all packages, not just ones created
with dune. There's no need for any of this shell ninja stuff :)
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1526 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAKP4Hi_G-UGg3-dqqejV5jEVCFR0mx6ks5usyFxgaJpZM4YS8m6>
.
--
Richard Mortier
mort@cantab.net
|
I see. Well in that case, we're planning to generate opam files in dune quite soon. You'll be able to use these files to install opam packages. |
Hm, ok. I guess that will work since dune will be able to pick up and
trigger their installation from the generated opam files.
(Feels a bit roundabout/non-Unix-y to me, but I'm probably just being
old fashioned :)
Thanks!
…On Wed, 7 Nov 2018 at 18:48, Rudi Grinberg ***@***.***> wrote:
I see. Well in that case, we're planning to generate opam files in dune quite soon. You'll be able to use these files to install opam packages.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
--
Richard Mortier
mort@cantab.net
|
If we liked the Unix philosophy, I believe we would have stuck to makefiles :) There are advantages to going through an opam file. Such as enforcing the build constraints. Building dune projects with relative ease is definitely on our map. There's some discussion here: #1498 |
Relates to #1404 I think, but perhaps simpler?
It would be nice if there could be a
-q|--quiet
or similar option fordune
commands that restricted output to something that could easily be piped. (Or perhaps--display quiet
or something.)Eg., to install missing dependencies for
TARGET
I find myself doing:which might be better written:
The text was updated successfully, but these errors were encountered: