forked from artix/artools
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
3f90082cc1 | |||
915db85b7d | |||
a5a29259e5 | |||
c5f8bc7e20 | |||
11dd9be3f1 |
@@ -221,6 +221,8 @@ display_settings(){
|
|||||||
|
|
||||||
msg "ISO SETTINGS:"
|
msg "ISO SETTINGS:"
|
||||||
msg2 "ISO_VERSION: %s" "${ISO_VERSION}"
|
msg2 "ISO_VERSION: %s" "${ISO_VERSION}"
|
||||||
|
msg2 "COMPRESSION: %s" "${COMPRESSION}"
|
||||||
|
[[ "${COMPRESSION}" == 'zstd' ]] && msg2 "COMPRESSION_LEVEL: %s" "${COMPRESSION_LEVEL}"
|
||||||
|
|
||||||
msg "BUILD:"
|
msg "BUILD:"
|
||||||
show_profile
|
show_profile
|
||||||
|
@@ -117,6 +117,7 @@ patch_pkg(){
|
|||||||
local pkgpath="$1"
|
local pkgpath="$1"
|
||||||
local pkg=${pkgpath%/*}
|
local pkg=${pkgpath%/*}
|
||||||
pkg=${pkg##*/}
|
pkg=${pkg##*/}
|
||||||
|
sed -e 's|arch-meson|artix-meson|' -i "$pkgpath"/PKGBUILD
|
||||||
case $pkg in
|
case $pkg in
|
||||||
glibc)
|
glibc)
|
||||||
msg2 "Patching %s" "$pkg"
|
msg2 "Patching %s" "$pkg"
|
||||||
|
@@ -86,14 +86,12 @@ check_rebuild(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
check_team(){
|
check_team(){
|
||||||
if [[ "${repo_src}" == "${valid_names[0]}" \
|
if [[ "${repo_src}" == "${valid_names[0]}" && "${repo_dest}" == "${valid_names[1]}" ]] || \
|
||||||
&& "${repo_dest}" == "${valid_names[1]}" ]] || \
|
[[ "${repo_src}" == "${valid_names[1]}" && "${repo_dest}" == "${valid_names[0]}" ]] || \
|
||||||
[[ "${repo_src}" == "${valid_names[1]}" \
|
[[ "${repo_src}" == "${valid_names[1]}" && "${repo_dest}" == "${valid_names[2]}" ]] || \
|
||||||
&& "${repo_dest}" == "${valid_names[0]}" ]] || \
|
[[ "${repo_src}" == "${valid_names[2]}" && "${repo_dest}" == "${valid_names[1]}" ]] || \
|
||||||
[[ "${repo_src}" == "${valid_names[1]}" \
|
[[ "${repo_src}" == "${valid_names[0]}" && "${repo_dest}" == "${valid_names[2]}" ]] || \
|
||||||
&& "${repo_dest}" == "${valid_names[2]}" ]] || \
|
[[ "${repo_src}" == "${valid_names[2]}" && "${repo_dest}" == "${valid_names[0]}" ]]; then
|
||||||
[[ "${repo_src}" == "${valid_names[2]}" \
|
|
||||||
&& "${repo_dest}" == "${valid_names[1]}" ]] ;then
|
|
||||||
|
|
||||||
local org gitname
|
local org gitname
|
||||||
org=$(get_pkg_org "${package}")
|
org=$(get_pkg_org "${package}")
|
||||||
|
@@ -14,7 +14,8 @@
|
|||||||
# gpg key; leave empty or commented to skip img signing
|
# gpg key; leave empty or commented to skip img signing
|
||||||
# GPG_KEY=""
|
# GPG_KEY=""
|
||||||
|
|
||||||
# mksquashfs compression
|
# possible values: zstd (default), xz
|
||||||
# default: zstd <compression-level> should be 1 .. 22 (default 15)
|
# COMPRESSION="zstd"
|
||||||
# optional xz args: COMPRESSION_ARGS=(-comp xz -Xbcj x86)
|
|
||||||
#COMPRESSION_ARGS=(-comp zstd -Xcompression-level 22)
|
# zstd only: range 1..22
|
||||||
|
# COMPRESSION_LEVEL=15
|
||||||
|
@@ -10,11 +10,11 @@
|
|||||||
# customize buildtree; uncomment to include
|
# customize buildtree; uncomment to include
|
||||||
# TREE_NAMES_ARTIX=(
|
# TREE_NAMES_ARTIX=(
|
||||||
# packages-kernel
|
# packages-kernel
|
||||||
|
# packages-llvm
|
||||||
# packages-openrc
|
# packages-openrc
|
||||||
# packages-runit
|
# packages-runit
|
||||||
# packages-s6
|
# packages-s6
|
||||||
# packages-suite66
|
# packages-suite66
|
||||||
# python-world
|
|
||||||
# packages-perl
|
# packages-perl
|
||||||
# packages-java
|
# packages-java
|
||||||
# packages-ruby
|
# packages-ruby
|
||||||
@@ -28,12 +28,13 @@
|
|||||||
# packages-xfce
|
# packages-xfce
|
||||||
# packages-wm
|
# packages-wm
|
||||||
# packages-devel
|
# packages-devel
|
||||||
# packages-lib32
|
|
||||||
# packages-qt6
|
# packages-qt6
|
||||||
# packages-office
|
# packages-office
|
||||||
# packages-misc
|
# packages-misc
|
||||||
# packages-python
|
# python-world
|
||||||
# python-galaxy
|
# python-galaxy
|
||||||
|
# packages-python
|
||||||
|
# packages-lib32
|
||||||
# )
|
# )
|
||||||
|
|
||||||
# TREE_DIR_ARCH=${WORKSPACE_DIR}/archlinux
|
# TREE_DIR_ARCH=${WORKSPACE_DIR}/archlinux
|
||||||
|
@@ -67,7 +67,7 @@ make_sfs() {
|
|||||||
|
|
||||||
mksfs_args+=("${sfs_out}")
|
mksfs_args+=("${sfs_out}")
|
||||||
|
|
||||||
mksfs_args+=("${COMPRESSION_ARGS[@]}" -noappend)
|
mksfs_args+=(-comp "${COMPRESSION}" "${COMPRESSION_ARGS[@]}" -noappend)
|
||||||
|
|
||||||
mksquashfs "${mksfs_args[@]}"
|
mksquashfs "${mksfs_args[@]}"
|
||||||
|
|
||||||
|
@@ -5,32 +5,31 @@
|
|||||||
msg_table_header(){
|
msg_table_header(){
|
||||||
local mesg=$1; shift
|
local mesg=$1; shift
|
||||||
# shellcheck disable=2059
|
# shellcheck disable=2059
|
||||||
printf "${BLUE} ${mesg} ${ALL_OFF}\n" "$@" >&2
|
printf "${BLUE} ${mesg} ${ALL_OFF}\n" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_row_yellow(){
|
msg_row_yellow(){
|
||||||
local mesg=$1; shift
|
local mesg=$1; shift
|
||||||
# shellcheck disable=2059
|
# shellcheck disable=2059
|
||||||
printf "${YELLOW} ${mesg}${ALL_OFF}\n" "$@" >&2
|
printf "${YELLOW} ${mesg}${ALL_OFF}\n" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_row_green(){
|
msg_row_green(){
|
||||||
local mesg=$1; shift
|
local mesg=$1; shift
|
||||||
# shellcheck disable=2059
|
# shellcheck disable=2059
|
||||||
printf "${GREEN} ${mesg}${ALL_OFF}\n" "$@" >&2
|
printf "${GREEN} ${mesg}${ALL_OFF}\n" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_row(){
|
msg_row(){
|
||||||
local mesg=$1; shift
|
local mesg=$1; shift
|
||||||
# printf "${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2
|
|
||||||
# shellcheck disable=2059
|
# shellcheck disable=2059
|
||||||
printf "${WHITE} ${mesg}${ALL_OFF}\n" "$@" >&2
|
printf "${WHITE} ${mesg}${ALL_OFF}\n" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
msg_row_red(){
|
msg_row_red(){
|
||||||
local mesg=$1; shift
|
local mesg=$1; shift
|
||||||
# shellcheck disable=2059
|
# shellcheck disable=2059
|
||||||
printf "${RED} ${mesg} ${ALL_OFF}\n" "$@" >&2
|
printf "${RED} ${mesg} ${ALL_OFF}\n" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
#}}}
|
#}}}
|
||||||
|
@@ -19,8 +19,16 @@ load_iso_config(){
|
|||||||
|
|
||||||
GPG_KEY=${GPG_KEY:-''}
|
GPG_KEY=${GPG_KEY:-''}
|
||||||
|
|
||||||
|
COMPRESSION="${COMPRESSION:-zstd}"
|
||||||
|
|
||||||
|
COMPRESSION_LEVEL="${COMPRESSION_LEVEL:-15}"
|
||||||
|
|
||||||
if [[ -z "${COMPRESSION_ARGS[*]}" ]]; then
|
if [[ -z "${COMPRESSION_ARGS[*]}" ]]; then
|
||||||
COMPRESSION_ARGS=(-comp zstd -Xcompression-level 22)
|
COMPRESSION_ARGS=(-Xcompression-level "${COMPRESSION_LEVEL}")
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "${COMPRESSION}" == 'xz' ]]; then
|
||||||
|
COMPRESSION_ARGS=(-Xbcj x86)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
@@ -27,7 +27,7 @@ load_pkg_config(){
|
|||||||
)
|
)
|
||||||
|
|
||||||
local dev_tree=(
|
local dev_tree=(
|
||||||
packages-{python,perl,java,ruby}
|
packages-{llvm,python,perl,java,ruby}
|
||||||
python-{world,galaxy}
|
python-{world,galaxy}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user