mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 13:45:45 -05:00
with check_space=True, build chroots fail to pacman -S anything, because their rootfs is not a mountpoint, hence pacman's space calculations will fail and return not enough free space. We do want these space checks when pacstrapping device rootfilesystems though.
264 lines
9.5 KiB
Python
264 lines
9.5 KiB
Python
from constants import Arch, GCC_HOSTSPECS, CFLAGS_GENERAL, CFLAGS_ARCHES, COMPILE_ARCHES, CHROOT_PATHS
|
|
from config import config
|
|
|
|
|
|
def generate_makepkg_conf(arch: Arch, cross: bool = False, chroot: str = None) -> str:
|
|
"""
|
|
Generate a makepkg.conf. For use with crosscompiling, specify `cross=True` and pass as `chroot`
|
|
the relative path inside the native chroot where the foreign chroot will be mounted.
|
|
"""
|
|
hostspec = GCC_HOSTSPECS[config.runtime['arch'] if cross else arch][arch]
|
|
cflags = CFLAGS_ARCHES[arch] + CFLAGS_GENERAL
|
|
if cross and not chroot:
|
|
raise Exception('Cross-compile makepkg conf requested but no chroot path given: "{chroot}"')
|
|
conf = f'''
|
|
#!/hint/bash
|
|
#
|
|
# /etc/makepkg.conf
|
|
#
|
|
|
|
#########################################################################
|
|
# SOURCE ACQUISITION
|
|
#########################################################################
|
|
#
|
|
#-- The download utilities that makepkg should use to acquire sources
|
|
# Format: 'protocol::agent'
|
|
DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u'
|
|
'ftp::/usr/bin/curl -qgfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
|
|
'http::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
|
'https::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
|
|
'rsync::/usr/bin/rsync --no-motd -z %u %o'
|
|
'scp::/usr/bin/scp -C %u %o')
|
|
|
|
# Other common tools:
|
|
# /usr/bin/snarf
|
|
# /usr/bin/lftpget -c
|
|
# /usr/bin/wget
|
|
|
|
#-- The package required by makepkg to download VCS sources
|
|
# Format: 'protocol::package'
|
|
VCSCLIENTS=('bzr::bzr'
|
|
'fossil::fossil'
|
|
'git::git'
|
|
'hg::mercurial'
|
|
'svn::subversion')
|
|
|
|
#########################################################################
|
|
# ARCHITECTURE, COMPILE FLAGS
|
|
#########################################################################
|
|
#
|
|
CARCH="{arch}"
|
|
CHOST="{hostspec}"
|
|
|
|
#-- Compiler and Linker Flags
|
|
# -march (or -mcpu) builds exclusively for an architecture
|
|
# -mtune optimizes for an architecture, but builds for whole processor family
|
|
CPPFLAGS=""
|
|
CFLAGS="{' '.join(cflags)}"
|
|
CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"
|
|
LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now"
|
|
#RUSTFLAGS="-C opt-level=2"
|
|
#-- Make Flags: change this for DistCC/SMP systems
|
|
#MAKEFLAGS="-j2"
|
|
#-- Debugging flags
|
|
DEBUG_CFLAGS="-g -fvar-tracking-assignments"
|
|
DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
|
|
#DEBUG_RUSTFLAGS="-C debuginfo=2"
|
|
|
|
#########################################################################
|
|
# BUILD ENVIRONMENT
|
|
#########################################################################
|
|
#
|
|
# Makepkg defaults: BUILDENV=(!distcc !color !ccache !check !sign)
|
|
# A negated environment option will do the opposite of the comments below.
|
|
#
|
|
#-- distcc: Use the Distributed C/C++/ObjC compiler
|
|
#-- color: Colorize output messages
|
|
#-- ccache: Use ccache to cache compilation
|
|
#-- check: Run the check() function if present in the PKGBUILD
|
|
#-- sign: Generate PGP signature file
|
|
#
|
|
BUILDENV=(!distcc color !ccache !check !sign)
|
|
#
|
|
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
|
|
#-- specify a space-delimited list of hosts running in the DistCC cluster.
|
|
#DISTCC_HOSTS=""
|
|
#
|
|
#-- Specify a directory for package building.
|
|
#BUILDDIR=/tmp/makepkg
|
|
|
|
#########################################################################
|
|
# GLOBAL PACKAGE OPTIONS
|
|
# These are default values for the options=() settings
|
|
#########################################################################
|
|
#
|
|
# Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto)
|
|
# A negated option will do the opposite of the comments below.
|
|
#
|
|
#-- strip: Strip symbols from binaries/libraries
|
|
#-- docs: Save doc directories specified by DOC_DIRS
|
|
#-- libtool: Leave libtool (.la) files in packages
|
|
#-- staticlibs: Leave static library (.a) files in packages
|
|
#-- emptydirs: Leave empty directories in packages
|
|
#-- zipman: Compress manual (man and info) pages in MAN_DIRS with gzip
|
|
#-- purge: Remove files specified by PURGE_TARGETS
|
|
#-- debug: Add debugging flags as specified in DEBUG_* variables
|
|
#-- lto: Add compile flags for building with link time optimization
|
|
#
|
|
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug !lto)
|
|
|
|
#-- File integrity checks to use. Valid: md5, sha1, sha224, sha256, sha384, sha512, b2
|
|
INTEGRITY_CHECK=(sha256)
|
|
#-- Options to be used when stripping binaries. See `man strip' for details.
|
|
STRIP_BINARIES="--strip-all"
|
|
#-- Options to be used when stripping shared libraries. See `man strip' for details.
|
|
STRIP_SHARED="--strip-unneeded"
|
|
#-- Options to be used when stripping static libraries. See `man strip' for details.
|
|
STRIP_STATIC="--strip-debug"
|
|
#-- Manual (man and info) directories to compress (if zipman is specified)
|
|
MAN_DIRS=({'{usr{,/local}{,/share},opt/*}/{man,info}'})
|
|
#-- Doc directories to remove (if !docs is specified)
|
|
DOC_DIRS=({'usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc}'})
|
|
#-- Files to be removed from all packages (if purge is specified)
|
|
PURGE_TARGETS=({'usr/{,share}/info/dir .packlist *.pod'})
|
|
#-- Directory to store source code in for debug packages
|
|
DBGSRCDIR="/usr/src/debug"
|
|
|
|
#########################################################################
|
|
# PACKAGE OUTPUT
|
|
#########################################################################
|
|
#
|
|
# Default: put built package and cached source in build directory
|
|
#
|
|
#-- Destination: specify a fixed directory where all packages will be placed
|
|
#PKGDEST=/home/packages
|
|
#-- Source cache: specify a fixed directory where source files will be cached
|
|
#SRCDEST=/home/sources
|
|
#-- Source packages: specify a fixed directory where all src packages will be placed
|
|
#SRCPKGDEST=/home/srcpackages
|
|
#-- Log files: specify a fixed directory where all log files will be placed
|
|
#LOGDEST=/home/makepkglogs
|
|
#-- Packager: name/email of the person or organization building packages
|
|
#PACKAGER="John Doe <john@doe.com>"
|
|
#-- Specify a key to use for package signing
|
|
#GPGKEY=""
|
|
|
|
#########################################################################
|
|
# COMPRESSION DEFAULTS
|
|
#########################################################################
|
|
#
|
|
COMPRESSGZ=(gzip -c -f -n)
|
|
COMPRESSBZ2=(bzip2 -c -f)
|
|
COMPRESSXZ=(xz -T0 -c -z -)
|
|
COMPRESSZST=(zstd -c -z -q -)
|
|
COMPRESSLRZ=(lrzip -q)
|
|
COMPRESSLZO=(lzop -q)
|
|
COMPRESSZ=(compress -c -f)
|
|
COMPRESSLZ4=(lz4 -q)
|
|
COMPRESSLZ=(lzip -c -f)
|
|
|
|
#########################################################################
|
|
# EXTENSION DEFAULTS
|
|
#########################################################################
|
|
#
|
|
PKGEXT='.pkg.tar.xz'
|
|
SRCEXT='.src.tar.gz'
|
|
|
|
#########################################################################
|
|
# OTHER
|
|
#########################################################################
|
|
#
|
|
#-- Command used to run pacman as root, instead of trying sudo and su
|
|
#PACMAN_AUTH=()
|
|
'''
|
|
if cross:
|
|
chroot = chroot.strip('/')
|
|
includes = f'-I/usr/{hostspec}/usr/include -I/{chroot}/usr/include'
|
|
libs = f'-L/usr/{hostspec}/lib -L/{chroot}/usr/lib'
|
|
conf += f'''
|
|
|
|
export ARCH="{COMPILE_ARCHES[arch]}"
|
|
export CROSS_COMPILE="{hostspec}-"
|
|
export CC="{hostspec}-gcc {includes} {libs}"
|
|
export CXX="{hostspec}-g++ {includes} {libs}"
|
|
export CFLAGS="$CFLAGS {includes}"
|
|
export CXXFLAGS="$CXXFLAGS {includes}"
|
|
export LDFLAGS="$LDFLAGS,-L/usr/{hostspec}/lib,-L/{chroot}/usr/lib,-rpath-link,/usr/{hostspec}/lib,-rpath-link,/{chroot}/usr/lib"
|
|
'''
|
|
|
|
return conf
|
|
|
|
|
|
def generate_pacman_conf_body(
|
|
arch: Arch,
|
|
check_space: bool = True,
|
|
):
|
|
return f'''
|
|
#
|
|
# /etc/pacman.conf
|
|
#
|
|
# See the pacman.conf(5) manpage for option and repository directives
|
|
|
|
#
|
|
# GENERAL OPTIONS
|
|
#
|
|
[options]
|
|
# The following paths are commented out with their default values listed.
|
|
# If you wish to use different paths, uncomment and update the paths.
|
|
#RootDir = /
|
|
#DBPath = /var/lib/pacman/
|
|
CacheDir = {CHROOT_PATHS['pacman']}/{arch}
|
|
#LogFile = /var/log/pacman.log
|
|
#GPGDir = /etc/pacman.d/gnupg/
|
|
#HookDir = /etc/pacman.d/hooks/
|
|
HoldPkg = pacman glibc
|
|
#XferCommand = /usr/bin/curl -L -C - -f -o %o %u
|
|
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
|
|
#CleanMethod = KeepInstalled
|
|
Architecture = {arch}
|
|
|
|
# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
|
|
#IgnorePkg =
|
|
#IgnoreGroup =
|
|
|
|
#NoUpgrade =
|
|
#NoExtract =
|
|
|
|
# Misc options
|
|
#UseSyslog
|
|
Color
|
|
#NoProgressBar
|
|
{'' if check_space else '#'}CheckSpace
|
|
VerbosePkgLists
|
|
ParallelDownloads = {config.file['pacman']['parallel_downloads']}
|
|
|
|
# By default, pacman accepts packages signed by keys that its local keyring
|
|
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
|
SigLevel = Required DatabaseOptional
|
|
LocalFileSigLevel = Optional
|
|
#RemoteFileSigLevel = Required
|
|
|
|
# NOTE: You must run `pacman-key --init` before first using pacman; the local
|
|
# keyring can then be populated with the keys of all official Arch Linux ARM
|
|
# packagers with `pacman-key --populate archlinuxarm`.
|
|
|
|
#
|
|
# REPOSITORIES
|
|
# - can be defined here or included from another file
|
|
# - pacman will search repositories in the order defined here
|
|
# - local/custom mirrors can be added here or in separate files
|
|
# - repositories listed first will take precedence when packages
|
|
# have identical names, regardless of version number
|
|
# - URLs will have $repo replaced by the name of the current repo
|
|
# - URLs will have $arch replaced by the name of the architecture
|
|
#
|
|
# Repository entries are of the format:
|
|
# [repo-name]
|
|
# Server = ServerName
|
|
# Include = IncludePath
|
|
#
|
|
# The header [repo-name] is crucial - it must be present and
|
|
# uncommented to enable the repo.
|
|
#
|
|
|
|
'''
|