2 posts were split to a new topic: Should opam use a lockfile by default?
Rust derive macros are just macros, no?
It would be much better to have a macro system, something like Rust have, maybe based on metaocaml, but with abilities to parse strings and add attributes.
Derivers are useful, but there since the language lacks dependent types, there are other useful applications of metaprogramming: format strings (for SQL, for example), parser generators etc.
It may be time again to remember people that the topic and focus of this discussion should be Camlp4
Isnāt PPX, de facto, a macro system?
I think heās referring to an in-language macro system, as opposed to an out-of-language system like PPX that runs completely apart from the compiler. Though it seems like Rust has both this aforementioned system (which is very sound, but is limited to localized modifications) and a full PPX-like system that edits the AST.
Iād like to give a slightly different perspective on the ppx situation because I think that most the opinions here skew one way and paint an overly grim picture.
Iāve personally used ppx in several projects and will continue doing so without much hesitation. For many use cases, the amount of boilerplate that ppx eliminates is much more important than being able to instantly use the latest version of OCaml compiler. I donāt mind waiting a year (or even two) for the ppx that I care about to upgrade. In practice, since omp and ppxlib were released. it rarely took this long for the ecosystem to be updated. In fact, my upgrading bottleneck is rarely the ppx but all the other infrastructure that relies on compiler apiās: utop, merlin, ocamlformat and other breaking changes in the compiler.
So what I would like to see is a stabler api in the compiler. Not only this would help the ppx situation, but it would help to maintain all other software thatās critical to my workflow.
The real problem with ppx is just how damn ugly it is
That seems like it would indeed make everyoneās life easier.
I think that everyone can just provide their suggestions about ppx here: The future of ppx, which is a proper place for discussing the future of this subsystem.
I also cleaned up the list in The end of Camlp4, removed obsolete projects and these that were fixed since already. Many of them also dropped the camlp4 dependency, but not made release yet. Added the issues links to those that are at GitHub, for tracking the progress.
As long as you have a dune-project
file, that should be the case. The first line of the dune-project
file tells Dune which version of Dune the project was written against so that future Dune can continue to understand it. Well, thatās not a 100% guarantee that everything will work exactly the same forever but at least Dune will still be able to make sense of whatās written in your dune
files.
Regarding ppx, just to state the obvious it is clearly easier to accept the tradeoff of writing ppx rewriters if you are a big company like Jane Street. For individual ppx authors, it requires much more efforts. The good news is that we are actively working on improving this and provide a stable API for ppx authors. To give an update on this work: we have a working solution on paper and are currently moving on with the implementation. Once we have more, weāll proof test our solution by backporting it to a few past compiler versions. Iāll try to write up a quick description of our solution so that everybody can follow. We are also going to present it at the upcoming OCaml day at ICFP.
A lot of libraries did an update, and I almost halved the list.
Great work. I would reckon that a good way to filter the list further is to only consider libraries downloaded in the last month. In my opinion, libraries with no active users are usually not worth our maintenance effort and should be left alone until users/maintainers step forward.
I think it worth mention Camlp4 was moved under its own organization now: https://github.com/camlp4/camlp4
Perhaps worth mentioning briefly that for anybody who -wants- to continue using camlp4, Iām (a) maintaining camlp5 and bringing it up-to-date with everything in ocaml 4.10.0 that I can think of, and (b) Iād be happy to help them port their dependency over to camlp5.
This is not to be construed as an argument for using camlp4/5.
camlp4 4.10 is now available in opam. Quoting the readme :
Later releases will try to keep camlp4 buildable, by supporting new OCaml AST but not new syntax constructions, which means camlp4 will be able to parse only OCaml language up to 4.08. Rationale: existing code using camlp4 will still be buildable, but no new code should be written with camlp4.