life.130815
2018-6-9 08:18:07

@life.130815 has joined the channel


jeapostrophe
2018-6-9 16:58:14

@leif I think it would be no easier inside of raco pkg than as its own command that looked at the package’s info, grabbed the deps, and then installed them. If you implemented, I can imagine putting it in raco pkg


andreiformiga
2018-6-9 19:15:13

I can’t seem to make feature-profile work for me. when I pass the program name using raco feature-profile it complains about passing an argument: zextests: expects no arguments on the command line, given 1 argument: zextests.rkt


krismicinski
2018-6-9 23:37:41

Whenever I use racket units with a define/contract form I get a nonobvious error that says define-unit: cannot export syntax from a unit.


krismicinski
2018-6-9 23:37:47

am I being naive with this?


krismicinski
2018-6-9 23:41:57

(When I remove the define/contracts it works)


greg
2018-6-10 00:06:31

@krismicinski I’ve barely used units, much less using them with contracts. I wonder if define/contract maybe just doesn’t compose well with units, and instead you want something from http://docs.racket-lang.org/guide/Contracts_for_Units.html ?


krismicinski
2018-6-10 00:22:54

Yeah, I think that’s right.


samth
2018-6-10 00:51:56

@krismicinski define/contract (and other contract-defining forms such as contract-out) define things as macros, which units don’t support as exports


krismicinski
2018-6-10 00:52:54

Yeah, that makes upon thinking about it, I just didn’t really grok the error message