Software apply(Software software) {
SoftwareBuilder result = software.toBuilder();
// Add all the new packages
for (String pkg : packages) {
result.addPackage(pkg);
}
// Add all the new files
for (FileEntry entry : files) {
result.file(entry.getSource(), entry.getDestination());