Skip to content

Commit

Permalink
Remove contents from cleanup in upgrade set
Browse files Browse the repository at this point in the history
This was intended behaviour in 0.2.0, but I forgot to do it :/

changelog: omit blacklisted packages and other cleaned packages from upgrade set
  • Loading branch information
kentfredric committed Feb 9, 2017
1 parent f323ccd commit 81ff482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
0.2.1 2017-02-09/14
- omit blacklisted packages and other cleaned packages from upgrade set

0.2.0 2017-02-08/10
- @perl-cleanup now includes ancient cruft treecleaned virtuals
Expand Down
2 changes: 1 addition & 1 deletion libexec/gen-upgrade-sets
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ einfo "Generating ${upgrade}"
dorun installed-deps-perl-subslot-rebuild "${destsubslot}" | grep -v '^perl-core/' ||\
die "No packages detected needing recompilation against ${perl_target}, perhaps you've already upgraded to it?"
dorun installed-perl-virtuals
) | sort -u >"${upgrade}" || die "Error generating rebuild list"
) | grep -vxFf "${cleanup}" | sort -u >"${upgrade}" || die "Error generating rebuild list"

einfo "... Done ${upgrade}"

Expand Down

0 comments on commit 81ff482

Please sign in to comment.