public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, next, updated. ebf98cabe2b52beb4436b66d75f3e8aef01da428
@ 2023-08-08 16:37 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2023-08-08 16:37 UTC (permalink / raw)
  To: ipfire-scm

[-- Attachment #1: Type: text/plain, Size: 53608 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  ebf98cabe2b52beb4436b66d75f3e8aef01da428 (commit)
       via  647469bdebe57b7e69826be982b8a1e826d12f4b (commit)
       via  d09a5fcd521c656a1bea571c97f80d199aae010c (commit)
       via  a93bb5d8f1ff18c9402b22a3af12c90ae6cff6dc (commit)
       via  0436f28b42e5d213ce0126241f23ed1e3e1f96e0 (commit)
       via  640f08ea66ff1c76934830fdf57e1066566526bb (commit)
       via  8c8594c5f4231f1c83b655cd554fe2b470d15135 (commit)
       via  b1de4128da7b1bf5d5a5d8d47b22a31b1a647122 (commit)
       via  63b3698974621fde992670fa671e7709e969edfd (commit)
       via  a1a45b0faa6d1bf1b568e6682137262bf81e7af1 (commit)
       via  a6afd1e065cac03524c160c726446d35c552a147 (commit)
       via  3afe372a518a4c51044660305c64fe5abfdb688f (commit)
       via  2382732336dc67d319b0af534b8b288aadf2e81a (commit)
       via  20558b760bcb3c970f9a1b71a9e8c995c0bd327b (commit)
       via  2bda77fdc2f41816badc5d2dea3a0eac7185ff49 (commit)
       via  ecb02cac7c09e607bc5b710260bc458e5ce2d721 (commit)
       via  c527a36833e9328db62c6e1d4be8918f12d0fe02 (commit)
       via  ea88c39989588e7a8bd8be575225b2a1af798587 (commit)
      from  2f847b3213156ea0ee5cd92be9812de089285c86 (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 ebf98cabe2b52beb4436b66d75f3e8aef01da428
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:10 2023 +0200

    qemu-ga: Update to version 8.0.3
    
    - Update from version 7.1.0 to 8.0.3
    - Update of rootfile not required
    - Update qemu-ga in lockstep with qemu
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 647469bdebe57b7e69826be982b8a1e826d12f4b
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:20:53 2023 +0000

    core178: Ship rpcsvc-proto
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit d09a5fcd521c656a1bea571c97f80d199aae010c
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:09 2023 +0200

    rpcsvc-proto: Update to version 1.4.4
    
    - Update from version 1.4.3 to 1.4.4
    - Update of rootfile not required
    - Changelog
        1.4.4
    	* Use AC_SYS_LARGEFILE macro to control largefile support
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit a93bb5d8f1ff18c9402b22a3af12c90ae6cff6dc
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:09:33 2023 +0000

    core178: Ship qpdf
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 0436f28b42e5d213ce0126241f23ed1e3e1f96e0
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:07 2023 +0200

    qpdf: Update to version 11.5.0
    
    - Update from version 11.3.0 to 11.5.0
    - Update of rootfile
    - Changelog
        11.5.0: release
            * This release consists entirely of changes made by M. Holger.
              Mostly this is changes to the private API, performance
              enhancements, code cleanup, and reformatting to 100 columns
              instead of 80. For qpdf development, we are starting to use
              JetBrains CLion, so a lot of the changes are moving us toward a
              cleaner development experience in that environment.
            * Bug fix: when a the same page is copied multiple times, copy
              the annotations rather than having multiple pages share an
              annotation object. Thanks to M. Holger for the fix. Fixes #600.
            * Add "FUTURE" build option for enabling experimental APIs. Do not
              package qpdf built with the FUTURE option as there are no binary
              compatibility or even source compatibility guarantees. The option
              is intended for developers who want to ensure that future
              potentially breaking changes are compatible with their code or
              provide feedback on upcoming changes. At present, the only feature
              enabled by FUTURE is a move constructor for QPDFObjectHandle.
              While this shouldn't break any code, it would change details about
              how many copies of a specific QPDFObjectHandle were in existence,
              so it could potentially break code that was relying on internal
              shared pointer reference counts. Thanks to M. Holger for the idea
              and contribution.
            * Add new method Buffer::copy and deprecate Buffer copy
              constructor and assignment operator. Buffer copy operations are
              expensive as they always involve copying the buffer content. Use
              "buffer2 = buffer1.copy();" or "Buffer buffer2{buffer1.copy()};"
              to make it explicit that copying is intended. This change was
              contributed by M. Holger.
        11.4.0: release
            * From M. Holger: add QPDF::newReserved as a better alternative to
              QPDFObjectHandle::newReserved. The operation of creating a new
              reserved object fits better in the QPDF API. The old call just
              delegates to the new one.
            * When an annotation dictionary's appearance dictionary (`/AP`)
              has a key that is a stream, disregard `/AS` (which is supposed to
              point to a subkey). This enables qpdf to not ignore annotations
              that have incorrect values for `/AS` when the appearance stream is
              directly in the `/AP` dictionary instead of in a subkey.
              Fixes #949.
            * Allow QPDFJob's workflow to be split into a reading phase and a
              writing phase to allow the caller to operate on the QPDF object
              before it is written. This adds methods QPDFJob::createQPDF and
              QPDFJob::writeQPDF and corresponding C API functions
              qpdfjob_create_qpdf and qpdfjob_write_qpdf. Thanks to M. Holger
              for the contribution.
            * From M. Holger: throw a logic error if an uninitialized or
              foreign QPDFObjectHandle is added to an array.
            * Enhance --optimize-images to support images nested inside of
              form XObjects. Thanks to Connor Osborne (github user cdosborn) for
              the contribution. Fixes #923.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 640f08ea66ff1c76934830fdf57e1066566526bb
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:06 2023 +0200

    qemu: Update to version 8.0.3
    
    - Update from version 7.1.0 to 8.0.3
    - Update of rootfile
    - Changelog is too large to include here. See the following links for more details
        8.0
    	https://wiki.qemu.org/ChangeLog/8.0
        7.2
    	https://wiki.qemu.org/ChangeLog/7.2
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 8c8594c5f4231f1c83b655cd554fe2b470d15135
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:05 2023 +0200

    popt: Update to version 1.19
    
    - Update from version 1.18 to 1.19
    - Update of rootfile
    - Changelog
        1.19
    	    Clarify license: we are not the X Consortium, use straight MIT license text
    	    Fix build without glob_pattern_p()
    	    Fix missing libiconv dependency for static linkage in popt.pc
    	    Fix segfault regression when NLS is enabled but libintl.h cannot be found (#32)
    	    Fix the handling of superfluous args passed with =
    	    Fix iconv resource leak on errors
    	    Fix POPT_CONTEXT_KEEP_FIRST handling in poptResetContext()
    	    Fix '=' getting shown for short options
    	    Fix memory corruption issues with poptStuffArgs()
    	    Fix handling of large files in poptReadFile() on 32bit systems
    	    Fix build without wchar / mbstate_t
    	    Fix potential memory leak in poptReadConfigFile()
    	    Fix "Usage" string calculated length
    	    Fix memory leak regressions in popt 1.18
    	    Add --enable-werror configure option
    	    Add CREDITS file
    	    Improve random number handling
    	    Various code cleanups, const and type hygiene improvements
    	    Adjust test-suite expectations for libtool changes
    	    Various translation updates
    	    Various documentation improvements
    	    Various test-suite improvements
    	    Appease autoconf 2.70
    	    Update gettext to 1.98.8
    	    Run CI on fixed Fedora version (36 for now), use stricter compiler settings
    	    Drop unmaintained CHANGES file from tarballs
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit b1de4128da7b1bf5d5a5d8d47b22a31b1a647122
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:06:55 2023 +0000

    core178: Ship poppler
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 63b3698974621fde992670fa671e7709e969edfd
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 22:51:04 2023 +0200

    poppler: Update to version 23.08.0
    
    - Update from version 23.03.0 to 23.08.0
    - Update rootfile
    - Changelog
        23.08.0:
            core:
             * Fix GWG 19.2 - DeviceN Overprint (White)
             * Splash: avoid bogus memory allocation size in doTilingPatternFill
             * Fix use-of-uninitialized-value in XRef
             * Fix float-cast-overflow error in Catalog
             * Cleanup gpgme backend code
             * Version symbols in poppler core
            glib:
             * Improve poppler_get_available_signing_certificates
             * Add new members to PopplerCertificateInfo
            utils:
             * pdftotext: small improvement to man page
        23.07.0:
            core:
             * Fix reading of utf8-with-bom files
             * Fix crash if CERT_ExtractPublicKey doesn't return a public key
             * Fix rendering of some malformed documents. Issue #1395
             * Allow for stream compression and compress font streams in forms
             * Remove method Hints::getPageRanges
            qt5:
             * Fix crash when overprint preview is enabled
             * Don't fail signature basics tests if backend is not configured
            qt6:
             * Fix crash when overprint preview is enabled
             * Don't fail signature basics tests if backend is not configured
            utils:
             * pdfsig: Allow showung and selecting signature backend
             * pdfsig: Describe signature dump format in manual page
            glib:
             * Add signing API
            build system:
             * zlib is now mandatory
        23.06.0:
            core:
             * CairoOutputDev: Fix crash when doing type3 rendering
             * Fix crash with unknown signature hashing algorithms
             * Add gpgme backend for signature handling
             * Windows: Fix crash when signing existing signature
             * FontInfo: Make it return proper information about font substitution
             * FontInfo: Try harder to get Type 3 font name
             * Store embedded fonts widths table in a more effective manner
             * Skip font lookup for nonprintable characters
             * Windows: Look for fonts in both windows font dir and poppler fonts dir
             * Windows: symbol.ttf is not a good Symbol font
             * Windows: Fix memory leak when looking for fonts
             * Fix crash on malformed files
            qt5:
             * Add API to allow selecting signature backend (nss or gpgme)
             * Convert embedded files to bytearray a bit smarter
            qt6:
             * Add API to allow selecting signature backend (nss or gpgme)
             * Convert embedded files to bytearray a bit smarter
        23.05.0:
            core:
             * Fix crash when filling some forms
             * Set SigFlags when signing unsigned signature
             * Add some infrastructure code to support multiple signing backends
             * Fix potential stack overflow in PostScriptFunction::parseCode
             * Fix some minor uninitialised memory reads
        23.04.0:
            core:
             * Fix memory issue when signing fails. Issue #1372
             * Internal improvements of signature related code
             * CairoOutputDev: improve type3 font rendering
             * Fix memory leak in GlobalParams::findSystemFontFileForFamilyAndStyle
            utils:
             * pdftocairo: Fix crash in some special situations
             * pdfsig: allow holes in -dump signature list
             * pdfsig: Support --help
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit a1a45b0faa6d1bf1b568e6682137262bf81e7af1
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 18:45:42 2023 +0200

    xz: Update to version 5.4.4
    
    - Update from version 5.4.1 to 5.4.4
    - Update of rootfile
    - Changelog
        5.4.4 (2023-08-02)
    	    * liblzma and xzdec can now build against WASI SDK when threading
    	      support is disabled. xz and tests don't build yet.
    	    * CMake:
    	        - Fixed a bug preventing other projects from including liblzma
    	          multiple times using find_package().
    	        - Don't create broken symlinks in Cygwin and MSYS2 unless
    	          supported by the environment. This prevented building for the
    	          default MSYS2 environment. The problem was introduced in
    	          xz 5.4.0.
    	    * Documentation:
    	        - Small improvements to man pages.
    	        - Small improvements and typo fixes for liblzma API
    	          documentation.
    	    * Tests:
    	        - Added a new section to INSTALL to describe basic test usage
    	          and address recent questions about building the tests when
    	          cross compiling.
    	        - Small fixes and improvements to the tests.
    	    * Translations:
    	        - Fixed a mistake that caused one of the error messages to not
    	          be translated. This only affected versions 5.4.2 and 5.4.3.
    	        - Updated the Chinese (simplified), Croatian, Esperanto, German,
    	          Korean, Polish, Romanian, Spanish, Swedish, Ukrainian, and
    	          Vietnamese translations.
    	        - Updated the German, Korean, Romanian, and Ukrainian man page
    	          translations.
        5.4.3 (2023-05-04)
    	    * All fixes from 5.2.12
    	    * Features in the CMake build can now be disabled as CMake cache
    	      variables, similar to the Autotools build.
    	    * Minor update to the Croatian translation.
        5.4.2 (2023-03-18)
    	    * All fixes from 5.2.11 that were not included in 5.4.1.
    	    * If xz is built with support for the Capsicum sandbox but running
    	      in an environment that doesn't support Capsicum, xz now runs
    	      normally without sandboxing instead of exiting with an error.
    	    * liblzma:
    	        - Documentation was updated to improve the style, consistency,
    	          and completeness of the liblzma API headers.
    	        - The Doxygen-generated HTML documentation for the liblzma API
    	          header files is now included in the source release and is
    	          installed as part of "make install". All JavaScript is
    	          removed to simplify license compliance and to reduce the
    	          install size.
    	        - Fixed a minor bug in lzma_str_from_filters() that produced
    	          too many filters in the output string instead of reporting
    	          an error if the input array had more than four filters. This
    	          bug did not affect xz.
    	    * Build systems:
    	        - autogen.sh now invokes the doxygen tool via the new wrapper
    	          script doxygen/update-doxygen, unless the command line option
    	          --no-doxygen is used.
    	        - Added microlzma_encoder.c and microlzma_decoder.c to the
    	          VS project files for Windows and to the CMake build. These
    	          should have been included in 5.3.2alpha.
    	    * Tests:
    	        - Added a test to the CMake build that was forgotten in the
    	          previous release.
    	        - Added and refactored a few tests.
    	    * Translations:
    	        - Updated the Brazilian Portuguese translation.
    	        - Added Brazilian Portuguese man page translation.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit a6afd1e065cac03524c160c726446d35c552a147
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:05:15 2023 +0000

    core178: Ship smartmontools
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 3afe372a518a4c51044660305c64fe5abfdb688f
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 18:45:41 2023 +0200

    smartmontools: Update to version 7.4
    
    - Update from version 7.3 to 7.4
    - Update of rootfile not required
    - Changelog
        7.4
    	- The docker image used for CI and release builds is now based on
    	  Debian 12 instead of Ubuntu 18.04.
    	- macOS: CI and release builds are now generated for the x86_64 and arm64
    	  targets. 32 bit platforms will require to be compiled from the source.
    	- smartctl '-t short', '-t long' and '-X': NVMe support.
    	- smartctl '-l selftest': NVMe support.
    	- smartctl '-l farm': Prints Seagate's vendor-specific Field Access
    	  Reliability Metrics (FARM) log for ATA and SCSI drives.
    	- smartctl '-l error': Now also prints an error message for each entry
    	  of NVMe error information log.
    	- smartctl '-l genstats': Prints SCSI General statistics and performance
    	  log page.
    	- smartctl '-i' and '--identify': ACS-4/5/6 enhancements.
    	- smartctl '-c': Added NVMe 2.0 capability flags.
    	- smartctl '-g security': Added 'ata_security.master_password_id'
    	  to JSON output.  Plaintext output shows Master Password ID if set
    	  to a non-default value.
    	- smartctl '-q noserial': Now also suppresses the output of NVMe Namespace
    	  IEEE EUI-64.
    	- smartctl '-j': '-l error -l selftest' JSON output for NVMe devices.
    	- smartctl '-j': Avoid invalid UTF-8 sequences in JSON/YAML strings.
    	- smartctl '-j': Fixed a bogus exception during SCSI JSON output.
    	- smartctl '-j': Renamed JSON element 'scsi_temperature' back to
    	  'temperature' (regression).
    	- smartctl '-a': Now suggests '-x' for ATA devices because '-a' only
    	  provides legacy SMART information.
    	- smartd: No longer issues LOG_CRIT warnings if new entries of NVMe error
    	  information log do not indicate device problems.
    	- smartd: Now detects accidental use of smartd_warning script as
    	  '-M exec' parameter.
    	- smartd: No longer writes the 'Copyright...' line to syslog.
    	- smartd.conf '-M always': Sends reminder emails without any delay.
    	- smartd.conf '-M diminishing': Limited email delay to 32 days.
    	- ATA: Fixed decoding of extended self-test log on big endian hosts.
    	- ATA: Enhanced LBA range for device types '-d jmb39x-q,...' and
    	  '-d jms56x,...' from 33-62 to 1-255.
    	- ATA: Device type '-d intelliprop,N' now fails with a deprecation message.
    	  Added '-d intelliprop,N,force' flag to use it anyway.
    	- ATA/USB: Device type '-d usbasm1352r,N' for ASMedia ASM1352R USB to SATA
    	  RAID bridges
    	- SCSI: Fixed possible corruption issue with the Error Counter and
    	  Non medium Error log pages.
    	- SCSI: Added more "Informational Exceptions" strings.
    	- SCSI: Added initial support for REPORT SUPPORTED OPERATION command.
    	- SCSI: Initial rework of SCSI debug output.
    	- NVMe: Added error messages for NVMe status values.
    	- NVMe: Fixed crash after read of error information log on big endian hosts.
    	- HDD, SSD and USB additions to drive database.
    	- update-smart-drivedb: Fixed syntax for 'sed' versions which require
    	  ';' before '}' or do not support ';' at all.
    	- update-smart-drivedb: Replaced a usually not executed bashism.
    	- configure: Default for '--with-nvme-devicescan' is now 'yes' also on
    	  Darwin and FreeBSD.  It is still 'no' on NetBSD only.
    	- configure: Defines '_FORTIFY_SOURCE=3' if supported and not predefined.
    	- configure: No longer fails if libsystemd-dev is installed and
    	  'LDFLAGS=-static' is used.
    	- Compile fix for systems without legacy 'getdtablesize()'.
    	- Pre-releases from SVN snapshots now show "pre-VERSION" in version
    	  information and 'smartctl.pre_release=true' in JSON output.
    	- Linux: Device type '-d sssraid' for 3SNIC RAID controllers.
    	- Linux: Device type '-d marvell' now fails with a deprecation message.
    	  Added '-d marvell,force' flag to use it anyway.
    	- Linux: The generic SCSI code now defaults to SG_IO_V3 and does no
    	  longer fall back to the deprecated SCSI_IOCTL_SEND_COMMAND
    	  (but this ioctl is still used for '-d 3ware' and '-d marvell,force').
    	- Linux smartd: Now prevents systemd unit startup timeout when many
    	  devices are registered and then initially checked.
    	- Linux smartd: Systemd no longer reports a service failure if no device
    	  is present and a '-q *nodev0*' option is used.
    	- Solaris SPARC: Dropped legacy ATA support.  Dropped configure option
    	  '--with-solaris-sparc-ata'.
    	- Windows: IOCTL_STORAGE_PROTOCOL_COMMAND variant for NVMe self-tests.
    	- Windows: Installer now defaults to 64-bit executables.
    	- Windows: No longer prints bogus 'Local Time' if enhanced TZ syntax is used.
    	- Windows: Workaround to keep backward compatibility with old versions
    	  of Windows if some versions of MinGW-w64 are used.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 2382732336dc67d319b0af534b8b288aadf2e81a
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:04:43 2023 +0000

    core178: Ship LVM2
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 20558b760bcb3c970f9a1b71a9e8c995c0bd327b
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 18:45:40 2023 +0200

    lvm2: Update to version 2.03.22
    
    - Update from version 2.03.21 to 2.03.22
    - Update of rootfile not required
    - Changelog
        2.03.22 - 02nd August 2023
    	  Fix pv_major/pv_minor report field types so they are integers, not strings.
    	  Add lvmdevices --delnotfound to delete entries for missing devices.
    	  Always use cachepool name for metadata backup LV for lvconvert --repair.
    	  Make metadata backup LVs read-only after pool's lvconvert --repair.
    	  Improve VDO and Thin support with lvmlockd.
    	  Handle 'lvextend --usepolicies' for pools for all activation variants.
    	  Fix memleak in vgchange autoactivation setup.
    	  Update py-compile building script.
    	  Support conversion from thick to fully provisioned thin LV.
    	  Cache/Thin-pool can use error and zero volumes for testing.
    	  Individual thin volume can be cached, but cannot take snapshot.
    	  Better internal support for handling error and zero target (for testing).
    	  Resize COW above trimmed maximal size is does not return error.
    	  Support parsing of vdo geometry format version 4.
    	  Add lvm.conf thin_restore and cache_restore settings.
    	  Handle multiple mounts while resizing volume with a FS.
    	  Handle leading/trailing spaces in sys_wwid and sys_serial used by deivce_id.
    	  Enhance lvm_import_vdo and use snapshot when converting VDO volume.
    	  Fix parsing of VDO metadata.
    	  Fix failing -S|--select for non-reporting cmds if using LV info/status fields.
    	  Allow snapshots of raid+integrity LV.
    	  Fix multisegment RAID1 allocator to prevent using single disk for more legs.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit 2bda77fdc2f41816badc5d2dea3a0eac7185ff49
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 18:45:39 2023 +0200

    harfbuzz: Update to version 8.1.1
    
    - Update from version 8.0.1 to 8.1.1
    - Update of rootfile
    - Changelog
        8.1.1
    	- Fix shaping of contextual rules at the end of string, introduced in 8.1.0
    	- Fix stack-overflow in repacker with malicious fonts.
    	- 30% speed up loading Noto Duployan font.
        8.1.0
    	- Fix long-standing build issue with the AIX compiler and older Apple clang.
    	- Revert optimization that could cause timeout during subsetting with malicious fonts.
    	- More optimization work:
    	  - 45% speed up in shaping Noto Duployan font.
    	  - 10% speed up in subsetting Noto Duployan font.
    	  - Another 8% speed up in shaping Gulzar.
    	  - 5% speed up in loading Roboto.
    	- New API:
    	  +hb_ot_layout_collect_features_map()
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit ecb02cac7c09e607bc5b710260bc458e5ce2d721
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Tue Aug 8 16:03:06 2023 +0000

    core178: Ship gmp
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit c527a36833e9328db62c6e1d4be8918f12d0fe02
Author: Adolf Belka <adolf.belka(a)ipfire.org>
Date:   Mon Aug 7 18:45:38 2023 +0200

    gmp: Update to version 6.3.0
    
    - Update fromn version 6.2.1 to 6.3.0
    - Update of rootfile
    - Changelog
        Changes between GMP version 6.2.* and 6.3.*.
           BUGS FIXED
    	  * A possible overflow of type int is avoided for mpz_cmp on huge operands.
    	  * A possible error condition when a malformed file is read with
    	    mpz_inp_raw is now correctly handled.
           FEATURES
    	  * New public function mpz_prevprime, companion of the existing
    	    mpz_nextprime.
    	  * New documented pointer types mpz_ptr, mpz_srcptr, and similar for
    	    other GMP types. Refer to the manual for full list and suggested
    	    usage. These types have been present in gmp.h at least since
    	    GMP-4.0, but previously not advertised to users.
    	  * Support for 64-bit Arm under Macos.
    	  * Support for the loongarch64 CPU family.
    	  * Support for building with LTO, link-time optimisations.
           SPEEDUPS
    	  * New special code for base = 2 in mpz_powm reduces the average time
    	    for the functions that test primality.
    	  * Speedup for the function mpz_nextprime on large operands.
    	  * Speedup for multiplications (some sizes only) thanks to new
    	    internal functions to compute small negacyclic products.
    	  * Special assembly code for IBM z13 and later "mainframe" CPUs, resulting in
    	    a huge speedup.
    	  * Improved assembly for several 64-bit x86 CPUs, Risc-V, 64-bit Arm.
    
    Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit ea88c39989588e7a8bd8be575225b2a1af798587
Author: Matthias Fischer <matthias.fischer(a)ipfire.org>
Date:   Tue Aug 8 17:54:48 2023 +0200

    nmap: Bumped PAK_VER to 16 due to removing the old OpenSSL files
    
    Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

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

Summary of changes:
 config/rootfiles/common/gmp                        |  4 +-
 config/rootfiles/common/harfbuzz                   |  7 +-
 config/rootfiles/common/poppler                    |  6 +-
 config/rootfiles/common/popt                       |  2 +-
 config/rootfiles/common/qpdf                       |  2 +-
 config/rootfiles/common/xz                         | 95 +++++++++++++++++++++-
 .../{oldcore/156 => core/178}/filelists/gmp        |  0
 .../{oldcore/125 => core/178}/filelists/lvm2       |  0
 .../{oldcore/110 => core/178}/filelists/poppler    |  0
 .../{oldcore/110 => core/178}/filelists/qpdf       |  0
 config/rootfiles/core/178/filelists/rpcsvc-proto   |  1 +
 .../106 => core/178}/filelists/smartmontools       |  0
 config/rootfiles/packages/qemu                     | 12 ---
 lfs/gmp                                            |  6 +-
 lfs/harfbuzz                                       |  4 +-
 lfs/lvm2                                           |  4 +-
 lfs/nmap                                           |  2 +-
 lfs/poppler                                        |  4 +-
 lfs/popt                                           |  6 +-
 lfs/qemu                                           |  6 +-
 lfs/qemu-ga                                        |  6 +-
 lfs/qpdf                                           |  4 +-
 lfs/rpcsvc-proto                                   |  6 +-
 lfs/smartmontools                                  |  6 +-
 lfs/xz                                             |  4 +-
 25 files changed, 135 insertions(+), 52 deletions(-)
 copy config/rootfiles/{oldcore/156 => core/178}/filelists/gmp (100%)
 copy config/rootfiles/{oldcore/125 => core/178}/filelists/lvm2 (100%)
 copy config/rootfiles/{oldcore/110 => core/178}/filelists/poppler (100%)
 copy config/rootfiles/{oldcore/110 => core/178}/filelists/qpdf (100%)
 create mode 120000 config/rootfiles/core/178/filelists/rpcsvc-proto
 copy config/rootfiles/{oldcore/106 => core/178}/filelists/smartmontools (100%)

Difference in files:
diff --git a/config/rootfiles/common/gmp b/config/rootfiles/common/gmp
index 64d39effb..41c31d1b4 100644
--- a/config/rootfiles/common/gmp
+++ b/config/rootfiles/common/gmp
@@ -4,12 +4,12 @@
 #usr/lib/libgmp.la
 #usr/lib/libgmp.so
 usr/lib/libgmp.so.10
-usr/lib/libgmp.so.10.4.1
+usr/lib/libgmp.so.10.5.0
 #usr/lib/libgmpxx.a
 #usr/lib/libgmpxx.la
 #usr/lib/libgmpxx.so
 usr/lib/libgmpxx.so.4
-usr/lib/libgmpxx.so.4.6.1
+usr/lib/libgmpxx.so.4.7.0
 #usr/lib/pkgconfig/gmp.pc
 #usr/lib/pkgconfig/gmpxx.pc
 #usr/share/info/gmp.info
diff --git a/config/rootfiles/common/harfbuzz b/config/rootfiles/common/harfbuzz
index f9a396c36..3895dfcac 100644
--- a/config/rootfiles/common/harfbuzz
+++ b/config/rootfiles/common/harfbuzz
@@ -44,15 +44,15 @@
 #usr/lib/libharfbuzz-cairo.la
 #usr/lib/libharfbuzz-cairo.so
 usr/lib/libharfbuzz-cairo.so.0
-usr/lib/libharfbuzz-cairo.so.0.60801.0
+usr/lib/libharfbuzz-cairo.so.0.60811.0
 #usr/lib/libharfbuzz-subset.la
 #usr/lib/libharfbuzz-subset.so
 usr/lib/libharfbuzz-subset.so.0
-usr/lib/libharfbuzz-subset.so.0.60801.0
+usr/lib/libharfbuzz-subset.so.0.60811.0
 #usr/lib/libharfbuzz.la
 #usr/lib/libharfbuzz.so
 usr/lib/libharfbuzz.so.0
-usr/lib/libharfbuzz.so.0.60801.0
+usr/lib/libharfbuzz.so.0.60811.0
 #usr/lib/pkgconfig/harfbuzz-cairo.pc
 #usr/lib/pkgconfig/harfbuzz-subset.pc
 #usr/lib/pkgconfig/harfbuzz.pc
@@ -130,6 +130,7 @@ usr/lib/libharfbuzz.so.0.60801.0
 #usr/share/gtk-doc/html/harfbuzz/api-index-7-1-0.html
 #usr/share/gtk-doc/html/harfbuzz/api-index-7-3-0.html
 #usr/share/gtk-doc/html/harfbuzz/api-index-8-0-0.html
+#usr/share/gtk-doc/html/harfbuzz/api-index-8-1-0.html
 #usr/share/gtk-doc/html/harfbuzz/api-index-full.html
 #usr/share/gtk-doc/html/harfbuzz/apple-advanced-typography-api.html
 #usr/share/gtk-doc/html/harfbuzz/buffers-language-script-and-direction.html
diff --git a/config/rootfiles/common/poppler b/config/rootfiles/common/poppler
index 97f7b3eb7..1cbdb3f7a 100644
--- a/config/rootfiles/common/poppler
+++ b/config/rootfiles/common/poppler
@@ -171,10 +171,10 @@ usr/lib/libpoppler-cpp.so.0
 usr/lib/libpoppler-cpp.so.0.11.0
 #usr/lib/libpoppler-glib.so
 usr/lib/libpoppler-glib.so.8
-usr/lib/libpoppler-glib.so.8.24.0
+usr/lib/libpoppler-glib.so.8.26.0
 #usr/lib/libpoppler.so
-usr/lib/libpoppler.so.126
-usr/lib/libpoppler.so.126.0.0
+usr/lib/libpoppler.so.130
+usr/lib/libpoppler.so.130.0.0
 #usr/lib/pkgconfig/poppler-cpp.pc
 #usr/lib/pkgconfig/poppler-glib.pc
 #usr/lib/pkgconfig/poppler.pc
diff --git a/config/rootfiles/common/popt b/config/rootfiles/common/popt
index bcadabcf0..c93a47691 100644
--- a/config/rootfiles/common/popt
+++ b/config/rootfiles/common/popt
@@ -3,6 +3,6 @@
 #usr/lib/libpopt.la
 usr/lib/libpopt.so
 usr/lib/libpopt.so.0
-usr/lib/libpopt.so.0.0.1
+usr/lib/libpopt.so.0.0.2
 #usr/lib/pkgconfig/popt.pc
 #usr/share/man/man3/popt.3
diff --git a/config/rootfiles/common/qpdf b/config/rootfiles/common/qpdf
index 1afd04a53..752c38491 100644
--- a/config/rootfiles/common/qpdf
+++ b/config/rootfiles/common/qpdf
@@ -77,7 +77,7 @@ usr/bin/qpdf
 #usr/lib/cmake/qpdf/qpdfConfigVersion.cmake
 #usr/lib/libqpdf.so
 usr/lib/libqpdf.so.29
-usr/lib/libqpdf.so.29.3.0
+usr/lib/libqpdf.so.29.5.0
 #usr/lib/pkgconfig/libqpdf.pc
 #usr/share/doc/qpdf
 #usr/share/doc/qpdf/README-doc.txt
diff --git a/config/rootfiles/common/xz b/config/rootfiles/common/xz
index 69d440435..ae40ff580 100644
--- a/config/rootfiles/common/xz
+++ b/config/rootfiles/common/xz
@@ -41,7 +41,7 @@ usr/bin/xzmore
 #usr/lib/liblzma.la
 #usr/lib/liblzma.so
 usr/lib/liblzma.so.5
-usr/lib/liblzma.so.5.4.1
+usr/lib/liblzma.so.5.4.4
 #usr/lib/pkgconfig/liblzma.pc
 #usr/share/doc/xz
 #usr/share/doc/xz/AUTHORS
@@ -51,6 +51,75 @@ usr/lib/liblzma.so.5.4.1
 #usr/share/doc/xz/README
 #usr/share/doc/xz/THANKS
 #usr/share/doc/xz/TODO
+#usr/share/doc/xz/api
+#usr/share/doc/xz/api/annotated.html
+#usr/share/doc/xz/api/base_8h.html
+#usr/share/doc/xz/api/bc_s.png
+#usr/share/doc/xz/api/bc_sd.png
+#usr/share/doc/xz/api/bcj_8h.html
+#usr/share/doc/xz/api/block_8h.html
+#usr/share/doc/xz/api/check_8h.html
+#usr/share/doc/xz/api/classes.html
+#usr/share/doc/xz/api/closed.png
+#usr/share/doc/xz/api/container_8h.html
+#usr/share/doc/xz/api/delta_8h.html
+#usr/share/doc/xz/api/dir_b17a1d403082bd69a703ed987cf158fb.html
+#usr/share/doc/xz/api/doc.svg
+#usr/share/doc/xz/api/docd.svg
+#usr/share/doc/xz/api/doxygen.css
+#usr/share/doc/xz/api/doxygen.svg
+#usr/share/doc/xz/api/files.html
+#usr/share/doc/xz/api/filter_8h.html
+#usr/share/doc/xz/api/folderclosed.svg
+#usr/share/doc/xz/api/folderclosedd.svg
+#usr/share/doc/xz/api/folderopen.svg
+#usr/share/doc/xz/api/folderopend.svg
+#usr/share/doc/xz/api/functions.html
+#usr/share/doc/xz/api/functions_vars.html
+#usr/share/doc/xz/api/globals.html
+#usr/share/doc/xz/api/globals_defs.html
+#usr/share/doc/xz/api/globals_enum.html
+#usr/share/doc/xz/api/globals_eval.html
+#usr/share/doc/xz/api/globals_func.html
+#usr/share/doc/xz/api/globals_type.html
+#usr/share/doc/xz/api/hardware_8h.html
+#usr/share/doc/xz/api/index.html
+#usr/share/doc/xz/api/index_8h.html
+#usr/share/doc/xz/api/index__hash_8h.html
+#usr/share/doc/xz/api/lzma12_8h.html
+#usr/share/doc/xz/api/lzma_8h.html
+#usr/share/doc/xz/api/nav_f.png
+#usr/share/doc/xz/api/nav_fd.png
+#usr/share/doc/xz/api/nav_g.png
+#usr/share/doc/xz/api/nav_h.png
+#usr/share/doc/xz/api/nav_hd.png
+#usr/share/doc/xz/api/open.png
+#usr/share/doc/xz/api/splitbar.png
+#usr/share/doc/xz/api/splitbard.png
+#usr/share/doc/xz/api/stream__flags_8h.html
+#usr/share/doc/xz/api/structlzma__allocator.html
+#usr/share/doc/xz/api/structlzma__block.html
+#usr/share/doc/xz/api/structlzma__filter.html
+#usr/share/doc/xz/api/structlzma__index__iter.html
+#usr/share/doc/xz/api/structlzma__mt.html
+#usr/share/doc/xz/api/structlzma__options__bcj.html
+#usr/share/doc/xz/api/structlzma__options__delta.html
+#usr/share/doc/xz/api/structlzma__options__lzma.html
+#usr/share/doc/xz/api/structlzma__stream.html
+#usr/share/doc/xz/api/structlzma__stream__flags.html
+#usr/share/doc/xz/api/sync_off.png
+#usr/share/doc/xz/api/sync_on.png
+#usr/share/doc/xz/api/tab_a.png
+#usr/share/doc/xz/api/tab_ad.png
+#usr/share/doc/xz/api/tab_b.png
+#usr/share/doc/xz/api/tab_bd.png
+#usr/share/doc/xz/api/tab_h.png
+#usr/share/doc/xz/api/tab_hd.png
+#usr/share/doc/xz/api/tab_s.png
+#usr/share/doc/xz/api/tab_sd.png
+#usr/share/doc/xz/api/tabs.css
+#usr/share/doc/xz/api/version_8h.html
+#usr/share/doc/xz/api/vli_8h.html
 #usr/share/doc/xz/examples
 #usr/share/doc/xz/examples/00_README.txt
 #usr/share/doc/xz/examples/01_compress_easy.c
@@ -177,6 +246,30 @@ usr/lib/liblzma.so.5.4.1
 #usr/share/man/man1/xzgrep.1
 #usr/share/man/man1/xzless.1
 #usr/share/man/man1/xzmore.1
+#usr/share/man/pt_BR
+#usr/share/man/pt_BR/man1
+#usr/share/man/pt_BR/man1/lzcat.1
+#usr/share/man/pt_BR/man1/lzcmp.1
+#usr/share/man/pt_BR/man1/lzdiff.1
+#usr/share/man/pt_BR/man1/lzegrep.1
+#usr/share/man/pt_BR/man1/lzfgrep.1
+#usr/share/man/pt_BR/man1/lzgrep.1
+#usr/share/man/pt_BR/man1/lzless.1
+#usr/share/man/pt_BR/man1/lzma.1
+#usr/share/man/pt_BR/man1/lzmadec.1
+#usr/share/man/pt_BR/man1/lzmore.1
+#usr/share/man/pt_BR/man1/unlzma.1
+#usr/share/man/pt_BR/man1/unxz.1
+#usr/share/man/pt_BR/man1/xz.1
+#usr/share/man/pt_BR/man1/xzcat.1
+#usr/share/man/pt_BR/man1/xzcmp.1
+#usr/share/man/pt_BR/man1/xzdec.1
+#usr/share/man/pt_BR/man1/xzdiff.1
+#usr/share/man/pt_BR/man1/xzegrep.1
+#usr/share/man/pt_BR/man1/xzfgrep.1
+#usr/share/man/pt_BR/man1/xzgrep.1
+#usr/share/man/pt_BR/man1/xzless.1
+#usr/share/man/pt_BR/man1/xzmore.1
 #usr/share/man/ro
 #usr/share/man/ro/man1
 #usr/share/man/ro/man1/lzcat.1
diff --git a/config/rootfiles/core/178/filelists/gmp b/config/rootfiles/core/178/filelists/gmp
new file mode 120000
index 000000000..8662a8982
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/gmp
@@ -0,0 +1 @@
+../../../common/gmp
\ No newline at end of file
diff --git a/config/rootfiles/core/178/filelists/lvm2 b/config/rootfiles/core/178/filelists/lvm2
new file mode 120000
index 000000000..d640870b7
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/lvm2
@@ -0,0 +1 @@
+../../../common/lvm2
\ No newline at end of file
diff --git a/config/rootfiles/core/178/filelists/poppler b/config/rootfiles/core/178/filelists/poppler
new file mode 120000
index 000000000..39aa6c263
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/poppler
@@ -0,0 +1 @@
+../../../common/poppler
\ No newline at end of file
diff --git a/config/rootfiles/core/178/filelists/qpdf b/config/rootfiles/core/178/filelists/qpdf
new file mode 120000
index 000000000..2d6c43dec
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/qpdf
@@ -0,0 +1 @@
+../../../common/qpdf
\ No newline at end of file
diff --git a/config/rootfiles/core/178/filelists/rpcsvc-proto b/config/rootfiles/core/178/filelists/rpcsvc-proto
new file mode 120000
index 000000000..3e34a9d94
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/rpcsvc-proto
@@ -0,0 +1 @@
+../../../common/rpcsvc-proto
\ No newline at end of file
diff --git a/config/rootfiles/core/178/filelists/smartmontools b/config/rootfiles/core/178/filelists/smartmontools
new file mode 120000
index 000000000..fb66dafef
--- /dev/null
+++ b/config/rootfiles/core/178/filelists/smartmontools
@@ -0,0 +1 @@
+../../../common/smartmontools
\ No newline at end of file
diff --git a/config/rootfiles/packages/qemu b/config/rootfiles/packages/qemu
index 5f6cbffb4..e69e28322 100644
--- a/config/rootfiles/packages/qemu
+++ b/config/rootfiles/packages/qemu
@@ -20,13 +20,8 @@ usr/bin/qemu-system-x86_64
 usr/bin/qemu-x86_64
 usr/include/qemu-plugin.h
 usr/libexec/qemu-bridge-helper
-usr/libexec/virtiofsd
 #usr/share/applications/qemu.desktop
-#usr/share/icons/hicolor/128x128
-#usr/share/icons/hicolor/128x128/apps
 #usr/share/icons/hicolor/128x128/apps/qemu.png
-#usr/share/icons/hicolor/16x16
-#usr/share/icons/hicolor/16x16/apps
 #usr/share/icons/hicolor/16x16/apps/qemu.png
 #usr/share/icons/hicolor/24x24
 #usr/share/icons/hicolor/24x24/apps
@@ -34,8 +29,6 @@ usr/libexec/virtiofsd
 #usr/share/icons/hicolor/256x256
 #usr/share/icons/hicolor/256x256/apps
 #usr/share/icons/hicolor/256x256/apps/qemu.png
-#usr/share/icons/hicolor/32x32
-#usr/share/icons/hicolor/32x32/apps
 #usr/share/icons/hicolor/32x32/apps/qemu.bmp
 #usr/share/icons/hicolor/32x32/apps/qemu.png
 #usr/share/icons/hicolor/48x48
@@ -44,8 +37,6 @@ usr/libexec/virtiofsd
 #usr/share/icons/hicolor/512x512
 #usr/share/icons/hicolor/512x512/apps
 #usr/share/icons/hicolor/512x512/apps/qemu.png
-#usr/share/icons/hicolor/64x64
-#usr/share/icons/hicolor/64x64/apps
 #usr/share/icons/hicolor/64x64/apps/qemu.png
 #usr/share/icons/hicolor/scalable/apps/qemu.svg
 #usr/share/qemu
@@ -142,7 +133,6 @@ usr/share/qemu/qemu-nsis.bmp
 usr/share/qemu/qemu_vga.ndrv
 #usr/share/qemu/s390-ccw.img
 #usr/share/qemu/s390-netboot.img
-usr/share/qemu/sgabios.bin
 #usr/share/qemu/skiboot.lid
 #usr/share/qemu/slof.bin
 usr/share/qemu/trace-events-all
@@ -157,7 +147,5 @@ usr/share/qemu/vgabios-stdvga.bin
 usr/share/qemu/vgabios-virtio.bin
 usr/share/qemu/vgabios-vmware.bin
 usr/share/qemu/vgabios.bin
-usr/share/qemu/vhost-user
-usr/share/qemu/vhost-user/50-qemu-virtiofsd.json
 usr/share/qemu/vof-nvram.bin
 usr/share/qemu/vof.bin
diff --git a/lfs/gmp b/lfs/gmp
index 70a4d666c..555e9eeb5 100644
--- a/lfs/gmp
+++ b/lfs/gmp
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  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        = 6.2.1
+VER        = 6.3.0
 
 THISAPP    = gmp-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c0d85f175392a50cfa01bc6b0a312b235946ad8b4f6f84f6dabd33d7a6f2cc75c9b0e1e33057be07750bfa0145b7c4cf3b6188a5be6ca9d7271ec2276c84ebcb
+$(DL_FILE)_BLAKE2 = a865129e2b3f634ec5bad7f97ed89532e43f5662ac47a7d8ab7f0df8c9f8d0886bd984651422e2573c2163bca69c0547c248147ec90880accbd53db97dc0ddee
 
 install : $(TARGET)
 
diff --git a/lfs/harfbuzz b/lfs/harfbuzz
index 9c706f61e..57b7cef3a 100644
--- a/lfs/harfbuzz
+++ b/lfs/harfbuzz
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 8.0.1
+VER        = 8.1.1
 
 THISAPP    = harfbuzz-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e69305e5cddee2f9a928ab38b6904cc3e6fbafb319ad268047178667639a2a361576051a9a6443352b51adca47bb8998ca5c533afe12eac456c3170e171c1839
+$(DL_FILE)_BLAKE2 = 341603e50aec5294eb16fb431975304ee9badce5588d726c5ccbcf9e38878581c4bbf2e09f27c3d401da52c93121702f220cd207792448af66a9f23830df9114
 
 install : $(TARGET)
 
diff --git a/lfs/lvm2 b/lfs/lvm2
index 4e2bd6235..7dedadcac 100644
--- a/lfs/lvm2
+++ b/lfs/lvm2
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 2.03.21
+VER        = 2.03.22
 
 THISAPP    = LVM2.$(VER)
 DL_FILE    = $(THISAPP).tgz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 529bc01b3d1ba6207c9ddc95309b39e6293fcd0286334240b9fdc076da0b7bc7e026338ec0243564ec153f2fb5009014149c3f8e0db0cd47a29418af62068728
+$(DL_FILE)_BLAKE2 = 79bbea84bd82f111c1bb5de336e6a9f1368b2c9e43f075dccaa90c7746a364259ad278adf650379eca75f2803ed74e74dd372be2cca8518462182657f96a0033
 
 install : $(TARGET)
 
diff --git a/lfs/nmap b/lfs/nmap
index 991245500..2b1b97dab 100644
--- a/lfs/nmap
+++ b/lfs/nmap
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = nmap
-PAK_VER    = 16
+PAK_VER    = 17
 
 DEPS       =
 
diff --git a/lfs/poppler b/lfs/poppler
index 959eeed0c..e3c094b5b 100644
--- a/lfs/poppler
+++ b/lfs/poppler
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 23.03.0
+VER        = 23.08.0
 
 THISAPP    = poppler-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 1247b7cf62466f65c46b739f0784e8ba97911940e04f91a7db28bf0663c8fe182f79066aa3925cb338580ccedbf17aecd2a2d2795e859680d1fb721390a1cbe0
+$(DL_FILE)_BLAKE2 = a35e44cc590e34991b27e53caf650dedf4d4aa4f9f82ed5d8a57b0ca6bb863c96fe0e9b9c9021b9722db48896d236c9e057bcbf45e9609eb237bf00481e91428
 
 install : $(TARGET)
 
diff --git a/lfs/popt b/lfs/popt
index 631b6219a..0994246fe 100644
--- a/lfs/popt
+++ b/lfs/popt
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  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        = 1.18
+VER        = 1.19
 
 THISAPP    = popt-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = c9c42eb12aa21764cde5e9b4a8b30125b547ae690b4d9d0d40b45bd3c1f7ae0b09d5086a588cf37e7bed71fe770ff840c0fd40ecf4ce5b7c1e874b938b6e0324
+$(DL_FILE)_BLAKE2 = 8f8965e2d339f0413e8d1da421ea7556526f39f089a822063d6fdc35b781a7c7ea84a91d6af3e25902c1f045f564ef956fc69cd4625e6cc008c9e3ca34923a9d
 
 install : $(TARGET)
 
diff --git a/lfs/qemu b/lfs/qemu
index 0f581e297..d12c19192 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -27,7 +27,7 @@ include Config
 SUMMARY    = Machine emulator and virtualizer
 
 # If you update the version also qemu-ga !!!
-VER        = 7.1.0
+VER        = 8.0.3
 
 THISAPP    = qemu-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -35,7 +35,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = qemu
-PAK_VER    = 37
+PAK_VER    = 38
 
 DEPS       = alsa libusbredir spice libseccomp
 
@@ -61,7 +61,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = e05f91ce4993c7591a2df08b5fb017f8b8ec2141ab7bfd55d14730ea6b793ac1091de539992058392a5522d4e58beee92a87752707be58e3619b8213ef9f35bf
+$(DL_FILE)_BLAKE2 = 071cc1a35209a02e8c5dd4f43cb112f110b4655adb0f870a04fdf9a6e2c761699574e8c9426f70f60787a99acf252d7a64d94a8e837cdfeda93d89428d7866f3
 
 install : $(TARGET)
 
diff --git a/lfs/qemu-ga b/lfs/qemu-ga
index 8fd34f6f6..db5bf8db8 100644
--- a/lfs/qemu-ga
+++ b/lfs/qemu-ga
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  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,11 +26,11 @@ include Config
 
 SUMMARY    = Guest agent for QEMU
 
-VER        = 7.1.0
+VER        = 8.0.3
 THISAPP    = qemu-ga-$(VER)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = qemu-ga
-PAK_VER    = 4
+PAK_VER    = 5
 
 DEPS       =
 
diff --git a/lfs/qpdf b/lfs/qpdf
index 2b7557c27..bdcf43082 100644
--- a/lfs/qpdf
+++ b/lfs/qpdf
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 11.3.0
+VER        = 11.5.0
 
 THISAPP    = qpdf-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 80dd2a96f3b82b9e530f26c72cd24cd3b111e2e1cbe821b12af13807e8d54fbc7f5632130f5cbd03df1b7c70de3c94a7e889d4ea4f1a3670a28f726364564b16
+$(DL_FILE)_BLAKE2 = 54545665a31cf0cbfc50faa18f1dc64f036cd5bfd2b274ff443718e704e26f3a8cf83600f9dd7d8039cf4bdcaf42e1c14f03db775226b56c8ba53be33e0ca522
 
 install : $(TARGET)
 
diff --git a/lfs/rpcsvc-proto b/lfs/rpcsvc-proto
index 966fdd4fa..66fc01395 100644
--- a/lfs/rpcsvc-proto
+++ b/lfs/rpcsvc-proto
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  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        = 1.4.3
+VER        = 1.4.4
 
 THISAPP    = rpcsvc-proto-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = dc15392fd68b76ffa92c08039076aed293834b047ebea4a418dc767ea13e3a04b19e5108ebda808dfa4356ca426db610847758d69b23cc66981eb4ea844eb218
+$(DL_FILE)_BLAKE2 = 2cba39b0307d773133306c4222e43cc44d4189bb125f993634b2a5e7679e5f5b4d28b05b95db6e694d316b4fdd182cf91c2a01ed1c519a3ca7ced5ebf5da3d10
 
 install : $(TARGET)
 
diff --git a/lfs/smartmontools b/lfs/smartmontools
index bd3851eb8..3e81181fc 100644
--- a/lfs/smartmontools
+++ b/lfs/smartmontools
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info(a)ipfire.org>                     #
+# Copyright (C) 2007-2023  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        = 7.3
+VER        = 7.4
 
 THISAPP    = smartmontools-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 119fd4aded487796ffd38050ddf8c7dd69cc6f3950650cb0315846292fd4a6594d949d87c51ed46717d6aaadb332c68f655514d1fde89600d51f3fe36f8df1ca
+$(DL_FILE)_BLAKE2 = fbf7888b92b6be4892a206e1c0fae1cb7c45fe0d62270c5fe713a540616e3599c67dd3297ad8c1cd344987e1fe95ae7c5e92db8e13ef622b3316b3780fbb4052
 
 install : $(TARGET)
 
diff --git a/lfs/xz b/lfs/xz
index 3c9875a6e..8270048fc 100644
--- a/lfs/xz
+++ b/lfs/xz
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 5.4.1
+VER        = 5.4.4
 
 THISAPP    = xz-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -45,7 +45,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 64c555ccc163ea1135c7eda077ef31e5bd68975ed3b6e395d5d6e602caed13112349c72a7596c67797e007246782747f048dd4a518239d9005305932b0975d67
+$(DL_FILE)_BLAKE2 = 4b4c2bf33c964c16af15b2226ec7a922565026bd21192e193c0896a9d1a27a92bc08dbd842b9fa76ae9428b48a320ca65609b080caa41e0eaab7b6659b287968
 
 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:[~2023-08-08 16:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-08-08 16:37 [git.ipfire.org] IPFire 2.x development tree branch, next, updated. ebf98cabe2b52beb4436b66d75f3e8aef01da428 Michael Tremer

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