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 2a52353f3c4ac7d6be2e4b0e47678fcc3810891c (commit) via f1fc2193a73dc3c647a3c95ad1c593005da12ff1 (commit) from e981b751d180982563fb8a76e63bddadb69a5bd8 (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 2a52353f3c4ac7d6be2e4b0e47678fcc3810891c Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jun 18 15:12:53 2021 +0000
general-functions.pl: Explicitely call new system function
Perl seems to just "guess" that someone no longer wants to use the builtin "system" command when there is a function with the same name.
I have no idea what kind of liquid they are drinking, but because of the side effects of that stuff, we explicitely call our system() function.
Not that that would be necessary, but why not waste a couple more CPU cycles?
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit f1fc2193a73dc3c647a3c95ad1c593005da12ff1 Author: Michael Tremer michael.tremer@ipfire.org Date: Fri Jun 18 15:08:57 2021 +0000
Bump release of all packages with CGI files
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/cfgroot/general-functions.pl | 4 ++-- lfs/guardian | 2 +- lfs/hostapd | 2 +- lfs/mpfire | 2 +- lfs/samba | 2 +- lfs/tor | 2 +- lfs/wio | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-)
Difference in files: diff --git a/config/cfgroot/general-functions.pl b/config/cfgroot/general-functions.pl index 96a826a15..550afcf82 100644 --- a/config/cfgroot/general-functions.pl +++ b/config/cfgroot/general-functions.pl @@ -113,7 +113,7 @@ sub log my $logmessage = $_[0]; $logmessage =~ /([\w\W]*)/; $logmessage = $1; - system('logger', '-t', $tag, $logmessage); + &system('logger', '-t', $tag, $logmessage); } sub setup_default_networks { @@ -1223,7 +1223,7 @@ sub firewall_needs_reload() { }
sub firewall_reload() { - system("/usr/local/bin/firewallctrl"); + &system("/usr/local/bin/firewallctrl"); }
# Function which will return the used interface for the red network zone (red0, ppp0, etc). diff --git a/lfs/guardian b/lfs/guardian index 1d9a2f292..245249031 100644 --- a/lfs/guardian +++ b/lfs/guardian @@ -33,7 +33,7 @@ DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP)
PROG = guardian -PAK_VER = 23 +PAK_VER = 24
DEPS = perl-inotify2 perl-Net-IP
diff --git a/lfs/hostapd b/lfs/hostapd index f89326f4a..19a4b9340 100644 --- a/lfs/hostapd +++ b/lfs/hostapd @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/hostap-$(VER) TARGET = $(DIR_INFO)/$(THISAPP) PROG = hostapd -PAK_VER = 55 +PAK_VER = 56
DEPS =
diff --git a/lfs/mpfire b/lfs/mpfire index b8a6eec64..94fce614e 100644 --- a/lfs/mpfire +++ b/lfs/mpfire @@ -30,7 +30,7 @@ THISAPP = mpfire-$(VER) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpfire -PAK_VER = 13 +PAK_VER = 14
DEPS = mpd mpc
diff --git a/lfs/samba b/lfs/samba index 2e11ba7a9..4c6ebddf6 100644 --- a/lfs/samba +++ b/lfs/samba @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = samba -PAK_VER = 79 +PAK_VER = 80
DEPS = avahi cups libtirpc krb5 perl-Parse-Yapp
diff --git a/lfs/tor b/lfs/tor index 9d40be1ce..c6bc5c43f 100644 --- a/lfs/tor +++ b/lfs/tor @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = tor -PAK_VER = 60 +PAK_VER = 61
DEPS = libseccomp
diff --git a/lfs/wio b/lfs/wio index b65d244d6..c54cd3f31 100644 --- a/lfs/wio +++ b/lfs/wio @@ -15,7 +15,7 @@ THISAPP = wio-$(VER) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = wio -PAK_VER = 12 +PAK_VER = 13
############################################################################### # Top-level Rules
hooks/post-receive -- IPFire 2.x development tree