~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/packages

  • Committer: Robert Collins
  • Date: 2005-09-13 15:11:39 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050913151139-9ac920fc9d7bda31
TODOification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
## Copyright (C) 2004 Aaron Bentley
 
3
##
 
4
## See the file "COPYING" for further information about
 
5
## the copyright and warranty status of this work.
 
6
 
 
7
. "$abadir/aba-lib"
 
8
 
 
9
# executes the command ($* are the arguments after the command name)
 
10
cmd_exec()
 
11
{
 
12
  options="library full"
 
13
  . "$abadir/getopt"
 
14
  if [ -n "$library" ]; then
 
15
    catcmd="library-categories"
 
16
    branchcmd="library-branches"
 
17
  else
 
18
    catcmd="categories"
 
19
    branchcmd="branches"
 
20
  fi
 
21
  if [ -n "$1" ]; then
 
22
    archive="$1/";
 
23
  else
 
24
    archive="";
 
25
  fi
 
26
  if [ -n "$full" ]; then
 
27
    prefix="$archive"
 
28
  fi
 
29
  for cat in `tla $catcmd $1`; do
 
30
    for package in $(tla $branchcmd $archive$cat); do
 
31
      echo $prefix$package
 
32
    done;
 
33
  done;
 
34
}
 
35
 
 
36
# one-liner description for aba help
 
37
cmd_desc()
 
38
{
 
39
   aba_desc packages Lists all packages in the current archive 
 
40
}
 
41
 
 
42
# short help for aba command -h, --help
 
43
cmd_help()
 
44
{
 
45
   cat <<EOT
 
46
usage: aba packages [archive]
 
47
 
 
48
  --library         search revision libraries instead of archives
 
49
  --full            show the full category name
 
50
 
 
51
List all the packages in the given archive.  If no archive is given, uses the
 
52
default archive.
 
53
 
 
54
EOT
 
55
}
 
56
 
 
57
# extended help for aba command -H or aba help command
 
58
cmd_ext_help()
 
59
{
 
60
   echo -n
 
61
}       
 
62
 
 
63
aba_run "$@"
 
64
# arch-tag: packages by Aaron Bentley  (09:15 Feb 10 2004)