ShipIt::ProjectType - abstract base class for different types of projects
Different types of projects (Perl, C, ...) have different conventions and quirks
which this abstract base class aims to hide.
$pt = $state->pt; # get a ShipIt::ProjectType instance
$ver = $pt->find_version;
$pt->update_version("1.53");
$pt->disttest;
Returns current version of project.
Updates version number on disk with provided new version.
Make a dist, then untars that in a temp directory, and does a full build &
test on the extracted archive. Returns true if everything succeeds, or dies on
failure.
Runs "make dist" or equivalent, to build the resultant archive to give
to users. Dies on failure, or returns the path (relative or absolute) to the
dist file.