Commit Graph

18069 Commits

Author SHA1 Message Date
Adolf Belka
ceedba20de gdbm: Update to version 1.23
- Update from 1.20 to 1.23
- Update of rootfile not required
- Changelog
   Version 1.23, 2022-02-04
	* Bucket cache switched from balanced tree to hash table
	 Change suggested by Terence Kelly.
	* Speed up flushing the changed buckets on disk
	* New option codes for gdbm_setopt
	** GDBM_GETDBFORMAT
	 Return the database format.
	** GDBM_GETDIRDEPTH
	 Return the directory depth, i.e. the number of initial (most significant)
	  bits in hash value that are interpreted as index to the directory.
	** GDBM_GETBUCKETSIZE
	 Return maximum number of keys per bucket.
	** GDBM_GETCACHEAUTO
	 Return the status of the automatic cache adjustment.
	** GDBM_SETCACHEAUTO
	 Enable or disable automatic cache adjustment.
   Version 1.22, 2021-10-19
	* Fix file header validation
	* Fix key verification in sequential access
	* Fix testing with DejaGNU 1.6.3
	* Fix stack overflow in print_usage
	* Fix a leak of avail entry on pushing a new avail block
	 The leak would occur if the original avail table had odd number of entries.
	* New gdbmtool variables: errorexit, errormask, trace, timing
	 "Errorexit" and "errormask" control which GDBM errors would cause the
	  program termination and emitting a diagnostic message,
	  correspondingly.  Both variables are comma-delimited lists of error
	  codes.
	 The "trace" variable enables tracing of the gdbmtool commands.
	 The "timing" variable, when set, instructs gdbmtool to print time
	  spent in each command it runs.
	* New gdbmtool options: -t (--trace), and -T (--timing)
   Version 1.21, 2021-09-02
	* Crash tolerance
	 By default it is possible for an abrupt crash (e.g., power failure,
	  OS kernel panic, or application process crash) to corrupt the gdbm
	  database file.  A new Linux-only mechanism enables applications to
	  recover the database state corresponding to the most recent
	  successful gdbm_sync() call before the crash.  See the chapter 17
	  "Crash Tolerance" in the GDBM manual.
	* New database file format: numsync
	 The new "numsync" database format is designed to better support
	  crash tolerance.  To create a database in numsync format, the gdbm_open
	  (or gdbm_fd_open) function must be given the GDBM_NEWDB|GDBM_NUMSYNC
	  flags.  The GDBM_NUMSYNC flag also takes effect when used together
	  with GDBM_WRCREAT, provided that the new file is created.
	 New function gdbm_convert() is provided for converting the databases
	  from standard GDBM format to numsync and vice versa.
	 The gdbmtool tool can also be used for converting databases between
	  these two formats.
	* Changes in gdbmtool
	** Fix string output in non-ASCII encodings
	 Printable multi-byte sequences are correctly represented on output.
	 This also fixes octal representation of unprintable characters.
	** The filename variable
	 This variable supplies the name of database file for use in "open"
	 command, if the latter is called without arguments.  If "open" is
	 called with the file name argument, the "filename" variable is
	 initialized to this value.
	** The fd variable
	 If set, its value must be an open file descriptor referring to a
	 GDBM database file.  The "open" command will use gdbm_fd_open
	 function to use this file.   Upon closing the database, this
	 descriptor will be closed and the variable will be unset.
	 The file descriptor to use can also be supplied using the
	 -d (--db-descriptor) command line option.
	** The format variable
	 Defines the format in which new databases will be created.  Allowed
	 values are: "standard" (default) and "numsync".
	** New commands: upgrade and downgrade
	 The "upgrade" command converts current database to the numsync
	 (extended) format.  The "downgrade" command converts current database
	 to the standard format.
	** New command: snapshot
	 The "snapshot" command is part of the new crash tolerance support.
	 Given the names of two snapshot files, it analyzes them and selects
	 the one to be used for database recovery.  See the GDBM manual,
	 section 17.5 "Manual crash recovery" for a detailed discussion of its
	 use.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 18:04:37 +00:00
