We now have a functioning set of Assembla.com workspaces

.
As discussed on IRC earlier this week, I split up the project into three subprojects:
parpg-core: sources for the core subsystems, configuration, and executable.
parpg-assets: all graphics, music, fonts, scripts, etc. that parpg needs to run.
parpg-tools: utilities and content creation tools that are not required for parpg to run.
To support the new subprojects I scrapped the existing distutils install scripts and wrote a few SCons scripts. The new SCons install scripts allow the user to customize install paths for the Python sources, data files, configuration files and executable ala GNU make using variables supplied to the command line (e.g.
scons PREFIX=/usr EXEC_PREFIX=/usr/local
). Type
scons --help
to list these variables and how they work. All of these variables have sane defaults on Linux, Windows and Mac OS (Mac uses the Linux defaults currently, but this may change).
Note: I don't have a Windows executable working yet! You'll have to write your own batch file or simply run parpg/main.py with the path to the configuration file as the first argument.parpg-core and parpg-tools are versioned in separate mercurial repositories, while parpg-assets is versioned in an svn repository. Each of these subprojects is hosted on their own workspace in Assembla (
https://parpg.assembla.com/spaces/parpg-core,
https://parpg.assembla.com/spaces/parpg-assets, and
https://parpg.assembla.com/spaces/parpg-tools). I don't have parpg-tools up and running yet, but I will have it ready within the next few days.
In addition, there is a main workspace (
https://parpg.assembla.com/spaces/parpg-main) which hosts a root mercurial repository containing subrepository links to parpg-core, parpg-assests and parpg-tools. This will be the main workspace where we host our bug tracker and communication tools. Cloning the root repository will automatically clone parpg-core and parpg-tools, and checkout parpg-assets, and the cloned root repository will take care of keeping all three subproject repositories in sync as you work on it and push new changes to the server.
All four workspaces are managed by an Assembla Portfolio (
https://parpg.assembla.com/), which will be the main page for developers. The portfolio will aggregate all events from the subproject workspaces and display any tickets assigned to you, so should be the first page you load when you log on.
This is a huge change so it'll take some time to establish our new workflow. I suggest that you browse the workspaces and portfolio page, clone the root repository using
hg clone http://hg.assembla.com/parpg
and play around with scons to get a feel for it. The first clone will take a while since it has to checkout a huge number of assets from parpg-assets, but future pulls from the server will be much faster.
I will be around tomorrow before and after the meeting to answer any and all questions you have about our Assembla hosting.