Init, adding corrade,magnum,magnum-plugins,magnum-integration,magnum-extras, and magnum-examples 2025.47_1
This commit is contained in:
167
etc/defaults.conf
Normal file
167
etc/defaults.conf
Normal file
@@ -0,0 +1,167 @@
|
||||
# --*-- shell --*--
|
||||
#
|
||||
# etc/defaults.conf
|
||||
# default configuration of etc/conf
|
||||
#
|
||||
# DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING UPDATES,
|
||||
# EDIT etc/conf INSTEAD.
|
||||
#
|
||||
# To disable an option comment it out, don't set it to another value i.e:
|
||||
# FOO=no -> wrong
|
||||
# #FOO=yes -> correct
|
||||
#
|
||||
# Please also use ${FOO} style for shell variables because some parsers
|
||||
# rely on this to work properly.
|
||||
#
|
||||
|
||||
# [OPTIONAL]
|
||||
# Use an alternative mirror for remote repositories. This is more
|
||||
# convenient than modifying etc/xbps.d/repos-remote*.conf.
|
||||
#
|
||||
#XBPS_MIRROR=https://repo-us.voidlinux.org/current
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable optional arguments to xbps-install(1) for the host system.
|
||||
# Currently used in the 'binary-bootstrap' and 'bootstrap-update' targets.
|
||||
#
|
||||
# NOTE: local repositories are handled automatically by xbps-src,
|
||||
# and remote repositories can be changed by setting XBPS_MIRROR
|
||||
#
|
||||
#XBPS_INSTALL_ARGS=""
|
||||
|
||||
# [OPTIONAL]
|
||||
# Native Compilation/Preprocessor flags for C/C++/Fortran. Additional settings
|
||||
# for the target architecture are also declared in common/build-profiles/<arch>.sh.
|
||||
#
|
||||
XBPS_CFLAGS="-O2 -pipe"
|
||||
XBPS_CXXFLAGS="${XBPS_CFLAGS}"
|
||||
XBPS_FFLAGS="${XBPS_CFLAGS}"
|
||||
|
||||
# [OPTIONAL]
|
||||
# Linker flags passed to the compiler.
|
||||
#
|
||||
#XBPS_LDFLAGS=""
|
||||
|
||||
# [REQUIRED]
|
||||
# Command to execute to gain root privileges when using the `update-sys`
|
||||
# target to update your system.
|
||||
#
|
||||
XBPS_SUCMD="sudo /bin/sh -c"
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable or disable ccache when building packages. The ccache directory
|
||||
# is stored in the hostdir, i.e hostdir/ccache. For go builds this enables
|
||||
# caching in hostdir/gocache.
|
||||
#
|
||||
#XBPS_CCACHE=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable or disable distcc when building packages. The distcc directory
|
||||
# is stored in the hostdir, i.e hostdir/distcc.
|
||||
#
|
||||
#XBPS_DISTCC=yes
|
||||
#XBPS_DISTCC_HOSTS=""
|
||||
|
||||
# [OPTIONAL]
|
||||
# Number of parallel jobs to execute when building packages that
|
||||
# use make(1) or alike commands. Defaults to the result of nproc(1).
|
||||
# If nproc(1) is not available, defaults to 1.
|
||||
#
|
||||
#XBPS_MAKEJOBS=4
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable recording git revisions in final binary packages; enable this
|
||||
# if you are sure the package you are building is available in the
|
||||
# void-packages git repository.
|
||||
#
|
||||
#XBPS_USE_GIT_REVS=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable running the (optional) do_check() function of a package.
|
||||
# When set to 'full', will enable further testing for some packages.
|
||||
#
|
||||
#XBPS_CHECK_PKGS=yes
|
||||
#XBPS_CHECK_PKGS=full
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable building -dbg subpackages with debugging symbols. Please note
|
||||
# that building with debugging symbols may take a long while in some
|
||||
# packages even on computers with a fast CPU; as well as needs lots of
|
||||
# RAM to properly build some packages.
|
||||
#
|
||||
#XBPS_DEBUG_PKGS=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Set the package compression format. See xbps-create(1) for available formats.
|
||||
#
|
||||
#XBPS_PKG_COMPTYPE=type
|
||||
|
||||
# [OPTIONAL]
|
||||
# Set the repository compression format. See xbps-rindex(1) for available formats.
|
||||
#
|
||||
#XBPS_REPO_COMPTYPE=type
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable or disable global package build options, these options apply
|
||||
# to all packages that support the matching options.
|
||||
#
|
||||
# To enable an option just define its option name; to disable an option
|
||||
# prefix it with ~. Options must be delimited by commas, i.e 'opt,~opt2,opt3,~opt4'
|
||||
#
|
||||
#XBPS_PKG_OPTIONS=opt,~opt2,opt3,~opt4
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable or disable package build options. Note that per package build options
|
||||
# override the global options defined above for the matching package.
|
||||
#
|
||||
#XBPS_PKG_OPTIONS_foo=opt,~opt2,opt3,~opt4
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable building package locally that are restricted legally for redistribution.
|
||||
# NOTE: you can't distribute the sources or binaries for such kind of packages.
|
||||
#
|
||||
#XBPS_ALLOW_RESTRICTED=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Set the preferred chroot style. Available styles at common/chroot-style/*.sh:
|
||||
#
|
||||
# - uunshare (uses xbps-uunshare(1), user namespaces)
|
||||
# - uchroot (uses xbps-uchroot(1), namespaces, setgid)
|
||||
# - bwrap (uses bwrap, external, does not need special permissions)
|
||||
# - ethereal (uses root, needs no permissions, for disposable containers)
|
||||
#
|
||||
# The order is already set as shown above, but can be overriden below.
|
||||
# Additional arguments to the chroot style can be passed in via XBPS_CHROOT_CMD_ARGS.
|
||||
#
|
||||
#XBPS_CHROOT_CMD=uchroot
|
||||
#XBPS_CHROOT_CMD_ARGS=""
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable to use the standard mtime of files. Otherwise it will be rewritten to
|
||||
# the HEAD commit time. Requires git when disabled.
|
||||
#
|
||||
#XBPS_USE_BUILD_MTIME=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Enable continuous integration specific mode of operation. Currently this
|
||||
# disables do_check for some packages.
|
||||
#
|
||||
#XBPS_BUILD_ENVIRONMENT=void-packages-ci
|
||||
|
||||
# [OPTIONAL]
|
||||
# When using the 'ethereal' chroot-style this switch must be activated, it is
|
||||
# meant as safeguard against users casually destroying their systems
|
||||
#
|
||||
#XBPS_ALLOW_CHROOT_BREAKOUT=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Skip building package if it exists in local repository, emitting warning.
|
||||
# When unset, newly build package overwrites the older one.
|
||||
#
|
||||
#XBPS_PRESERVE_PKGS=yes
|
||||
|
||||
# [OPTIONAL]
|
||||
# Show more detailed output in ./xbps-src update-check. Useful for debugging.
|
||||
# This can also be set or exported as a regular environment variable.
|
||||
#
|
||||
#XBPS_UPDATE_CHECK_VERBOSE=yes
|
||||
42
etc/defaults.virtual
Normal file
42
etc/defaults.virtual
Normal file
@@ -0,0 +1,42 @@
|
||||
# --*-- shell --*--
|
||||
#
|
||||
# etc/defaults.virtual
|
||||
# default configuration of etc/virtual
|
||||
#
|
||||
# DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING UPDATES,
|
||||
# EDIT etc/virtual INSTEAD.
|
||||
#
|
||||
# This file specifies a mapping between virtual packages and real packages
|
||||
# available in the source packages collection (srcpkgs).
|
||||
#
|
||||
# The format uses 2 arguments delimited by a blank: <vpkgname> <realpkgname>
|
||||
#
|
||||
# When building a package with "xbps-src", those dependencies declared like
|
||||
# "virtual?foo" will use the replacement package defined in `etc/virtual`.
|
||||
#
|
||||
# NOTE: this mapping is only there to be able to build a default package
|
||||
# to resolve the virtual package dependency later on with xbps-install(1).
|
||||
#
|
||||
# NOTE: Create your own etc/virtual file to override these defaults.
|
||||
|
||||
awk gawk
|
||||
emacs emacs
|
||||
java-environment openjdk8
|
||||
java-runtime openjdk8-jre
|
||||
libudev eudev-libudev
|
||||
lightdm-greeter base-chroot-cyclic-solver
|
||||
nodejs-runtime nodejs
|
||||
ntp-daemon chrony
|
||||
phonon-qt6-backend phonon-backend-vlc
|
||||
phonon-qt5-backend phonon-qt5-backend-gstreamer
|
||||
php-runtime php8.3
|
||||
pipewire-session-manager base-chroot-cyclic-solver
|
||||
rkt-stage1 rkt-stage1-coreos
|
||||
smtp-server opensmtpd
|
||||
tex texlive
|
||||
xserver-abi-input xorg-server
|
||||
xserver-abi-video xorg-server
|
||||
libGL libglvnd
|
||||
libEGL libglvnd
|
||||
libGLES libglvnd
|
||||
hunspell-en_GB hunspell-en_GB-all
|
||||
5
etc/xbps.d/repos-local-x86_64-multilib.conf
Normal file
5
etc/xbps.d/repos-local-x86_64-multilib.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
# DON'T EDIT THIS FILE
|
||||
# x86_64/glibc local repositories
|
||||
repository=/host/binpkgs/multilib/bootstrap
|
||||
repository=/host/binpkgs/multilib
|
||||
repository=/host/binpkgs/multilib/nonfree
|
||||
6
etc/xbps.d/repos-local.conf
Normal file
6
etc/xbps.d/repos-local.conf
Normal file
@@ -0,0 +1,6 @@
|
||||
# DON'T EDIT THIS FILE
|
||||
# Local repositories
|
||||
repository=/host/binpkgs/bootstrap
|
||||
repository=/host/binpkgs
|
||||
repository=/host/binpkgs/nonfree
|
||||
repository=/host/binpkgs/debug
|
||||
5
etc/xbps.d/repos-remote-aarch64-musl.conf
Normal file
5
etc/xbps.d/repos-remote-aarch64-musl.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
# aarch64 voidlinux remote repositories
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/bootstrap
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/nonfree
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/debug
|
||||
5
etc/xbps.d/repos-remote-aarch64.conf
Normal file
5
etc/xbps.d/repos-remote-aarch64.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
# aarch64 voidlinux remote repositories
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/bootstrap
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/nonfree
|
||||
repository=https://repo-default.voidlinux.org/current/aarch64/debug
|
||||
5
etc/xbps.d/repos-remote-musl.conf
Normal file
5
etc/xbps.d/repos-remote-musl.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
# voidlinux remote repositories (musl)
|
||||
repository=https://repo-default.voidlinux.org/current/musl/bootstrap
|
||||
repository=https://repo-default.voidlinux.org/current/musl
|
||||
repository=https://repo-default.voidlinux.org/current/musl/nonfree
|
||||
repository=https://repo-default.voidlinux.org/current/musl/debug
|
||||
4
etc/xbps.d/repos-remote-x86_64-multilib.conf
Normal file
4
etc/xbps.d/repos-remote-x86_64-multilib.conf
Normal file
@@ -0,0 +1,4 @@
|
||||
# voidlinux remote repositories (x86_64/glibc)
|
||||
repository=https://repo-default.voidlinux.org/current/multilib/bootstrap
|
||||
repository=https://repo-default.voidlinux.org/current/multilib
|
||||
repository=https://repo-default.voidlinux.org/current/multilib/nonfree
|
||||
5
etc/xbps.d/repos-remote.conf
Normal file
5
etc/xbps.d/repos-remote.conf
Normal file
@@ -0,0 +1,5 @@
|
||||
# voidlinux remote repositories (glibc)
|
||||
repository=https://repo-default.voidlinux.org/current/bootstrap
|
||||
repository=https://repo-default.voidlinux.org/current
|
||||
repository=https://repo-default.voidlinux.org/current/nonfree
|
||||
repository=https://repo-default.voidlinux.org/current/debug
|
||||
Reference in New Issue
Block a user