Peter Müller
5fd4dfe002 Core Update 165: Ship ovpnclients.dat
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 18:04:00 +00:00
Michael Tremer
6e40963459 ovpnclients.dat: Fix adjusting input dates
This patch changes that we no longer interpret any dates put in by the
user as UTC. They used to be converted into localtime because, although
they have already been in local time.

This went unnoticed since in Europe we are close (enough) to UTC that
there is no significant discrepancy on the report. However, being in
North America is enough to generate confusing reports.

Reported-by: Paul <kairis@gmail.com>
Fixes: #12768
Tested-by: Jon Murphy <jon.murphy@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2022-02-15 17:59:01 +00:00
Peter Müller
bccde9948b Core Update 165: Ship libarchive
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:57:00 +00:00
Adolf Belka
215a205a13 libarchive: Update to version 3.6.0
- Update from 3.5.2 to 3.6.0
- Update of rootfile
- Changelog
   Libarchive 3.6.0 is a feature and bugfix release.
     New features:
	    tar: new option "--no-read-sparse" (#1614)
	    tar: threads support for zstd (#1567)
	    RAR reader: filter support (#1503)
	    RAR5 reader: self-extracting archive support (#1585)
	    ZIP reader: zstd decompression support (#1518)
     Other notable bugfixes and improvements:
	    tar: respect "--ignore-zeros" in c, r and u modes (#1620)
	    reduced size of application binaries (#1625)
	    internal code optimizations
   Libarchive 3.5.3 is a security release
     Security Fixes:
	    extended fix for following symlinks when processing the fixup list
              (#1566, #1617, CVE-2021-31566)
	    fix invalid memory access and out of bounds read in RAR5 reader
              (#1491, #1492, #1493, CVE-2021-36976)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:56:51 +00:00
Adolf Belka
af20e3bbdc stunnel: Update to version 5.62
- Update from 5.58 to 5.62
- Update of rootfile
- Changelog
   ### Version 5.62, 2022.01.17, urgency: MEDIUM
	* New features
	  - Added a bash completion script.
	* Bugfixes
	  - Fixed a transfer() loop bug.
   ### Version 5.61, 2021.12.22, urgency: LOW
	* New features sponsored by the University of Maryland
	  - Added new "protocol = capwin" and "protocol = capwinctrl"
	    configuration file options.
	* New features for the Windows platform
	  - Added client mode allowing authenticated users to view
	    logs, reconfigure and terminate running stunnel services.
	  - Added support for multiple GUI and service instances
	    distinguised by the location of stunnel.conf.
	  - Improved log window scrolling.
	  - Added a new 'Pause auto-scroll' GUI checkbox.
	  - Double click on the icon tray replaced with single click.
	  - OpenSSL DLLs updated to version 3.0.1.
	* Other new features
	  - Rewritten the testing framework in python (thx to
	    Peter Pentchev for inspiration and initial framework).
	  - Added support for missing SSL_set_options() values.
	  - Updated stunnel.spec to support RHEL8.
	* Bugfixes
	  - Fixed OpenSSL 3.0 build.
	  - Fixed reloading configuration with
	    "systemctl reload stunnel.service".
	  - Fixed incorrect messages logged for OpenSSL errors.
	  - Fixed printing IPv6 socket option defaults on FreeBSD.
   ### Version 5.60, 2021.08.16, urgency: LOW
	* New features
	  - New 'sessionResume' service-level option to allow
	    or disallow session resumption
	  - Added support for the new SSL_set_options() values.
	  - Download fresh ca-certs.pem for each new release.
	* Bugfixes
	  - Fixed 'redirect' with 'protocol'.  This combination is
	    not supported by 'smtp', 'pop3' and 'imap' protocols.
	  - Enforced minimum WIN32 log window size.
	  - Fixed support for password-protected private keys with
	    OpenSSL 3.0 (thx to Dmitry Belyavskiy).
   ### Version 5.59, 2021.04.05, urgency: HIGH
	* Security bugfixes
	  - OpenSSL DLLs updated to version 1.1.1k.
	* New features
	  - Client-side "protocol = ldap" support (thx to Bart
	    Dopheide and Seth Grover).
	* Bugfixes
	  - The test suite fixed not to require external connectivity.
	  - Fixed paths in generated manuals (thx to Tatsuki Makino).
	  - Fixed configuration reload when compression is used.
	  - Fixed compilation with early releases of OpenSSL 1.1.1.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:56:31 +00:00
Peter Müller
64b72c4038 Core Update 165: Ship lcms2
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:44:56 +00:00
Adolf Belka
049b21c8e6 lcms2: Update to version 2.13.1
- Update from 2.12 to 2.13.1
- Update of rootfile
- Changelog
   2.13.1 Hot fix
     Fix for pure white going gray in grayscale transforms.
   2.13 Featured release
     Added support for premultiplied alpha
     tifficc can now handle alpha channels, both unassociated and premultiplied
     Better documentation
     CGATS parser can now deal with very long strings
     Added Projects for Visual Studio 2020
     Travis CI discontinued, GitHub actions used instead
     Added a very preliminar meson build script (thanks to xclaesse)
     Added ARM64 target to visual studio 2019 (thanks to gaborkertesz-linaro)
     Added thread safe code to get time
     Added automatic linear space detection
     Added cmsGetStageContextID function
     Added cmsDetectRGBProfileGamma function
     configure now accepts --without-fastfloat to turn plugin off
     autogen.sh has now a --distclean toggle to get rid of all autotools generated files
     Checked to work on STM32 Cortex-A, Cortex-M families
     Bug & typos fixing (thanks to many reporters and contributors)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:44:41 +00:00
Peter Müller
aed06a32c3 Core Update 165: Ship iana-etc
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:43:43 +00:00
Adolf Belka
fb3e1c82c8 iana-etc: Update to version 20220207
- Update from 2.30 (2011) to 20220207
- Update of rootfile not required
- After version 2.30 the files from iana are no longer versioned. A git repository is
   available (also used by LFS) which creates the required files by an automated script.
   So the lfs just needs to copy across the services and protocols files to /etc
- There is no Changelog

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Acked-by: Michael Tremer <michael.tremer@ipfire.org>
2022-02-15 16:43:27 +00:00
Matthias Fischer
bbca73d467 squid: Update from 5.2 => 5.4.1
For details see:
http://www.squid-cache.org/Versions/v5/changesets/SQUID_5_4_1.html

This is 'squid 5.4.1', containing the previous patch for Bug #5055.

Prior to this patch I reverted my previous patches 'squid: Update 5.2 => 5.4" and
'squid 5.4: Latest patch - Bug #5055 - from upstream' and  marked them as
'superseded' in patchwork.

For a better overview the 'squid-gcc11'-patch has been renamed again and moved
to an own squid-patch-directory.

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-15 16:29:33 +00:00
Peter Müller
cae2a37e52 Merge branch 'next' into temp-c165-development 2022-02-14 20:59:05 +00:00
Arne Fitzenreiter
2b44044bcf firewall: Revert strict martian check on loopback interface
If the firewall is talking to itself using one of its private IP
addresses (e.g. the primary green interface IP address), it will use the
loopback interface.

This is due to the local routing table which will be looked up first:

  [root@ipfire ~]# ip rule
  0:      from all lookup local
  128:    from all lookup 220
  220:    from all lookup 220
  32765:  from all lookup static
  32766:  from all lookup main
  32767:  from all lookup default

It contains:

  [root@ipfire ~]# ip route show table local
  local 8x.1x.1x.1x dev ppp0 proto kernel scope host src 8x.1x.1x.1x
  local 127.0.0.0/8 dev lo proto kernel scope host src 127.0.0.1
  local 127.0.0.1 dev lo proto kernel scope host src 127.0.0.1
  broadcast 127.255.255.255 dev lo proto kernel scope link src 127.0.0.1
  local 192.168.x.1 dev green0 proto kernel scope host src 192.168.x.1
  broadcast 192.168.x.255 dev green0 proto kernel scope link src 192.168.x.1

Any lookup for the green IP address will show this:

  local 192.168.x.1 dev lo table local src 192.168.x.1 uid 0
      cache <local>

A test ping shows this in tcpdump:

  [root@ipfire ~]# tcpdump -i any icmp -nn
  tcpdump: data link type LINUX_SLL2
  tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
  listening on any, link-type LINUX_SLL2 (Linux cooked v2), snapshot length 262144 bytes
  17:24:22.864293 lo    In  IP 127.0.0.1 > 127.0.0.1: ICMP echo request, id 10420, seq 1, length 64
  17:24:22.864422 lo    In  IP 127.0.0.1 > 127.0.0.1: ICMP echo reply, id 10420, seq 1, length 64
  17:24:29.162021 lo    In  IP 192.168.x.1 > 192.168.x.1: ICMP echo request, id 1555, seq 1, length 64
  17:24:29.162201 lo    In  IP 192.168.x.1 > 192.168.x.1: ICMP echo reply, id 1555, seq 1, length 64

For this reason, we will have to accept any source and destination IP
address on the loopback interface, which is what this patch does.

We can however, continue to check whether we received any packets with
the loopback address on any other interface.

This regression was introduced in commit a36cd34e.

Fixes: #12776 - New spoofed or martian filter block
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-14 19:45:53 +00:00
Peter Müller
93f7f46bf6 Merge branch 'next' into temp-c165-development 2022-02-13 20:34:06 +00:00
Arne Fitzenreiter
ea72759c97 Merge remote-tracking branch 'origin/master' into next 2022-02-13 14:37:49 +00:00
Arne Fitzenreiter
419aaf916c libvirt: ship arm cpu configfiles
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-13 08:55:24 +00:00
Peter Müller
b14274b76d Merge branch 'next' into temp-c165-development 2022-02-12 19:37:05 +00:00
Arne Fitzenreiter
5462658ea0 firewall: fix missing space
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-12 18:06:39 +00:00
Arne Fitzenreiter
5b0eca9528 firewall: initialize IFACE if it is empty
at first boot there is no IFACE set which result in iptables
errors at boot.

fixes #12767

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-12 18:00:09 +00:00
Matthias Fischer
f050cb3d71 nano: Update to 6.1
For details see:
https://www.nano-editor.org/news.php

"The behavior of ^K at a prompt has been enhanced: when there
is text after the cursor, just this text is erased. (In the usual
situation, however, when the cursor is at the end of the answer,
the behavior is as before: the whole answer is erased.)

At a prompt, M-6 copies the current answer into the cutbuffer.

Large external pastes into nano are handled more quickly."

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-12 13:46:17 +00:00
Matthias Fischer
af5db809df monit: Update to 5.31.0
For details see:
https://mmonit.com/monit/changes/

For more details see:
https://bitbucket.org/tildeslash/monit/commits/tag/release-5-31-0

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-12 13:43:02 +00:00
Peter Müller
a20c9e44cc Merge branch 'next' into temp-c165-development 2022-02-12 13:41:37 +00:00
Adolf Belka
20e71c0eb0 libusb: Update to version 1.0.25
- Update from 1.0.24 to 1.0.25
- Update of rootfile not required
- Changelog
   2022-01-31: v1.0.25
     * Linux: Fix regression with some particular devices
     * Linux: Fix regression with libusb_handle_events_timeout_completed()
     * Linux: Fix regression with cpu usage in libusb_bulk_transfer
     * Darwin (macOS): Add support for detaching kernel drivers with authorization.
     * Darwin (macOS): Do not drop partial data on timeout.
     * Darwin (macOS): Silence pipe error in set_interface_alt_setting().
     * Windows: Fix HID backend missing byte
     * Windows: Fix segfault with libusbk driver
     * Windows: Fix regression when using libusb0 driver
     * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
     * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
     * Various other bug fixes and improvements

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-12 10:31:28 +00:00
Arne Fitzenreiter
2f3af8c0c4 partresize: fix/add more NanoPi R* whitspaces
this fix MAC address generation on R2S
and allow to use the new added overclocked dtb's for R2S and R4S.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-12 07:04:17 +00:00
Arne Fitzenreiter
a17f1fbbe2 kernel: update to 5.15.23
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-12 07:03:49 +00:00
Arne Fitzenreiter
f978b433e6 kernel: aarch64: enable armv8 optimized crypto
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2022-02-11 17:36:01 +00:00
Peter Müller
10088f21d5 Core Update 165: Ship pakfire.cgi
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:22:17 +00:00
Matthias Fischer
b81c77b96b pakfire.cgi: Cosmetic fix
The two text passages for 'pakfire install...' and 'pakfire uninstall...' under
'Available' and 'Installed Addons:' are so close together that the first line
appears as a single line.

This patch separates these two areas a bit from each other so that they are
better readable.

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
2022-02-11 15:21:43 +00:00
Peter Müller
6d2c63f0ac Core Update 165: Ship qos.cgi
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:17:21 +00:00
Matthias Fischer
57d4e48840 Typo in 'qos.cgi'
'bandwith*' => 'bandwidth*'

Plus: Image button for going back...

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
2022-02-11 15:16:41 +00:00
Robin Roevens
f15707c78c buildprocess: Add extra metadata to pak lfs files
* Add a Summary and Services field to all pak lfs files
* Replace occurances of INSTALL_INITSCRIPT with new INSTALL_INITSCRIPTS
  macro in all pak lfs files.

Signed-off-by: Robin Roevens <robin.roevens@disroot.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:13:15 +00:00
Robin Roevens
a9d98b3491 buildprocess: Add extra metadata to meta-* files
* Add a Summary and Services field to the meta-* addon files.
* Add an INSTALL_INITSCRIPTS macro that takes a space seperated
  list of initscripts to install.
* I kept the original INSTALL_INITSCRIPT as a method to install
  individual initscripts for backwards compatibility and possible corner
  cases.

Signed-off-by: Robin Roevens <robin.roevens@disroot.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:08:57 +00:00
Peter Müller
fbc6b9e0c1 Core Update 165: Ship pango
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:08:05 +00:00
Adolf Belka
3bbe59b78a pango: Update to version 1.50.3
- Update from 1.50.0 to 1.50.3
- Update of rootfile
- Changelog
   Overview of changes in 1.50.3, 21-12-2021
     * pango-view: Add --serialize-to option for easy bug reporting
     * Revert a transformation change that broke metrics for vertical text
     * Handle fonts without space glyph (such as icon fonts) better
     * Fix some corner cases of line width accounting
     * Fix line height with emulated Small Caps
   Overview of changes in 1.50.2, 16-12-2021
     * Fix a problem with font fallback for Arabic
     * Fix handling of fonts without a space glyph
     * Various documentation improvements
     * Fix build issues
   Overview of changes in 1.50.1, 10-12-2021
     * Fix a crash in tab handling
     * Fix tab positioning without line wrapping
     * Fix an assertion failure found by fuzzing
     * Make underlines work again for broken fonts

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
2022-02-11 15:07:51 +00:00
Peter Müller
40e2cfd3da Core Update 165: Ship harfbuzz
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:07:35 +00:00
Adolf Belka
d2eeab5189 harfbuzz: Update to version 3.3.2
- Update from 3.1.2 to 3.3.2
- Update of rootfile
- Changelog
	Overview of changes leading to 3.3.2
	  - Revert splitting of pair positioning values introduced in 3.3.0 as it proved
	    problematic. (Behdad Esfahbod)
	Overview of changes leading to 3.3.1
	  - Fix heap-use-after-free in harfbuzz-subset introduced in previous release.
	    (Garret Rieger)
	Overview of changes leading to 3.3.0
	  - Improved documentation. (Matthias Clasen)
	  - Internal code cleanup, using C++ standard library more. (Behdad Esfahbod)
	  - The low 16-bits of face index will be used by hb_face_create() to select a
	    face inside a font collection file format, while the high 16-bits will be
	    used by hb_font_create() to load the named instance. (Behdad Esfahbod)
	  - Glyph positions and other font metrics now apply synthetic slant set by
	    hb_font_set_synthetic_slant(), for improved positioning for synthetically
	    slanted fonts. (Behdad Esfahbod)
	  - Fixed unintentional locale dependency in hb_variation_to_string() for decimal
	    point representation. (Matthias Clasen)
	  - When applying pair positioning (kerning) the positioning value is split
	    between the two sides of the pair for improved cursor positioning between
	    such pairs. (Behdad Esfahbod)
	  - Introduced new HB_GLYPH_FLAG_UNSAFE_TO_CONCAT, to be used in conjunction
	    with HB_GLYPH_FLAG_UNSAFE_TO_BREAK for optimizing re-shaping during line
	    breaking. Check the documentation for further details. (Behdad Esfahbod)
	  - Improved handling of macrolanguages when mapping BCP 47 codes to OpenType
	    tags. (David Corbett)
	  - New API:
	    +HB_GLYPH_FLAG_UNSAFE_TO_CONCAT
	    +hb_segment_properties_overlay()
	    +hb_buffer_create_similar()
	    +hb_font_set_synthetic_slant()
	    +hb_font_get_synthetic_slant()
	    +hb_font_get_var_coords_design()
	Overview of changes leading to 3.2.0
	  “harfbuzz” library improvements:
	   - Fixed shaping of Apple Color Emoji flags in right-to-left context. (Behdad Esfahbod)
	   - Fixed positioning of CFF fonts in HB_TINY profile. (Behdad Esfahbod)
	   - OpenType 1.9 language tags update. (David Corbett)
	   - Add HB_NO_VERTICAL config option.
	   - Add HB_CONFIG_OVERRIDE_H for easier configuration. (Behdad Esfahbod)
	  “harfbuzz-subset” library improvements:
	   - Improved packing of cmap, loca, and Ligature tables. (Garret Rieger)
	   - Significantly improved overflow-resolution strategy in the repacker. (Garret Rieger)

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
2022-02-11 15:07:19 +00:00
Peter Müller
080c9a6574 Core Update 165: Ship findutils
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:07:07 +00:00
Adolf Belka
d986ae2a08 findutils: Update to version 4.9.0
- Update from 4.8.0 to 4.9.0
- Update of rootfile not required
- Changelog
   GNU findutils NEWS - User visible changes.
   * Noteworthy changes in release 4.9.0 (2022-02-22) [stable]
   ** New features in find
      find now supports the -files0-from option to be able to safely pass an
        arbitrary number of starting points to the tool.  The option requires a file
        name as argument, or "-" to read from standard input.  The entries in that
        file have to be separated by NUL characters. [#60383]
   ** Changes in locate / updatedb
      updatedb now skips (fuse-mounted) s3fs filesystems by default,
        i.e., unless PRUNEFS is set.
   ** Bug Fixes
      'find -D stat -L ...' no longer determines SELinux security information as
        if the -L option was not given.
        [Bug present since the SELinux implementation in 4.5.6]
      'find -inum' and 'find -printf %i' now also work on platforms which allow
        the inode number Zero; e.g. the GNU/Hurd uses inode number 0 for /dev/console.
        Previously, find(1) would abort when visiting such a file.
        [Bug present since FINDUTILS_4_5_4-1.]
      findutils-4.8.0 failed to build on some MacOS versions.
        Fixed by a gnulib update. [#59972, #59991]
   ** Documentation Changes
      The find.1 man page and the Texinfo manual now show environment variables
        in a consistent style. [#59963]
      Furthermore, both add the description of the -printf format directive '%B',
        for a file's birth time, and its limitations. [#61327]
      The description of the -delete action has been improved and aligned among
        the manual page and the Texinfo documentation. [#61774]
      Various other documentation fixes - syntax issues and typos.
        [#61303, #60823, #61341]
      The output of 'find --help' now reads better.
      The HTML online manual is using the official GNU stylesheet again.
   ** Changes to the build process
      The find version without FTS, oldfind, has been completely removed.  It has
      not been installed since 4.5.18 (2015), and was only still used in tests.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:06:53 +00:00
Peter Müller
78366d9641 Samba: Fix rootfile
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 15:04:04 +00:00
Peter Müller
701780a3bc Python3: Fix rootfile
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 13:24:00 +00:00
Peter Müller
e4530e4a29 Core Update 165: Ship libusb
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:46:33 +00:00
Adolf Belka
40be052ef8 libusb: Update to version 1.0.25
- Update from 1.0.24 to 1.0.25
- Update of rootfile not required
- Changelog
   2022-01-31: v1.0.25
     * Linux: Fix regression with some particular devices
     * Linux: Fix regression with libusb_handle_events_timeout_completed()
     * Linux: Fix regression with cpu usage in libusb_bulk_transfer
     * Darwin (macOS): Add support for detaching kernel drivers with authorization.
     * Darwin (macOS): Do not drop partial data on timeout.
     * Darwin (macOS): Silence pipe error in set_interface_alt_setting().
     * Windows: Fix HID backend missing byte
     * Windows: Fix segfault with libusbk driver
     * Windows: Fix regression when using libusb0 driver
     * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb
     * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option
     * Various other bug fixes and improvements

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:46:18 +00:00
Peter Müller
fd96c033fc Core Update 165: Ship libxcrypt
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:45:12 +00:00
Adolf Belka
90c42a996a libxcrypt: Update to version 4.4.28
- Update from 4.4.26.to 4.4.28
- Update of rootfile not required
- Changelog - This is from the NEWS file in the source tarball. Since version 3.1.1 there
   is no Changelog provided, only the NEWS file. For more details the instruction is to
   look at the Git commit history
    Version 4.4.28
     * Add glibc-on-or1k (OpenRISC 1000) entry to libcrypt.minver.
       This was added in GNU libc 2.35.
    Version 4.4.27
     * Limit the maximum amount of rbytes to 64 bytes (512 bits) for
       yescrypt, gost-yescrypt, and scrypt.  Also reflect this limit
       in the documentation (issue #145).

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:44:54 +00:00
Peter Müller
c36652c467 Core Update 165: Delete Python 3.8 files
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:33:18 +00:00
Peter Müller
1d05321687 Remove bogus meson symlink
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:27:36 +00:00
Peter Müller
2706e8d806 Core Update 165: Ship Python 3.10 and related changes
Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:26:54 +00:00
Adolf Belka
b29f2a9d75 speedtest-cli: Update to python-3.10
- Update of lfs PAK_VER from 4 to 5
- Update of rootfile

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:18:47 +00:00
Adolf Belka
84530cdc3b samba: Update to python-3.10
- Update of lfs PAK_VER from 82 to 83
- Update of rootfiles for each architecture

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:18:42 +00:00
Adolf Belka
b6109c849a newt: Update to python-3.10
- Update of configure option in lfs
- Update of rootfile

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Peter Müller <peter.mueller@ipfire.org>
2022-02-11 09:18:00 +00:00