<discocaml>
<bluddy5> I don't disagree with your assessment. The issue is that there are no contributors. It's one thing if the owner doesn't merge PRs made by contributors. In this case, there just aren't enough people to contribute.
<discocaml>
<bluddy5> Moving it to community control will not help.
<discocaml>
<bluddy5> Also, as someone who uses numpy regularly, I personally have a hard time making owl work for me at the same level. That could be part of the problem.
szkl has quit [Quit: Connection closed for inactivity]
hiddenman has joined #ocaml
<hiddenman>
hi all
<hiddenman>
guys, i was there a few months ago and you helped me to build a project from local sources included lots of external libs/packages
<hiddenman>
i did: opam init; opam repository set-url default git@localhost; opam switch create (and then eval `opam env`); and then ran lots of: opam pin add dune git@localhost; opam pin add ocamlfind git@localhost and so on
<hiddenman>
this helped to build everything
<hiddenman>
right now i have another similar project (and it's even simlier) and i've done the same but it still does't want to build and claims: "ocamlfind ocamlopt -o _build/validate-value -package pcre,unix,containers -linkpkg src/validate_value.ml" -> ocamlfind: Package `containers' not found
<hiddenman>
while this containers is compiled, installed, pinned
<hiddenman>
this containers package is used in the first project and it was successfully found and linked
<hiddenman>
so my question is: what can cause opam+ocaml to not be able to find local packages?
<hiddenman>
i even tried: eval $(opam env --swith=vyos-utils) (it's the name of the switch i created before). no errors with this, but something causes ocaml to search for "system" packages instead of my locally pinned packages
<hiddenman>
hm. may be i have to run opam install, not only opam pin?
pi3ce has quit [Ping timeout: 268 seconds]
<hiddenman>
just tried and it said "[NOTE] Package containers is already installed (current version is 3.12).". and immediately failed with ocamlfind: Package `containers' not found
<hiddenman>
may be i have to tell to the ocamlfind to search locally somehow?
pi3ce has joined #ocaml
<companion_cube>
if you use ocamlfind inside the makefile, make sure you use the ocamlfind from that switc
<hiddenman>
it just runs ocamlfind opt -o $@ -linkpkg -output-obj -runtime-variant _pic -verbose -thread -package $(PACKAGES) -ccopt "-Wl,-soname,libvyosconfig.so.0" $^. and $PACKAGES contains "containers" and can be found
<hiddenman>
companion_cube, so i can tell ocamlfind something like --switch ?
<companion_cube>
no, you have to use the ocamlfind from inside the switch (it's a program)
<companion_cube>
eg you might do `opam exec --switch=… -- make`, which would put the correct ocamlfind in your path
<hiddenman>
hm. will try, thank you. actually, i see no difference between both package build rules. and one i can built with containers package, but another one claims it can't find it.
<hiddenman>
will try to play with ocamlfind, thank you. not sure why it works for the first package without any additional options
yewscion has quit [Remote host closed the connection]