Upgrade some gnu packages (#6524)

* add fno_lto options to const.rb

* libsigsev => 2.13

* bison => 3.8.2

* texinfo => 6.8

* mailutils => 3.13

* gnuchess => 6.2.9

* notice and yellow

* mailutils: tcp-wrappers configuration

* sed => 4.8-1 (use LTO)

* add binaries

Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
Cassandra Watergate
2021-12-28 12:46:15 -08:00
committed by GitHub
parent 69fe6ad9bc
commit 0c5264a193
7 changed files with 106 additions and 101 deletions

View File

@@ -122,8 +122,8 @@ end
CREW_COMMON_FLAGS = '-O2 -pipe -flto -ffat-lto-objects -fPIC -fuse-ld=gold'
CREW_COMMON_FNO_LTO_FLAGS = '-O2 -pipe -fno-lto -fPIC -fuse-ld=gold'
CREW_FNO_LTO_LDFLAGS = '-fno-lto'
CREW_LDFLAGS = '-flto'
CREW_FNO_LTO_LDFLAGS = '-fno-lto'
CREW_ENV_OPTIONS = <<~OPT.chomp
CFLAGS='#{CREW_COMMON_FLAGS}' \
@@ -132,6 +132,13 @@ CREW_ENV_OPTIONS = <<~OPT.chomp
FFLAGS='#{CREW_COMMON_FLAGS}' \
LDFLAGS='#{CREW_LDFLAGS}'
OPT
CREW_ENV_FNO_LTO_OPTIONS = <<~OPT.chomp
CFLAGS='#{CREW_COMMON_FNO_LTO_FLAGS}' \
CXXFLAGS='#{CREW_COMMON_FNO_LTO_FLAGS}' \
FCFLAGS='#{CREW_COMMON_FNO_LTO_FLAGS}' \
FFLAGS='#{CREW_COMMON_FNO_LTO_FLAGS}' \
LDFLAGS='#{CREW_FNO_LTO_LDFLAGS}'
OPT
CREW_OPTIONS = <<~OPT.chomp
--prefix=#{CREW_PREFIX} \
--libdir=#{CREW_LIB_PREFIX} \