From e3934f868d1b52e171c7cbe8548b3da2d7c8f6e9 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Wed, 4 Feb 2026 01:09:11 +0700 Subject: [PATCH 1/9] Define llvm and mate common groups --- recipes/groups/dev-essential/recipe.toml | 1 - recipes/groups/llvm-common/recipe.toml | 7 +++++++ recipes/groups/mate-common/recipe.toml | 11 +++++++++++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 recipes/groups/llvm-common/recipe.toml create mode 100644 recipes/groups/mate-common/recipe.toml diff --git a/recipes/groups/dev-essential/recipe.toml b/recipes/groups/dev-essential/recipe.toml index b6621ac86..f3bc72af1 100644 --- a/recipes/groups/dev-essential/recipe.toml +++ b/recipes/groups/dev-essential/recipe.toml @@ -4,7 +4,6 @@ dependencies = [ "automake", "gcc13", "gcc13.cxx", - "llvm21", "gnu-binutils", "gnu-make", "gnu-grep", diff --git a/recipes/groups/llvm-common/recipe.toml b/recipes/groups/llvm-common/recipe.toml new file mode 100644 index 000000000..0a56afd54 --- /dev/null +++ b/recipes/groups/llvm-common/recipe.toml @@ -0,0 +1,7 @@ +[package] +dependencies = [ + "clang21", + "llvm21", + "llvm21.runtime", + "lld21", +] diff --git a/recipes/groups/mate-common/recipe.toml b/recipes/groups/mate-common/recipe.toml new file mode 100644 index 000000000..5861faef9 --- /dev/null +++ b/recipes/groups/mate-common/recipe.toml @@ -0,0 +1,11 @@ +[package] +dependencies = [ + "caja", + "marco", + "mate-control-center", + "mate-icon-theme", + "mate-panel", + "mate-session-manager", + "mate-settings-daemon", + "mate-terminal", +] From 558d89b0a30128ed688195da1c0434b0f70bc8c9 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Wed, 4 Feb 2026 01:09:43 +0700 Subject: [PATCH 2/9] Simplify x11 config, add x11 + wayland to CI --- config/x11.toml | 19 ++----------------- config/x86_64/ci.toml | 17 ++++++++++------- 2 files changed, 12 insertions(+), 24 deletions(-) diff --git a/config/x11.toml b/config/x11.toml index dbbccc55e..c2a5bc851 100644 --- a/config/x11.toml +++ b/config/x11.toml @@ -12,29 +12,14 @@ filesystem_size = 2048 # Package settings [packages] adwaita-icon-theme = {} -caja = {} dbus = {} gtk3 = {} -marco = {} -mate-control-center = {} -mate-icon-theme = {} -mate-panel = {} -mate-session-manager = {} -mate-settings-daemon = {} -mate-terminal = {} +mate-common = {} mesa-demos-x11 = {} webkitgtk3 = {} -xev = {} -xeyes = {} #xfce4-panel = {} #xfwm4 = {} -xinit = {} -xkbcomp = {} -xkbutils = {} -xkeyboard-config = {} -xserver-xorg = {} -xserver-xorg-video-orbital = {} -xterm = {} +x11-full = {} zenity = {} [[files]] diff --git a/config/x86_64/ci.toml b/config/x86_64/ci.toml index 1351e18d2..cef1fb6d6 100644 --- a/config/x86_64/ci.toml +++ b/config/x86_64/ci.toml @@ -15,6 +15,8 @@ prompt = false dev-essential = {} dev-redox = {} +llvm-common = {} +mate-common = {} redox-tests = {} x11-minimal = {} x11-full = {} @@ -22,6 +24,7 @@ x11-full = {} # Normal packages below acid = {} +adwaita-icon-theme = {} autoconf = {} automake = {} base = {} @@ -101,6 +104,7 @@ libuuid = {} libvorbis = {} libwebp = {} libxkbcommon = {} +libxcursor = {} libxml2 = {} llvm21 = {} lsd = {} @@ -109,6 +113,7 @@ lz4 = {} mednafen = {} mesa = {} mesa-glu = {} +mesa-demos-x11 = {} mgba = {} nano = {} nasm = {} @@ -185,8 +190,10 @@ shared-mime-info = {} shellharden = {} shellstorm = {} simple-http-server = {} +smallvil = {} smith = {} sodium = {} +softbuffer-wayland = {} sopwith = {} sqlite3 = {} strace = {} @@ -199,20 +206,16 @@ userutils = {} uutils = {} vim = {} vttest = {} +wayland-rs = {} webkitgtk3 = {} winit = {} +winit-wayland = {} xxhash = {} xz = {} +zenity = {} zlib = {} zstd = {} -#"gcc13.cxx" = {} -#"llvm21.clang" = {} -#"llvm21.clang-dev" = {} -#"llvm21.dev" = {} -#"llvm21.lld" = {} -#"llvm21.lld-dev" = {} -#"llvm21.runtime" = {} #"python312.dev" = {} #"rust.doc" = {} #atk = {} # depends on glib which does not build From 7e4166327ae53c1c10d65fe3fde450e39a9ad22c Mon Sep 17 00:00:00 2001 From: Wildan M Date: Wed, 4 Feb 2026 06:23:54 +0700 Subject: [PATCH 3/9] Rename llvm groups --- config/x86_64/ci.toml | 2 +- recipes/groups/{llvm-common => llvm21-common}/recipe.toml | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename recipes/groups/{llvm-common => llvm21-common}/recipe.toml (100%) diff --git a/config/x86_64/ci.toml b/config/x86_64/ci.toml index cef1fb6d6..69a275204 100644 --- a/config/x86_64/ci.toml +++ b/config/x86_64/ci.toml @@ -15,7 +15,7 @@ prompt = false dev-essential = {} dev-redox = {} -llvm-common = {} +llvm21-common = {} mate-common = {} redox-tests = {} x11-minimal = {} diff --git a/recipes/groups/llvm-common/recipe.toml b/recipes/groups/llvm21-common/recipe.toml similarity index 100% rename from recipes/groups/llvm-common/recipe.toml rename to recipes/groups/llvm21-common/recipe.toml From ecd674b6c0cdba333ac5689261d28453f031d81e Mon Sep 17 00:00:00 2001 From: Anhad Singh Date: Wed, 4 Feb 2026 18:23:23 +1100 Subject: [PATCH 4/9] misc(cook): move `autotools_recursive_regenerate` out of `DYNAMIC_INIT` Signed-off-by: Anhad Singh --- src/cook/script.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/cook/script.rs b/src/cook/script.rs index e9e7209f0..cbbad65a2 100644 --- a/src/cook/script.rs +++ b/src/cook/script.rs @@ -2,12 +2,6 @@ pub(crate) static SHARED_PRESCRIPT: &str = r#" # Build dynamically function DYNAMIC_INIT { COOKBOOK_AUTORECONF="autoreconf" - autotools_recursive_regenerate() { - for f in $(find . -name configure.ac -o -name configure.in -type f | sort); do - echo "* autotools regen in '$(dirname $f)'..." - ( cd "$(dirname "$f")" && "${COOKBOOK_AUTORECONF}" -fvi "$@" -I${COOKBOOK_HOST_SYSROOT}/share/aclocal ) - done - } case "${TARGET}" in "i586-unknown-redox" | "riscv64gc-unknown-redox") @@ -45,6 +39,13 @@ function DYNAMIC_INIT { export COOKBOOK_DYNAMIC=1 } +autotools_recursive_regenerate() { + for f in $(find . -name configure.ac -o -name configure.in -type f | sort); do + echo "* autotools regen in '$(dirname $f)'..." + ( cd "$(dirname "$f")" && "${COOKBOOK_AUTORECONF}" -fvi "$@" -I${COOKBOOK_HOST_SYSROOT}/share/aclocal ) + done +} + # Build both dynamically and statically function DYNAMIC_STATIC_INIT { DYNAMIC_INIT From b17dd28e621ec9a02429795fbfeb74ba541335b4 Mon Sep 17 00:00:00 2001 From: Anhad Singh Date: Wed, 4 Feb 2026 18:27:55 +1100 Subject: [PATCH 5/9] misc(recipes): remove `DYNAMIC_INIT` from source scripts `autotools_recursive_regenerate` is now defined regardless of `DYNAMIC_INIT`. Signed-off-by: Anhad Singh --- recipes/dev/fontconfig/recipe.toml | 1 - recipes/dev/gnu-make/recipe.toml | 1 - recipes/dev/lang/gawk/recipe.toml | 1 - recipes/games/prboom/recipe.toml | 1 - recipes/libs/expat/recipe.toml | 1 - recipes/libs/jansson/recipe.toml | 1 - recipes/libs/libgmp/recipe.toml | 1 - recipes/libs/libmodplug1/recipe.toml | 1 - recipes/libs/libmpfr/recipe.toml | 1 - recipes/libs/libnettle/recipe.toml | 1 - recipes/libs/libogg/recipe.toml | 1 - recipes/libs/libpsl/recipe.toml | 1 - recipes/libs/libsodium/recipe.toml | 1 - recipes/libs/libssh2/recipe.toml | 1 - recipes/libs/libxml2/recipe.toml | 1 - recipes/libs/mpc/recipe.toml | 1 - recipes/libs/nghttp2/recipe.toml | 1 - recipes/libs/pcre/recipe.toml | 1 - recipes/libs/pcre2/recipe.toml | 1 - recipes/libs/unibilium/recipe.toml | 1 - recipes/net/download/curl/recipe.toml | 1 - recipes/tools/patchelf/recipe.toml | 1 - recipes/tools/xz/recipe.toml | 1 - recipes/wip/backup/partclone/recipe.toml | 1 - recipes/wip/bench/io/blogbench/recipe.toml | 1 - recipes/wip/db/sqlite3/recipe.toml | 1 - recipes/wip/emu/win/hangover/recipe.toml | 1 - recipes/wip/emu/win/wine-stable/recipe.toml | 1 - recipes/wip/libs/audio/libcanberra/recipe.toml | 1 - recipes/wip/libs/audio/mpg123/recipe.toml | 1 - recipes/wip/libs/image/librsvg/recipe.toml | 1 - recipes/wip/libs/image/libwebp/recipe.toml | 1 - recipes/wip/libs/net/libtirpc/recipe.toml | 1 - recipes/wip/libs/other/imlib2/recipe.toml | 1 - recipes/wip/libs/other/libass/recipe.toml | 1 - recipes/wip/libs/other/libev/recipe.toml | 1 - recipes/wip/libs/other/libgcrypt/recipe.toml | 1 - recipes/wip/libs/other/libgpg-error/recipe.toml | 1 - recipes/wip/libs/other/libonig/recipe.toml | 1 - recipes/wip/libs/other/libpoppler/recipe.toml | 1 - recipes/wip/libs/other/libsndfile/recipe.toml | 1 - recipes/wip/libs/other/libtasn1/recipe.toml | 1 - recipes/wip/libs/other/libtheora/recipe.toml | 1 - recipes/wip/libs/other/libxcursor/recipe.toml | 1 - recipes/wip/libs/other/libxslt/recipe.toml | 1 - recipes/wip/libs/tls/gnutls3/recipe.toml | 1 - recipes/wip/monitors/htop/recipe.toml | 1 - recipes/wip/x11/feh/recipe.toml | 1 - recipes/wip/x11/keybinder3/recipe.toml | 1 - recipes/wip/x11/libfontenc/recipe.toml | 1 - recipes/wip/x11/libice/recipe.toml | 1 - recipes/wip/x11/libsm/recipe.toml | 1 - recipes/wip/x11/libx11/recipe.toml | 1 - recipes/wip/x11/libxau/recipe.toml | 1 - recipes/wip/x11/libxaw/recipe.toml | 1 - recipes/wip/x11/libxcb/recipe.toml | 1 - recipes/wip/x11/libxcomposite/recipe.toml | 1 - recipes/wip/x11/libxcvt/recipe.toml | 1 - recipes/wip/x11/libxdamage/recipe.toml | 1 - recipes/wip/x11/libxdmcp/recipe.toml | 1 - recipes/wip/x11/libxext/recipe.toml | 1 - recipes/wip/x11/libxfixes/recipe.toml | 1 - recipes/wip/x11/libxfont2/recipe.toml | 1 - recipes/wip/x11/libxft/recipe.toml | 1 - recipes/wip/x11/libxi/recipe.toml | 1 - recipes/wip/x11/libxinerama/recipe.toml | 1 - recipes/wip/x11/libxkbfile/recipe.toml | 1 - recipes/wip/x11/libxklavier/recipe.toml | 1 - recipes/wip/x11/libxmu/recipe.toml | 1 - recipes/wip/x11/libxpm/recipe.toml | 1 - recipes/wip/x11/libxrandr/recipe.toml | 1 - recipes/wip/x11/libxrender/recipe.toml | 1 - recipes/wip/x11/libxres/recipe.toml | 1 - recipes/wip/x11/libxshmfence/recipe.toml | 1 - recipes/wip/x11/libxt/recipe.toml | 1 - recipes/wip/x11/libxxf86vm/recipe.toml | 1 - recipes/wip/x11/mate/caja/recipe.toml | 1 - recipes/wip/x11/mate/dbus-glib/recipe.toml | 1 - recipes/wip/x11/mate/libmatekbd/recipe.toml | 1 - recipes/wip/x11/mate/libmateweather/recipe.toml | 1 - recipes/wip/x11/mate/mate-session-manager/recipe.toml | 1 - recipes/wip/x11/mate/mate-settings-daemon/recipe.toml | 1 - recipes/wip/x11/openbox/recipe.toml | 1 - recipes/wip/x11/startup-notification/recipe.toml | 1 - recipes/wip/x11/twm/recipe.toml | 1 - recipes/wip/x11/x11proto-kb/recipe.toml | 1 - recipes/wip/x11/xcb-util-cursor/recipe.toml | 1 - recipes/wip/x11/xcb-util-image/recipe.toml | 1 - recipes/wip/x11/xcb-util-keysyms/recipe.toml | 1 - recipes/wip/x11/xcb-util-renderutil/recipe.toml | 1 - recipes/wip/x11/xcb-util-wm/recipe.toml | 1 - recipes/wip/x11/xcb-util-xrm/recipe.toml | 1 - recipes/wip/x11/xcb-util/recipe.toml | 1 - recipes/wip/x11/xev/recipe.toml | 1 - recipes/wip/x11/xextproto/recipe.toml | 1 - recipes/wip/x11/xeyes/recipe.toml | 1 - recipes/wip/x11/xinit/recipe.toml | 1 - recipes/wip/x11/xkbcomp/recipe.toml | 1 - recipes/wip/x11/xkbutils/recipe.toml | 1 - recipes/wip/x11/xserver-xorg-video-orbital/recipe.toml | 1 - 100 files changed, 100 deletions(-) diff --git a/recipes/dev/fontconfig/recipe.toml b/recipes/dev/fontconfig/recipe.toml index 883ac026b..7746a187f 100644 --- a/recipes/dev/fontconfig/recipe.toml +++ b/recipes/dev/fontconfig/recipe.toml @@ -5,7 +5,6 @@ patches = [ "redox.patch" ] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/dev/gnu-make/recipe.toml b/recipes/dev/gnu-make/recipe.toml index fa9acfce5..36e1b9f39 100644 --- a/recipes/dev/gnu-make/recipe.toml +++ b/recipes/dev/gnu-make/recipe.toml @@ -5,7 +5,6 @@ patches = [ "redox.patch" ] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/dev/lang/gawk/recipe.toml b/recipes/dev/lang/gawk/recipe.toml index 22479989d..3a0e6e2cf 100644 --- a/recipes/dev/lang/gawk/recipe.toml +++ b/recipes/dev/lang/gawk/recipe.toml @@ -3,7 +3,6 @@ git = "https://gitlab.redox-os.org/redox-os/gawk.git" upstream = "https://git.savannah.gnu.org/git/gawk.git" branch = "redox" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/games/prboom/recipe.toml b/recipes/games/prboom/recipe.toml index efdb13149..9999174a8 100644 --- a/recipes/games/prboom/recipe.toml +++ b/recipes/games/prboom/recipe.toml @@ -2,7 +2,6 @@ tar = "https://downloads.sourceforge.net/project/prboom/prboom%20stable/2.5.0/prboom-2.5.0.tar.gz" blake3 = "24c1b9b5aa15fd73e59162055f2c6d8faa82759b76ddfca9828cd2a5c8dc6b2a" script = """ -DYNAMIC_INIT autotools_recursive_regenerate wget -O autotools/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false" """ diff --git a/recipes/libs/expat/recipe.toml b/recipes/libs/expat/recipe.toml index 37f15adb0..ae118114d 100644 --- a/recipes/libs/expat/recipe.toml +++ b/recipes/libs/expat/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/libexpat/libexpat/releases/download/R_2_5_0/expat-2.5.0.tar.xz" blake3 = "ea89dd9a5a2e48d5e44fed38554b36a8f2e365a5091a99d08e30bfb1c15dda5e" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/jansson/recipe.toml b/recipes/libs/jansson/recipe.toml index 2e2538d9f..7b9d8aa9e 100644 --- a/recipes/libs/jansson/recipe.toml +++ b/recipes/libs/jansson/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/akheron/jansson/releases/download/v2.10/jansson-2.10.tar.gz" blake3 = "3c74f374a6c7ac5e323f72d87e49e5309ca922ca26cfe4992873b31f28776624" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libgmp/recipe.toml b/recipes/libs/libgmp/recipe.toml index d43a6ab9f..8645c5611 100644 --- a/recipes/libs/libgmp/recipe.toml +++ b/recipes/libs/libgmp/recipe.toml @@ -6,7 +6,6 @@ tar = "https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz" blake3 = "fffe4996713928ae19331c8ef39129e46d3bf5b7182820656fd4639435cd83a4" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libmodplug1/recipe.toml b/recipes/libs/libmodplug1/recipe.toml index 3e3420c02..772a29287 100644 --- a/recipes/libs/libmodplug1/recipe.toml +++ b/recipes/libs/libmodplug1/recipe.toml @@ -2,7 +2,6 @@ tar = "https://pilotfiber.dl.sourceforge.net/project/modplug-xmms/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz" blake3 = "01d71f7fe4e1abeb848db02b74c70ab2fd51e824f5ea7e9e18631571a76c3592" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libmpfr/recipe.toml b/recipes/libs/libmpfr/recipe.toml index ab5477a93..468025f94 100644 --- a/recipes/libs/libmpfr/recipe.toml +++ b/recipes/libs/libmpfr/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.mpfr.org/mpfr-current/mpfr-4.2.2.tar.xz" blake3 = "11d59d061ef8db588650bc7dc5172594a6e5aad013994801c6f63011a62b191d" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libnettle/recipe.toml b/recipes/libs/libnettle/recipe.toml index b5dd3ce43..7f1ba1128 100644 --- a/recipes/libs/libnettle/recipe.toml +++ b/recipes/libs/libnettle/recipe.toml @@ -2,7 +2,6 @@ tar = "https://ftp.gnu.org/gnu/nettle/nettle-3.9.1.tar.gz" blake3 = "e4bfbda32f4fdf5ed96c152efe3a3867193b690faa5378d02a2a6fd052ee3393" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libogg/recipe.toml b/recipes/libs/libogg/recipe.toml index 9e219c87c..3b7e3858a 100644 --- a/recipes/libs/libogg/recipe.toml +++ b/recipes/libs/libogg/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/xiph/ogg/releases/download/v1.3.4/libogg-1.3.4.tar.xz" blake3 = "1cffbe7c498555ddfdb1390d7a38179c4bead6129ea37b1b1d54f3a76b816304" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libpsl/recipe.toml b/recipes/libs/libpsl/recipe.toml index cbc487885..668dd7923 100644 --- a/recipes/libs/libpsl/recipe.toml +++ b/recipes/libs/libpsl/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/rockdaboot/libpsl/releases/download/0.21.5/libpsl-0.21.5.tar.lz" blake3 = "91318b7b876b12ff4649b7a0d6f6ed4ab1ab44f48a49508c8978ab7b4ccf3298" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libsodium/recipe.toml b/recipes/libs/libsodium/recipe.toml index 8f6a2db3e..3fa8d8ded 100644 --- a/recipes/libs/libsodium/recipe.toml +++ b/recipes/libs/libsodium/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/jedisct1/libsodium/archive/1.0.16.tar.gz" blake3 = "2482633f872c173f9a42e6badb44c3efb042e783e664fdf8b1046babfa2405e7" script = """ -DYNAMIC_INIT autotools_recursive_regenerate wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false" """ diff --git a/recipes/libs/libssh2/recipe.toml b/recipes/libs/libssh2/recipe.toml index 1b33f11ab..af3af42c8 100644 --- a/recipes/libs/libssh2/recipe.toml +++ b/recipes/libs/libssh2/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.libssh2.org/download/libssh2-1.10.0.tar.gz" blake3 = "2447216ce82c1d22301456bb02f60dfb6688f1461417b90f900c099a87f1292f" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/libxml2/recipe.toml b/recipes/libs/libxml2/recipe.toml index f37f42966..75ef0e17a 100644 --- a/recipes/libs/libxml2/recipe.toml +++ b/recipes/libs/libxml2/recipe.toml @@ -2,7 +2,6 @@ tar = "https://download.gnome.org/sources/libxml2/2.11/libxml2-2.11.3.tar.xz" blake3 = "0653d3750576299c4cb88740942165671b576ff93019f3d669b3f37136225ab7" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/mpc/recipe.toml b/recipes/libs/mpc/recipe.toml index a3d31b915..075a66e03 100644 --- a/recipes/libs/mpc/recipe.toml +++ b/recipes/libs/mpc/recipe.toml @@ -4,7 +4,6 @@ [source] tar = "https://ftp.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/nghttp2/recipe.toml b/recipes/libs/nghttp2/recipe.toml index 41bea400a..39efe6c70 100644 --- a/recipes/libs/nghttp2/recipe.toml +++ b/recipes/libs/nghttp2/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/nghttp2/nghttp2/releases/download/v1.64.0/nghttp2-1.64.0.tar.xz" blake3 = "1bbc08de4816769d800c42f501a00c1ba3f5efa1b76e1f65d2e5bdf3aa30354d" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/pcre/recipe.toml b/recipes/libs/pcre/recipe.toml index 773c8f48c..05b24fec7 100644 --- a/recipes/libs/pcre/recipe.toml +++ b/recipes/libs/pcre/recipe.toml @@ -2,7 +2,6 @@ tar = "https://mirrors.gigenet.com/OSDN//sfnet/p/pc/pcre/pcre/8.42/pcre-8.42.tar.gz" blake3 = "12d515ba12a816994def6b1e7196b5783fd2cfe495733a9167fa4d71dbe10248" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ patches = [ diff --git a/recipes/libs/pcre2/recipe.toml b/recipes/libs/pcre2/recipe.toml index 09c4d86b0..f34ce5aef 100644 --- a/recipes/libs/pcre2/recipe.toml +++ b/recipes/libs/pcre2/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.45/pcre2-10.45.tar.bz2" blake3 = "aea544846f9a03c1ec62c9f8d1c9a4187cc3cce557e53e6876eb6a58c7cdd9fe" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/libs/unibilium/recipe.toml b/recipes/libs/unibilium/recipe.toml index 5252c1d3c..9ce4c46cd 100644 --- a/recipes/libs/unibilium/recipe.toml +++ b/recipes/libs/unibilium/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/neovim/unibilium/archive/refs/tags/v2.1.2.tar.gz" blake3 = "856a7593a412942f4716bb55bfdd225f3ce92cb013b9d4a44693255f0570b1c7" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/net/download/curl/recipe.toml b/recipes/net/download/curl/recipe.toml index 68436ab3d..54e27c7e1 100644 --- a/recipes/net/download/curl/recipe.toml +++ b/recipes/net/download/curl/recipe.toml @@ -15,7 +15,6 @@ script = """ DYNAMIC_INIT rsync -av --delete "${COOKBOOK_SOURCE}/" ./ GNU_CONFIG_GET config.sub -DYNAMIC_INIT autotools_recursive_regenerate COOKBOOK_CONFIGURE="./configure" COOKBOOK_CONFIGURE_FLAGS+=( diff --git a/recipes/tools/patchelf/recipe.toml b/recipes/tools/patchelf/recipe.toml index 1399164ce..01c6a2b89 100644 --- a/recipes/tools/patchelf/recipe.toml +++ b/recipes/tools/patchelf/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/NixOS/patchelf/releases/download/0.18.0/patchelf-0.18.0.tar.bz2" blake3 = "f843b32bdf3ee8a1f465e92d3fef34f30c48ccef9c112fdb793e2e7f2ae7283a" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/tools/xz/recipe.toml b/recipes/tools/xz/recipe.toml index 51ca7e47b..b3d25b672 100644 --- a/recipes/tools/xz/recipe.toml +++ b/recipes/tools/xz/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/tukaani-project/xz/releases/download/v5.2.13/xz-5.2.13.tar.gz" blake3 = "edc6350542e8cb7188a878135e5b9bd592d687e5b47451ca1c89d51cc4bc6b53" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/backup/partclone/recipe.toml b/recipes/wip/backup/partclone/recipe.toml index a20ecf79f..aec371f45 100644 --- a/recipes/wip/backup/partclone/recipe.toml +++ b/recipes/wip/backup/partclone/recipe.toml @@ -4,7 +4,6 @@ git = "https://github.com/Thomas-Tsai/partclone" rev = "0.3.40" shallow_clone = true script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ [build] diff --git a/recipes/wip/bench/io/blogbench/recipe.toml b/recipes/wip/bench/io/blogbench/recipe.toml index 5bf1657a8..836166900 100644 --- a/recipes/wip/bench/io/blogbench/recipe.toml +++ b/recipes/wip/bench/io/blogbench/recipe.toml @@ -3,7 +3,6 @@ [source] tar = "https://github.com/jedisct1/Blogbench/releases/download/1.2/blogbench-1.2.tar.bz2" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ [build] diff --git a/recipes/wip/db/sqlite3/recipe.toml b/recipes/wip/db/sqlite3/recipe.toml index 5bc410b9c..716a577d1 100644 --- a/recipes/wip/db/sqlite3/recipe.toml +++ b/recipes/wip/db/sqlite3/recipe.toml @@ -8,7 +8,6 @@ tar = "https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz" blake3 = "96e071dc4f964311882334e927f017d8383915b1b140adcf308957dff213aa8c" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ [build] diff --git a/recipes/wip/emu/win/hangover/recipe.toml b/recipes/wip/emu/win/hangover/recipe.toml index 57361881b..9e6432244 100644 --- a/recipes/wip/emu/win/hangover/recipe.toml +++ b/recipes/wip/emu/win/hangover/recipe.toml @@ -5,7 +5,6 @@ git = "https://github.com/AndreRH/hangover" rev = "hangover-11.0" shallow_clone = true script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ [build] diff --git a/recipes/wip/emu/win/wine-stable/recipe.toml b/recipes/wip/emu/win/wine-stable/recipe.toml index d0019de59..7fa9ceff5 100644 --- a/recipes/wip/emu/win/wine-stable/recipe.toml +++ b/recipes/wip/emu/win/wine-stable/recipe.toml @@ -5,7 +5,6 @@ git = "https://gitlab.winehq.org/wine/wine" branch = "stable" shallow_clone = true script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/audio/libcanberra/recipe.toml b/recipes/wip/libs/audio/libcanberra/recipe.toml index 2de6513c3..760596d02 100644 --- a/recipes/wip/libs/audio/libcanberra/recipe.toml +++ b/recipes/wip/libs/audio/libcanberra/recipe.toml @@ -3,7 +3,6 @@ tar = "http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz" blake3 = "ea02f4b5a00bfffce1d29ce73e1cf5351027208cbeb58bf9954e84ad120e6daa" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/audio/mpg123/recipe.toml b/recipes/wip/libs/audio/mpg123/recipe.toml index f88873ab4..c71eb8d30 100644 --- a/recipes/wip/libs/audio/mpg123/recipe.toml +++ b/recipes/wip/libs/audio/mpg123/recipe.toml @@ -3,7 +3,6 @@ tar = "https://mpg123.de/download/mpg123-1.33.2.tar.bz2" blake3 = "1e604dc14160a8852ef6b880643e3534f44e410af1fd5ba29a80ff960a54e834" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/image/librsvg/recipe.toml b/recipes/wip/libs/image/librsvg/recipe.toml index 14e44666b..254bcbb97 100644 --- a/recipes/wip/libs/image/librsvg/recipe.toml +++ b/recipes/wip/libs/image/librsvg/recipe.toml @@ -3,7 +3,6 @@ tar = "https://download.gnome.org/sources/librsvg/2.58/librsvg-2.58.5.tar.xz" blake3 = "15ccac6309992ced51128825e9c3ebeb041705aeb8371507ffc4cebb6a1e4ce5" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/image/libwebp/recipe.toml b/recipes/wip/libs/image/libwebp/recipe.toml index 5578ebc9f..7e98a7b3b 100644 --- a/recipes/wip/libs/image/libwebp/recipe.toml +++ b/recipes/wip/libs/image/libwebp/recipe.toml @@ -2,7 +2,6 @@ tar = "https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.5.0.tar.gz" blake3 = "8272270920a317b854b059e86c320dbdb5a2032937072bbfd5f3304d601a92cb" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/net/libtirpc/recipe.toml b/recipes/wip/libs/net/libtirpc/recipe.toml index 470889936..992396b78 100644 --- a/recipes/wip/libs/net/libtirpc/recipe.toml +++ b/recipes/wip/libs/net/libtirpc/recipe.toml @@ -3,7 +3,6 @@ tar = "https://downloads.sourceforge.net/libtirpc/libtirpc-1.3.6.tar.bz2" blake3 = "3ca1feefee3a216bb82bba35dfb455cac8524b8d8404767b01772f3b8fd00eea" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/imlib2/recipe.toml b/recipes/wip/libs/other/imlib2/recipe.toml index 9c54f870d..0b10b4f2b 100644 --- a/recipes/wip/libs/other/imlib2/recipe.toml +++ b/recipes/wip/libs/other/imlib2/recipe.toml @@ -4,7 +4,6 @@ tar = "https://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.12.5 blake3 = "535b6a986538295af5194e81281a11a1d7e79ae518959ca434f1e53bfa67e86d" patches = ["redox.patch"] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libass/recipe.toml b/recipes/wip/libs/other/libass/recipe.toml index b4e8f9a39..bec43da49 100644 --- a/recipes/wip/libs/other/libass/recipe.toml +++ b/recipes/wip/libs/other/libass/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/libass/libass/releases/download/0.17.3/libass-0.17.3.tar.xz" blake3 = "bfbcc2a97193eb5c2a6c54d07c508d42ff62387a8a9d8b3959d15b6115bca8b6" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libev/recipe.toml b/recipes/wip/libs/other/libev/recipe.toml index bb0268117..a3f544fb0 100644 --- a/recipes/wip/libs/other/libev/recipe.toml +++ b/recipes/wip/libs/other/libev/recipe.toml @@ -2,7 +2,6 @@ tar = "https://dist.schmorp.de/libev/libev-4.33.tar.gz" blake3 = "d56e7f06baa52d5068b6184a307cf27c32f71b60e13d98ee6d4d9c1786393424" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libgcrypt/recipe.toml b/recipes/wip/libs/other/libgcrypt/recipe.toml index c02dd88d9..40a72d6c8 100644 --- a/recipes/wip/libs/other/libgcrypt/recipe.toml +++ b/recipes/wip/libs/other/libgcrypt/recipe.toml @@ -3,7 +3,6 @@ tar = "https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.11.1.tar.bz2" blake3 = "68844e12b92960d66c4ce85a4c3db1df8377b232980f1218b4c5d904e9c02511" patches = ["redox.patch"] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libgpg-error/recipe.toml b/recipes/wip/libs/other/libgpg-error/recipe.toml index 58898a938..41b7f48ec 100644 --- a/recipes/wip/libs/other/libgpg-error/recipe.toml +++ b/recipes/wip/libs/other/libgpg-error/recipe.toml @@ -2,7 +2,6 @@ tar = "https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.55.tar.bz2" blake3 = "6c363dd8c6bcf2601dd5ff3b11fa2f699baa2aae40de2acd92461af0fd8178f0" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libonig/recipe.toml b/recipes/wip/libs/other/libonig/recipe.toml index 894e8b0a8..81693ea21 100644 --- a/recipes/wip/libs/other/libonig/recipe.toml +++ b/recipes/wip/libs/other/libonig/recipe.toml @@ -2,7 +2,6 @@ git = "https://github.com/kkos/oniguruma" rev = "f95747b462de672b6f8dbdeb478245ddf061ca53" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libpoppler/recipe.toml b/recipes/wip/libs/other/libpoppler/recipe.toml index 482952ca0..6c5f33f52 100644 --- a/recipes/wip/libs/other/libpoppler/recipe.toml +++ b/recipes/wip/libs/other/libpoppler/recipe.toml @@ -3,7 +3,6 @@ tar = "https://poppler.freedesktop.org/poppler-25.08.0.tar.xz" blake3 = "0732ef20594d084ae3c24cb75079a2be347df78acac80fdcbd6149b8dce197d4" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libsndfile/recipe.toml b/recipes/wip/libs/other/libsndfile/recipe.toml index e6f335150..804a00318 100644 --- a/recipes/wip/libs/other/libsndfile/recipe.toml +++ b/recipes/wip/libs/other/libsndfile/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/libsndfile/libsndfile/releases/download/1.2.0/libsndfile-1.2.0.tar.xz" blake3 = "7ec1be7cc47fdffc38cf0cbf02857e6a34a13df22d19f541f04215929e1d7684" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libtasn1/recipe.toml b/recipes/wip/libs/other/libtasn1/recipe.toml index 2dad5224d..ac350cbbf 100644 --- a/recipes/wip/libs/other/libtasn1/recipe.toml +++ b/recipes/wip/libs/other/libtasn1/recipe.toml @@ -2,7 +2,6 @@ tar = "https://ftp.gnu.org/gnu/libtasn1/libtasn1-4.20.0.tar.gz" blake3 = "374103da2b2ac47e18b57cb5d1d41f7e42f3725c269cf35fba8e4717f0c392b5" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libtheora/recipe.toml b/recipes/wip/libs/other/libtheora/recipe.toml index 12f2579bb..2a44b49d4 100644 --- a/recipes/wip/libs/other/libtheora/recipe.toml +++ b/recipes/wip/libs/other/libtheora/recipe.toml @@ -2,7 +2,6 @@ tar = "http://downloads.xiph.org/releases/theora/libtheora-1.2.0.tar.gz" blake3 = "b2413d6a29669063c30679eb46e09bd55b47d51e1516282bd1f5a752a8ecae91" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libxcursor/recipe.toml b/recipes/wip/libs/other/libxcursor/recipe.toml index b0e44dff6..72d4f5f01 100644 --- a/recipes/wip/libs/other/libxcursor/recipe.toml +++ b/recipes/wip/libs/other/libxcursor/recipe.toml @@ -2,7 +2,6 @@ [source] tar = "https://www.x.org/releases/individual/lib/libXcursor-1.2.1.tar.xz" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/other/libxslt/recipe.toml b/recipes/wip/libs/other/libxslt/recipe.toml index b8458e0d1..46baf8f3b 100644 --- a/recipes/wip/libs/other/libxslt/recipe.toml +++ b/recipes/wip/libs/other/libxslt/recipe.toml @@ -2,7 +2,6 @@ tar = "https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.43.tar.xz" blake3 = "6c529acc02344fe48377810debadaee8eb0511a5553a8b7bea685d5282ab00cb" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/libs/tls/gnutls3/recipe.toml b/recipes/wip/libs/tls/gnutls3/recipe.toml index f94d1261b..de4cf7b27 100644 --- a/recipes/wip/libs/tls/gnutls3/recipe.toml +++ b/recipes/wip/libs/tls/gnutls3/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.10.tar.xz" blake3 = "edcd8a505867226722ae50e0e9bb2bf57a1f38b5674a3028e26f69d2d61957e6" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/monitors/htop/recipe.toml b/recipes/wip/monitors/htop/recipe.toml index f4e554be4..172592367 100644 --- a/recipes/wip/monitors/htop/recipe.toml +++ b/recipes/wip/monitors/htop/recipe.toml @@ -3,7 +3,6 @@ git = "https://github.com/willnode/htop" branch = "redox" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/feh/recipe.toml b/recipes/wip/x11/feh/recipe.toml index 8d55c1072..6255d9d2b 100644 --- a/recipes/wip/x11/feh/recipe.toml +++ b/recipes/wip/x11/feh/recipe.toml @@ -2,7 +2,6 @@ tar = "https://feh.finalrewind.org/feh-3.11.2.tar.bz2" blake3 = "b9d704e0b37d99068cbc76d2b73c3b6ef673612060d7cfef0f5a3e8886255276" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/keybinder3/recipe.toml b/recipes/wip/x11/keybinder3/recipe.toml index 65ddf484f..82532d8e5 100644 --- a/recipes/wip/x11/keybinder3/recipe.toml +++ b/recipes/wip/x11/keybinder3/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/kupferlauncher/keybinder/releases/download/keybinder-3.0-v0.3.2/keybinder-3.0-0.3.2.tar.gz" blake3 = "04b010524abf7af8a6bdfdbeff393c0feecf2bdcc1fd642e75113137ccb62aed" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libfontenc/recipe.toml b/recipes/wip/x11/libfontenc/recipe.toml index 3ba81a4b3..556871661 100644 --- a/recipes/wip/x11/libfontenc/recipe.toml +++ b/recipes/wip/x11/libfontenc/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libfontenc-1.1.8.tar.xz" blake3 = "6ab127a335f7cb4892566e59448d91e9ec43ac522f31f97a3c94350f0a3ecaf4" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libice/recipe.toml b/recipes/wip/x11/libice/recipe.toml index 7a95c5674..e8757bd13 100644 --- a/recipes/wip/x11/libice/recipe.toml +++ b/recipes/wip/x11/libice/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libICE-1.1.2.tar.xz" blake3 = "3d1d41041e0a58799a5e9965fd258a4f6875143102644fbbc71061eb4c652577" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libsm/recipe.toml b/recipes/wip/x11/libsm/recipe.toml index 5cb1d4ee2..359616561 100644 --- a/recipes/wip/x11/libsm/recipe.toml +++ b/recipes/wip/x11/libsm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libSM-1.2.6.tar.xz" blake3 = "fccedc1f9781bab20b0084557464099a7b793cd704d4bb702f200def4c96dcd8" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libx11/recipe.toml b/recipes/wip/x11/libx11/recipe.toml index db8a8c446..a56da9789 100644 --- a/recipes/wip/x11/libx11/recipe.toml +++ b/recipes/wip/x11/libx11/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libX11-1.8.12.tar.xz" blake3 = "5bf1c64733322b6a90d9bce8d2bd2d8117a4950955caa00d0cd7974d42571d1e" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxau/recipe.toml b/recipes/wip/x11/libxau/recipe.toml index 3ea5322b6..7fb9f3b71 100644 --- a/recipes/wip/x11/libxau/recipe.toml +++ b/recipes/wip/x11/libxau/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXau-1.0.12.tar.xz" blake3 = "674bc71a888eec20f0e29989e4669df90309d4baacad058107cdf89d23803bcc" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxaw/recipe.toml b/recipes/wip/x11/libxaw/recipe.toml index 18c379352..1e02efd75 100644 --- a/recipes/wip/x11/libxaw/recipe.toml +++ b/recipes/wip/x11/libxaw/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXaw-1.0.16.tar.xz" blake3 = "f2a3b4955508dc7a576ad473119562b724f7936d312c85c79cb32f614c60f0c5" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxcb/recipe.toml b/recipes/wip/x11/libxcb/recipe.toml index 4ea52ba7b..bb8aac653 100644 --- a/recipes/wip/x11/libxcb/recipe.toml +++ b/recipes/wip/x11/libxcb/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/xcb/libxcb-1.17.0.tar.xz" blake3 = "3dce3b8adc257177dfec9b6b6cf55eeac13921520dd6c372fd8f9d867600337b" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxcomposite/recipe.toml b/recipes/wip/x11/libxcomposite/recipe.toml index 21f063879..be721c6bf 100644 --- a/recipes/wip/x11/libxcomposite/recipe.toml +++ b/recipes/wip/x11/libxcomposite/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXcomposite-0.4.6.tar.xz" blake3 = "7e02026864066869aefc1d688415b1e8c6ab0b639556f93b6f5e86063aa1bbac" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxcvt/recipe.toml b/recipes/wip/x11/libxcvt/recipe.toml index 8133e595d..c5fcd6b9a 100644 --- a/recipes/wip/x11/libxcvt/recipe.toml +++ b/recipes/wip/x11/libxcvt/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libxcvt-0.1.3.tar.xz" blake3 = "a6c8f264a70a742d2634f53d19489b984c28df11cb5653042e8921f7596534bb" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxdamage/recipe.toml b/recipes/wip/x11/libxdamage/recipe.toml index da8d82d2a..e06e65b3d 100644 --- a/recipes/wip/x11/libxdamage/recipe.toml +++ b/recipes/wip/x11/libxdamage/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXdamage-1.1.6.tar.xz" blake3 = "d3d75f2656027288f87b9ddda8bf019862c63c6e4aeadd92f45870df6c2a7ce9" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxdmcp/recipe.toml b/recipes/wip/x11/libxdmcp/recipe.toml index ee93e4a6b..391c59526 100644 --- a/recipes/wip/x11/libxdmcp/recipe.toml +++ b/recipes/wip/x11/libxdmcp/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXdmcp-1.1.5.tar.xz" blake3 = "d93c5ceb04019228ee6f034c4d10826025a7ae756d7b2f884fc2f768577173ba" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxext/recipe.toml b/recipes/wip/x11/libxext/recipe.toml index 36a525dc7..ca9228595 100644 --- a/recipes/wip/x11/libxext/recipe.toml +++ b/recipes/wip/x11/libxext/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXext-1.3.6.tar.xz" blake3 = "4c24887ba3913728f3c0be945006f6babbc2c44c8118d4b1ca5366294e3f4406" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxfixes/recipe.toml b/recipes/wip/x11/libxfixes/recipe.toml index c506e4f81..9d3d40401 100644 --- a/recipes/wip/x11/libxfixes/recipe.toml +++ b/recipes/wip/x11/libxfixes/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXfixes-6.0.1.tar.xz" blake3 = "ccbae58717aa81f1ef52a2e6cbb7c57553a98b93f5a7a6f8a78e793a3a0c7f78" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxfont2/recipe.toml b/recipes/wip/x11/libxfont2/recipe.toml index 761543c57..f95d0af92 100644 --- a/recipes/wip/x11/libxfont2/recipe.toml +++ b/recipes/wip/x11/libxfont2/recipe.toml @@ -3,7 +3,6 @@ tar = "https://www.x.org/releases/individual/lib/libXfont2-2.0.7.tar.xz" blake3 = "9b4951683df21108e45fda23dbd25dcb47b67a3a0e224a36374fbc2d0f489cac" patches = ["redox.patch"] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxft/recipe.toml b/recipes/wip/x11/libxft/recipe.toml index 0574d4c9b..d671cadf5 100644 --- a/recipes/wip/x11/libxft/recipe.toml +++ b/recipes/wip/x11/libxft/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXft-2.3.9.tar.xz" blake3 = "db5b642f7d5f1184d0975db36ae9f9fbd0a0c538a2288930fc034376374e83dc" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxi/recipe.toml b/recipes/wip/x11/libxi/recipe.toml index a1c915709..5218a7679 100644 --- a/recipes/wip/x11/libxi/recipe.toml +++ b/recipes/wip/x11/libxi/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXi-1.8.2.tar.xz" blake3 = "8f0acdd884dc928c6c8bc4b6bca1f4c67c726fdb03e30910c09bdb41fd841d3e" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxinerama/recipe.toml b/recipes/wip/x11/libxinerama/recipe.toml index 8ae9962df..68c6d6dee 100644 --- a/recipes/wip/x11/libxinerama/recipe.toml +++ b/recipes/wip/x11/libxinerama/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXinerama-1.1.5.tar.xz" blake3 = "58b4020c8a8fb62707f5073f967bf8abbc8dc7cff35c5750fabe097f46a924b4" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxkbfile/recipe.toml b/recipes/wip/x11/libxkbfile/recipe.toml index 7ce5bb356..4c6a90fae 100644 --- a/recipes/wip/x11/libxkbfile/recipe.toml +++ b/recipes/wip/x11/libxkbfile/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libxkbfile-1.1.3.tar.xz" blake3 = "9566ee417df1127f21dd0e1fbcfcc14dacb366c07a1ec2de51f89af12535c06d" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxklavier/recipe.toml b/recipes/wip/x11/libxklavier/recipe.toml index fdbc3dad8..cafdd0001 100644 --- a/recipes/wip/x11/libxklavier/recipe.toml +++ b/recipes/wip/x11/libxklavier/recipe.toml @@ -2,7 +2,6 @@ tar = "https://download.gnome.org/sources/libxklavier/5.3/libxklavier-5.3.tar.xz" blake3 = "4811b8e069faef364b0cdd230dd7e42bc4afc279cb15282b68c11e89518c8930" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxmu/recipe.toml b/recipes/wip/x11/libxmu/recipe.toml index 7ac3dd382..afea2422b 100644 --- a/recipes/wip/x11/libxmu/recipe.toml +++ b/recipes/wip/x11/libxmu/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXmu-1.2.1.tar.xz" blake3 = "466f7ab160c4e9f04866e9c895dbecb6a76ed1817ae16721d404c556d88f047e" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxpm/recipe.toml b/recipes/wip/x11/libxpm/recipe.toml index bec80a26d..d5fa8373c 100644 --- a/recipes/wip/x11/libxpm/recipe.toml +++ b/recipes/wip/x11/libxpm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXpm-3.5.17.tar.xz" blake3 = "0cc9bbdc6d9c9d6ce100249b7bb68bff4550de43ee31d815fd9b21c8d178cd9e" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxrandr/recipe.toml b/recipes/wip/x11/libxrandr/recipe.toml index 9e6d29ead..ce7f2ba86 100644 --- a/recipes/wip/x11/libxrandr/recipe.toml +++ b/recipes/wip/x11/libxrandr/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXrandr-1.5.4.tar.xz" blake3 = "c107a47d9c4329996d74d7a1ab8d254a2cf3aecea1575d7e146da9a06b762081" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxrender/recipe.toml b/recipes/wip/x11/libxrender/recipe.toml index f5f671630..4442e6a11 100644 --- a/recipes/wip/x11/libxrender/recipe.toml +++ b/recipes/wip/x11/libxrender/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXrender-0.9.12.tar.xz" blake3 = "900b431ad77835029a88fd0d874bbd0d748ff150b9e0c3841b3ce7a346cf396a" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxres/recipe.toml b/recipes/wip/x11/libxres/recipe.toml index ae9027da7..b42662bd5 100644 --- a/recipes/wip/x11/libxres/recipe.toml +++ b/recipes/wip/x11/libxres/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXres-1.2.3.tar.xz" blake3 = "ed6e65e554fb812ddbec0667d749cb6c0488a964d7b12a7c4c2cadac1287088f" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxshmfence/recipe.toml b/recipes/wip/x11/libxshmfence/recipe.toml index bd9764ec7..00e41e2cb 100644 --- a/recipes/wip/x11/libxshmfence/recipe.toml +++ b/recipes/wip/x11/libxshmfence/recipe.toml @@ -1,7 +1,6 @@ [source] tar = "https://www.x.org/releases/individual/lib/libxshmfence-1.3.tar.gz" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxt/recipe.toml b/recipes/wip/x11/libxt/recipe.toml index f764c7dfc..27cf29248 100644 --- a/recipes/wip/x11/libxt/recipe.toml +++ b/recipes/wip/x11/libxt/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXt-1.3.1.tar.xz" blake3 = "fbf21683ce3e6d104529289254977bb08b355ecf7a36c763e8369acf85f15f24" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/libxxf86vm/recipe.toml b/recipes/wip/x11/libxxf86vm/recipe.toml index cbefd2e71..ecdd02151 100644 --- a/recipes/wip/x11/libxxf86vm/recipe.toml +++ b/recipes/wip/x11/libxxf86vm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/libXxf86vm-1.1.6.tar.xz" blake3 = "cd99c05a03e81f8579a56272debd554b2a44c2ac8211f0170a39be86e03221bb" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/caja/recipe.toml b/recipes/wip/x11/mate/caja/recipe.toml index 79f77db5e..632f0da36 100644 --- a/recipes/wip/x11/mate/caja/recipe.toml +++ b/recipes/wip/x11/mate/caja/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/mate-desktop/caja/releases/download/v1.26.4/caja-1.26.4.tar.xz" blake3 = "a70f5ce8dcb038d78346b385b2abd4d29a3e13c99b368a617c38107a9e725617" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/dbus-glib/recipe.toml b/recipes/wip/x11/mate/dbus-glib/recipe.toml index c18fa8074..39bed10c0 100644 --- a/recipes/wip/x11/mate/dbus-glib/recipe.toml +++ b/recipes/wip/x11/mate/dbus-glib/recipe.toml @@ -2,7 +2,6 @@ tar = "https://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-0.114.tar.gz" blake3 = "a632fb16525a201dd159b9538c6009ec717403d580a3741cbf96fd6f9af2828b" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/libmatekbd/recipe.toml b/recipes/wip/x11/mate/libmatekbd/recipe.toml index 92daa69fb..340c1c99d 100644 --- a/recipes/wip/x11/mate/libmatekbd/recipe.toml +++ b/recipes/wip/x11/mate/libmatekbd/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/mate-desktop/libmatekbd/releases/download/v1.28.0/libmatekbd-1.28.0.tar.xz" blake3 = "d5dcf7a47522cc586b6c47e9bd731bbd6db43fcb6797b33b52c03e816d9caedd" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/libmateweather/recipe.toml b/recipes/wip/x11/mate/libmateweather/recipe.toml index c5f74cb60..56aa8b366 100644 --- a/recipes/wip/x11/mate/libmateweather/recipe.toml +++ b/recipes/wip/x11/mate/libmateweather/recipe.toml @@ -3,7 +3,6 @@ tar = "https://github.com/mate-desktop/libmateweather/archive/c1c54a15545f13f3dabd2bcd303533d818905c7b.tar.gz" blake3 = "78c3873937bb90141386d31b6c6d3e585f9f2bde6069933abffdbd9a9161707a" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/mate-session-manager/recipe.toml b/recipes/wip/x11/mate/mate-session-manager/recipe.toml index 519cb3e37..9ac7ebc97 100644 --- a/recipes/wip/x11/mate/mate-session-manager/recipe.toml +++ b/recipes/wip/x11/mate/mate-session-manager/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/mate-desktop/mate-session-manager/releases/download/v1.28.0/mate-session-manager-1.28.0.tar.xz" blake3 = "c76fd3064f4697180006cc2562a0ac55ddfa40b4029047f58c8dcc790606a9a6" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/mate/mate-settings-daemon/recipe.toml b/recipes/wip/x11/mate/mate-settings-daemon/recipe.toml index f46376033..920c24490 100644 --- a/recipes/wip/x11/mate/mate-settings-daemon/recipe.toml +++ b/recipes/wip/x11/mate/mate-settings-daemon/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/mate-desktop/mate-settings-daemon/releases/download/v1.28.0/mate-settings-daemon-1.28.0.tar.xz" blake3 = "396389887d2e79d22e8be28f51df8e6e807ffabb676fbd23888278cf39a65f3d" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/openbox/recipe.toml b/recipes/wip/x11/openbox/recipe.toml index ca0668c7a..bd1d79abd 100644 --- a/recipes/wip/x11/openbox/recipe.toml +++ b/recipes/wip/x11/openbox/recipe.toml @@ -3,7 +3,6 @@ tar = "https://openbox.org/dist/openbox/openbox-3.6.1.tar.xz" blake3 = "6bf434e52e04a9cfcd67c11cb9105b93fe2055dca49f1bed2c105fd117e88ef4" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/startup-notification/recipe.toml b/recipes/wip/x11/startup-notification/recipe.toml index af5696742..ff33778c1 100644 --- a/recipes/wip/x11/startup-notification/recipe.toml +++ b/recipes/wip/x11/startup-notification/recipe.toml @@ -2,7 +2,6 @@ tar = "http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz" blake3 = "134131fdd210d2eaef76eda9826b4a832807aac231dba334f157751ed1d6da36" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/twm/recipe.toml b/recipes/wip/x11/twm/recipe.toml index 1648e69f4..d8b5b5016 100644 --- a/recipes/wip/x11/twm/recipe.toml +++ b/recipes/wip/x11/twm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/twm-1.0.13.tar.xz" blake3 = "50acf2123537a739dcaff50e1ae9b38d7e117a2d07cd3a6b550dcafdc52ff9fc" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/x11proto-kb/recipe.toml b/recipes/wip/x11/x11proto-kb/recipe.toml index 1cd06a038..71569e8b9 100644 --- a/recipes/wip/x11/x11proto-kb/recipe.toml +++ b/recipes/wip/x11/x11proto-kb/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/proto/kbproto-1.0.7.tar.bz2" blake3 = "2fba8d4a298bd6504c237afccc2059a3b9db6363f203824aebf2c0a167197625" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-cursor/recipe.toml b/recipes/wip/x11/xcb-util-cursor/recipe.toml index eb0dbbd9e..a35afa4cd 100644 --- a/recipes/wip/x11/xcb-util-cursor/recipe.toml +++ b/recipes/wip/x11/xcb-util-cursor/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-cursor-0.1.6.tar.xz" blake3 = "af6e7e99779682450e4cb3aa7225f5724845b1672c0380c65ca03b58dfb2d5d8" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-image/recipe.toml b/recipes/wip/x11/xcb-util-image/recipe.toml index a21ab495d..013b13707 100644 --- a/recipes/wip/x11/xcb-util-image/recipe.toml +++ b/recipes/wip/x11/xcb-util-image/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-image-0.4.1.tar.xz" blake3 = "c8a0652f7c215bd312d9f238aed2ba6a122f087b623dafbbac4456f5351df603" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-keysyms/recipe.toml b/recipes/wip/x11/xcb-util-keysyms/recipe.toml index ce6899454..47795d435 100644 --- a/recipes/wip/x11/xcb-util-keysyms/recipe.toml +++ b/recipes/wip/x11/xcb-util-keysyms/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-keysyms-0.4.1.tar.xz" blake3 = "c599df56c79a9f9dcf12b083e343f321cad6af654b83e2976b5a26bc890b5774" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-renderutil/recipe.toml b/recipes/wip/x11/xcb-util-renderutil/recipe.toml index 1d76fc5ec..bb8a96131 100644 --- a/recipes/wip/x11/xcb-util-renderutil/recipe.toml +++ b/recipes/wip/x11/xcb-util-renderutil/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-renderutil-0.3.10.tar.xz" blake3 = "085c94d08bd8181512d4ce93cf0e5bcd48cd8ed983bbb7a7bcb3a3c2312a08ea" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-wm/recipe.toml b/recipes/wip/x11/xcb-util-wm/recipe.toml index c92734b8c..bff820023 100644 --- a/recipes/wip/x11/xcb-util-wm/recipe.toml +++ b/recipes/wip/x11/xcb-util-wm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-wm-0.4.2.tar.xz" blake3 = "4cf6b0e204e12eb6b824c939404fc5ad63d61cb94679e8adf5670207802bc738" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util-xrm/recipe.toml b/recipes/wip/x11/xcb-util-xrm/recipe.toml index 32b753396..4515f8a69 100644 --- a/recipes/wip/x11/xcb-util-xrm/recipe.toml +++ b/recipes/wip/x11/xcb-util-xrm/recipe.toml @@ -2,7 +2,6 @@ tar = "https://github.com/Airblader/xcb-util-xrm/releases/download/v1.3/xcb-util-xrm-1.3.tar.bz2" blake3 = "21cd9a005dde4982a452df156a16f4a61bd5299fb1a24dda2c9e8169e0654f38" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xcb-util/recipe.toml b/recipes/wip/x11/xcb-util/recipe.toml index b0fa8c392..97e934f3f 100644 --- a/recipes/wip/x11/xcb-util/recipe.toml +++ b/recipes/wip/x11/xcb-util/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/lib/xcb-util-0.4.1.tar.xz" blake3 = "ebc940220db0ca39a690a47b565ce73ab536c1fbfdebf008fa0edf0ced862aca" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xev/recipe.toml b/recipes/wip/x11/xev/recipe.toml index d81b8ae1e..2eec88698 100644 --- a/recipes/wip/x11/xev/recipe.toml +++ b/recipes/wip/x11/xev/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/xev-1.2.6.tar.xz" blake3 = "883347a6db32fb4cf6bc97906ca1dacf1c67b7b84bd2abef9c6c5fc20abea647" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xextproto/recipe.toml b/recipes/wip/x11/xextproto/recipe.toml index 8d83a40c2..9be61748d 100644 --- a/recipes/wip/x11/xextproto/recipe.toml +++ b/recipes/wip/x11/xextproto/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/proto/xextproto-7.3.0.tar.bz2" blake3 = "08cdd8b3838da9c99176778c925327aa35661d41d0e4d7458a378f14a42172c0" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xeyes/recipe.toml b/recipes/wip/x11/xeyes/recipe.toml index 7cde39b4f..3131262d4 100644 --- a/recipes/wip/x11/xeyes/recipe.toml +++ b/recipes/wip/x11/xeyes/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/xeyes-1.3.0.tar.xz" blake3 = "33d7ce4847c73e6ebea0cc595b04de80482a657132d0f2235548328ede88b673" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xinit/recipe.toml b/recipes/wip/x11/xinit/recipe.toml index 2ee1557ec..49bd55ba9 100644 --- a/recipes/wip/x11/xinit/recipe.toml +++ b/recipes/wip/x11/xinit/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/xinit-1.4.4.tar.xz" blake3 = "fe988bbff7c4a950256540ad8a469fed1cdbe11439ba738b9714ee2de16f2a6c" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xkbcomp/recipe.toml b/recipes/wip/x11/xkbcomp/recipe.toml index b660ef96d..3553da85c 100644 --- a/recipes/wip/x11/xkbcomp/recipe.toml +++ b/recipes/wip/x11/xkbcomp/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/xkbcomp-1.4.7.tar.xz" blake3 = "e6420ef168976726f8aa8cb362bc70dfe2bd810f2b33e5f71547ec182ed301ea" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xkbutils/recipe.toml b/recipes/wip/x11/xkbutils/recipe.toml index 00aa3ddae..d590a26d9 100644 --- a/recipes/wip/x11/xkbutils/recipe.toml +++ b/recipes/wip/x11/xkbutils/recipe.toml @@ -2,7 +2,6 @@ tar = "https://www.x.org/releases/individual/app/xkbutils-1.0.6.tar.xz" blake3 = "f19c157f5eaad7c91ee101952e55b9fd991b060892ecb3e6d9a7b46fa1dbe587" script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ diff --git a/recipes/wip/x11/xserver-xorg-video-orbital/recipe.toml b/recipes/wip/x11/xserver-xorg-video-orbital/recipe.toml index 46da862b8..1f52a9e72 100644 --- a/recipes/wip/x11/xserver-xorg-video-orbital/recipe.toml +++ b/recipes/wip/x11/xserver-xorg-video-orbital/recipe.toml @@ -4,7 +4,6 @@ tar = "https://www.x.org/releases/individual/driver/xf86-video-dummy-0.4.1.tar.x blake3 = "9b49296f62bf4d22345d87fc01f2a5571f941457c19d21c8800f8f6d2e64ae67" patches = ["redox.patch"] script = """ -DYNAMIC_INIT autotools_recursive_regenerate """ From 33e9f5a846ccb946064d5ce7ee9aea47d373c926 Mon Sep 17 00:00:00 2001 From: Wildan M Date: Thu, 5 Feb 2026 00:24:31 +0700 Subject: [PATCH 6/9] Add missing deps for cosmic-term --- recipes/tools/cosmic-term/recipe.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/tools/cosmic-term/recipe.toml b/recipes/tools/cosmic-term/recipe.toml index da5845df9..21bf0884f 100644 --- a/recipes/tools/cosmic-term/recipe.toml +++ b/recipes/tools/cosmic-term/recipe.toml @@ -6,6 +6,7 @@ branch = "master" template = "custom" dependencies = [ "gettext", + "libxkbcommon", ] script = """ DYNAMIC_INIT From 5006c90b42a3b4b16ad59ce699ec8afb90a15acd Mon Sep 17 00:00:00 2001 From: Wildan M Date: Thu, 5 Feb 2026 09:34:21 +0700 Subject: [PATCH 7/9] Fix autoreconf env not set --- src/cook/script.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cook/script.rs b/src/cook/script.rs index f70670b2e..66ffbf962 100644 --- a/src/cook/script.rs +++ b/src/cook/script.rs @@ -1,8 +1,6 @@ pub(crate) static SHARED_PRESCRIPT: &str = r#" # Build dynamically function DYNAMIC_INIT { - COOKBOOK_AUTORECONF="autoreconf" - case "${TARGET}" in "i586-unknown-redox" | "riscv64gc-unknown-redox") [ -z "${COOKBOOK_VERBOSE}" ] || echo "WARN: ${TARGET} does not support dynamic linking." >&2 @@ -39,6 +37,7 @@ function DYNAMIC_INIT { export COOKBOOK_DYNAMIC=1 } +COOKBOOK_AUTORECONF="autoreconf" autotools_recursive_regenerate() { for f in $(find . -name configure.ac -o -name configure.in -type f | sort); do echo "* autotools regen in '$(dirname $f)'..." From e7d102aea3ea35be83b4ba15bc24dc8932a0699b Mon Sep 17 00:00:00 2001 From: Wildan M Date: Fri, 6 Feb 2026 05:10:31 +0700 Subject: [PATCH 8/9] Add more recipes to static_clean --- mk/prefix.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mk/prefix.mk b/mk/prefix.mk index 7edcfb604..c287999cb 100644 --- a/mk/prefix.mk +++ b/mk/prefix.mk @@ -36,6 +36,8 @@ prefix_clean: static_clean: | $(FSTOOLS_TAG) $(MAKE) c.relibc $(MAKE) c.base,base-initfs,extrautils,kernel,ion,pkgutils,redoxfs + $(MAKE) c.bash,luajit,gettext,openssl1,pcre2,sdl1,zstd,zlib,bzip2,xz + $(MAKE) c.expat,freetype,libffi,libiconv,libjpeg,liborbital,libpng,libxml2,ncurses,ncursesw $(PREFIX)/relibc-install: $(PREFIX)/rust-install | $(FSTOOLS_TAG) $(CONTAINER_TAG) ifeq ($(PODMAN_BUILD),1) From 712d47f355f09aa0ce1dfb8389f05ffa7e256f37 Mon Sep 17 00:00:00 2001 From: Zhiwei Liang Date: Fri, 6 Feb 2026 13:56:04 +0000 Subject: [PATCH 9/9] Remove termplay recipe --- config/aarch64/ci.toml | 1 - config/i586/ci.toml | 1 - config/riscv64gc/ci.toml | 1 - config/x86_64/ci.toml | 1 - recipes/wip/other/termplay/recipe.sh | 2 -- 5 files changed, 6 deletions(-) delete mode 100644 recipes/wip/other/termplay/recipe.sh diff --git a/config/aarch64/ci.toml b/config/aarch64/ci.toml index 5ea271a93..25b5f565d 100644 --- a/config/aarch64/ci.toml +++ b/config/aarch64/ci.toml @@ -199,7 +199,6 @@ zlib = {} # #sdl2-gfx = {} # #sm64ex = {} # #spacecadetpinball = {} -# #termplay = {} # backtrace cannot find link.h # #twin-commander = {} # #ubuntu-wallpapers = {} # #unibilium = {} diff --git a/config/i586/ci.toml b/config/i586/ci.toml index 090d252bc..1fc9d4d60 100644 --- a/config/i586/ci.toml +++ b/config/i586/ci.toml @@ -199,7 +199,6 @@ zlib = {} # #sdl2-gfx = {} # #sm64ex = {} # #spacecadetpinball = {} -# #termplay = {} # backtrace cannot find link.h # #twin-commander = {} # #ubuntu-wallpapers = {} # #unibilium = {} diff --git a/config/riscv64gc/ci.toml b/config/riscv64gc/ci.toml index fbb986a24..99e4307e7 100644 --- a/config/riscv64gc/ci.toml +++ b/config/riscv64gc/ci.toml @@ -199,7 +199,6 @@ zlib = {} # #sdl2-gfx = {} # #sm64ex = {} # #spacecadetpinball = {} -# #termplay = {} # backtrace cannot find link.h # #twin-commander = {} # #ubuntu-wallpapers = {} # #unibilium = {} diff --git a/config/x86_64/ci.toml b/config/x86_64/ci.toml index 69a275204..559df360c 100644 --- a/config/x86_64/ci.toml +++ b/config/x86_64/ci.toml @@ -308,7 +308,6 @@ zstd = {} #sdl2-gfx = {} #sm64ex = {} #spacecadetpinball = {} -#termplay = {} # backtrace cannot find link.h #twin-commander = {} #ubuntu-wallpapers = {} #unibilium = {} diff --git a/recipes/wip/other/termplay/recipe.sh b/recipes/wip/other/termplay/recipe.sh deleted file mode 100644 index e52a05f01..000000000 --- a/recipes/wip/other/termplay/recipe.sh +++ /dev/null @@ -1,2 +0,0 @@ -GIT=https://github.com/jD91mZM2/termplay.git -CARGOFLAGS="--no-default-features --features bin,termion"