* @return the deserialized package
* @throws IOException
* @throws ParseException
*/
public static RepositoryPackage fromPackageRepository(File input) throws IOException, ParseException {
PackageRepository repo = new PackageRepository(input);
return repo.getPackage();
}