Deploy Racket libraries to Planet 2

Over the last few years, I’ve managed to write a fair bit of Racket code. It’s a lovely language and an even better ecosystem for writing quick/clean code (batteries included! ). Several times throughout that, I’ve written code that I thought could be useful to others, including several libraries that I used to write my Racket Roguelike and code that I’ve used working with the C211 class at Indiana University. I’ve always said that I should turn these into packages that others can use and… I’ve finally figured it out.

Part of the reason that I finally figured it out is the introduction of the new and improved Planet 2 framework (currently in beta). Theoretically, it makes creating a library as simple as publishing the GitHub URL it’s hosted at. In practice, it’s a bit more complicated than that, but not much.

When I finally set about working on this, my first stop was this message from Jay McCarthy on the Racket mailing list. Essentially, it announced the beta release and has temporary documentation here which got me started. Specifically, it said that I should be able to just put a package in GitHub and then install it on any machine with this command:

raco pkg install github://github.com/{username}/{package-name}/{branch}/

After that, there was a lot of chatter about fixing the idea that a package had to actually be a collection containing one or more packages. Since most of my code is one package per collection, I would love to see this work, but I haven’t figured it out yet. That means that to work, each repository has to have a folder with the same name at the top level. So the general layout (for me at least) looks something like this:

github://jpverkamp/{package}
+ info.rkt
+ manual.scrbl 
+ {package}
  + main.rkt
  + other-file.rkt
  + ...

Strictly speaking, the info and manual files aren’t necessary, but they seem useful. Here’s some documentation for creating an info.rkt file (linky ) and here’s some on creating documentation with Scribble (linky ). I’m really liking how Scribble works; I’m actually thinking about reworking this blog to be statically generated using it (similar to Greg Hendershott’s frog project). We’ll see.

In any case, once all of those files are in place, it really is that easy. Push all of those files to GitHub and the command earlier works just fine. About the only problem I’ve seen so far is that occasionally the timestamps get strange. That leads to Dr. Racket (but not the command line version) complaining about the timestamps on the .zo files and refusing to run. Wait until the match though and everything is golden.

That being said, I’ve gone through and started to push out some libraries (along with updating my code to use them). It’s certainly cleaner than using Git submodules (which Racket Roguelike originally did), especially if several projects use the same library. We’ll see if it continues to be so easy.

So far, I’ve converted / written these five libraries:

LibrarySourceDocsDescription
ascii‑canvassrcdocsascii-canvas simulates a code page 437 ASCII terminal display. It supports all 256 characters of codepage 437, arbitrary foreground colors, arbitrary background colors, and arbitrary terminal sizes.
bit‑structsrcdocsExtend standard Racket structs for bitfields. It creates the normal accessors for structure along with defining three new methods: build‑**‑>bytesbytes‑>*
c211srcdocsc211 provides a Racket version of the C211 libraries used in Wombat. So far, the following libraries are (mostly) complete: c211/colorc211/imagec211/matrix
noisesrcdocsThis package provides Racket versions of the [[wiki:Perlin noise
thingsrcdocsThis package provides a simple prototype object-based system for Racket.

To install any of these libraries (unless otherwise mentioned), it really is as easy as running this command: raco pkg install github://github.com/jpverkamp/**{library name}**/master

Alternatively, you can do it directly from DrRacket:

> (require pkg)
> (install "github://github.com/jpverkamp/{library name}/master

Either way, after the code runs, you can require the library directly:

> (require pkg)
> (install "github://github.com/jpverkamp/noise/master")
...
> (require noise)
> (perlin 8.6 7.5 3.09)
0.49156684001488843

Using the latter, I’ve gotten a few errors, but it seems to work regardless. I prefer the raco version anyways, so I didn’t pay particularly much attention to them.

At the moment, that same list above lives at Lists > Racket Libraries, although I can’t guarantee that I won’t move it if/when I ever finish my blog redesign / shift to static pages that I’ve been working on for a few months. We’ll see. For now though it seems like a reasonable enough place though.