aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-purge.cli
blob: f4ae2eb129f3966578622d9fa627a4bbd72fd527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// file      : bpkg/pkg-purge.cli
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

include <bpkg/configuration.cli>;

"\section=1"
"\name=bpkg-pkg-purge"
"\summary=purge package"

namespace bpkg
{
  {
    "<options> <pkg>",

    "\h|SYNOPSIS|

     \c{\b{bpkg pkg-purge} [<options>] <pkg>}

     \h|DESCRIPTION|

     The \cb{pkg-purge} command removes the package directory and archive from
     the filesystem and removes the package from the configuration.  Only
     packages in the \cb{fetched} and \cb{unpacked} state
     (\l{bpkg-pkg-status(1)}) can be purged plus \cb{broken} packages if the
     \cb{--force|-f} option is specified (see the option's description for
     details on purging broken packages). If the \cb{--keep|-k} option is
     specified, then the package archive is not removed (see the option's
     description for details on this mode)."
  }

  class pkg_purge_options: configuration_options
  {
    "\h|PKG-PURGE OPTIONS|"

    bool --keep|-k
    {
      "Keep the package archive. Note that in this mode the package is still
       retained in the configuration's database in the \cb{fetched} state."
    }

    bool --force|-f
    {
      "Purge a broken package. In this mode \cb{bpkg} will verify that the
       package directory and archive no longer exist and then remove the
       package from the configuration."
    }
  };
}