public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] haproxy: Update to version 3.1.2
@ 2025-01-17 11:26 Adolf Belka
  2025-01-17 11:26 ` [PATCH] sqlite: Update to version 3480000 Adolf Belka
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Adolf Belka @ 2025-01-17 11:26 UTC (permalink / raw)
  To: development

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

- Update from version 3.0.3 to 3.1.2
- Update of rootfile not required
- Changelog is very large as there are many entries for the update from 3.0.x to 3.1.x
   For details read the CHANGELOG file in the source tarball.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/haproxy | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/lfs/haproxy b/lfs/haproxy
index c433d40e0..d73c94289 100644
--- a/lfs/haproxy
+++ b/lfs/haproxy
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2025  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        #
@@ -26,9 +26,9 @@ include Config
 
 SUMMARY    = The Reliable, High Performance TCP/HTTP Load Balancer
 
-VER        = 3.0.3
+VER        = 3.1.2
 
-# From: https://www.haproxy.org/download/3.0/src/haproxy-3.0.3.tar.gz
+# From: https://www.haproxy.org/download/
 
 THISAPP    = haproxy-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -36,7 +36,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = haproxy
-PAK_VER    = 30
+PAK_VER    = 31
 
 DEPS       =
 
@@ -54,7 +54,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = d5f10110f0c95e214885b3a2248ed048adaf747e382fd343f90cfd35ed58e58f71a643260d87208e70f4d37101ba80471cd06ccd2d4cd9915031aa42fc86104f
+$(DL_FILE)_BLAKE2 = 234a365251f226dcd1892fe89ec0dc11f505a85e08b12be1dba61dfd03808cb4cd8ad0f0548b2250379ade124314a5b5577b634bb401798666bae41fe1cc1388
 
 install : $(TARGET)
 
-- 
2.48.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] sqlite: Update to version 3480000
  2025-01-17 11:26 [PATCH] haproxy: Update to version 3.1.2 Adolf Belka
@ 2025-01-17 11:26 ` Adolf Belka
  2025-01-17 11:26 ` [PATCH] tmux: Update to version 3.5a Adolf Belka
  2025-01-17 11:26 ` [PATCH] tzdata: Update to version 2025a Adolf Belka
  2 siblings, 0 replies; 4+ messages in thread
From: Adolf Belka @ 2025-01-17 11:26 UTC (permalink / raw)
  To: development

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

- Update from version 3470200 to 3480000
- Update of rootfile not required
- Changelog
    3480000
	Refactor the "configure" script used to help build SQLite from canonical
	 sources, to fix bugs, improve performance, and make the code more maintainable.
	    This does not affect the "configure" script in the
	     sqlite3-autoconf-NNNNNNN.tar.gz "amalgamation tarball", only the canonical
	     sources. The build system for the amalgamation tarball is unchanged. If
	     you are using the amalgamation tarball, nothing about this change log
	     entry applies to you.
	    The key innovation here is that Autosetup is now used instead of GNU
	     Autoconf. That seems like a big change, but it is really just an
	     implementation detail. The ./configure script is coded very differently,
	     but should work the same as before.
	    One advantage of the new configure is that you no longer need to install
	     TCL in order to build most SQLite targets. TCL is still required to run
	     tests or to build accessory programs (like sqlite3_analyzer) that use TCL,
	     but it is not required for most common targets. Hence, as of this release,
	     the only build dependencies are a C compiler and "make" or "nmake".
	Improved EXPLAIN QUERY PLAN output for covering indexes.
	Allow a two-argument version of the iif() SQL function. Also allow if() as an
	 alternative spelling for iif().
	Add the ".dbtotxt" command to the CLI.
	Add the SQLITE_IOCAP_SUBPAGE_READ property to the xDeviceCharacteristics method
	 of the sqlite3_io_methods object.
	Add the SQLITE_PREPARE_DONT_LOG option to sqlite3_prepare_v3() that prevents
	 warning messages being sent to the error log if the SQL is ill-formed. This
	 allows sqlite3_prepare_v3() to be used to do test compiles of SQL to check for
	 validity without polluting the error log with false messages.
	Increase the minimum allowed value of SQLITE_LIMIT_LENGTH from 1 to 30.
	Added the SQLITE_FCNTL_NULL_IO file control.
	Extend the FTS5 auxiliary API xInstToken() to work with prefix queries via the
	 insttoken configuration option and the fts5_insttoken() SQL function.
	Increase the maximum number of arguments to an SQL function from 127 to 1000.
	Remove vestigial traces of SQLITE_USER_AUTHENTICATION.
	Various obscure bug fixes.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/sqlite | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/sqlite b/lfs/sqlite
