GNU Automake 1.11.2.

This commit is contained in:
Andrius Štikonas 2021-03-28 23:18:33 +01:00
parent c345001ee8
commit 838a1bfb90
8 changed files with 51 additions and 2 deletions

View File

@ -9,6 +9,7 @@ f0cde70a8f135098a6a3e85869f2e1cc3f141beea766fa3d6636e086cd8b90a7 autoconf-2.59.
93a2ceab963618b021db153f0c881a2de82455c1dc7422be436fcd5c554085a1 autoconf-2.61.tar.bz2 93a2ceab963618b021db153f0c881a2de82455c1dc7422be436fcd5c554085a1 autoconf-2.61.tar.bz2
db11944057f3faf229ff5d6ce3fcd819f565455c152b72cec17ebc1cbb80136b autoconf-2.65.tar.bz2 db11944057f3faf229ff5d6ce3fcd819f565455c152b72cec17ebc1cbb80136b autoconf-2.65.tar.bz2
e98ab43bb839c31696a4202e5b6ff388b391659ef2387cf9365019fad17e1adc automake-1.10.3.tar.bz2 e98ab43bb839c31696a4202e5b6ff388b391659ef2387cf9365019fad17e1adc automake-1.10.3.tar.bz2
4f46d1f9380c8a3506280750f630e9fc915cb1a435b724be56b499d016368718 automake-1.11.2.tar.bz2
503cdc2b0992a4309545d17f462cb15f99bb57b7161dfc4082b2e7188f2bcc0f automake-1.4-p6.tar.gz 503cdc2b0992a4309545d17f462cb15f99bb57b7161dfc4082b2e7188f2bcc0f automake-1.4-p6.tar.gz
0dbafacaf21e135cab35d357a14bdcd981d2f2d00e1387801be8091a31b7bb81 automake-1.6.3.tar.bz2 0dbafacaf21e135cab35d357a14bdcd981d2f2d00e1387801be8091a31b7bb81 automake-1.6.3.tar.bz2
2dddc3b51506e702647ccc6757e15c05323fa67245d2d53e81ed36a832f9be42 automake-1.7.8.tar.bz2 2dddc3b51506e702647ccc6757e15c05323fa67245d2d53e81ed36a832f9be42 automake-1.7.8.tar.bz2

View File

@ -567,3 +567,9 @@ xz 5.0.5
XZ Utils is a set of free software command-line lossless data compressors, XZ Utils is a set of free software command-line lossless data compressors,
including lzma and xz. In most cases, xz achieves higher compression rates including lzma and xz. In most cases, xz achieves higher compression rates
than alternatives like gzip and bzip2. than alternatives like gzip and bzip2.
automake 1.11.2
===============
GNU Automake from 1.11 series. This is not the latest point release as newer ones
need Autoconf 2.68.

View File

@ -282,6 +282,9 @@ get_file https://ftp.gnu.org/gnu/bash/bash-5.1.tar.gz
# xz 5.0.5 # xz 5.0.5
get_file https://tukaani.org/xz/xz-5.0.5.tar.bz2 get_file https://tukaani.org/xz/xz-5.0.5.tar.bz2
# automake 1.11.2
get_file https://ftp.gnu.org/gnu/automake/automake-1.11.2.tar.bz2
# General cleanup # General cleanup
find tmp -name .git -exec rm -rf \; find tmp -name .git -exec rm -rf \;

View File

@ -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
./bootstrap
}
src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

View File

@ -0,0 +1,16 @@
SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
SPDX-License-Identifier: GPL-2.0-or-later
Fixes aclocal-1.10 to work with our Perl
--- aclocal.in 2021-03-25 19:18:10.489134059 +0000
+++ aclocal.in 2021-03-25 19:18:20.159389339 +0000
@@ -45,6 +45,7 @@
use Automake::FileUtils;
use File::Basename;
use File::stat;
+use File::Glob;
use Cwd;
# Some globals.

View File

@ -31,7 +31,7 @@ src_prepare() {
cd .. cd ..
done done
cd libmudflap cd libmudflap
AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
cd .. cd ..
for dir in fixincludes intl libmudflap; do for dir in fixincludes intl libmudflap; do

View File

@ -30,7 +30,7 @@ src_prepare() {
cd .. cd ..
done done
cd libmudflap cd libmudflap
AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 autoreconf-2.61 -f
cd .. cd ..
for dir in fixincludes intl libmudflap; do for dir in fixincludes intl libmudflap; do

View File

@ -12,6 +12,8 @@ set -e
build xz-5.0.5 build xz-5.0.5
build automake-1.11.2
echo "Bootstrapping completed." echo "Bootstrapping completed."
exec env - PATH=/after/bin PS1="\w # " bash -i exec env - PATH=/after/bin PS1="\w # " bash -i