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

#ifndef BPKG_PKG_DISFIGURE
#define BPKG_PKG_DISFIGURE

#include <bpkg/types>
#include <bpkg/forward> // transaction, selected_package
#include <bpkg/utility>

#include <bpkg/pkg-disfigure-options>

namespace bpkg
{
  int
  pkg_disfigure (const pkg_disfigure_options&, cli::scanner& args);

  // Disfigure the package, update its state, and commit the
  // transaction. If the package state is broken, then this
  // is taken to mean it hasn't been successfully configured
  // and no clean prior to disfigure is necessary (or possible,
  // for that matter).
  //
  void
  pkg_disfigure (const dir_path& configuration,
                 const common_options&,
                 transaction&,
                 const shared_ptr<selected_package>&);
}

#endif // BPKG_PKG_DISFIGURE