index ee7d96033..3f7274a5e 100644
--- a/lfs/sqlite
+++ b/lfs/sqlite
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2025  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        = 3470200
+VER        = 3480000
 
 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 = 3c2ea6cba87f5850a9c2355cc213182d351a9d7b26687f77c07178526b300eec19040804a713e6fa3db704dcb4e0e4921ef849f6bc14496adcfc22875048c640
+$(DL_FILE)_BLAKE2 = 9bfa33875ddb964efef7c91546be0819597a697e05789fb18c6b7e41d870d838c5446a99a64ec57c564f3d995fd7893fb7617c4d0399dd0924b8a3c5986f5698
 
 install : $(TARGET)
 
-- 
2.48.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] tmux: Update to version 3.5a
  2025-01-17 11:26 [PATCH] haproxy: Update to version 3.1.2 Adolf Belka
  2025-01-17 11:26 ` [PATCH] sqlite: Update to version 3480000 Adolf Belka
@ 2025-01-17 11:26 ` Adolf Belka
  2025-01-17 11:26 ` [PATCH] tzdata: Update to version 2025a Adolf Belka
  2 siblings, 0 replies; 4+ messages in thread
From: Adolf Belka @ 2025-01-17 11:26 UTC (permalink / raw)
  To: development

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

- Update from version 3.4 to 3.5a
- Update of rootfile not required
- Changelog
    3.5a
	* Do not translate BSpace as Unicode with extended keys.
	* Fix so that keys with Shift are represented correctly with extended keys.
	* Revert to using /bin/sh for #() and run-shell and if-shell; the change to use
	  default-shell only applies now to popups.
	* Fix grey colour without a number suffix in styles.
    3.5
	* Revamp extended keys support to more closely match xterm and support mode 2
	  as well as mode 1. This is a substantial change to key handling which changes
	  tmux to always request mode 2 from parent terminal, changes to an unambiguous
	  internal representation of keys, and adds an option (extended-keys-format) to
	  control the format similar to the xterm(1) formatOtherKeys resource.
	* Clear an overlay (popup or menu) when command prompt is entered.
	* Add copy-mode -d flag to scroll a page down if in copy mode already (matching
	  -e).
	* Display hyperlinks in copy mode and add copy_cursor_hyperlink format to get
	  the hyperlink under the cursor.
	* Add a prefix timeout option.
	* Mouse move keys are not useful as key bindings because we do not turn them on
	  unless the application requests them. Ignore them so they do not cause the
	  prefix to be canceled
	* Add search_count and search_count_partial formats in copy mode.
	* Do not reset mouse pane if clicked on status line,
	* Add mirrored versions of the main-horizontal and main-vertical layouts where
	  the main pane is bottom or right instead of top or left.
	* Allow REP to work with Unicode characters.
	* Fix size calculation of terminators for clipboard escape sequences.
	* Treat CRLF as LF in config files where it is easy to do so.
	* The Linux console has some bugs with bright colours, so add some workarounds
	  for it.
	* If built with systemd, remove some environment variables it uses.
	* Adjust the logic when deleting last buffer to better preserve the selection:
	  if selecting the element below the deleted one fails (because as the last
	  one), select the one above it instead.
	* Add --enable-jemalloc to build with jemalloc memory allocator (since glibc
	  malloc is so poor).
	* Add a way (refresh-client -r) for control mode clients to provide OSC 10 and
	  11 responses to tmux so they can set the default foreground and background
	  colours.
	* Add N to search backwards in tree modes.
	* Use default-shell for command prompt, #() and popups.
	* Revert part of a change intended to improve search performance by skipping
	  parts of lines already searched, but which in fact skipped the ends of lines
	  altogether.
	* Add a command-error hook when a command fails.
	* Add an option allow-set-title to forbid applications from changing the pane
	  title.
	* Correct handling of mouse up events (don't ignore all but the last released
	  button), and always process down event for double click.
	* Fix a crash if focusing a pane that is exiting.
	* Pick newest session (as documented) when looking for next session for
	  detach-on-destroy.
	* Reduce default escape-time to 10 milliseconds.
	* Add display-menu -M to always turn mouse on in a menu.
	* Look for feature code 21 for DECSLRM and 28 for DECFRA in the device
	  attributes and also accept level 1.
	* Fix crash if built with SIXEL and the SIXEL colour register is invalid; also
	  remove SIXEL images before reflow.
	* Do not notify window-layout-changed if the window is about to be destroyed.
	* Do not consider a selection present if it is empty for the selection_active
	  and selection_present format variables.
	* Fix split-window -p.

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/tmux | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lfs/tmux b/lfs/tmux
index c7985c065..d384a7f35 100644
--- a/lfs/tmux
+++ b/lfs/tmux
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2025  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        #
@@ -26,7 +26,7 @@ include Config
 
 SUMMARY    = Terminal multiplexer
 
-VER        = 3.4
+VER        = 3.5a
 
 THISAPP    = tmux-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = tmux
-PAK_VER    = 12
+PAK_VER    = 13
 
 DEPS       =
 
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 2b1990b95d7439702e9287402d9828d4ecab573202c099aa482969c047b540d4b899f79d87587fc712e727d9cebf5fa7393512087e469fc355b4a30b1894e229
+$(DL_FILE)_BLAKE2 = 2314bc127f805071c9f2fe28be549b0948042a153aa68d997efc1dc0d6eba198b04aa16932d0a84b03250567100fb81c464919fcc8ba98660d3d0750ff5fe879
 
 install : $(TARGET)
 
-- 
2.48.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] tzdata: Update to version 2025a
  2025-01-17 11:26 [PATCH] haproxy: Update to version 3.1.2 Adolf Belka
  2025-01-17 11:26 ` [PATCH] sqlite: Update to version 3480000 Adolf Belka
  2025-01-17 11:26 ` [PATCH] tmux: Update to version 3.5a Adolf Belka
@ 2025-01-17 11:26 ` Adolf Belka
  2 siblings, 0 replies; 4+ messages in thread
