logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 9de12bf4b7ee6fdb83fe2a3eb150b6b3644c778b
parent 56920329968214748cd78f0621830ab1be100fb0
Author: Andrius Štikonas <andrius@stikonas.eu>
Date:   Wed, 31 Mar 2021 19:10:50 +0100

GNU Automake 1.13.4

Diffstat:

MSHA256SUMS.sources1+
Mparts.rst5+++++
Mrootfs.sh3+++
Asysa/automake-1.13.4/automake-1.13.4.sh21+++++++++++++++++++++
Asysa/automake-1.13.4/patches/aclocal_glob.patch16++++++++++++++++
Msysa/run2.sh2++
6 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/SHA256SUMS.sources b/SHA256SUMS.sources @@ -12,6 +12,7 @@ db11944057f3faf229ff5d6ce3fcd819f565455c152b72cec17ebc1cbb80136b autoconf-2.65. e98ab43bb839c31696a4202e5b6ff388b391659ef2387cf9365019fad17e1adc automake-1.10.3.tar.bz2 4f46d1f9380c8a3506280750f630e9fc915cb1a435b724be56b499d016368718 automake-1.11.2.tar.bz2 f834ab2145b1ee24bd85387950044f5cb418dd0af2b84c52e60c2bf29162dbfa automake-1.12.6.tar.xz +89ce4933f59b8f0c20115c39cfe450a595cca74ede27b6881e88ec27720d1d66 automake-1.13.4.tar.xz 503cdc2b0992a4309545d17f462cb15f99bb57b7161dfc4082b2e7188f2bcc0f automake-1.4-p6.tar.gz 0dbafacaf21e135cab35d357a14bdcd981d2f2d00e1387801be8091a31b7bb81 automake-1.6.3.tar.bz2 2dddc3b51506e702647ccc6757e15c05323fa67245d2d53e81ed36a832f9be42 automake-1.7.8.tar.bz2 diff --git a/parts.rst b/parts.rst @@ -584,3 +584,8 @@ automake 1.12.6 =============== GNU Automake from 1.12 series. + +automake 1.13.4 +=============== + +GNU Automake from 1.13 series. diff --git a/rootfs.sh b/rootfs.sh @@ -291,6 +291,9 @@ get_file https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz # automake 1.12.6 get_file https://ftp.gnu.org/gnu/automake/automake-1.12.6.tar.xz +# automake 1.13.4 +get_file https://ftp.gnu.org/gnu/automake/automake-1.13.4.tar.xz + # General cleanup find tmp -name .git -exec rm -rf \; diff --git a/sysa/automake-1.13.4/automake-1.13.4.sh b/sysa/automake-1.13.4/automake-1.13.4.sh @@ -0,0 +1,21 @@ +# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> +# +# SPDX-License-Identifier: GPL-3.0-or-later + +src_prepare() { + default_src_prepare + + autoreconf-2.69 -f +} + +src_configure() { + ./configure --prefix=/after +} + +src_compile() { + make MAKEINFO=true CC=tcc +} + +src_install() { + make install MAKEINFO=true +} diff --git a/sysa/automake-1.13.4/patches/aclocal_glob.patch b/sysa/automake-1.13.4/patches/aclocal_glob.patch @@ -0,0 +1,16 @@ +SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu> + +SPDX-License-Identifier: GPL-2.0-or-later + +Fixes aclocal to work with our Perl + +--- aclocal.in 2021-03-31 18:19:50.665806225 +0100 ++++ aclocal.in 2021-03-31 18:20:02.836132739 +0100 +@@ -42,6 +42,7 @@ + use Automake::XFile; + use Automake::FileUtils; + use File::Basename; ++use File::Glob; + use File::Path (); + + # Some globals. diff --git a/sysa/run2.sh b/sysa/run2.sh @@ -18,6 +18,8 @@ build autoconf-2.69 build automake-1.12.6 +build automake-1.13.4 + echo "Bootstrapping completed." exec env - PATH=/after/bin PS1="\w # " bash -i