blob: 5121050e85909aab2bc5900774f7d58cbd2dfd1c (
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
|
// file : bpkg/pkg-disfigure.hxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#ifndef BPKG_PKG_DISFIGURE_HXX
#define BPKG_PKG_DISFIGURE_HXX
#include <bpkg/types.hxx>
#include <bpkg/forward.hxx> // transaction, selected_package
#include <bpkg/utility.hxx>
#include <bpkg/pkg-disfigure-options.hxx>
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>&,
bool clean,
bool simulate);
}
#endif // BPKG_PKG_DISFIGURE_HXX
|