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
1.2 KiB
Plaintext
22 lines
1.2 KiB
Plaintext
#compdef debcheckout
|
|
|
|
# The helpstrings use the term 'checkout' (rather than 'clone' or 'branch' or
|
|
# 'fork') to be consistent with the name of the tool.
|
|
|
|
local -a args=(
|
|
'(-a --auth)'{-a,--auth}'[rewrite anonymous checkout URLs to authenticated ones]'
|
|
'(-p --print -d --details)'{-d,--details}'[print detailed information; do not checkout]'
|
|
'(-h --help)'{-h,--help}'[show usage message]'
|
|
'(-p --print -d --details)'{-p,--print}'[print summary information; do not checkout]'
|
|
'(-P --package)'{-P+,--package=}'[specify package name explicitly (when target is a URL)]:package name:_deb_packages available'
|
|
'(-t --type)'{-t+,--type=}'[specify repository type]:repository type:((arch\:Arch bzr\:Bazaar cvs\:CVS darcs\:Darcs git\:Git hg\:Mercurial svn\:Subversion))'
|
|
'(-u --username)'{-u+,--username=}'[specify username (implies --auth)]:username: '
|
|
\*{-f+,--file=}'[extract named file]:remote filename'
|
|
'--source=:policy for .orig.tar.gz file:(never auto download-only always)'
|
|
'--git-track=[specify branches to track]:branches (separated by spaces) or '\'\*\'
|
|
'1:package or URL: _alternative "_deb_packages available" "_urls"'
|
|
'2::destination directory:_path_files -/'
|
|
)
|
|
|
|
_arguments -s -S : "$args[@]"
|