summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Dreyer <ktdreyer@ktdreyer.com>2012-08-26 16:09:47 -0600
committerKen Dreyer <ktdreyer@ktdreyer.com>2012-08-26 16:09:47 -0600
commit5d8c9e67f035877bacf7e45ddf491ebba1426e3a (patch)
tree5624891a51e6e73866e10b4c7c8045a33818352a
parent0d075c13ae026b394719cfa30767153e1feae6c5 (diff)
downloadrpmfusion-tools-5d8c9e67f035877bacf7e45ddf491ebba1426e3a.tar.gz
rpmfusion-tools-5d8c9e67f035877bacf7e45ddf491ebba1426e3a.tar.xz
rpmfusion-tools-5d8c9e67f035877bacf7e45ddf491ebba1426e3a.zip
skip more broken packages
And provide more details regarding packages that we already skip.
-rwxr-xr-xcvstogit72
1 files changed, 67 insertions, 5 deletions
diff --git a/cvstogit b/cvstogit
index 4488bc3..50c2726 100755
--- a/cvstogit
+++ b/cvstogit
@@ -244,17 +244,79 @@ do_repotree() {
# Skip these packages.
case $package in
'gsview')
- # Listed in owners.list, but does not exist in CVS.
- continue
+ # Listed in free owners.list, but exists in nonfree CVS.
+ # https://bugzilla.rpmfusion.org/2456
+ if [[ $repo == 'free' ]]; then
+ continue
+ fi
;;
'plus4emu')
- # Listed in owners.list, but does not exist in CVS.
- continue
+ # Listed in both free and nonfree owners.list.
+ # Needs to be removed from free owners.list.
+ # https://bugzilla.rpmfusion.org/2457
+ if [[ $repo == 'free' ]]; then
+ continue
+ fi
;;
'proas')
- # Listed in owners.list, but does not exist in CVS.
+ # Listed in both free and nonfree owners.list.
+ # Needs to be removed from free owners.list.
+ # https://bugzilla.rpmfusion.org/2458
+ if [[ $repo == 'free' ]]; then
+ continue
+ fi
+ ;;
+ 'roadfighter')
+ # Listed in free owners.list, but exists in nonfree CVS.
+ # Needs to be removed from free owners.list, and added to nonfree list.
+ # https://bugzilla.rpmfusion.org/2459
+ if [[ $repo == 'free' ]]; then
+ continue
+ fi
+ ;;
+ 'spek')
+ # Present in CVS, but cannot do a checkout.
+ # https://lists.rpmfusion.org/pipermail/rpmfusion-developers/2012-August/013389.html
continue
;;
+ 'vlc-phonon-backend')
+ # Invalid CVS module. "phonon-backend-vlc" is the correct one.
+ #https://bugzilla.rpmfusion.org/show_bug.cgi?id=1309#c20
+ continue
+ ;;
+ 'xmms-aac')
+ # Listed in free owners.list, but does not exist in CVS.
+ # I emailed Orcan, and he said he cannot remember this one.
+ # Perhaps it was orphaned and retired long ago.
+ continue
+ ;;
+ 'xvid4conf')
+ # Present in CVS, but cannot do a checkout.
+ # (Similar symptoms to "spek".)
+ continue
+ ;;
+ 'xvidcore')
+ # Present in CVS, but cannot do a checkout.
+ # (Similar symptoms to "spek".)
+ continue
+ ;;
+ 'slmodem')
+ # Present in nonfree CVS, but cannot do a checkout.
+ # (Similar symptoms to "spek".)
+ continue
+ ;;
+ 'slmodem-kmod')
+ # Present in nonfree CVS, but cannot do a checkout.
+ # (Similar symptoms to "spek".)
+ continue
+ ;;
+ 'vboxgtk')
+ # Listed in nonfree owners.list, but does not exist in nonfree CVS.
+ # Need to remove this from nonfree owners.list, and add to free list.
+ if [[ $repo == 'nonfree' ]]; then
+ continue
+ fi
+ ;;
esac
git_cvsimport $repo $package