facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
22 lines
780 B
Plaintext
22 lines
780 B
Plaintext
#compdef dupload
|
|
|
|
if (( ! $+_dupload_sites )); then
|
|
_dupload_sites=(
|
|
$(grep -hs "^\$cfg" /etc/dupload.conf ~/.dupload.conf | sed 's/^\$cfg{\([^}]*\)}.*$/\1/')
|
|
)
|
|
fi
|
|
|
|
_arguments \
|
|
'--to:nickname[nickname of target site]:('"$_dupload_sites"')' \
|
|
'(-d --debug)'{-d,--debug}'[ftp verbosity]:debuglevel:' \
|
|
'(-f --force)'{-f,--force}'[upload ignoring logs]' \
|
|
'(-k --keep)'{-k,--keep}'[keep going, skip broken]' \
|
|
'--no[dry run]' \
|
|
'--nomail[suppress announcement]' \
|
|
'--mailonly[dry run and real announcement]' \
|
|
'--noarchive[add anti-archival header]' \
|
|
'(-p --print)'{-p,--print}'[print config legibly]' \
|
|
'(-q --quiet)'{-q,--quiet}'[quiet]' \
|
|
'(-V --Version)'{-V,--Version}'[display version information]' \
|
|
'*:changes file:_files -g "*.changes(-.)"'
|