aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-purge
blob: 0c88e19f9c01d244a1d92fbb776cb6c58fef1cef (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
// file      : bpkg/pkg-purge -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BPKG_PKG_PURGE
#define BPKG_PKG_PURGE

#include <bpkg/types>
#include <bpkg/forward> // transaction, selected_package
#include <bpkg/pkg-purge-options>

namespace bpkg
{
  void
  pkg_purge (const pkg_purge_options&, cli::scanner& args);

  // Remove package's filesystem objects (the source directory and, if
  // the archive argument is true, the package archive). If this fails,
  // set the package state to broken, commit the transaction, and fail.
  //
  void
  pkg_purge_fs (const dir_path& configuration,
                transaction&,
                const shared_ptr<selected_package>&,
                bool archive = true);
}

#endif // BPKG_PKG_PURGE