~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/library-remove-version

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 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-20050914112720-c66a21de86eafa6e
trim fai cribbage

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
 
for rev in $(tla library-revisions -f $1); do
13
 
  echo Removing $rev
14
 
  tla library-remove $rev
15
 
done
16
 
}
17
 
 
18
 
# one-liner description for aba help
19
 
cmd_desc()
20
 
{
21
 
    aba_desc $(basename $0) "Remove all library revisions for a given version"
22
 
}
23
 
 
24
 
# short help for aba command -h, --help
25
 
cmd_help()
26
 
{
27
 
    cat <<EOH
28
 
Remove all revisions for a given version from the revlib
29
 
usage: $abaname $(basename $0) version
30
 
 
31
 
This will remove all revisions for a given version from the library.  Its
32
 
reason for existence was to prevent the partial-mirror command from mirroring
33
 
old, uninteresting versions.
34
 
 
35
 
EOH
36
 
}
37
 
 
38
 
# extended help for aba command -H or aba help command
39
 
cmd_ext_help()
40
 
{
41
 
    cat <<EOH
42
 
EOH
43
 
}       
44
 
 
45
 
aba_run "$@"
46
 
#  arch-tag: library-remove-version by Aaron Bentley  (11:00 Apr 26 2004)