Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-22 Thread Ian Thomas
On Saturday, October 22, 2016 at 2:34:29 PM UTC-4, Jon Zeppieri wrote: > I changed the tzinfo and tzdata packages to remove the dynamic-require > behavior. If tzdata is installed, then tzinfo will use the data and will > define a runtime path list referring to the data files, so this should work

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-22 Thread Jon Zeppieri
I changed the tzinfo and tzdata packages to remove the dynamic-require behavior. If tzdata is installed, then tzinfo will use the data and will define a runtime path list referring to the data files, so this should work with `raco exe` now without needing to modify anything. Ian, if you have the

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-21 Thread Jon Zeppieri
This connects to a similar issue I was having with my reorganization of the CLDR libraries (which I'm getting back into): https://groups.google. com/d/msg/racket-dev/MrmxvvKidj8/ASEF22_lBQAJ. It looks like, in the present case, I should do something like this: - The tzdata package includes, in

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-14 Thread Ian Thomas
On Friday, October 14, 2016 at 12:39:19 AM UTC-4, Sam Tobin-Hochstadt wrote: > That's likely the problem. Usually you need to use define-runtime-path or a > variant of that to cooperate with raco exe. > > Sam > >From what I'm reading in the documentation, that sounds right. "Library modules

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-13 Thread Sam Tobin-Hochstadt
That's likely the problem. Usually you need to use define-runtime-path or a variant of that to cooperate with raco exe. Sam On Thu, Oct 13, 2016, 11:48 PM Jon Zeppieri wrote: > I'm sure someone else knows better than I do, but I guess the problem is > that this technique

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-13 Thread Jon Zeppieri
I'm sure someone else knows better than I do, but I guess the problem is that this technique (using `resolve-module-path` and `dynamic-require`) won't work with `raco exe`. Is that right? Or is something else going on? - Jon On Thu, Oct 13, 2016 at 8:55 PM, Ian Thomas wrote:

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module - Resolved

2016-10-13 Thread Ian Thomas
On Thursday, October 13, 2016 at 6:18:56 PM UTC-4, Ian Thomas wrote: > > I installed "gregor" using the following raco command. > > raco pkg install gregor > > My Racket installation looks in the following directories for Collections: > > racket@setup/dirs> (get-collects-search-dirs) > '(# >

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module

2016-10-13 Thread Ian Thomas
On Thursday, October 13, 2016 at 2:05:53 PM UTC-4, Vincent St-Amour wrote: > The tzinfo dependency comes from gregor (well, from gregor-lib, which > gregor depends on). > > But, I would have also expected installing gregor to pull in that > dependency. How did you install gregor? > > Vincent I

Re: [racket-users] Unable to track down what is requiring inclusion of tzinfo module

2016-10-13 Thread Vincent St-Amour
The tzinfo dependency comes from gregor (well, from gregor-lib, which gregor depends on). But, I would have also expected installing gregor to pull in that dependency. How did you install gregor? Vincent On Thu, 13 Oct 2016 13:02:09 -0500, Ian Thomas wrote: > > Hello list, > > I'm receiving