Install gcc10 dependencies in buildessential (#5618)

Add libyaml to EARLY_PACKAGES in install.sh

Add libyaml to buildessential
This commit is contained in:
Ed Reel
2021-04-14 20:03:47 -05:00
committed by GitHub
parent 36e23d2d45
commit 6e03d849ef
2 changed files with 9 additions and 3 deletions

View File

@@ -18,8 +18,8 @@ CURL="${CURL:-curl}"
# EARLY_PACKAGES cannot depend on crew_profile_base for their core operations (completion scripts are fine) # EARLY_PACKAGES cannot depend on crew_profile_base for their core operations (completion scripts are fine)
EARLY_PACKAGES="gcc10 brotli c_ares libcyrussasl libidn2 libmetalink libnghttp2 libpsl \ EARLY_PACKAGES="gcc10 brotli c_ares libcyrussasl libidn2 libmetalink libnghttp2 libpsl \
libtirpc libunistring openldap rtmpdump zstd ncurses ca_certificates ruby libffi openssl \ libtirpc libunistring openldap rtmpdump zstd ncurses ca_certificates libyaml ruby libffi \
nettle krb5 p11kit libtasn1 gnutls curl git icu4c" openssl nettle krb5 p11kit libtasn1 gnutls curl git icu4c"
LATE_PACKAGES="crew_profile_base less most manpages filecmd mawk readline perl pcre pcre2 python27 python3 \ LATE_PACKAGES="crew_profile_base less most manpages filecmd mawk readline perl pcre pcre2 python27 python3 \
sed bz2 lz4 lzip unzip xzutils zip" sed bz2 lz4 lzip unzip xzutils zip"

View File

@@ -3,7 +3,7 @@ require 'package'
class Buildessential < Package class Buildessential < Package
description 'A collection of tools essential to compile and build software.' description 'A collection of tools essential to compile and build software.'
homepage '' homepage ''
version '1.12' version '1.13'
license 'GPL-3+' license 'GPL-3+'
compatibility 'all' compatibility 'all'
@@ -15,6 +15,12 @@ class Buildessential < Package
#install first to get ldconfig #install first to get ldconfig
depends_on 'glibc' depends_on 'glibc'
depends_on 'gcc10' depends_on 'gcc10'
depends_on 'binutils'
depends_on 'gmp'
depends_on 'mpfr'
depends_on 'mpc'
depends_on 'isl'
depends_on 'libyaml'
depends_on 'gcc_tools' depends_on 'gcc_tools'
depends_on 'linuxheaders' depends_on 'linuxheaders'
depends_on 'make' depends_on 'make'