From: Adolf Belka @ 2025-01-17 11:26 UTC (permalink / raw)
  To: development

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

- Update from version 2024a to 2025a
- Update of rootfile not required
- Changelog
    2025a
	Briefly:
	    Paraguay adopts permanent -03 starting spring 2024.
	    Improve pre-1991 data for the Philippines.
	    Etc/Unknown is now reserved.
	Changes to future timestamps
	    Paraguay will stop changing its clocks after the spring-forward
	     transition on 2024-10-06, so it is now permanently at -03.
	     (Thanks to Heitor David Pinto and Even Scharning.)
	     This affects timestamps starting 2025-03-22, as well as the
	     obsolescent tm_isdst flags starting 2024-10-15.
	Changes to past timestamps
	    Correct timestamps for the Philippines before 1900, and from 1937
	     through 1990.  (Thanks to P Chan for the heads-up and citations.)
	     This includes adjusting local mean time before 1899; fixing
	     transitions in September 1899, January 1937, and June 1954; adding
	     transitions in December 1941, November 1945, March and September
	     1977, and May and July 1990; and removing incorrect transitions in
	     March and September 1978.
	Changes to data
	    Add zone1970.tab lines for the Concordia and Eyre Bird Observatory
	     research stations.  (Thanks to Derick Rethans and Jule Dabars.)
	Changes to code
	    strftime %s now generates the correct numeric string even when the
	     represented number does not fit into time_t.  This is better than
	     generating the numeric equivalent of (time_t) -1, as strftime did
	     in TZDB releases 96a (when %s was introduced) through 2020a and in
	     releases 2022b through 2024b.  It is also better than failing and
	     returning 0, as strftime did in releases 2020b through 2022a.
	    strftime now outputs an invalid conversion specifier as-is,
	     instead of eliding the leading '%', which confused debugging.
	    An invalid TZ now generates the time zone abbreviation "-00", not
	     "UTC", to help the user see that an error has occurred.  (Thanks
	     to Arthur David Olson for suggesting a "wrong result".)
	    mktime and timeoff no longer incorrectly fail merely because a
	     struct tm component near INT_MIN or INT_MAX overflows when a
	     lower-order component carries into it.
	    TZNAME_MAXIMUM, the maximum number of bytes in a proleptic TZ
	     string's time zone abbreviation, now defaults to 254 not 255.
	     This helps reduce the size of internal state from 25480 to 21384
	     on common platforms.  This change should not be a problem, as
	     nobody uses such long "abbreviations" and the longstanding tzcode
	     maximum was 16 until release 2023a.  For those who prefer no
	     arbitrary limits, you can now specify TZNAME_MAXIMUM values up to
	     PTRDIFF_MAX, a limit forced by C anyway; formerly tzcode silently
	     misbehaved unless TZNAME_MAXIMUM was less than INT_MAX.
	    tzset and related functions no longer leak a file descriptor if
	     another thread forks or execs at about the same time and if the
	     platform has O_CLOFORK and O_CLOEXEC respectively.  Also, the
	     functions no longer let a TZif file become a controlling terminal.
	    'zdump -' now reads TZif data from /dev/stdin.
	     (From a question by Arthur David Olson.)
	  Changes to documentation
	    The name Etc/Unknown is now reserved: it will not be used by TZDB.
	     This is for compatibility with CLDR, which uses the string
	     "Etc/Unknown" for an unknown or invalid timezone.  (Thanks to
	     Justin Grant, Mark Davis, and Guy Harris.)
	    Cite Internet RFC 9636, which obsoletes RFC 8536 for TZif format.
    2024b
	Briefly:
	    Improve historical data for Mexico, Mongolia, and Portugal.
	    System V names are now obsolescent.
	    The main data form now uses %z.
	    The code now conforms to RFC 8536 for early timestamps.
	    Support POSIX.1-2024, which removes asctime_r and ctime_r.
	    Assume POSIX.2-1992 or later for shell scripts.
	    SUPPORT_C89 now defaults to 1.
	Changes to past timestamps
	    Asia/Choibalsan is now an alias for Asia/Ulaanbaatar rather than
	     being a separate Zone with differing behavior before April 2008.
	     This seems better given our wildly conflicting information about
	     Mongolia's time zone history.  (Thanks to Heitor David Pinto.)
	    Historical transitions for Mexico have been updated based on
	     official Mexican decrees.  The affected timestamps occur during
	     the years 1921-1927, 1931, 1945, 1949-1970, and 1981-1997.
	     The affected zones are America/Bahia_Banderas, America/Cancun,
	     America/Chihuahua, America/Ciudad_Juarez, America/Hermosillo,
	     America/Mazatlan, America/Merida, America/Mexico_City,
	     America/Monterrey, America/Ojinaga, and America/Tijuana.
	     (Thanks to Heitor David Pinto.)
	    Historical transitions for Portugal, represented by Europe/Lisbon,
	     Atlantic/Azores, and Atlantic/Madeira, have been updated based on a
	     close reading of old Portuguese legislation, replacing previous data
	     mainly originating from Whitman and Shanks & Pottenger.  These
	     changes affect a few transitions in 1917-1921, 1924, and 1940
	     throughout these regions by a few hours or days, and various
	     timestamps between 1977 and 1993 depending on the region.  In
	     particular, the Azores and Madeira did not observe DST from 1977 to
	     1981.  Additionally, the adoption of standard zonal time in former
	     Portuguese colonies have been adjusted: Africa/Maputo in 1909, and
	     Asia/Dili by 22 minutes at the start of 1912.
	     (Thanks to Tim Parenti.)
	Changes to past tm_isdst flags
	    The period from 1966-04-03 through 1966-10-02 in Portugal is now
	     modeled as DST, to more closely reflect how contemporaneous changes
	     in law entered into force.
	Changes to data
	    Names present only for compatibility with UNIX System V
	     (last released in the 1990s) have been moved to 'backward'.
	     These names, which for post-1970 timestamps mostly just duplicate
	     data of geographical names, were confusing downstream uses.
	     Names moved to 'backward' are now links to geographical names.
	     This affects behavior for TZ='EET' for some pre-1981 timestamps,
	     for TZ='CET' for some pre-1947 timestamps, and for TZ='WET' for
	     some pre-1996 timestamps.  Also, TZ='MET' now behaves like
	     TZ='CET' and so uses the abbreviation "CET" rather than "MET".
	     Those needing the previous TZDB behavior, which does not match any
	     real-world clocks, can find the old entries in 'backzone'.
	     (Problem reported by Justin Grant.)
	    The main source files' time zone abbreviations now use %z,
	     supported by zic since release 2015f and used in vanguard form
	     since release 2022b.  For example, America/Sao_Paulo now contains
	     the zone continuation line "-3:00 Brazil %z", which is less error
	     prone than the old "-3:00 Brazil -03/-02".  This does not change
	     the represented data: the generated TZif files are unchanged.
	     Rearguard form still avoids %z, to support obsolescent parsers.
	    Asia/Almaty has been removed from zonenow.tab as it now agrees
	     with Asia/Tashkent for future timestamps, due to Kazakhstan's
	     2024-02-29 time zone change.  Similarly, America/Scoresbysund
	     has been removed, as it now agrees with America/Nuuk due to
	     its 2024-03-31 time zone change.
	Changes to code
	    localtime.c now always uses a TZif file's time type 0 to handle
	     timestamps before the file's first transition.  Formerly,
	     localtime.c sometimes inferred a different time type, in order to
	     handle problematic data generated by zic 2018e or earlier.  As it
	     is now safe to assume more recent versions of zic, there is no
	     longer a pressing need to fail to conform RFC 8536 section 3.2,
	     which requires using time type 0 in this situation.  This change
	     does not affect behavior when reading TZif files generated by zic
	     2018f and later.
	    POSIX.1-2024 removes asctime_r and ctime_r and does not let
	     libraries define them, so remove them except when needed to
	     conform to earlier POSIX.  These functions are dangerous as they
	     can overrun user buffers.  If you still need them, add
	     -DSUPPORT_POSIX2008 to CFLAGS.
	    The SUPPORT_C89 option now defaults to 1 instead of 0, fixing a
	     POSIX-conformance bug introduced in 2023a.
	    tzselect now supports POSIX.1-2024 proleptic TZ strings.  Also, it
	     assumes POSIX.2-1992 or later, as practical porting targets now
	     all support that, and it uses some features from POSIX.1-2024 if
	     available.
	Changes to build procedure
	    'make check' no longer requires curl and Internet access.
	    The build procedure now assumes POSIX.2-1992 or later, to simplify
	     maintenance.  To build on Solaris 10, the only extant system still
	     defaulting to pre-POSIX, prepend /usr/xpg4/bin to PATH.
	Changes to documentation
	    The documentation now reflects POSIX.1-2024.
	Changes to commentary
	    Commentary about historical transitions in Portugal and her former
	     colonies has been expanded with links to relevant legislation.
	     (Thanks to Tim Parenti.)

Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/tzdata | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lfs/tzdata b/lfs/tzdata
index 05c9a257f..de9ee0a50 100644
--- a/lfs/tzdata
+++ b/lfs/tzdata
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2024  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2025  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        = 2024a
+VER        = 2025a
 TZDATA_VER = $(VER)
 TZCODE_VER = $(VER)
 
