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, next has been updated via f7879935a58e1420f632c64b98b21b08d6f8b046 (commit) via 07358a9fc5ef0cb9ae7e386158bac5d5a21340ec (commit) from cf6ab4e56944fcc39f707d87af411270bccc9dae (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 f7879935a58e1420f632c64b98b21b08d6f8b046 Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Aug 6 14:17:39 2024 +0000
core-updates: Fix release number
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 07358a9fc5ef0cb9ae7e386158bac5d5a21340ec Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Aug 6 14:11:04 2024 +0000
make.sh: Grant network access when downloading packages
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: lfs/core-updates | 6 +++--- make.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-)
Difference in files: diff --git a/lfs/core-updates b/lfs/core-updates index e56ada70c..a6478b5e0 100644 --- a/lfs/core-updates +++ b/lfs/core-updates @@ -27,11 +27,11 @@ include Config THISAPP = core-updates TARGET = $(DIR_INFO)/$(THISAPP)
-PROG = core-upgrade +PROG = core-upgrade VER = $(VERSION) -RELEASE = $(CORE) +PAK_VER = $(CORE)
-SUMMARY = IPFire Core Update $(CORE) +SUMMARY = IPFire Core Update $(CORE)
############################################################################### # Top-level Rules diff --git a/make.sh b/make.sh index 2f629d73d..3a3590305 100755 --- a/make.sh +++ b/make.sh @@ -915,7 +915,7 @@ lfsmake1() { [ $? == 1 ] && return 0
# Download source outside of the toolchain - if ! make_pkg "${pkg}" download "$@"; then + if ! make_pkg --network "${pkg}" download "$@"; then exiterror "Downloading ${pkg}" fi
@@ -937,7 +937,7 @@ lfsmake2() { [ $? == 1 ] && return 0
# Download source outside of the toolchain - if ! make_pkg "${pkg}" download "$@"; then + if ! make_pkg --network "${pkg}" download "$@"; then exiterror "Downloading ${pkg}" fi
@@ -1144,7 +1144,7 @@ download_sources() { [ $? == 1 ] && continue
# Download and check the package - if ! make_pkg "${pkg}" download b2; then + if ! make_pkg --network "${pkg}" download b2; then failed_packages+=( "${pkg}" ) print_status FAIL continue
hooks/post-receive -- IPFire 2.x development tree