genpac 0.1.0

Sandbox for Gentoo ebuild development using bubblewrap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2023 Gokul Das B
// SPDX-License-Identifier: GPL-3.0-or-later
//! Archive remapper
//!
//! This submodule converts Gentoo stage3 archive into a new archive that is ready to be extracted
//! and used as chroot. This new archive has all UIDs and GIDs remapped to the subuids and subgids
//! required by the sandboxing system.

use analysis::ArchiveEntity;
pub use cli::SubCmdArgs;

mod analysis;
mod cli;
mod convert;
mod headers;