public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. c6e082e37079abe540c2467bff3bc29b16a15ff3
@ 2024-06-27 13:58 Arne Fitzenreiter
  0 siblings, 0 replies; only message in thread
From: Arne Fitzenreiter @ 2024-06-27 13:58 UTC (permalink / raw)
  To: ipfire-scm

[-- Attachment #1: Type: text/plain, Size: 17322 bytes --]

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  c6e082e37079abe540c2467bff3bc29b16a15ff3 (commit)
       via  7a1894e7365162934e8bc4eae9ea8c6730ca4706 (commit)
       via  7ecbb7d9da5d638686bd51a7b72722d119bfa4d3 (commit)
       via  594b1fe0255518d87dcc7f69ca4789d20a186c48 (commit)
       via  c3ff185550b86dbe0cbec53dd9e2045f9bab1cef (commit)
       via  4176d311cbf8816cf5ae7e3f6da4509344dc4e28 (commit)
       via  80d4084a00914f6958c0f7aa7baf9c2719da076b (commit)
       via  50fbcebcb36150a0c5250816d929236b6cd3faaf (commit)
       via  ab448eadba187e9cbc43ea9e56cc2cee7f7852d2 (commit)
      from  3df0ddac74db9383df0e96128acda40b90d26a15 (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 c6e082e37079abe540c2467bff3bc29b16a15ff3
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Jun 27 15:57:58 2024 +0200

    core187: ship oath-toolkit
    
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 7a1894e7365162934e8bc4eae9ea8c6730ca4706
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Sun Jun 2 16:02:21 2024 +0200

    oath-toolkit: Update to version 2.6.11
    
    - Update from version 2.6.9 to 2.6.11
    - Update of rootfile not required
    - Changelog
        2.6.11
    	** liboath: Handle invalid base32 encoded secrets.  Fixes: #41.
    	   The gnulib update in version 2.6.10 made the base32 encoding functions
    	   reject invalid encodings, but it appears as if these are wildly used.
    	   We now accept invalid encodings again.  Thanks to Dorancé Martínez and
    	   Seres Bendegúz for reports.
        2.6.10
    	** Building from git uses a ./bootstrap script instead of 'make bootstrap'.
    	** Build fixes for Windows.
    	   In particular, don't use filenames "aux.h" and "aux.c" which interact
    	   badly with the AUX special filename.
    	** Build fixes for Arch Linux.
    	** Various build fixes including updated gnulib files.
    	   One remaining gnulib self-test disabled.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 7ecbb7d9da5d638686bd51a7b72722d119bfa4d3
Author: Matthias Fischer <matthias.fischer(a)ipfire.org>
Date:   Thu May 30 13:54:23 2024 +0200

    monit: Update to 5.34.0
    
    Changelog is rather long, for details see:
    https://mmonit.com/monit/changes/
    
    Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
    Reviewed-by: Jon Murphy <jon.murphy(a)ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 594b1fe0255518d87dcc7f69ca4789d20a186c48
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Jun 27 15:54:41 2024 +0200

    core187: ship sqlite
    
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit c3ff185550b86dbe0cbec53dd9e2045f9bab1cef
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Tue May 28 17:41:44 2024 +0200

    sqlite: Update to version 3.46.0
    
    - Update from version 3.45.3 to 3.46.0
    - Update of rootfile not required
    - Changelog
        3.46.0
    	Enhance PRAGMA optimize in multiple ways, to make it simpler to use:
    	    PRAGMA optimize automatically implements a temporary analysis limit to prevent
    	     excess runtime on large databases.
    	    Added the new 0x10000 bitmask option to check for updates on all tables.
    	    Automatically re-analyze tables that do not have sqlite_stat1 entries.
    	Enhancements to the date and time functions:
    	    The strftime() SQL function now supports %G, %g, %U, and %V.
    	    New modifiers 'ceiling' and 'floor' control the algorithm used to resolve
    	     ambiguous dates when shifting a date by an integer number of months and/or
    	     years.
    	    The 'utc' and 'localtime' modifiers are now no-ops if SQLite knows that the
    	     time is already in UTC or in the localtime, respectively.
    	Add support for underscore ("_") characters between digits in numeric literals.
    	Add the json_pretty() SQL function.
    	Query planner improvements:
    	    The "VALUES-as-coroutine" optimization enables INSERT statements with
    	     thousands of rows in the VALUES clause to parse and run in about half the
    	     time and using about half as much memory.
    	    Allow the use of an index for queries like
    	     "SELECT count(DISTINCT col) FROM ...", even if the index records are not
    	     smaller than the table records.
    	    Improved recognition of cases where the value of an SQL function is constant
    	     because all its arguments are constant.
    	    Enhance the WHERE-clause push-down optimization so that it is able to push
    	     down WHERE clause terms containing uncorrelated subqueries.
    	Allocate additional memory from the heap for the SQL parser stack if that stack
    	 overflows, rather than reporting a "parser stack overflow" error.
    	JSON changes:
    	    Allow ASCII control characters within JSON5 string literals.
    	    Fix the -> and ->> operators so that when the right-hand side operand is a
    	     string that looks like an integer it is still treated as a string, because
    	     that is what PostgreSQL does.
    	Allow large hexadecimal literals to be used as the DEFAULT value to a table column.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 4176d311cbf8816cf5ae7e3f6da4509344dc4e28
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Jun 27 15:52:46 2024 +0200

    core187: dhcpcd
    
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 80d4084a00914f6958c0f7aa7baf9c2719da076b
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Tue May 28 17:41:43 2024 +0200

    dhcpcd: Update to version 10.0.8
    
    - Update from version 10.0.6 to 10.0.8
    - Update of rootfile not required
    - Changelog
        10.0.8
    	    Fixed compile without ARP
    	    Fixed closefrom test for glibc
    	    Fixed spelling of ADVERTISEMENT
        10.0.7
    	    DHCP: use request_time, fallback_time and ipv4ll_time rather than reboot
    	     timeout
    	    DHCP6: Wait for IRT to elapse before requesting advertisments
    	    DHCPv6: Don't re-INFORM if the RA changes
    	    privsep: Reduce fd use
    	    dhcpcd: Add support for arp persist defence by @pradeep-brightsign in #273
    	    Move dhcp(v4) packet size check earlier by @pemensik in #295
    	    Define the Azure Endpoint and other site-specific options by @lparkes in #299
    	    add RFC4191 support by @goertzenator in #297
    	    dhcpcd: Respect IPV6_PREFERRED_ONLY flag regardless of state by @taoyl-g
    	     in #307
    	    Fix time_offset to be int to match RFC-2132 by @ColinMcInnes in #319
    	    hooks/30-hostname: Exit with 0 if setting hostname is not needed by @bdrung
    	     in #320
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit 50fbcebcb36150a0c5250816d929236b6cd3faaf
Author: Arne Fitzenreiter <arne_f(a)ipfire.org>
Date:   Thu Jun 27 15:50:59 2024 +0200

    core187: ship ntp
    
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

commit ab448eadba187e9cbc43ea9e56cc2cee7f7852d2
Author: Matthias Fischer <matthias.fischer(a)ipfire.org>
Date:   Sun May 26 17:34:32 2024 +0200

    ntp: Update to 4.2.8p18
    
    Changelog is too long to be published here, for details see:
    https://downloads.nwtime.org/ntp/ChangeLog-stable
    
    Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
    Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
    Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 config/rootfiles/common/ntp                                       | 3 +--
 config/rootfiles/{oldcore/125 => core/187}/filelists/dhcpcd       | 0
 config/rootfiles/{oldcore/100 => core/187}/filelists/ntp          | 0
 config/rootfiles/{oldcore/169 => core/187}/filelists/oath-toolkit | 0
 config/rootfiles/{oldcore/125 => core/187}/filelists/sqlite       | 0
 lfs/dhcpcd                                                        | 4 ++--
 lfs/monit                                                         | 8 ++++----
 lfs/ntp                                                           | 6 +++---
 lfs/oath-toolkit                                                  | 6 +++---
 lfs/sqlite                                                        | 4 ++--
 10 files changed, 15 insertions(+), 16 deletions(-)
 copy config/rootfiles/{oldcore/125 => core/187}/filelists/dhcpcd (100%)
 copy config/rootfiles/{oldcore/100 => core/187}/filelists/ntp (100%)
 copy config/rootfiles/{oldcore/169 => core/187}/filelists/oath-toolkit (100%)
 copy config/rootfiles/{oldcore/125 => core/187}/filelists/sqlite (100%)

Difference in files:
diff --git a/config/rootfiles/common/ntp b/config/rootfiles/common/ntp
index fd1262e9b..7ca3ed1e7 100644
--- a/config/rootfiles/common/ntp
+++ b/config/rootfiles/common/ntp
@@ -10,7 +10,6 @@ usr/bin/ntpd
 usr/bin/ntpdate
 usr/bin/ntpdc
 usr/bin/ntpq
-#usr/bin/ntpsnmpd
 usr/bin/ntptime
 usr/bin/ntptrace
 usr/bin/sntp
@@ -18,6 +17,7 @@ usr/bin/tickadj
 usr/bin/update-leap
 #usr/share/doc/ntp
 #usr/share/doc/ntp/html
+#usr/share/doc/ntp/html/.datecheck
 #usr/share/doc/ntp/html/access.html
 #usr/share/doc/ntp/html/accopt.html
 #usr/share/doc/ntp/html/assoc.html
@@ -277,7 +277,6 @@ usr/bin/update-leap
 #usr/share/man/man1/ntpdc.1
 #usr/share/man/man1/ntpq.1
 #usr/share/man/man1/ntptrace.1
-#usr/share/man/man1/ntpsnmpd.1
 #usr/share/man/man1/sntp.1
 #usr/share/man/man1/update-leap.1
 #usr/share/man/man5/ntp.conf.5
diff --git a/config/rootfiles/core/187/filelists/dhcpcd b/config/rootfiles/core/187/filelists/dhcpcd
new file mode 120000
index 000000000..1e799dabb
--- /dev/null
+++ b/config/rootfiles/core/187/filelists/dhcpcd
@@ -0,0 +1 @@
+../../../common/dhcpcd
\ No newline at end of file
diff --git a/config/rootfiles/core/187/filelists/ntp b/config/rootfiles/core/187/filelists/ntp
new file mode 120000
index 000000000..7542d86cb
--- /dev/null
+++ b/config/rootfiles/core/187/filelists/ntp
@@ -0,0 +1 @@
+../../../common/ntp
\ No newline at end of file
diff --git a/config/rootfiles/core/187/filelists/oath-toolkit b/config/rootfiles/core/187/filelists/oath-toolkit
new file mode 120000
index 000000000..589cc0d9f
--- /dev/null
+++ b/config/rootfiles/core/187/filelists/oath-toolkit
@@ -0,0 +1 @@
+../../../common/oath-toolkit
\ No newline at end of file
diff --git a/config/rootfiles/core/187/filelists/sqlite b/config/rootfiles/core/187/filelists/sqlite
new file mode 120000
index 000000000..4ea569766
--- /dev/null
+++ b/config/rootfiles/core/187/filelists/sqlite
@@ -0,0 +1 @@
+../../../common/sqlite
\ No newline at end of file
diff --git a/lfs/dhcpcd b/lfs/dhcpcd
index 4a2368562..3bac681d8 100644
--- a/lfs/dhcpcd
+++ b/lfs/dhcpcd
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 10.0.6
+VER        = 10.0.8
 
 THISAPP    = dhcpcd-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4afd08cf7377b2262d33bf3f7ac503e081572a7c1ffd53b285842a92d99d88fae44e7e6384134bbe1eb839001f822fa7fb43718c42f9e8e6d11a05ec66fa2fc6
+$(DL_FILE)_BLAKE2 = 1bf27387c13f192c6216e2f1ecad06bfa82267d5d6e08ddaa123789699fe9154222c33b1aa1f603e65ae8dce510cb24d48e72701494e0793c766e81f024f8bc5
 
 install : $(TARGET)
 
diff --git a/lfs/monit b/lfs/monit
index 6b3eecd4f..0d71cb465 100644
--- a/lfs/monit
+++ b/lfs/monit
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info(a)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        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 5.33.0
+VER        = 5.34.0
 SUMMARY    = Utility for monitoring services on a Unix system
 
 THISAPP    = monit-$(VER)
@@ -33,7 +33,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = monit
-PAK_VER    = 22
+PAK_VER    = 23
 
 DEPS       =
 
@@ -47,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 770474f010067fe6388622e764a0d032495589dad24873dabd87ab0aa8edcff34d7a014a72c1c05aaa47104b12daf3dc542aa1d2d823d267814c9b5fd139e747
+$(DL_FILE)_BLAKE2 = e49e271f981d76b5d1f71818b7e6e1b1a2de56d8b1f856931c9abec053358dc6557e58fe3c37c5af9cf0f4e2c667ead5cff2ac96c6d8a2c70155cf301c6ffb44
 
 install : $(TARGET)
 
diff --git a/lfs/ntp b/lfs/ntp
index aadfbd0c1..2d746c78f 100644
--- a/lfs/ntp
+++ b/lfs/ntp
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info(a)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        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 4.2.8p17
+VER        = 4.2.8p18
 
 THISAPP    = ntp-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 5c0e90a234cdeab76e7443b42dfd5a0c3c78693a11bdb0fa21c8def91adbdf9b9871498df9d211509632812a9107501da3470104122e9621577541ffd6cd1ab6
+$(DL_FILE)_BLAKE2 = 9a7bb767d2d8ae3a7224542df7978f8289cbdf28488c5e4dce4c549cdd1063259f69548898a352c0463ce83c4725bfd7c7dbf673ee3b74e490d7b1275760497c
 
 install : $(TARGET)
 
diff --git a/lfs/oath-toolkit b/lfs/oath-toolkit
index 783d6e930..c71399985 100644
--- a/lfs/oath-toolkit
+++ b/lfs/oath-toolkit
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2022-2023  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2022-2024  IPFire Team  <info(a)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        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.6.9
+VER        = 2.6.11
 
 THISAPP    = oath-toolkit-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 572512311bbfa18d325c7b9b8d88ff85c05241c9a22942bc67edf531ed621e68b031dc4562bd8473ec1b1bfe264c8a4084c1c304ba0d24914acc5b21325b8601
+$(DL_FILE)_BLAKE2 = f3fa3ab1818f4f9bbf7c8c88432cd3432fbfb30dfcc660ab85f07e2d3d7e1616fc24579900bc55bbf72fb81b2eac4a6591553968872f07d8b3955ce4e6495afd
 
 install : $(TARGET)
 
diff --git a/lfs/sqlite b/lfs/sqlite
index 421e32dd2..d001a5f49 100644
--- a/lfs/sqlite
+++ b/lfs/sqlite
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 3450300
+VER        = 3460000
 
 THISAPP    = sqlite-autoconf-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 24e47dcfb8fb1dbd0055d48cfc540884439e9443b1b79700e867326feb60b340a9b5d5bdb83eeca210b47251e61b706ec67eb1b84e59b11bae6c76271b1030bf
+$(DL_FILE)_BLAKE2 = 2f484823b84ab758e21960ac6b730cefa62c26f7ccf5344299a26e6f559d0e02cfd4cff5f5921effdee6e2e49d2ab36b1f91cffdd8599bc2189efab44bf4b197
 
 install : $(TARGET)
 


hooks/post-receive
--
IPFire 2.x development tree

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-06-27 13:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-27 13:58 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. c6e082e37079abe540c2467bff3bc29b16a15ff3 Arne Fitzenreiter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox