eli-schwartz / aurpublish

PKGBUILD management framework for the Arch User Repository
GNU General Public License v2.0
246 stars 18 forks source link

[Enhancement] command to remove package #9

Closed LW-archlinux closed 4 years ago

LW-archlinux commented 4 years ago

When someone stops maintaining an aur package they should be able to remove it from the split repo used by aurpublish.

Maybe a command to do this could be added ? A possible invocation : aurpublish -rm PACKAGE

eli-schwartz commented 4 years ago

Why not just use git rm -r PACKAGE; git commit?

LW-archlinux commented 4 years ago

aurpublish description indicates it involves code to combine aur repos into one local repo on adding pacakges , then code to split the local repo into multiple repos for pushing .

Is aurpublish code able to deal with such manual changes to its local repo ?

eli-schwartz commented 4 years ago

Yes, removing files with git rm is perfectly fine, other packages aren't affected by those changes and will continue to be split out and pushed as expected. Each directory is split out separately, so removing a directory is likewise split out separately -- or would, if it was still there to be split out.