Skip to content

testing/*: delete abandoned packages

Hugo Barrera requested to merge WhyNotHugo/aports:prune-abandoned into master

Delete packages with no maintainer that have not been updated in the last 52 weeks.

This list of unmaintained packages with the their respective date of last update was generated with:

ag "Maintainer:\s*$" testing -l | while read FILE
do git log --pretty="%ad $FILE" --date=iso8601-strict -1 -- "$FILE"
done | sort > packages

Merge request reports