This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 92fbca34173e3533cdae748d6c7196c42ed94e6c (commit) via 6ef219bbe07212fe8d81fc6ca21b489c89f0b24f (commit) via 639ce4545d9af2d7c6cb889c7b42f9595de25798 (commit) from d952d6d7354658bcd764c1b2a98c4a66eda5542f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 92fbca34173e3533cdae748d6c7196c42ed94e6c Author: Arne Fitzenreiter arne_f@ipfire.org Date: Wed Sep 18 16:31:26 2019 +0000
make.sh: fix tmpfs build on 32bit machines
the inode count of tmpfs defaults on availbable low memory page count which is too low on 32bit machines
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit 6ef219bbe07212fe8d81fc6ca21b489c89f0b24f Author: Arne Fitzenreiter arne_f@ipfire.org Date: Wed Sep 18 16:30:49 2019 +0000
glibc: enbable parallel build for locales
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit 639ce4545d9af2d7c6cb889c7b42f9595de25798 Author: Erik Kapfer ummeegge@ipfire.org Date: Wed Sep 18 06:54:51 2019 +0200
IO-Socket-SSL: Update to version 2.066
Fix for "Undefined subroutine &IO::Socket::SSL::set_client_defaults called at /usr/libexec/git-core/git-send-email" problem.
Signed-off-by: Erik Kapfer ummeegge@ipfire.org Reviewed-by: Michael Tremer michael.tremer@ipfire.org Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/common/IO-Socket-SSL | 12 ++++++++++-- lfs/IO-Socket-SSL | 25 ++++++++++++++++++++----- lfs/glibc | 2 +- make.sh | 2 +- 4 files changed, 32 insertions(+), 9 deletions(-)
Difference in files: diff --git a/config/rootfiles/common/IO-Socket-SSL b/config/rootfiles/common/IO-Socket-SSL index 9780d6c2d..2cfcd22ca 100644 --- a/config/rootfiles/common/IO-Socket-SSL +++ b/config/rootfiles/common/IO-Socket-SSL @@ -1,6 +1,14 @@ -usr/lib/perl5/site_perl/5.30.0/IO/Socket +#usr/lib/perl5/site_perl/5.30.0/IO/Socket +#usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL.pm -usr/lib/perl5/site_perl/5.30.0/MACHINE-linux-thread-multi/auto/IO/Socket +#usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL.pod +usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL/Intercept.pm +usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL/PublicSuffix.pm +usr/lib/perl5/site_perl/5.30.0/IO/Socket/SSL/Utils.pm +#usr/lib/perl5/site_perl/5.30.0/MACHINE-linux-thread-multi/auto/IO/Socket #usr/lib/perl5/site_perl/5.30.0/MACHINE-linux-thread-multi/auto/IO/Socket/SSL #usr/lib/perl5/site_perl/5.30.0/MACHINE-linux-thread-multi/auto/IO/Socket/SSL/.packlist #usr/share/man/man3/IO::Socket::SSL.3 +#usr/share/man/man3/IO::Socket::SSL::Intercept.3 +#usr/share/man/man3/IO::Socket::SSL::PublicSuffix.3 +#usr/share/man/man3/IO::Socket::SSL::Utils.3 diff --git a/lfs/IO-Socket-SSL b/lfs/IO-Socket-SSL index f328fd811..750f3e9ca 100644 --- a/lfs/IO-Socket-SSL +++ b/lfs/IO-Socket-SSL @@ -1,6 +1,21 @@ ############################################################################### -# IPFire.org - An Open Source Firewall Solution # -# Copyright (C) 2007-2018 IPFire Team info@ipfire.org # +# # +# IPFire.org - A linux based firewall # +# Copyright (C) 2007-2019 IPFire Team info@ipfire.org # +# # +# This program is free software: you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation, either version 3 of the License, or # +# (at your option) any later version. # +# # +# This program is distributed in the hope that it will be useful, # +# but WITHOUT ANY WARRANTY; without even the implied warranty of # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # +# GNU General Public License for more details. # +# # +# You should have received a copy of the GNU General Public License # +# along with this program. If not, see http://www.gnu.org/licenses/. # +# # ###############################################################################
############################################################################### @@ -9,11 +24,11 @@
include Config
-VER = 1.78 +VER = 2.066
THISAPP = IO-Socket-SSL-$(VER) DL_FILE = $(THISAPP).tar.gz -DL_FROM = http://cpan.noris.de/authors/id/S/SU/SULLR/ +DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP)
@@ -25,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 172201f3ebc400dc3733a0577ac29095 +$(DL_FILE)_MD5 = ecf96ce2ff9e04a03a2d101c76ce1020
install : $(TARGET)
diff --git a/lfs/glibc b/lfs/glibc index 6ffd39e6e..7d2d0cf65 100644 --- a/lfs/glibc +++ b/lfs/glibc @@ -158,7 +158,7 @@ endif ifneq "$(TOOLCHAIN)" "1" # Creating the locales mkdir -p /usr/lib/locale - cd $(DIR_SRC)/glibc-build && make localedata/install-locales + cd $(DIR_SRC)/glibc-build && make localedata/install-locales $(MAKETUNING)
# Timezone data will be shipped by tzdata. rm -rfv /usr/share/zoneinfo diff --git a/make.sh b/make.sh index e4c5a3a95..bea4f5d6d 100755 --- a/make.sh +++ b/make.sh @@ -473,7 +473,7 @@ prepareenv() {
if [ "${ENABLE_RAMDISK}" = "on" ]; then mkdir -p $BASEDIR/build/usr/src - mount -t tmpfs tmpfs -o size=4G,mode=1777 $BASEDIR/build/usr/src + mount -t tmpfs tmpfs -o size=4G,nr_inodes=1M,mode=1777 $BASEDIR/build/usr/src fi
mkdir -p $BASEDIR/build/usr/src/{cache,config,doc,html,langs,lfs,log,src,ccache}
hooks/post-receive -- IPFire 2.x development tree