@@ -45,8 +45,8 @@ objects = tzdata$(TZDATA_VER).tar.gz tzcode$(TZCODE_VER).tar.gz
 tzdata$(TZDATA_VER).tar.gz = $(DL_FROM)/tzdata$(TZDATA_VER).tar.gz
 tzcode$(TZCODE_VER).tar.gz = $(DL_FROM)/tzcode$(TZCODE_VER).tar.gz
 
-tzdata$(TZDATA_VER).tar.gz_BLAKE2 = 5ec49bbce704411a1d8b3f018b0d8f6c7de24c5600e0cb6c61a7ee29b4a49b1e502d23b40bce6584ea0aa9b66327321608cbabb994071ec4ca2b3a496aa2d621
-tzcode$(TZCODE_VER).tar.gz_BLAKE2 = f3b8d1e7735ad858d071df564a8e11ac4d252b97a5729fa6c282112ff3903f7d35897735920b4466a926ef647dc283356879134046805411c694efd3fd89b282
+tzdata$(TZDATA_VER).tar.gz_BLAKE2 = ea394e2369254858143d592912b6c2d691e2b2615a9d56461b78a335c33b89a6598a5b0ddbfac19ba5e8df91b67f7b7368dfcb861b7f2639bc6b92486c25f405
+tzcode$(TZCODE_VER).tar.gz_BLAKE2 = d4cf1202686e99c437ef4dfa371703f43d9e8ea2d74961989e2d97bef889e39074151a843aa360480e525cedf3a6c798a4b911a9bac90de9de9983b8ba177fd8
 
 install : $(TARGET)
 
-- 
2.48.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-01-17 11:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-17 11:26 [PATCH] haproxy: Update to version 3.1.2 Adolf Belka
2025-01-17 11:26 ` [PATCH] sqlite: Update to version 3480000 Adolf Belka
2025-01-17 11:26 ` [PATCH] tmux: Update to version 3.5a Adolf Belka
2025-01-17 11:26 ` [PATCH] tzdata: Update to version 2025a Adolf Belka

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