Managing Software As Data » History » Version 16

Version 15 (Steve Welburn, 2013-01-08 12:14 PM) → Version 16/19 (Steve Welburn, 2013-01-08 12:14 PM)

h1. Managing Software As Data

For new software, the same issues arise as for data:
* [[Backing_up|backing up]]
* [[Documenting_data|documentation]]

However, whereas data changes slowly / infrequently, software is subject to ongoing changes during a project. Source code for software usually consists of text files and should therefore be stored in a suitable version control system (e.g. "Mercurial":http://mercurial.selenic.com/, "Subversion":http://subversion.apache.org/, "git":http://git-scm.com/). Binary releases of software may also be created as downloads for a project.

Additionally, software documentation has broader requirements - including both documentation to make the code maintainable (e.g. comments in the code, documenting APIs, Javadoc style documentation) and user documentation to explain how to install and use the software.

The "Sound Software":http://www.soundsoftware.ac.uk project provides software project management facilities for digital music and audio research including Mercurial version control, downloads, documentation, issue lists and wikis through its "code repository":http://code.soundsoftware.ac.uk

Other possible repositories for source code include:
* "Sourceforge":http://sourceforge.net/ (Subversion, git, Mercurial, Bazaar, CVS)
* "Google code":http://code.google.com/ (Subversion, git, Mercurial)
* "github":https://github.com/ (git)
* "bitbucket":https://bitbucket.org/ (git, Mercurial)

The Sound Software project information on "choosing a version control system":http://soundsoftware.ac.uk/version-control-what-system-to-use and provides a an "cross-platform, easy-to-use, graphical client":http://easyhg.org/ for use with Mercurial.