mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-06-26 18:25:36 -04:00
distro: refactor into multiple files, packages: factor out distro.Pkgbuild class
This commit is contained in:
parent
7359b447e7
commit
0c3592065c
7 changed files with 196 additions and 145 deletions
|
@ -5,14 +5,14 @@ import os
|
|||
import atexit
|
||||
from glob import glob
|
||||
from shutil import rmtree
|
||||
from shlex import quote as shell_quote
|
||||
|
||||
from config import config
|
||||
from distro import get_base_distro, get_kupfer_local, RepoInfo
|
||||
from shlex import quote as shell_quote
|
||||
from utils import mount, umount, check_findmnt, log_or_exception
|
||||
from distro.distro import get_base_distro, get_kupfer_local, RepoInfo
|
||||
from wrapper import enforce_wrap
|
||||
from constants import Arch, GCC_HOSTSPECS, CROSSDIRECT_PKGS, BASE_PACKAGES, CHROOT_PATHS
|
||||
from generator import generate_makepkg_conf
|
||||
from utils import mount, umount, check_findmnt, log_or_exception
|
||||
|
||||
BIND_BUILD_DIRS = 'BINDBUILDDIRS'
|
||||
BASE_CHROOT_PREFIX = 'base_'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue