diff options
390 files changed, 8910 insertions, 2859 deletions
@@ -4801,3 +4801,10 @@ net-p2p/tremotesf@qt6|net-p2p/tremotesf|2025-10-08|Qt 6 is the only supported ve sysutils/moor|textproc/moor|2025-10-10|Moved to a more appropriate category net/p5-URI-ws|net/p5-URI|2025-10-12|URI-ws was folded into URI science/py-cirq-rigetti||2025-10-13|Deprecated by the upstream, see https://github.com/quantumlib/Cirq/issues/7058 +games/xqf||2025-10-14|Has expired: Fails to build +games/galaxyhack||2025-10-14|Has expired: Fails to build with boost-1.85+ +x11-fm/fsv2||2025-10-14|Has expired: does not configure: No fonts installed on the system +deskutils/gnome-shell-extension-openweather||2025-10-14|Has expired: Superseded by deskutils/gnome-shell-extension-simple-weather +math/vtk8|math/vtk9|2025-10-14|Last user switched to math/vtk9 +security/iddawc||2025-10-14|Has expired: Upstream repo archived on Nov 11, 2024 +editors/quilter||2025-10-15|Deprecated upstream @@ -5,6 +5,23 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20251015: + AFFECTS: users of security/libressl + AUTHOR: brnrd@FreeBSD.org + + The port has been updated to the latest stable version 4.2 of LibreSSL. + The shared library versions of the libraries have been bumped. + + After upgrading, manually update all packages that depend on any of the + libraries provided by LibreSSL (libssl, libcrypto and libtls) since the + versions of these libraries have changed. Normally, you can obtain the + list of dependent software by running the following command: + + # pkg info -r libressl + + Then you should rebuild all ports depending on libressl to avoid dangling + shared library dependencies. + 20251011: AFFECTS: users of net-im/gotosocial AUTHOR: dinoex@FreeBSD.org diff --git a/audio/mac/Makefile b/audio/mac/Makefile index 2a99619bd084..cd5891747773 100644 --- a/audio/mac/Makefile +++ b/audio/mac/Makefile @@ -1,5 +1,6 @@ PORTNAME= mac -PORTVERSION= 11.54 +PORTVERSION= 11.62 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= https://www.monkeysaudio.com/files/ DISTNAME= ${PORTNAME:tu}_${PORTVERSION:S|.||}_SDK @@ -14,7 +15,9 @@ LICENSE_FILE= ${WRKSRC}/License.txt USES= cmake dos2unix zip DOS2UNIX_FILES= Shared/*.h \ - Source/Console/Console.cpp + Source/Console/*.cpp \ + Source/Shared/*.cpp \ + Source/Shared/*.h NO_WRKSUBDIR= yes diff --git a/audio/mac/distinfo b/audio/mac/distinfo index c420dbd014e0..bb534eecf5d4 100644 --- a/audio/mac/distinfo +++ b/audio/mac/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759128267 -SHA256 (MAC_1154_SDK.zip) = 6f825a606e474a03729eb50d8b6967c74dbd1863c172e0732d836bebd9813dfc -SIZE (MAC_1154_SDK.zip) = 1704471 +TIMESTAMP = 1760517847 +SHA256 (MAC_1162_SDK.zip) = 9945408555424f1f81d69d8bba46f191331219c144b7576158f1e4d9cff67024 +SIZE (MAC_1162_SDK.zip) = 1705126 diff --git a/audio/mac/files/patch-Shared_All.h b/audio/mac/files/patch-Shared_All.h index 03e25dc1defc..10b574e7d180 100644 --- a/audio/mac/files/patch-Shared_All.h +++ b/audio/mac/files/patch-Shared_All.h @@ -1,6 +1,9 @@ We need to define PLATFORM_LINUX as the default if consumers don't do so. ---- Shared/All.h.orig 2025-02-07 08:39:49 UTC +Fix runtime for little endian archs. At least on amd64, _BIG_ENDIAN is defined +somewhere in the toolchain, causing the byte order to be reversed. + +--- Shared/All.h.orig 2025-10-15 08:20:58 UTC +++ Shared/All.h @@ -10,8 +10,8 @@ PLATFORM_ANDROID PLATFORM_ANDROID @@ -13,3 +16,12 @@ We need to define PLATFORM_LINUX as the default if consumers don't do so. #endif #ifdef PLATFORM_ANDROID +@@ -311,7 +311,7 @@ Byte order + #define APE_LITTLE_ENDIAN 1234 + #define APE_BIG_ENDIAN 4321 + +-#if defined(_BIG_ENDIAN) || defined(__BIG_ENDIAN__) || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)) ++#if defined(__BIG_ENDIAN__) || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)) + #define APE_BYTE_ORDER APE_BIG_ENDIAN + #else + #define APE_BYTE_ORDER APE_LITTLE_ENDIAN diff --git a/audio/mac/files/patch-Source_Shared_All.h b/audio/mac/files/patch-Source_Shared_All.h new file mode 100644 index 000000000000..d7748cd159f8 --- /dev/null +++ b/audio/mac/files/patch-Source_Shared_All.h @@ -0,0 +1,27 @@ +We need to define PLATFORM_LINUX as the default if consumers don't do so. + +Fix runtime for little endian archs. At least on amd64, _BIG_ENDIAN is defined +somewhere in the toolchain, causing the byte order to be reversed. + +--- Source/Shared/All.h.orig 2025-10-15 08:20:58 UTC ++++ Source/Shared/All.h +@@ -10,8 +10,8 @@ PLATFORM_ANDROID + PLATFORM_ANDROID + **************************************************************************************************/ + #if !defined(PLATFORM_WINDOWS) && !defined(PLATFORM_APPLE) && !defined(PLATFORM_LINUX) && !defined(PLATFORM_ANDROID) +- #pragma message("No platform set for MACLib, defaulting to Windows") +- #define PLATFORM_WINDOWS ++ #pragma message("No platform set for MACLib, defaulting to Linux") ++ #define PLATFORM_LINUX + #endif + + #ifdef PLATFORM_ANDROID +@@ -311,7 +311,7 @@ Byte order + #define APE_LITTLE_ENDIAN 1234 + #define APE_BIG_ENDIAN 4321 + +-#if defined(_BIG_ENDIAN) || defined(__BIG_ENDIAN__) || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)) ++#if defined(__BIG_ENDIAN__) || (defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)) + #define APE_BYTE_ORDER APE_BIG_ENDIAN + #else + #define APE_BYTE_ORDER APE_LITTLE_ENDIAN diff --git a/audio/mac/files/patch-Source_Shared_CPUFeatures.cpp b/audio/mac/files/patch-Source_Shared_CPUFeatures.cpp index 3713b9bb9152..4c89888d95e9 100644 --- a/audio/mac/files/patch-Source_Shared_CPUFeatures.cpp +++ b/audio/mac/files/patch-Source_Shared_CPUFeatures.cpp @@ -1,26 +1,26 @@ --- Source/Shared/CPUFeatures.cpp.orig 2025-08-04 20:52:19 UTC +++ Source/Shared/CPUFeatures.cpp @@ -4,7 +4,7 @@ - #if defined(PLATFORM_LINUX)
- #include <sys/auxv.h>
-
-- #if defined(__arm__)
-+ #if defined(__arm__) && defined(__linux__)
- #include <asm/hwcap.h>
-
- #ifndef HWCAP_NEON
-@@ -187,7 +187,14 @@ bool GetNeonSupported()
- #if defined(__ARM_NEON) || defined(__ARM_NEON__) || defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC)
- return true;
- #elif defined(__arm__) && defined(PLATFORM_LINUX)
-+#ifdef __linux__
- return getauxval(AT_HWCAP) & HWCAP_NEON;
-+#elif defined(__FreeBSD__)
-+ long hwcap = 0;
-+
-+ elf_aux_info(AT_HWCAP, &hwcap, sizeof hwcap);
-+ return (hwcap & HWCAP_NEON);
-+#endif
- #else
- return false;
- #endif
+ #if defined(PLATFORM_LINUX) + #include <sys/auxv.h> + +- #if defined(__arm__) ++ #if defined(__arm__) && defined(__linux__) + #include <asm/hwcap.h> + + #ifndef HWCAP_NEON +@@ -187,7 +187,14 @@ bool GetNeonSupported() + #if defined(__ARM_NEON) || defined(__ARM_NEON__) || defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC) + return true; + #elif defined(__arm__) && defined(PLATFORM_LINUX) ++#ifdef __linux__ + return getauxval(AT_HWCAP) & HWCAP_NEON; ++#elif defined(__FreeBSD__) ++ long hwcap = 0; ++ ++ elf_aux_info(AT_HWCAP, &hwcap, sizeof hwcap); ++ return (hwcap & HWCAP_NEON); ++#endif + #else + return false; + #endif diff --git a/comms/libimobiledevice/Makefile b/comms/libimobiledevice/Makefile index acfa4759a88c..c55c56ed183d 100644 --- a/comms/libimobiledevice/Makefile +++ b/comms/libimobiledevice/Makefile @@ -1,9 +1,8 @@ PORTNAME= libimobiledevice -DISTVERSION= 1.3.0-300 +DISTVERSION= 1.4.0 PORTREVISION?= 0 -DISTVERSIONSUFFIX= -gcb34a17 CATEGORIES?= comms -#MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/ +MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/ MAINTAINER?= jhale@FreeBSD.org COMMENT?= Library to communicate with Apple iOS devices @@ -12,23 +11,35 @@ WWW= https://www.libimobiledevice.org LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER -USES+= autoreconf cpe libtool localbase:ldflags pkgconfig \ - readline ssl -USE_GITHUB= yes +LIB_DEPENDS= libplist-2.0.so:devel/libplist + +USES= cpe libtool localbase:ldflags pkgconfig \ + readline ssl tar:bz2 GNU_CONFIGURE= yes -CONFIGURE_ARGS+=openssl_CFLAGS="-I${OPENSSLINC}" \ +CONFIGURE_ARGS= openssl_CFLAGS="-I${OPENSSLINC}" \ openssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" INSTALL_TARGET= install-strip CFLAGS+= -Wno-error=int-conversion -SLAVE_PORT?= no +.if defined(_LIMD_BINDING) && ${_LIMD_BINDING} == "py" +LIB_DEPENDS+= libimobiledevice-1.0.so:${MASTER_PORT} +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}libplist>=2.2.0:devel/py-libplist@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}libplist>=2.2.0:devel/py-libplist@${PY_FLAVOR} + +USES+= python +USE_PYTHON= cython3 flavors + +CONFIGURE_ENV+= PYTHON_LDFLAGS="`pkg-config --libs python-${PYTHON_VER}`" -.if ${SLAVE_PORT} == no +BINARY_ALIAS= cython=cython-${PYTHON_VER} \ + python=${PYTHON_VERSION} -LIB_DEPENDS= libplist-2.0.so:devel/libplist \ - libimobiledevice-glue-1.0.so:comms/libimobiledevice-glue \ +BUILD_WRKSRC= ${WRKSRC}/cython +INSTALL_WRKSRC= ${BUILD_WRKSRC} +.else # parent port +LIB_DEPENDS+= libimobiledevice-glue-1.0.so:comms/libimobiledevice-glue \ libusbmuxd-2.0.so:comms/libusbmuxd \ libtatsu.so:security/libtatsu @@ -39,16 +50,26 @@ CONFIGURE_ARGS+=--without-cython PORTDOCS= AUTHORS NEWS README.md OPTIONS_DEFINE= DOCS - -post-install: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - -.endif # ${SLAVE_PORT} == no +.endif post-patch: @${REINPLACE_CMD} -e 's| *@ssl_requires@||' \ ${WRKSRC}/src/${PORTNAME}*.pc.in - @echo "${DISTVERSIONFULL}" > ${WRKSRC}/.tarball-version +.if defined(_LIMD_BINDING) + @${REINPLACE_CMD} \ + -e 's|$$(top_builddir)/src/libimobiledevice-1.0.la|-limobiledevice-1.0|' \ + -e 's|$$(imobiledevice_la_DEPENDENCIES)||' \ + ${BUILD_WRKSRC}/Makefile.in +.endif + +post-install: +.if defined(_LIMD_BINDING) && ${_LIMD_BINDING} == "py" + @${MKDIR} ${STAGEDIR}${PREFIX}/include/imobiledevice/cython + ${INSTALL_DATA} ${INSTALL_WRKSRC}/imobiledevice.pxd \ + ${STAGEDIR}${PREFIX}/include/imobiledevice/cython +.else # parent port + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} +.endif .include <bsd.port.mk> diff --git a/comms/libimobiledevice/distinfo b/comms/libimobiledevice/distinfo index 8ec9aee3f8a7..4ec7114043a0 100644 --- a/comms/libimobiledevice/distinfo +++ b/comms/libimobiledevice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751600582 -SHA256 (libimobiledevice-libimobiledevice-1.3.0-300-gcb34a17_GH0.tar.gz) = a3bd75332a403855e46458606fb8bccc166e54c4755c7481bb5ddae275394069 -SIZE (libimobiledevice-libimobiledevice-1.3.0-300-gcb34a17_GH0.tar.gz) = 420171 +TIMESTAMP = 1760586833 +SHA256 (libimobiledevice-1.4.0.tar.bz2) = 23cc0077e221c7d991bd0eb02150a0d49199bcca1ddf059edccee9ffd914939d +SIZE (libimobiledevice-1.4.0.tar.bz2) = 714628 diff --git a/comms/libimobiledevice/files/patch-configure b/comms/libimobiledevice/files/patch-configure new file mode 100644 index 000000000000..50c2e684e9dd --- /dev/null +++ b/comms/libimobiledevice/files/patch-configure @@ -0,0 +1,13 @@ +Remove bash-ism from configure script + +--- configure.orig 2025-10-07 03:17:25 UTC ++++ configure +@@ -22303,7 +22303,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.b + + if test "X$flag_ok" = Xyes ; then + +- CYTHON_CFLAGS+=" -Wno-cast-function-type" ++ CYTHON_CFLAGS="$CYTHON_CFLAGS -Wno-cast-function-type" + + + diff --git a/comms/libimobiledevice/files/patch-configure.ac b/comms/libimobiledevice/files/patch-configure.ac deleted file mode 100644 index b9595b147b48..000000000000 --- a/comms/libimobiledevice/files/patch-configure.ac +++ /dev/null @@ -1,13 +0,0 @@ -Remove bash-ism from configure script - ---- configure.ac.orig 2024-07-01 16:27:27 UTC -+++ configure.ac -@@ -139,7 +139,7 @@ if test "$build_cython" = "true"; then - AM_PATH_PYTHON([3.0], [ - CYTHON_PYTHON - AS_COMPILER_FLAG([-Wno-cast-function-type -Werror], [ -- CYTHON_CFLAGS+=" -Wno-cast-function-type" -+ CYTHON_CFLAGS="$CYTHON_CFLAGS -Wno-cast-function-type" - AC_SUBST([CYTHON_CFLAGS]) - ], []) - ]) diff --git a/comms/libimobiledevice/pkg-plist b/comms/libimobiledevice/pkg-plist index 5d80ce566f8f..0e173a86acc7 100644 --- a/comms/libimobiledevice/pkg-plist +++ b/comms/libimobiledevice/pkg-plist @@ -20,6 +20,7 @@ bin/idevicescreenshot bin/idevicesetlocation bin/idevicesyslog include/libimobiledevice/afc.h +include/libimobiledevice/bt_packet_logger.h include/libimobiledevice/companion_proxy.h include/libimobiledevice/debugserver.h include/libimobiledevice/diagnostics_relay.h @@ -49,7 +50,7 @@ include/libimobiledevice/webinspector.h lib/libimobiledevice-1.0.a lib/libimobiledevice-1.0.so lib/libimobiledevice-1.0.so.6 -lib/libimobiledevice-1.0.so.6.0.0 +lib/libimobiledevice-1.0.so.6.1.0 libdata/pkgconfig/libimobiledevice-1.0.pc share/man/man1/afcclient.1.gz share/man/man1/idevice_id.1.gz diff --git a/comms/py-libimobiledevice/Makefile b/comms/py-libimobiledevice/Makefile index 4b2a98ec349a..baff82aad8af 100644 --- a/comms/py-libimobiledevice/Makefile +++ b/comms/py-libimobiledevice/Makefile @@ -1,45 +1,18 @@ -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= comms python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= jhale@FreeBSD.org COMMENT= Python bindings for libimobiledevice -LIB_DEPENDS= libimobiledevice-1.0.so:${MASTER_PORT} \ - libplist-2.0.so:devel/libplist -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>=2.2.0:devel/py-libplist@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libplist>=2.2.0:devel/py-libplist@${PY_FLAVOR} - -USES+= python -USE_PYTHON= cython3 flavors - -CONFIGURE_ENV= PYTHON_LDFLAGS="`pkg-config --libs python-${PYTHON_VER}`" - -BINARY_ALIAS= cython=cython-${PYTHON_VER} MASTERDIR= ${.CURDIR:H:H}/comms/libimobiledevice PORTSCOUT= ignore:1 -BUILD_WRKSRC= ${WRKSRC}/cython -INSTALL_WRKSRC= ${BUILD_WRKSRC} - PLIST= ${.CURDIR}/pkg-plist PLIST_FILES= include/imobiledevice/cython/imobiledevice.pxd \ ${PYTHONPREFIX_SITELIBDIR:S|^${PREFIX}/||}/imobiledevice.a \ ${PYTHONPREFIX_SITELIBDIR:S|^${PREFIX}/||}/imobiledevice.so -_USES_configure+= 471:post-autoreconf - -SLAVE_PORT= yes - -post-autoreconf: - @${REINPLACE_CMD} \ - -e 's|$$(top_builddir)/src/libimobiledevice-1.0.la|-limobiledevice-1.0|' \ - -e 's|$$(imobiledevice_la_DEPENDENCIES)||' \ - ${BUILD_WRKSRC}/Makefile.in - -post-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/include/imobiledevice/cython - ${INSTALL_DATA} ${INSTALL_WRKSRC}/imobiledevice.pxd \ - ${STAGEDIR}${PREFIX}/include/imobiledevice/cython +_LIMD_BINDING= py .include "${MASTERDIR}/Makefile" diff --git a/converters/dos2ansi/Makefile b/converters/dos2ansi/Makefile index ad77c7640a03..1c8c8fec77c9 100644 --- a/converters/dos2ansi/Makefile +++ b/converters/dos2ansi/Makefile @@ -3,7 +3,7 @@ DISTVERSION= 2.0 CATEGORIES= converters MASTER_SITES= ${WWW}/releases/download/v${DISTVERSION}/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= grembo@FreeBSD.org COMMENT= Converter for old MS-DOS/ANSI.SYS text files WWW= https://github.com/Zirias/dos2ansi diff --git a/converters/dos2unix/Makefile b/converters/dos2unix/Makefile index 38a12451f532..83dd5d45c4fc 100644 --- a/converters/dos2unix/Makefile +++ b/converters/dos2unix/Makefile @@ -1,5 +1,5 @@ PORTNAME= dos2unix -DISTVERSION= 7.5.2 +DISTVERSION= 7.5.3 CATEGORIES= converters MASTER_SITES= SF \ https://waterlan.home.xs4all.nl/dos2unix/ diff --git a/converters/dos2unix/distinfo b/converters/dos2unix/distinfo index 276c7e3a733e..978b2ee7ff5f 100644 --- a/converters/dos2unix/distinfo +++ b/converters/dos2unix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1707150448 -SHA256 (dos2unix-7.5.2.tar.gz) = 264742446608442eb48f96c20af6da303cb3a92b364e72cb7e24f88239c4bf3a -SIZE (dos2unix-7.5.2.tar.gz) = 991485 +TIMESTAMP = 1760514676 +SHA256 (dos2unix-7.5.3.tar.gz) = 28a4b0d9f9179da4e44c567b9c01f818b070a20827115fffd96f760dcfa0f3b2 +SIZE (dos2unix-7.5.3.tar.gz) = 955879 diff --git a/databases/Makefile b/databases/Makefile index a9b48e6dbc45..9e2eaa683ef9 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -813,6 +813,7 @@ SUBDIR += py-pony SUBDIR += py-postgresql SUBDIR += py-powa-collector + SUBDIR += py-prisma SUBDIR += py-psycogreen SUBDIR += py-psycopg SUBDIR += py-psycopg-c @@ -840,6 +841,7 @@ SUBDIR += py-redis SUBDIR += py-redis2 SUBDIR += py-redis5 + SUBDIR += py-redisvl SUBDIR += py-rrdtool SUBDIR += py-schemachange SUBDIR += py-sispy diff --git a/databases/kuzu/Makefile b/databases/kuzu/Makefile index 50ffb7b0ef08..b3c1ae1598db 100644 --- a/databases/kuzu/Makefile +++ b/databases/kuzu/Makefile @@ -1,6 +1,6 @@ PORTNAME= kuzu DISTVERSIONPREFIX= v -DISTVERSION= 0.11.2 +DISTVERSION= 0.11.3 CATEGORIES= databases MAINTAINER= mahlon@martini.nu @@ -10,12 +10,15 @@ WWW= https://kuzudb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Upstream repository archived on Oct 11, 2025 + USES= cmake ninja:build python:3.9+,build -USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= kuzudb +USE_LDCONFIG= yes + PLIST_SUB= VERSION=${DISTVERSION} post-install: diff --git a/databases/kuzu/distinfo b/databases/kuzu/distinfo index 70beeba78004..c1727e9297e8 100644 --- a/databases/kuzu/distinfo +++ b/databases/kuzu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755753617 -SHA256 (kuzudb-kuzu-v0.11.2_GH0.tar.gz) = 9340f1151ea6c9f35c007f122d6e08ec119b5c1db743f0303d40ac8a8e2a5d55 -SIZE (kuzudb-kuzu-v0.11.2_GH0.tar.gz) = 154124558 +TIMESTAMP = 1760306415 +SHA256 (kuzudb-kuzu-v0.11.3_GH0.tar.gz) = f6456fa290879e4c13db49b8918258c4422d78a57fdc6d8925d4aef23e7a0b3c +SIZE (kuzudb-kuzu-v0.11.3_GH0.tar.gz) = 153734456 diff --git a/databases/py-berkeleydb/Makefile b/databases/py-berkeleydb/Makefile index 26e974ab7b22..896b2190f4ea 100644 --- a/databases/py-berkeleydb/Makefile +++ b/databases/py-berkeleydb/Makefile @@ -1,5 +1,5 @@ PORTNAME= berkeleydb -DISTVERSION= 18.1.14 +DISTVERSION= 18.1.15 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-berkeleydb/distinfo b/databases/py-berkeleydb/distinfo index 06b87e1ad6f1..5611e5960460 100644 --- a/databases/py-berkeleydb/distinfo +++ b/databases/py-berkeleydb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742808980 -SHA256 (berkeleydb-18.1.14.tar.gz) = 8c260282f57ebd5b9c3ce53da0eb75be5957addb303e3190935b716448f32f7d -SIZE (berkeleydb-18.1.14.tar.gz) = 320796 +TIMESTAMP = 1760456031 +SHA256 (berkeleydb-18.1.15.tar.gz) = 7afa53143d754c6bb2c85656c1325ebae518adcfcd1b59e13cc2abb88ddf758e +SIZE (berkeleydb-18.1.15.tar.gz) = 188446 diff --git a/databases/py-berkeleydb/files/patch-setup3.py b/databases/py-berkeleydb/files/patch-setup3.py index bececbbdb5fa..8f3d0f7ce118 100644 --- a/databases/py-berkeleydb/files/patch-setup3.py +++ b/databases/py-berkeleydb/files/patch-setup3.py @@ -1,15 +1,15 @@ ---- setup3.py.orig 2024-10-31 03:59:08 UTC +--- setup3.py.orig 2025-10-12 02:12:47 UTC +++ setup3.py -@@ -41,7 +41,7 @@ os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local' - # See https://setuptools.readthedocs.io/en/latest/deprecated/\ - # distutils-legacy.html - os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local' +@@ -39,7 +39,7 @@ import platform + import platform + + -from setuptools import setup, Extension +from distutils.core import setup, Extension import distutils.ccompiler # read the module version number out of the .c file -@@ -260,8 +260,8 @@ if os.name == 'posix': +@@ -282,8 +282,8 @@ if os.name == 'posix': incdir = os.path.join(BERKELEYDB_DIR, 'include') if not libdir: libdir = os.path.join(BERKELEYDB_DIR, 'lib') @@ -20,7 +20,16 @@ else: if debug: print("LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'") -@@ -270,7 +270,7 @@ if os.name == 'posix': +@@ -292,7 +292,7 @@ if os.name == 'posix': + + # read db.h to figure out what version of Oracle Berkeley DB this is + ver = None +- with open(os.path.join(incdir, 'db.h'), 'r') as f : ++ with open('%%BDB_INCLUDE_DIR%%/db.h', 'r') as f : + db_h_lines = f.readlines() + db_ver_re = re.compile( + r'^#define\s+DB_VERSION_STRING\s.*Berkeley DB (\d+\.\d+).*') +@@ -338,7 +338,7 @@ elif os.name == 'nt': # read db.h to figure out what version of Oracle Berkeley DB this is ver = None diff --git a/databases/py-prisma/Makefile b/databases/py-prisma/Makefile new file mode 100644 index 000000000000..bf28253912b3 --- /dev/null +++ b/databases/py-prisma/Makefile @@ -0,0 +1,37 @@ +PORTNAME= prisma +DISTVERSION= 0.15.0 +CATEGORIES= databases python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@FreeBSD.org +COMMENT= Type-safe database access for Python +WWW= https://github.com/RobertCraigie/prisma-client-py + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httpx>=0.19.0:www/py-httpx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.11.2:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic2>=1.11.0<3:devel/py-pydantic2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}click>=7.1.2:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-dotenv>=0.12.0:www/py-python-dotenv@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.5.0:devel/py-typing-extensions@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tomlkit>0:textproc/py-tomlkit@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}nodeenv>0:devel/py-nodeenv@${PY_FLAVOR} + +USES= python + +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/databases/py-prisma/distinfo b/databases/py-prisma/distinfo new file mode 100644 index 000000000000..5113fccab7d7 --- /dev/null +++ b/databases/py-prisma/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760497728 +SHA256 (prisma-0.15.0.tar.gz) = 5cd6402aa8322625db3fc1152040404e7fc471fe7f8fa3a314fa8a99529ca107 +SIZE (prisma-0.15.0.tar.gz) = 154975 diff --git a/databases/py-prisma/pkg-descr b/databases/py-prisma/pkg-descr new file mode 100644 index 000000000000..c23e882d4afa --- /dev/null +++ b/databases/py-prisma/pkg-descr @@ -0,0 +1,11 @@ +Prisma Client Python is a next-generation ORM built on top of Prisma +that has been designed from the ground up for ease of use and +correctness. + +Prisma is a TypeScript ORM with zero-cost type safety for your +database, although don't worry, Prisma Client Python interfaces with +Prisma using Rust, you don't need Node or TypeScript. + +Prisma Client Python can be used in any Python backend +application. This can be a REST API, a GraphQL API or anything else +that needs a database. diff --git a/databases/py-redisvl/Makefile b/databases/py-redisvl/Makefile new file mode 100644 index 000000000000..8dc2d6eda00a --- /dev/null +++ b/databases/py-redisvl/Makefile @@ -0,0 +1,38 @@ +PORTNAME= redisvl +DISTVERSION= 0.9.1 +CATEGORIES= databases python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@FreeBSD.org +COMMENT= Python client library and CLI for using Redis as a vector database +WWW= https://github.com/redis/redis-vl-python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}pyyaml>=5.4<7.0:devel/py-pyyaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}redis>=5.0<7.0:databases/py-redis@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic2>=2<3:devel/py-pydantic2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tenacity>=8.2.2:devel/py-tenacity@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ml-dtypes>=0.4.0<1.0.0:math/py-ml-dtypes@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-ulid>=3.0.0:textproc/py-python-ulid@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jsonpath-ng>=1.5.0:devel/py-jsonpath-ng@${PY_FLAVOR} + +USES= python + +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +PORTDOCS= CONTRIBUTING.md README.md + +OPTIONS_DEFINE= DOCS + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/databases/py-redisvl/distinfo b/databases/py-redisvl/distinfo new file mode 100644 index 000000000000..b92a628c3925 --- /dev/null +++ b/databases/py-redisvl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760507103 +SHA256 (redisvl-0.9.1.tar.gz) = a735ecf3238e804800b54a513b85a8cf4300fe6d111fb055bd75528f77dd5419 +SIZE (redisvl-0.9.1.tar.gz) = 606980 diff --git a/databases/py-redisvl/pkg-descr b/databases/py-redisvl/pkg-descr new file mode 100644 index 000000000000..e06569dd1329 --- /dev/null +++ b/databases/py-redisvl/pkg-descr @@ -0,0 +1,9 @@ +Redis Vector Library (RedisVL) is the production-ready Python client +for AI applications built on Redis. Lightning-fast vector search meets +enterprise-grade reliability. + +Built for Modern AI Workloads: +- RAG Pipelines -> Real-time retrieval with hybrid search capabilities +- AI Agents -> Short term & long term memory and semantic routing for + intent-based decisions +- Recommendation Systems -> Fast retrieval and reranking diff --git a/deskutils/Makefile b/deskutils/Makefile index 96929e26e1ff..85cbfc165fc3 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -91,7 +91,6 @@ SUBDIR += gnome-shell-extension-lockkeys SUBDIR += gnome-shell-extension-manager SUBDIR += gnome-shell-extension-mediaplayer - SUBDIR += gnome-shell-extension-openweather SUBDIR += gnome-shell-extension-panel-osd SUBDIR += gnome-shell-extension-recent-items SUBDIR += gnome-shell-extension-simple-weather diff --git a/deskutils/gnome-shell-extension-openweather/Makefile b/deskutils/gnome-shell-extension-openweather/Makefile deleted file mode 100644 index 7730e74d58fb..000000000000 --- a/deskutils/gnome-shell-extension-openweather/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -PORTNAME= gnome-shell-extension-openweather -DISTVERSION= 139 -DISTVERSIONPREFIX= v -PORTREVISION= 1 -CATEGORIES= deskutils gnome -MASTER_SITES= https://github.com/penguin-teal/gnome-openweather/releases/download/${DISTVERSIONFULL}/ -DISTNAME= ${PORTNAME}refined-${DISTVERSIONFULL} - -MAINTAINER= gnome@FreeBSD.org -COMMENT= OpenWeather extension for the GNOME Shell -WWW= https://github.com/penguin-teal/gnome-openweather - -LICENSE= GPLv3 - -DEPRECATED= Superseded by deskutils/gnome-shell-extension-simple-weather -EXPIRATION_DATE= 2025-10-13 - -RUN_DEPENDS= gnome-shell>=47.0:x11/gnome-shell \ - gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas - -USES= gnome -USE_GNOME= glib20 - -NO_WRKSUBDIR= yes -NO_BUILD= yes -NO_ARCH= yes - -UUID_EXTENSION= openweather-extension@penguin-teal.github.io - -SUB_FILES= pkg-message -SUB_LIST= UUID=${UUID_EXTENSION} - -GLIB_SCHEMAS= org.gnome.shell.extensions.openweatherrefined.gschema.xml - -pre-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/share/glib-2.0/schemas - ${MKDIR} ${STAGEDIR}${PREFIX}/share/locale - ${MKDIR} ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/${UUID_EXTENSION} - -do-install: - ${INSTALL_DATA} ${WRKSRC}/schemas/*.gschema.xml \ - ${STAGEDIR}${PREFIX}/share/glib-2.0/schemas/ - ${RM} -Rf ${WRKSRC}/schemas/ - cd ${WRKSRC} && ${COPYTREE_SHARE} . \ - ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/${UUID_EXTENSION} - -.include <bsd.port.mk> diff --git a/deskutils/gnome-shell-extension-openweather/distinfo b/deskutils/gnome-shell-extension-openweather/distinfo deleted file mode 100644 index ba9d668a8361..000000000000 --- a/deskutils/gnome-shell-extension-openweather/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1746367633 -SHA256 (gnome-shell-extension-openweatherrefined-v139.tar.gz) = 35af944a3a9dc4ebe13982a16d310cb6dc607715acd48fad4ca0146803940143 -SIZE (gnome-shell-extension-openweatherrefined-v139.tar.gz) = 169303 diff --git a/deskutils/gnome-shell-extension-openweather/files/pkg-message.in b/deskutils/gnome-shell-extension-openweather/files/pkg-message.in deleted file mode 100644 index f3426c1d308c..000000000000 --- a/deskutils/gnome-shell-extension-openweather/files/pkg-message.in +++ /dev/null @@ -1,18 +0,0 @@ -[ -{ type: install - message: <<EOM -To enable this extension: -gsettings set org.gnome.shell enabled-extensions "['%%UUID%%']" - -The gnome-shell must be restarted, press Alt+F2 and type 'r' (X11 only). - -To configure or disable an extension, after restarting the shell, -you have to launch 'gnome-extensions-app'. - -To disable this extension (before remove): -gdbus call --session --dest org.gnome.Shell.Extensions \ ---object-path /org/gnome/Shell/Extensions \ ---method org.gnome.Shell.Extensions.DisableExtension %%UUID%% -EOM -} -] diff --git a/deskutils/gnome-shell-extension-openweather/pkg-descr b/deskutils/gnome-shell-extension-openweather/pkg-descr deleted file mode 100644 index 01fd433df2d4..000000000000 --- a/deskutils/gnome-shell-extension-openweather/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -OpenWeather Refined is a simple extension for displaying weather conditions -and forecasts for any location on Earth in the GNOME Shell. diff --git a/deskutils/gnome-shell-extension-openweather/pkg-plist b/deskutils/gnome-shell-extension-openweather/pkg-plist deleted file mode 100644 index b7eb4b9474f0..000000000000 --- a/deskutils/gnome-shell-extension-openweather/pkg-plist +++ /dev/null @@ -1,71 +0,0 @@ -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/AUTHORS -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/COPYING -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/constants.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/extension.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/getweather.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/ar/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/be/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/bg/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/ca/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/cs/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/da/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/de/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/el/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/en/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/es/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/eu/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/fi/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/fr/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/he/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/hu/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/id/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/it/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/ja/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/lt/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/nb/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/nl/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/pl/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/pt/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/pt_BR/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/ro/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/ru/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/sk/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/sr/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/sr@latin/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/sv/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/tr/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/uk/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/vi/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/zh_CN/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locale/zh_TW/LC_MESSAGES/gnome-shell-extension-openweatherrefined.mo -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/locs.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/openweather-icon.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/daytime-sunrise-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/daytime-sunset-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/internet-web-browser-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-clear-night-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-clear-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-few-clouds-night-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-few-clouds-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-fog-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-freezing-rain-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-overcast-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-severe-alert-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-showers-scattered-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-showers-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-snow-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-storm-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-tornado-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/media/status/weather-windy-symbolic.svg -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/metadata.json -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/migration.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/myloc.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/openweathermap.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/preferences/aboutPage.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/preferences/generalPage.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/preferences/layoutPage.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/preferences/locationsPage.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/preferences/searchResultsWindow.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/prefs.js -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/stylesheet.css -share/gnome-shell/extensions/openweather-extension@penguin-teal.github.io/weathericons.js diff --git a/deskutils/gnome-shell-extra-extensions/Makefile b/deskutils/gnome-shell-extra-extensions/Makefile index bd499c39722d..1bc1db91ca24 100644 --- a/deskutils/gnome-shell-extra-extensions/Makefile +++ b/deskutils/gnome-shell-extra-extensions/Makefile @@ -1,6 +1,6 @@ PORTNAME= gnome-shell-extra-extensions PORTVERSION= 3.28 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils gnome MAINTAINER= gnome@FreeBSD.org @@ -9,7 +9,6 @@ COMMENT= Gnome shell extra extensions metaport USES= metaport RUN_DEPENDS= gnome-shell-extension-weather>=0:deskutils/gnome-shell-extension-weather \ - gnome-shell-extension-openweather>=0:deskutils/gnome-shell-extension-openweather \ gnome-shell-extension-panel-osd>=0:deskutils/gnome-shell-extension-panel-osd \ gnome-shell-extension-mediaplayer>=0:deskutils/gnome-shell-extension-mediaplayer \ gnome-shell-extension-coverflow>=0:deskutils/gnome-shell-extension-coverflow \ diff --git a/devel/aws-c-io/Makefile b/devel/aws-c-io/Makefile index 01aa1b105dc4..cefa0a1e1159 100644 --- a/devel/aws-c-io/Makefile +++ b/devel/aws-c-io/Makefile @@ -1,6 +1,6 @@ PORTNAME= aws-c-io DISTVERSIONPREFIX= v -DISTVERSION= 0.23.1 +DISTVERSION= 0.23.2 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/aws-c-io/distinfo b/devel/aws-c-io/distinfo index 7eac15e1c23c..c7a795d46ed4 100644 --- a/devel/aws-c-io/distinfo +++ b/devel/aws-c-io/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759862620 -SHA256 (awslabs-aws-c-io-v0.23.1_GH0.tar.gz) = 95dd09c53773fb094973c4df3d89ab376a7f2d490c1b45bba41734079355d891 -SIZE (awslabs-aws-c-io-v0.23.1_GH0.tar.gz) = 754265 +TIMESTAMP = 1760574533 +SHA256 (awslabs-aws-c-io-v0.23.2_GH0.tar.gz) = 3a335b812411c30bcc64072f148ddf6cd632d8261799cd04e54051b44506feb9 +SIZE (awslabs-aws-c-io-v0.23.2_GH0.tar.gz) = 754263 diff --git a/devel/aws-sdk-php/Makefile b/devel/aws-sdk-php/Makefile index 1e14bad8d00e..a20f4e5e6220 100644 --- a/devel/aws-sdk-php/Makefile +++ b/devel/aws-sdk-php/Makefile @@ -1,5 +1,5 @@ PORTNAME= aws-sdk -PORTVERSION= 3.273.3 +PORTVERSION= 3.356.38 CATEGORIES= devel MASTER_SITES= https://github.com/aws/${PORTNAME}-php/releases/download/${PORTVERSION}/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} diff --git a/devel/aws-sdk-php/distinfo b/devel/aws-sdk-php/distinfo index e32d45473246..b05008154ae4 100644 --- a/devel/aws-sdk-php/distinfo +++ b/devel/aws-sdk-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1687265025 -SHA256 (aws-sdk-php-3.273.3/aws.zip) = 0ae01cd3181ea39e07eee7643552fd8ccb3f239c869d26513372edf736bb3429 -SIZE (aws-sdk-php-3.273.3/aws.zip) = 5383320 +TIMESTAMP = 1760460664 +SHA256 (aws-sdk-php-3.356.38/aws.zip) = d7e393149f646b1a96304b000b249f5a7abe46604bbd0b1a96af39bbdd2de03f +SIZE (aws-sdk-php-3.356.38/aws.zip) = 6774376 diff --git a/devel/aws-sdk-php/pkg-plist b/devel/aws-sdk-php/pkg-plist index 659c687775a9..b80358097ef2 100644 --- a/devel/aws-sdk-php/pkg-plist +++ b/devel/aws-sdk-php/pkg-plist @@ -1,5 +1,9 @@ %%WWWDIR%%/Aws/ACMPCA/ACMPCAClient.php %%WWWDIR%%/Aws/ACMPCA/Exception/ACMPCAException.php +%%WWWDIR%%/Aws/AIOps/AIOpsClient.php +%%WWWDIR%%/Aws/AIOps/Exception/AIOpsException.php +%%WWWDIR%%/Aws/ARCRegionSwitch/ARCRegionSwitchClient.php +%%WWWDIR%%/Aws/ARCRegionSwitch/Exception/ARCRegionSwitchException.php %%WWWDIR%%/Aws/ARCZonalShift/ARCZonalShiftClient.php %%WWWDIR%%/Aws/ARCZonalShift/Exception/ARCZonalShiftException.php %%WWWDIR%%/Aws/AbstractConfigurationProvider.php @@ -9,8 +13,6 @@ %%WWWDIR%%/Aws/Account/Exception/AccountException.php %%WWWDIR%%/Aws/Acm/AcmClient.php %%WWWDIR%%/Aws/Acm/Exception/AcmException.php -%%WWWDIR%%/Aws/AlexaForBusiness/AlexaForBusinessClient.php -%%WWWDIR%%/Aws/AlexaForBusiness/Exception/AlexaForBusinessException.php %%WWWDIR%%/Aws/Amplify/AmplifyClient.php %%WWWDIR%%/Aws/Amplify/Exception/AmplifyException.php %%WWWDIR%%/Aws/AmplifyBackend/AmplifyBackendClient.php @@ -38,6 +40,7 @@ %%WWWDIR%%/Aws/Api/Parser/JsonParser.php %%WWWDIR%%/Aws/Api/Parser/JsonRpcParser.php %%WWWDIR%%/Aws/Api/Parser/MetadataParserTrait.php +%%WWWDIR%%/Aws/Api/Parser/NonSeekableStreamDecodingEventStreamIterator.php %%WWWDIR%%/Aws/Api/Parser/PayloadParserTrait.php %%WWWDIR%%/Aws/Api/Parser/QueryParser.php %%WWWDIR%%/Aws/Api/Parser/RestJsonParser.php @@ -56,6 +59,7 @@ %%WWWDIR%%/Aws/Api/Shape.php %%WWWDIR%%/Aws/Api/ShapeMap.php %%WWWDIR%%/Aws/Api/StructureShape.php +%%WWWDIR%%/Aws/Api/SupportedProtocols.php %%WWWDIR%%/Aws/Api/TimestampShape.php %%WWWDIR%%/Aws/Api/Validator.php %%WWWDIR%%/Aws/ApiGateway/ApiGatewayClient.php @@ -68,6 +72,8 @@ %%WWWDIR%%/Aws/AppConfig/Exception/AppConfigException.php %%WWWDIR%%/Aws/AppConfigData/AppConfigDataClient.php %%WWWDIR%%/Aws/AppConfigData/Exception/AppConfigDataException.php +%%WWWDIR%%/Aws/AppFabric/AppFabricClient.php +%%WWWDIR%%/Aws/AppFabric/Exception/AppFabricException.php %%WWWDIR%%/Aws/AppIntegrationsService/AppIntegrationsServiceClient.php %%WWWDIR%%/Aws/AppIntegrationsService/Exception/AppIntegrationsServiceException.php %%WWWDIR%%/Aws/AppMesh/AppMeshClient.php @@ -78,6 +84,8 @@ %%WWWDIR%%/Aws/AppRunner/Exception/AppRunnerException.php %%WWWDIR%%/Aws/AppSync/AppSyncClient.php %%WWWDIR%%/Aws/AppSync/Exception/AppSyncException.php +%%WWWDIR%%/Aws/AppTest/AppTestClient.php +%%WWWDIR%%/Aws/AppTest/Exception/AppTestException.php %%WWWDIR%%/Aws/Appflow/AppflowClient.php %%WWWDIR%%/Aws/Appflow/Exception/AppflowException.php %%WWWDIR%%/Aws/ApplicationAutoScaling/ApplicationAutoScalingClient.php @@ -88,6 +96,8 @@ %%WWWDIR%%/Aws/ApplicationDiscoveryService/Exception/ApplicationDiscoveryServiceException.php %%WWWDIR%%/Aws/ApplicationInsights/ApplicationInsightsClient.php %%WWWDIR%%/Aws/ApplicationInsights/Exception/ApplicationInsightsException.php +%%WWWDIR%%/Aws/ApplicationSignals/ApplicationSignalsClient.php +%%WWWDIR%%/Aws/ApplicationSignals/Exception/ApplicationSignalsException.php %%WWWDIR%%/Aws/Appstream/AppstreamClient.php %%WWWDIR%%/Aws/Appstream/Exception/AppstreamException.php %%WWWDIR%%/Aws/Arn/AccessPointArn.php @@ -104,12 +114,18 @@ %%WWWDIR%%/Aws/Arn/S3/OutpostsAccessPointArn.php %%WWWDIR%%/Aws/Arn/S3/OutpostsArnInterface.php %%WWWDIR%%/Aws/Arn/S3/OutpostsBucketArn.php +%%WWWDIR%%/Aws/Artifact/ArtifactClient.php +%%WWWDIR%%/Aws/Artifact/Exception/ArtifactException.php %%WWWDIR%%/Aws/Athena/AthenaClient.php %%WWWDIR%%/Aws/Athena/Exception/AthenaException.php %%WWWDIR%%/Aws/AuditManager/AuditManagerClient.php %%WWWDIR%%/Aws/AuditManager/Exception/AuditManagerException.php %%WWWDIR%%/Aws/AugmentedAIRuntime/AugmentedAIRuntimeClient.php %%WWWDIR%%/Aws/AugmentedAIRuntime/Exception/AugmentedAIRuntimeException.php +%%WWWDIR%%/Aws/Auth/AuthSchemeResolver.php +%%WWWDIR%%/Aws/Auth/AuthSchemeResolverInterface.php +%%WWWDIR%%/Aws/Auth/AuthSelectionMiddleware.php +%%WWWDIR%%/Aws/Auth/Exception/UnresolvedAuthSchemeException.php %%WWWDIR%%/Aws/AutoScaling/AutoScalingClient.php %%WWWDIR%%/Aws/AutoScaling/Exception/AutoScalingException.php %%WWWDIR%%/Aws/AutoScalingPlans/AutoScalingPlansClient.php @@ -117,14 +133,42 @@ %%WWWDIR%%/Aws/AwsClient.php %%WWWDIR%%/Aws/AwsClientInterface.php %%WWWDIR%%/Aws/AwsClientTrait.php +%%WWWDIR%%/Aws/B2bi/B2biClient.php +%%WWWDIR%%/Aws/B2bi/Exception/B2biException.php +%%WWWDIR%%/Aws/BCMDashboards/BCMDashboardsClient.php +%%WWWDIR%%/Aws/BCMDashboards/Exception/BCMDashboardsException.php +%%WWWDIR%%/Aws/BCMDataExports/BCMDataExportsClient.php +%%WWWDIR%%/Aws/BCMDataExports/Exception/BCMDataExportsException.php +%%WWWDIR%%/Aws/BCMPricingCalculator/BCMPricingCalculatorClient.php +%%WWWDIR%%/Aws/BCMPricingCalculator/Exception/BCMPricingCalculatorException.php +%%WWWDIR%%/Aws/BCMRecommendedActions/BCMRecommendedActionsClient.php +%%WWWDIR%%/Aws/BCMRecommendedActions/Exception/BCMRecommendedActionsException.php %%WWWDIR%%/Aws/Backup/BackupClient.php %%WWWDIR%%/Aws/Backup/Exception/BackupException.php %%WWWDIR%%/Aws/BackupGateway/BackupGatewayClient.php %%WWWDIR%%/Aws/BackupGateway/Exception/BackupGatewayException.php -%%WWWDIR%%/Aws/BackupStorage/BackupStorageClient.php -%%WWWDIR%%/Aws/BackupStorage/Exception/BackupStorageException.php +%%WWWDIR%%/Aws/BackupSearch/BackupSearchClient.php +%%WWWDIR%%/Aws/BackupSearch/Exception/BackupSearchException.php %%WWWDIR%%/Aws/Batch/BatchClient.php %%WWWDIR%%/Aws/Batch/Exception/BatchException.php +%%WWWDIR%%/Aws/Bedrock/BedrockClient.php +%%WWWDIR%%/Aws/Bedrock/Exception/BedrockException.php +%%WWWDIR%%/Aws/BedrockAgent/BedrockAgentClient.php +%%WWWDIR%%/Aws/BedrockAgent/Exception/BedrockAgentException.php +%%WWWDIR%%/Aws/BedrockAgentCore/BedrockAgentCoreClient.php +%%WWWDIR%%/Aws/BedrockAgentCore/Exception/BedrockAgentCoreException.php +%%WWWDIR%%/Aws/BedrockAgentCoreControl/BedrockAgentCoreControlClient.php +%%WWWDIR%%/Aws/BedrockAgentCoreControl/Exception/BedrockAgentCoreControlException.php +%%WWWDIR%%/Aws/BedrockAgentRuntime/BedrockAgentRuntimeClient.php +%%WWWDIR%%/Aws/BedrockAgentRuntime/Exception/BedrockAgentRuntimeException.php +%%WWWDIR%%/Aws/BedrockDataAutomation/BedrockDataAutomationClient.php +%%WWWDIR%%/Aws/BedrockDataAutomation/Exception/BedrockDataAutomationException.php +%%WWWDIR%%/Aws/BedrockDataAutomationRuntime/BedrockDataAutomationRuntimeClient.php +%%WWWDIR%%/Aws/BedrockDataAutomationRuntime/Exception/BedrockDataAutomationRuntimeException.php +%%WWWDIR%%/Aws/BedrockRuntime/BedrockRuntimeClient.php +%%WWWDIR%%/Aws/BedrockRuntime/Exception/BedrockRuntimeException.php +%%WWWDIR%%/Aws/Billing/BillingClient.php +%%WWWDIR%%/Aws/Billing/Exception/BillingException.php %%WWWDIR%%/Aws/BillingConductor/BillingConductorClient.php %%WWWDIR%%/Aws/BillingConductor/Exception/BillingConductorException.php %%WWWDIR%%/Aws/Braket/BraketClient.php @@ -132,6 +176,8 @@ %%WWWDIR%%/Aws/Budgets/BudgetsClient.php %%WWWDIR%%/Aws/Budgets/Exception/BudgetsException.php %%WWWDIR%%/Aws/CacheInterface.php +%%WWWDIR%%/Aws/Chatbot/ChatbotClient.php +%%WWWDIR%%/Aws/Chatbot/Exception/ChatbotException.php %%WWWDIR%%/Aws/Chime/ChimeClient.php %%WWWDIR%%/Aws/Chime/Exception/ChimeException.php %%WWWDIR%%/Aws/ChimeSDKIdentity/ChimeSDKIdentityClient.php @@ -146,6 +192,8 @@ %%WWWDIR%%/Aws/ChimeSDKVoice/Exception/ChimeSDKVoiceException.php %%WWWDIR%%/Aws/CleanRooms/CleanRoomsClient.php %%WWWDIR%%/Aws/CleanRooms/Exception/CleanRoomsException.php +%%WWWDIR%%/Aws/CleanRoomsML/CleanRoomsMLClient.php +%%WWWDIR%%/Aws/CleanRoomsML/Exception/CleanRoomsMLException.php %%WWWDIR%%/Aws/ClientResolver.php %%WWWDIR%%/Aws/ClientSideMonitoring/AbstractMonitoringMiddleware.php %%WWWDIR%%/Aws/ClientSideMonitoring/ApiCallAttemptMonitoringMiddleware.php @@ -168,6 +216,8 @@ %%WWWDIR%%/Aws/CloudFront/Exception/CloudFrontException.php %%WWWDIR%%/Aws/CloudFront/Signer.php %%WWWDIR%%/Aws/CloudFront/UrlSigner.php +%%WWWDIR%%/Aws/CloudFrontKeyValueStore/CloudFrontKeyValueStoreClient.php +%%WWWDIR%%/Aws/CloudFrontKeyValueStore/Exception/CloudFrontKeyValueStoreException.php %%WWWDIR%%/Aws/CloudHSMV2/CloudHSMV2Client.php %%WWWDIR%%/Aws/CloudHSMV2/Exception/CloudHSMV2Exception.php %%WWWDIR%%/Aws/CloudHsm/CloudHsmClient.php @@ -201,6 +251,8 @@ %%WWWDIR%%/Aws/CodeCatalyst/Exception/CodeCatalystException.php %%WWWDIR%%/Aws/CodeCommit/CodeCommitClient.php %%WWWDIR%%/Aws/CodeCommit/Exception/CodeCommitException.php +%%WWWDIR%%/Aws/CodeConnections/CodeConnectionsClient.php +%%WWWDIR%%/Aws/CodeConnections/Exception/CodeConnectionsException.php %%WWWDIR%%/Aws/CodeDeploy/CodeDeployClient.php %%WWWDIR%%/Aws/CodeDeploy/Exception/CodeDeployException.php %%WWWDIR%%/Aws/CodeGuruProfiler/CodeGuruProfilerClient.php @@ -211,8 +263,6 @@ %%WWWDIR%%/Aws/CodeGuruSecurity/Exception/CodeGuruSecurityException.php %%WWWDIR%%/Aws/CodePipeline/CodePipelineClient.php %%WWWDIR%%/Aws/CodePipeline/Exception/CodePipelineException.php -%%WWWDIR%%/Aws/CodeStar/CodeStarClient.php -%%WWWDIR%%/Aws/CodeStar/Exception/CodeStarException.php %%WWWDIR%%/Aws/CodeStarNotifications/CodeStarNotificationsClient.php %%WWWDIR%%/Aws/CodeStarNotifications/Exception/CodeStarNotificationsException.php %%WWWDIR%%/Aws/CodeStarconnections/CodeStarconnectionsClient.php @@ -235,11 +285,14 @@ %%WWWDIR%%/Aws/ComputeOptimizer/Exception/ComputeOptimizerException.php %%WWWDIR%%/Aws/ConfigService/ConfigServiceClient.php %%WWWDIR%%/Aws/ConfigService/Exception/ConfigServiceException.php +%%WWWDIR%%/Aws/Configuration/ConfigurationResolver.php %%WWWDIR%%/Aws/ConfigurationProviderInterface.php %%WWWDIR%%/Aws/Connect/ConnectClient.php %%WWWDIR%%/Aws/Connect/Exception/ConnectException.php %%WWWDIR%%/Aws/ConnectCampaignService/ConnectCampaignServiceClient.php %%WWWDIR%%/Aws/ConnectCampaignService/Exception/ConnectCampaignServiceException.php +%%WWWDIR%%/Aws/ConnectCampaignsV2/ConnectCampaignsV2Client.php +%%WWWDIR%%/Aws/ConnectCampaignsV2/Exception/ConnectCampaignsV2Exception.php %%WWWDIR%%/Aws/ConnectCases/ConnectCasesClient.php %%WWWDIR%%/Aws/ConnectCases/Exception/ConnectCasesException.php %%WWWDIR%%/Aws/ConnectContactLens/ConnectContactLensClient.php @@ -248,17 +301,23 @@ %%WWWDIR%%/Aws/ConnectParticipant/Exception/ConnectParticipantException.php %%WWWDIR%%/Aws/ConnectWisdomService/ConnectWisdomServiceClient.php %%WWWDIR%%/Aws/ConnectWisdomService/Exception/ConnectWisdomServiceException.php +%%WWWDIR%%/Aws/ControlCatalog/ControlCatalogClient.php +%%WWWDIR%%/Aws/ControlCatalog/Exception/ControlCatalogException.php %%WWWDIR%%/Aws/ControlTower/ControlTowerClient.php %%WWWDIR%%/Aws/ControlTower/Exception/ControlTowerException.php %%WWWDIR%%/Aws/CostExplorer/CostExplorerClient.php %%WWWDIR%%/Aws/CostExplorer/Exception/CostExplorerException.php +%%WWWDIR%%/Aws/CostOptimizationHub/CostOptimizationHubClient.php +%%WWWDIR%%/Aws/CostOptimizationHub/Exception/CostOptimizationHubException.php %%WWWDIR%%/Aws/CostandUsageReportService/CostandUsageReportServiceClient.php %%WWWDIR%%/Aws/CostandUsageReportService/Exception/CostandUsageReportServiceException.php %%WWWDIR%%/Aws/Credentials/AssumeRoleCredentialProvider.php %%WWWDIR%%/Aws/Credentials/AssumeRoleWithWebIdentityCredentialProvider.php %%WWWDIR%%/Aws/Credentials/CredentialProvider.php +%%WWWDIR%%/Aws/Credentials/CredentialSources.php %%WWWDIR%%/Aws/Credentials/Credentials.php %%WWWDIR%%/Aws/Credentials/CredentialsInterface.php +%%WWWDIR%%/Aws/Credentials/CredentialsUtils.php %%WWWDIR%%/Aws/Credentials/EcsCredentialProvider.php %%WWWDIR%%/Aws/Credentials/InstanceProfileProvider.php %%WWWDIR%%/Aws/Crypto/AbstractCryptoClient.php @@ -284,25 +343,27 @@ %%WWWDIR%%/Aws/Crypto/MaterialsProviderV2.php %%WWWDIR%%/Aws/Crypto/MetadataEnvelope.php %%WWWDIR%%/Aws/Crypto/MetadataStrategyInterface.php -%%WWWDIR%%/Aws/Crypto/Polyfill/AesGcm.php -%%WWWDIR%%/Aws/Crypto/Polyfill/ByteArray.php -%%WWWDIR%%/Aws/Crypto/Polyfill/Gmac.php -%%WWWDIR%%/Aws/Crypto/Polyfill/Key.php -%%WWWDIR%%/Aws/Crypto/Polyfill/NeedsTrait.php %%WWWDIR%%/Aws/CustomerProfiles/CustomerProfilesClient.php %%WWWDIR%%/Aws/CustomerProfiles/Exception/CustomerProfilesException.php %%WWWDIR%%/Aws/DAX/DAXClient.php %%WWWDIR%%/Aws/DAX/Exception/DAXException.php %%WWWDIR%%/Aws/DLM/DLMClient.php %%WWWDIR%%/Aws/DLM/Exception/DLMException.php +%%WWWDIR%%/Aws/DSQL/AuthTokenGenerator.php +%%WWWDIR%%/Aws/DSQL/DSQLClient.php +%%WWWDIR%%/Aws/DSQL/Exception/DSQLException.php %%WWWDIR%%/Aws/DataExchange/DataExchangeClient.php %%WWWDIR%%/Aws/DataExchange/Exception/DataExchangeException.php %%WWWDIR%%/Aws/DataPipeline/DataPipelineClient.php %%WWWDIR%%/Aws/DataPipeline/Exception/DataPipelineException.php %%WWWDIR%%/Aws/DataSync/DataSyncClient.php %%WWWDIR%%/Aws/DataSync/Exception/DataSyncException.php +%%WWWDIR%%/Aws/DataZone/DataZoneClient.php +%%WWWDIR%%/Aws/DataZone/Exception/DataZoneException.php %%WWWDIR%%/Aws/DatabaseMigrationService/DatabaseMigrationServiceClient.php %%WWWDIR%%/Aws/DatabaseMigrationService/Exception/DatabaseMigrationServiceException.php +%%WWWDIR%%/Aws/Deadline/DeadlineClient.php +%%WWWDIR%%/Aws/Deadline/Exception/DeadlineException.php %%WWWDIR%%/Aws/DefaultsMode/Configuration.php %%WWWDIR%%/Aws/DefaultsMode/ConfigurationInterface.php %%WWWDIR%%/Aws/DefaultsMode/ConfigurationProvider.php @@ -317,6 +378,8 @@ %%WWWDIR%%/Aws/DirectConnect/Exception/DirectConnectException.php %%WWWDIR%%/Aws/DirectoryService/DirectoryServiceClient.php %%WWWDIR%%/Aws/DirectoryService/Exception/DirectoryServiceException.php +%%WWWDIR%%/Aws/DirectoryServiceData/DirectoryServiceDataClient.php +%%WWWDIR%%/Aws/DirectoryServiceData/Exception/DirectoryServiceDataException.php %%WWWDIR%%/Aws/DocDB/DocDBClient.php %%WWWDIR%%/Aws/DocDB/Exception/DocDBException.php %%WWWDIR%%/Aws/DocDBElastic/DocDBElasticClient.php @@ -344,6 +407,8 @@ %%WWWDIR%%/Aws/ECRPublic/Exception/ECRPublicException.php %%WWWDIR%%/Aws/EKS/EKSClient.php %%WWWDIR%%/Aws/EKS/Exception/EKSException.php +%%WWWDIR%%/Aws/EKSAuth/EKSAuthClient.php +%%WWWDIR%%/Aws/EKSAuth/Exception/EKSAuthException.php %%WWWDIR%%/Aws/EMRContainers/EMRContainersClient.php %%WWWDIR%%/Aws/EMRContainers/Exception/EMRContainersException.php %%WWWDIR%%/Aws/EMRServerless/EMRServerlessClient.php @@ -360,8 +425,6 @@ %%WWWDIR%%/Aws/ElastiCache/Exception/ElastiCacheException.php %%WWWDIR%%/Aws/ElasticBeanstalk/ElasticBeanstalkClient.php %%WWWDIR%%/Aws/ElasticBeanstalk/Exception/ElasticBeanstalkException.php -%%WWWDIR%%/Aws/ElasticInference/ElasticInferenceClient.php -%%WWWDIR%%/Aws/ElasticInference/Exception/ElasticInferenceException.php %%WWWDIR%%/Aws/ElasticLoadBalancing/ElasticLoadBalancingClient.php %%WWWDIR%%/Aws/ElasticLoadBalancing/Exception/ElasticLoadBalancingException.php %%WWWDIR%%/Aws/ElasticLoadBalancingV2/ElasticLoadBalancingV2Client.php @@ -394,6 +457,7 @@ %%WWWDIR%%/Aws/EndpointParameterMiddleware.php %%WWWDIR%%/Aws/EndpointV2/EndpointDefinitionProvider.php %%WWWDIR%%/Aws/EndpointV2/EndpointProviderV2.php +%%WWWDIR%%/Aws/EndpointV2/EndpointV2Middleware.php %%WWWDIR%%/Aws/EndpointV2/EndpointV2SerializerTrait.php %%WWWDIR%%/Aws/EndpointV2/Rule/AbstractRule.php %%WWWDIR%%/Aws/EndpointV2/Rule/EndpointRule.php @@ -404,9 +468,13 @@ %%WWWDIR%%/Aws/EndpointV2/Ruleset/RulesetEndpoint.php %%WWWDIR%%/Aws/EndpointV2/Ruleset/RulesetParameter.php %%WWWDIR%%/Aws/EndpointV2/Ruleset/RulesetStandardLibrary.php +%%WWWDIR%%/Aws/EntityResolution/EntityResolutionClient.php +%%WWWDIR%%/Aws/EntityResolution/Exception/EntityResolutionException.php %%WWWDIR%%/Aws/EventBridge/EventBridgeClient.php %%WWWDIR%%/Aws/EventBridge/EventBridgeEndpointMiddleware.php %%WWWDIR%%/Aws/EventBridge/Exception/EventBridgeException.php +%%WWWDIR%%/Aws/Evs/EvsClient.php +%%WWWDIR%%/Aws/Evs/Exception/EvsException.php %%WWWDIR%%/Aws/Exception/AwsException.php %%WWWDIR%%/Aws/Exception/CommonRuntimeException.php %%WWWDIR%%/Aws/Exception/CouldNotCreateChecksumException.php @@ -438,10 +506,18 @@ %%WWWDIR%%/Aws/ForecastService/ForecastServiceClient.php %%WWWDIR%%/Aws/FraudDetector/Exception/FraudDetectorException.php %%WWWDIR%%/Aws/FraudDetector/FraudDetectorClient.php +%%WWWDIR%%/Aws/FreeTier/Exception/FreeTierException.php +%%WWWDIR%%/Aws/FreeTier/FreeTierClient.php %%WWWDIR%%/Aws/GameLift/Exception/GameLiftException.php %%WWWDIR%%/Aws/GameLift/GameLiftClient.php -%%WWWDIR%%/Aws/GameSparks/Exception/GameSparksException.php -%%WWWDIR%%/Aws/GameSparks/GameSparksClient.php +%%WWWDIR%%/Aws/GameLiftStreams/Exception/GameLiftStreamsException.php +%%WWWDIR%%/Aws/GameLiftStreams/GameLiftStreamsClient.php +%%WWWDIR%%/Aws/GeoMaps/Exception/GeoMapsException.php +%%WWWDIR%%/Aws/GeoMaps/GeoMapsClient.php +%%WWWDIR%%/Aws/GeoPlaces/Exception/GeoPlacesException.php +%%WWWDIR%%/Aws/GeoPlaces/GeoPlacesClient.php +%%WWWDIR%%/Aws/GeoRoutes/Exception/GeoRoutesException.php +%%WWWDIR%%/Aws/GeoRoutes/GeoRoutesClient.php %%WWWDIR%%/Aws/Glacier/Exception/GlacierException.php %%WWWDIR%%/Aws/Glacier/GlacierClient.php %%WWWDIR%%/Aws/Glacier/MultipartUploader.php @@ -460,9 +536,7 @@ %%WWWDIR%%/Aws/GroundStation/GroundStationClient.php %%WWWDIR%%/Aws/GuardDuty/Exception/GuardDutyException.php %%WWWDIR%%/Aws/GuardDuty/GuardDutyClient.php -%%WWWDIR%%/Aws/Handler/GuzzleV5/GuzzleHandler.php -%%WWWDIR%%/Aws/Handler/GuzzleV5/GuzzleStream.php -%%WWWDIR%%/Aws/Handler/GuzzleV5/PsrStream.php +%%WWWDIR%%/Aws/Handler/Guzzle/GuzzleHandler.php %%WWWDIR%%/Aws/Handler/GuzzleV6/GuzzleHandler.php %%WWWDIR%%/Aws/HandlerList.php %%WWWDIR%%/Aws/HasDataTrait.php @@ -474,8 +548,6 @@ %%WWWDIR%%/Aws/HealthLake/Exception/HealthLakeException.php %%WWWDIR%%/Aws/HealthLake/HealthLakeClient.php %%WWWDIR%%/Aws/History.php -%%WWWDIR%%/Aws/Honeycode/Exception/HoneycodeException.php -%%WWWDIR%%/Aws/Honeycode/HoneycodeClient.php %%WWWDIR%%/Aws/IVS/Exception/IVSException.php %%WWWDIR%%/Aws/IVS/IVSClient.php %%WWWDIR%%/Aws/IVSRealTime/Exception/IVSRealTimeException.php @@ -483,6 +555,11 @@ %%WWWDIR%%/Aws/Iam/Exception/IamException.php %%WWWDIR%%/Aws/Iam/IamClient.php %%WWWDIR%%/Aws/IdempotencyTokenMiddleware.php +%%WWWDIR%%/Aws/Identity/AwsCredentialIdentity.php +%%WWWDIR%%/Aws/Identity/BearerTokenIdentity.php +%%WWWDIR%%/Aws/Identity/IdentityInterface.php +%%WWWDIR%%/Aws/Identity/S3/S3ExpressIdentity.php +%%WWWDIR%%/Aws/Identity/S3/S3ExpressIdentityProvider.php %%WWWDIR%%/Aws/IdentityStore/Exception/IdentityStoreException.php %%WWWDIR%%/Aws/IdentityStore/IdentityStoreClient.php %%WWWDIR%%/Aws/ImportExport/Exception/ImportExportException.php @@ -492,12 +569,12 @@ %%WWWDIR%%/Aws/Inspector/InspectorClient.php %%WWWDIR%%/Aws/Inspector2/Exception/Inspector2Exception.php %%WWWDIR%%/Aws/Inspector2/Inspector2Client.php +%%WWWDIR%%/Aws/InspectorScan/Exception/InspectorScanException.php +%%WWWDIR%%/Aws/InspectorScan/InspectorScanClient.php %%WWWDIR%%/Aws/InternetMonitor/Exception/InternetMonitorException.php %%WWWDIR%%/Aws/InternetMonitor/InternetMonitorClient.php -%%WWWDIR%%/Aws/IoT1ClickDevicesService/Exception/IoT1ClickDevicesServiceException.php -%%WWWDIR%%/Aws/IoT1ClickDevicesService/IoT1ClickDevicesServiceClient.php -%%WWWDIR%%/Aws/IoT1ClickProjects/Exception/IoT1ClickProjectsException.php -%%WWWDIR%%/Aws/IoT1ClickProjects/IoT1ClickProjectsClient.php +%%WWWDIR%%/Aws/Invoicing/Exception/InvoicingException.php +%%WWWDIR%%/Aws/Invoicing/InvoicingClient.php %%WWWDIR%%/Aws/IoTAnalytics/Exception/IoTAnalyticsException.php %%WWWDIR%%/Aws/IoTAnalytics/IoTAnalyticsClient.php %%WWWDIR%%/Aws/IoTDeviceAdvisor/Exception/IoTDeviceAdvisorException.php @@ -512,8 +589,8 @@ %%WWWDIR%%/Aws/IoTFleetWise/IoTFleetWiseClient.php %%WWWDIR%%/Aws/IoTJobsDataPlane/Exception/IoTJobsDataPlaneException.php %%WWWDIR%%/Aws/IoTJobsDataPlane/IoTJobsDataPlaneClient.php -%%WWWDIR%%/Aws/IoTRoboRunner/Exception/IoTRoboRunnerException.php -%%WWWDIR%%/Aws/IoTRoboRunner/IoTRoboRunnerClient.php +%%WWWDIR%%/Aws/IoTManagedIntegrations/Exception/IoTManagedIntegrationsException.php +%%WWWDIR%%/Aws/IoTManagedIntegrations/IoTManagedIntegrationsClient.php %%WWWDIR%%/Aws/IoTSecureTunneling/Exception/IoTSecureTunnelingException.php %%WWWDIR%%/Aws/IoTSecureTunneling/IoTSecureTunnelingClient.php %%WWWDIR%%/Aws/IoTSiteWise/Exception/IoTSiteWiseException.php @@ -537,6 +614,8 @@ %%WWWDIR%%/Aws/KendraRanking/KendraRankingClient.php %%WWWDIR%%/Aws/Keyspaces/Exception/KeyspacesException.php %%WWWDIR%%/Aws/Keyspaces/KeyspacesClient.php +%%WWWDIR%%/Aws/KeyspacesStreams/Exception/KeyspacesStreamsException.php +%%WWWDIR%%/Aws/KeyspacesStreams/KeyspacesStreamsClient.php %%WWWDIR%%/Aws/Kinesis/Exception/KinesisException.php %%WWWDIR%%/Aws/Kinesis/KinesisClient.php %%WWWDIR%%/Aws/KinesisAnalytics/Exception/KinesisAnalyticsException.php @@ -559,6 +638,8 @@ %%WWWDIR%%/Aws/LakeFormation/LakeFormationClient.php %%WWWDIR%%/Aws/Lambda/Exception/LambdaException.php %%WWWDIR%%/Aws/Lambda/LambdaClient.php +%%WWWDIR%%/Aws/LaunchWizard/Exception/LaunchWizardException.php +%%WWWDIR%%/Aws/LaunchWizard/LaunchWizardClient.php %%WWWDIR%%/Aws/LexModelBuildingService/Exception/LexModelBuildingServiceException.php %%WWWDIR%%/Aws/LexModelBuildingService/LexModelBuildingServiceClient.php %%WWWDIR%%/Aws/LexModelsV2/Exception/LexModelsV2Exception.php @@ -584,6 +665,8 @@ %%WWWDIR%%/Aws/LookoutforVision/Exception/LookoutforVisionException.php %%WWWDIR%%/Aws/LookoutforVision/LookoutforVisionClient.php %%WWWDIR%%/Aws/LruArrayCache.php +%%WWWDIR%%/Aws/MPA/Exception/MPAException.php +%%WWWDIR%%/Aws/MPA/MPAClient.php %%WWWDIR%%/Aws/MQ/Exception/MQException.php %%WWWDIR%%/Aws/MQ/MQClient.php %%WWWDIR%%/Aws/MTurk/Exception/MTurkException.php @@ -592,24 +675,32 @@ %%WWWDIR%%/Aws/MWAA/MWAAClient.php %%WWWDIR%%/Aws/MachineLearning/Exception/MachineLearningException.php %%WWWDIR%%/Aws/MachineLearning/MachineLearningClient.php -%%WWWDIR%%/Aws/Macie/Exception/MacieException.php -%%WWWDIR%%/Aws/Macie/MacieClient.php %%WWWDIR%%/Aws/Macie2/Exception/Macie2Exception.php %%WWWDIR%%/Aws/Macie2/Macie2Client.php +%%WWWDIR%%/Aws/MailManager/Exception/MailManagerException.php +%%WWWDIR%%/Aws/MailManager/MailManagerClient.php %%WWWDIR%%/Aws/MainframeModernization/Exception/MainframeModernizationException.php %%WWWDIR%%/Aws/MainframeModernization/MainframeModernizationClient.php %%WWWDIR%%/Aws/ManagedBlockchain/Exception/ManagedBlockchainException.php %%WWWDIR%%/Aws/ManagedBlockchain/ManagedBlockchainClient.php +%%WWWDIR%%/Aws/ManagedBlockchainQuery/Exception/ManagedBlockchainQueryException.php +%%WWWDIR%%/Aws/ManagedBlockchainQuery/ManagedBlockchainQueryClient.php %%WWWDIR%%/Aws/ManagedGrafana/Exception/ManagedGrafanaException.php %%WWWDIR%%/Aws/ManagedGrafana/ManagedGrafanaClient.php +%%WWWDIR%%/Aws/MarketplaceAgreement/Exception/MarketplaceAgreementException.php +%%WWWDIR%%/Aws/MarketplaceAgreement/MarketplaceAgreementClient.php %%WWWDIR%%/Aws/MarketplaceCatalog/Exception/MarketplaceCatalogException.php %%WWWDIR%%/Aws/MarketplaceCatalog/MarketplaceCatalogClient.php %%WWWDIR%%/Aws/MarketplaceCommerceAnalytics/Exception/MarketplaceCommerceAnalyticsException.php %%WWWDIR%%/Aws/MarketplaceCommerceAnalytics/MarketplaceCommerceAnalyticsClient.php +%%WWWDIR%%/Aws/MarketplaceDeployment/Exception/MarketplaceDeploymentException.php +%%WWWDIR%%/Aws/MarketplaceDeployment/MarketplaceDeploymentClient.php %%WWWDIR%%/Aws/MarketplaceEntitlementService/Exception/MarketplaceEntitlementServiceException.php %%WWWDIR%%/Aws/MarketplaceEntitlementService/MarketplaceEntitlementServiceClient.php %%WWWDIR%%/Aws/MarketplaceMetering/Exception/MarketplaceMeteringException.php %%WWWDIR%%/Aws/MarketplaceMetering/MarketplaceMeteringClient.php +%%WWWDIR%%/Aws/MarketplaceReporting/Exception/MarketplaceReportingException.php +%%WWWDIR%%/Aws/MarketplaceReporting/MarketplaceReportingClient.php %%WWWDIR%%/Aws/MediaConnect/Exception/MediaConnectException.php %%WWWDIR%%/Aws/MediaConnect/MediaConnectClient.php %%WWWDIR%%/Aws/MediaConvert/Exception/MediaConvertException.php @@ -628,8 +719,11 @@ %%WWWDIR%%/Aws/MediaStoreData/MediaStoreDataClient.php %%WWWDIR%%/Aws/MediaTailor/Exception/MediaTailorException.php %%WWWDIR%%/Aws/MediaTailor/MediaTailorClient.php +%%WWWDIR%%/Aws/MedicalImaging/Exception/MedicalImagingException.php +%%WWWDIR%%/Aws/MedicalImaging/MedicalImagingClient.php %%WWWDIR%%/Aws/MemoryDB/Exception/MemoryDBException.php %%WWWDIR%%/Aws/MemoryDB/MemoryDBClient.php +%%WWWDIR%%/Aws/MetricsBuilder.php %%WWWDIR%%/Aws/Middleware.php %%WWWDIR%%/Aws/MigrationHub/Exception/MigrationHubException.php %%WWWDIR%%/Aws/MigrationHub/MigrationHubClient.php @@ -641,8 +735,6 @@ %%WWWDIR%%/Aws/MigrationHubRefactorSpaces/MigrationHubRefactorSpacesClient.php %%WWWDIR%%/Aws/MigrationHubStrategyRecommendations/Exception/MigrationHubStrategyRecommendationsException.php %%WWWDIR%%/Aws/MigrationHubStrategyRecommendations/MigrationHubStrategyRecommendationsClient.php -%%WWWDIR%%/Aws/Mobile/Exception/MobileException.php -%%WWWDIR%%/Aws/Mobile/MobileClient.php %%WWWDIR%%/Aws/MockHandler.php %%WWWDIR%%/Aws/MonitoringEventsInterface.php %%WWWDIR%%/Aws/MultiRegionClient.php @@ -651,38 +743,56 @@ %%WWWDIR%%/Aws/Multipart/UploadState.php %%WWWDIR%%/Aws/Neptune/Exception/NeptuneException.php %%WWWDIR%%/Aws/Neptune/NeptuneClient.php +%%WWWDIR%%/Aws/NeptuneGraph/Exception/NeptuneGraphException.php +%%WWWDIR%%/Aws/NeptuneGraph/NeptuneGraphClient.php +%%WWWDIR%%/Aws/Neptunedata/Exception/NeptunedataException.php +%%WWWDIR%%/Aws/Neptunedata/NeptunedataClient.php %%WWWDIR%%/Aws/NetworkFirewall/Exception/NetworkFirewallException.php %%WWWDIR%%/Aws/NetworkFirewall/NetworkFirewallClient.php +%%WWWDIR%%/Aws/NetworkFlowMonitor/Exception/NetworkFlowMonitorException.php +%%WWWDIR%%/Aws/NetworkFlowMonitor/NetworkFlowMonitorClient.php %%WWWDIR%%/Aws/NetworkManager/Exception/NetworkManagerException.php %%WWWDIR%%/Aws/NetworkManager/NetworkManagerClient.php -%%WWWDIR%%/Aws/NimbleStudio/Exception/NimbleStudioException.php -%%WWWDIR%%/Aws/NimbleStudio/NimbleStudioClient.php +%%WWWDIR%%/Aws/NetworkMonitor/Exception/NetworkMonitorException.php +%%WWWDIR%%/Aws/NetworkMonitor/NetworkMonitorClient.php +%%WWWDIR%%/Aws/Notifications/Exception/NotificationsException.php +%%WWWDIR%%/Aws/Notifications/NotificationsClient.php +%%WWWDIR%%/Aws/NotificationsContacts/Exception/NotificationsContactsException.php +%%WWWDIR%%/Aws/NotificationsContacts/NotificationsContactsClient.php %%WWWDIR%%/Aws/OAM/Exception/OAMException.php %%WWWDIR%%/Aws/OAM/OAMClient.php %%WWWDIR%%/Aws/OSIS/Exception/OSISException.php %%WWWDIR%%/Aws/OSIS/OSISClient.php +%%WWWDIR%%/Aws/ObservabilityAdmin/Exception/ObservabilityAdminException.php +%%WWWDIR%%/Aws/ObservabilityAdmin/ObservabilityAdminClient.php +%%WWWDIR%%/Aws/Odb/Exception/OdbException.php +%%WWWDIR%%/Aws/Odb/OdbClient.php %%WWWDIR%%/Aws/Omics/Exception/OmicsException.php %%WWWDIR%%/Aws/Omics/OmicsClient.php %%WWWDIR%%/Aws/OpenSearchServerless/Exception/OpenSearchServerlessException.php %%WWWDIR%%/Aws/OpenSearchServerless/OpenSearchServerlessClient.php %%WWWDIR%%/Aws/OpenSearchService/Exception/OpenSearchServiceException.php %%WWWDIR%%/Aws/OpenSearchService/OpenSearchServiceClient.php -%%WWWDIR%%/Aws/OpsWorks/Exception/OpsWorksException.php -%%WWWDIR%%/Aws/OpsWorks/OpsWorksClient.php -%%WWWDIR%%/Aws/OpsWorksCM/Exception/OpsWorksCMException.php -%%WWWDIR%%/Aws/OpsWorksCM/OpsWorksCMClient.php %%WWWDIR%%/Aws/Organizations/Exception/OrganizationsException.php %%WWWDIR%%/Aws/Organizations/OrganizationsClient.php %%WWWDIR%%/Aws/Outposts/Exception/OutpostsException.php %%WWWDIR%%/Aws/Outposts/OutpostsClient.php +%%WWWDIR%%/Aws/PCS/Exception/PCSException.php +%%WWWDIR%%/Aws/PCS/PCSClient.php %%WWWDIR%%/Aws/PI/Exception/PIException.php %%WWWDIR%%/Aws/PI/PIClient.php %%WWWDIR%%/Aws/Panorama/Exception/PanoramaException.php %%WWWDIR%%/Aws/Panorama/PanoramaClient.php +%%WWWDIR%%/Aws/PartnerCentralSelling/Exception/PartnerCentralSellingException.php +%%WWWDIR%%/Aws/PartnerCentralSelling/PartnerCentralSellingClient.php %%WWWDIR%%/Aws/PaymentCryptography/Exception/PaymentCryptographyException.php %%WWWDIR%%/Aws/PaymentCryptography/PaymentCryptographyClient.php %%WWWDIR%%/Aws/PaymentCryptographyData/Exception/PaymentCryptographyDataException.php %%WWWDIR%%/Aws/PaymentCryptographyData/PaymentCryptographyDataClient.php +%%WWWDIR%%/Aws/PcaConnectorAd/Exception/PcaConnectorAdException.php +%%WWWDIR%%/Aws/PcaConnectorAd/PcaConnectorAdClient.php +%%WWWDIR%%/Aws/PcaConnectorScep/Exception/PcaConnectorScepException.php +%%WWWDIR%%/Aws/PcaConnectorScep/PcaConnectorScepClient.php %%WWWDIR%%/Aws/Personalize/Exception/PersonalizeException.php %%WWWDIR%%/Aws/Personalize/PersonalizeClient.php %%WWWDIR%%/Aws/PersonalizeEvents/Exception/PersonalizeEventsException.php @@ -705,18 +815,23 @@ %%WWWDIR%%/Aws/PresignUrlMiddleware.php %%WWWDIR%%/Aws/Pricing/Exception/PricingException.php %%WWWDIR%%/Aws/Pricing/PricingClient.php -%%WWWDIR%%/Aws/PrivateNetworks/Exception/PrivateNetworksException.php -%%WWWDIR%%/Aws/PrivateNetworks/PrivateNetworksClient.php %%WWWDIR%%/Aws/PrometheusService/Exception/PrometheusServiceException.php %%WWWDIR%%/Aws/PrometheusService/PrometheusServiceClient.php %%WWWDIR%%/Aws/Proton/Exception/ProtonException.php %%WWWDIR%%/Aws/Proton/ProtonClient.php %%WWWDIR%%/Aws/Psr16CacheAdapter.php %%WWWDIR%%/Aws/PsrCacheAdapter.php +%%WWWDIR%%/Aws/QApps/Exception/QAppsException.php +%%WWWDIR%%/Aws/QApps/QAppsClient.php +%%WWWDIR%%/Aws/QBusiness/Exception/QBusinessException.php +%%WWWDIR%%/Aws/QBusiness/QBusinessClient.php +%%WWWDIR%%/Aws/QConnect/Exception/QConnectException.php +%%WWWDIR%%/Aws/QConnect/QConnectClient.php %%WWWDIR%%/Aws/QLDB/Exception/QLDBException.php %%WWWDIR%%/Aws/QLDB/QLDBClient.php %%WWWDIR%%/Aws/QLDBSession/Exception/QLDBSessionException.php %%WWWDIR%%/Aws/QLDBSession/QLDBSessionClient.php +%%WWWDIR%%/Aws/QueryCompatibleInputMiddleware.php %%WWWDIR%%/Aws/QuickSight/Exception/QuickSightException.php %%WWWDIR%%/Aws/QuickSight/QuickSightClient.php %%WWWDIR%%/Aws/RAM/Exception/RAMException.php @@ -736,6 +851,9 @@ %%WWWDIR%%/Aws/RedshiftServerless/RedshiftServerlessClient.php %%WWWDIR%%/Aws/Rekognition/Exception/RekognitionException.php %%WWWDIR%%/Aws/Rekognition/RekognitionClient.php +%%WWWDIR%%/Aws/Repostspace/Exception/RepostspaceException.php +%%WWWDIR%%/Aws/Repostspace/RepostspaceClient.php +%%WWWDIR%%/Aws/RequestCompressionMiddleware.php %%WWWDIR%%/Aws/ResilienceHub/Exception/ResilienceHubException.php %%WWWDIR%%/Aws/ResilienceHub/ResilienceHubClient.php %%WWWDIR%%/Aws/ResourceExplorer2/Exception/ResourceExplorer2Exception.php @@ -765,6 +883,8 @@ %%WWWDIR%%/Aws/Route53/Route53Client.php %%WWWDIR%%/Aws/Route53Domains/Exception/Route53DomainsException.php %%WWWDIR%%/Aws/Route53Domains/Route53DomainsClient.php +%%WWWDIR%%/Aws/Route53Profiles/Exception/Route53ProfilesException.php +%%WWWDIR%%/Aws/Route53Profiles/Route53ProfilesClient.php %%WWWDIR%%/Aws/Route53RecoveryCluster/Exception/Route53RecoveryClusterException.php %%WWWDIR%%/Aws/Route53RecoveryCluster/Route53RecoveryClusterClient.php %%WWWDIR%%/Aws/Route53RecoveryControlConfig/Exception/Route53RecoveryControlConfigException.php @@ -793,12 +913,17 @@ %%WWWDIR%%/Aws/S3/Exception/PermanentRedirectException.php %%WWWDIR%%/Aws/S3/Exception/S3Exception.php %%WWWDIR%%/Aws/S3/Exception/S3MultipartUploadException.php +%%WWWDIR%%/Aws/S3/ExpiresParsingMiddleware.php %%WWWDIR%%/Aws/S3/GetBucketLocationParser.php %%WWWDIR%%/Aws/S3/MultipartCopy.php %%WWWDIR%%/Aws/S3/MultipartUploader.php %%WWWDIR%%/Aws/S3/MultipartUploadingTrait.php %%WWWDIR%%/Aws/S3/ObjectCopier.php %%WWWDIR%%/Aws/S3/ObjectUploader.php +%%WWWDIR%%/Aws/S3/Parser/GetBucketLocationResultMutator.php +%%WWWDIR%%/Aws/S3/Parser/S3Parser.php +%%WWWDIR%%/Aws/S3/Parser/S3ResultMutator.php +%%WWWDIR%%/Aws/S3/Parser/ValidateResponseChecksumResultMutator.php %%WWWDIR%%/Aws/S3/PermanentRedirectMiddleware.php %%WWWDIR%%/Aws/S3/PostObject.php %%WWWDIR%%/Aws/S3/PostObjectV4.php @@ -827,10 +952,18 @@ %%WWWDIR%%/Aws/S3Control/S3ControlClient.php %%WWWDIR%%/Aws/S3Outposts/Exception/S3OutpostsException.php %%WWWDIR%%/Aws/S3Outposts/S3OutpostsClient.php +%%WWWDIR%%/Aws/S3Tables/Exception/S3TablesException.php +%%WWWDIR%%/Aws/S3Tables/S3TablesClient.php +%%WWWDIR%%/Aws/S3Vectors/Exception/S3VectorsException.php +%%WWWDIR%%/Aws/S3Vectors/S3VectorsClient.php %%WWWDIR%%/Aws/SSMContacts/Exception/SSMContactsException.php %%WWWDIR%%/Aws/SSMContacts/SSMContactsClient.php +%%WWWDIR%%/Aws/SSMGuiConnect/Exception/SSMGuiConnectException.php +%%WWWDIR%%/Aws/SSMGuiConnect/SSMGuiConnectClient.php %%WWWDIR%%/Aws/SSMIncidents/Exception/SSMIncidentsException.php %%WWWDIR%%/Aws/SSMIncidents/SSMIncidentsClient.php +%%WWWDIR%%/Aws/SSMQuickSetup/Exception/SSMQuickSetupException.php +%%WWWDIR%%/Aws/SSMQuickSetup/SSMQuickSetupClient.php %%WWWDIR%%/Aws/SSO/Exception/SSOException.php %%WWWDIR%%/Aws/SSO/SSOClient.php %%WWWDIR%%/Aws/SSOAdmin/Exception/SSOAdminException.php @@ -861,6 +994,8 @@ %%WWWDIR%%/Aws/SecretsManager/SecretsManagerClient.php %%WWWDIR%%/Aws/SecurityHub/Exception/SecurityHubException.php %%WWWDIR%%/Aws/SecurityHub/SecurityHubClient.php +%%WWWDIR%%/Aws/SecurityIR/Exception/SecurityIRException.php +%%WWWDIR%%/Aws/SecurityIR/SecurityIRClient.php %%WWWDIR%%/Aws/SecurityLake/Exception/SecurityLakeException.php %%WWWDIR%%/Aws/SecurityLake/SecurityLakeClient.php %%WWWDIR%%/Aws/ServerlessApplicationRepository/Exception/ServerlessApplicationRepositoryException.php @@ -880,6 +1015,7 @@ %%WWWDIR%%/Aws/Shield/Exception/ShieldException.php %%WWWDIR%%/Aws/Shield/ShieldClient.php %%WWWDIR%%/Aws/Signature/AnonymousSignature.php +%%WWWDIR%%/Aws/Signature/S3ExpressSignature.php %%WWWDIR%%/Aws/Signature/S3SignatureV4.php %%WWWDIR%%/Aws/Signature/SignatureInterface.php %%WWWDIR%%/Aws/Signature/SignatureProvider.php @@ -887,8 +1023,6 @@ %%WWWDIR%%/Aws/Signature/SignatureV4.php %%WWWDIR%%/Aws/SimSpaceWeaver/Exception/SimSpaceWeaverException.php %%WWWDIR%%/Aws/SimSpaceWeaver/SimSpaceWeaverClient.php -%%WWWDIR%%/Aws/Sms/Exception/SmsException.php -%%WWWDIR%%/Aws/Sms/SmsClient.php %%WWWDIR%%/Aws/SnowBall/Exception/SnowBallException.php %%WWWDIR%%/Aws/SnowBall/SnowBallClient.php %%WWWDIR%%/Aws/SnowDeviceManagement/Exception/SnowDeviceManagementException.php @@ -898,6 +1032,8 @@ %%WWWDIR%%/Aws/Sns/Message.php %%WWWDIR%%/Aws/Sns/MessageValidator.php %%WWWDIR%%/Aws/Sns/SnsClient.php +%%WWWDIR%%/Aws/SocialMessaging/Exception/SocialMessagingException.php +%%WWWDIR%%/Aws/SocialMessaging/SocialMessagingClient.php %%WWWDIR%%/Aws/Sqs/Exception/SqsException.php %%WWWDIR%%/Aws/Sqs/SqsClient.php %%WWWDIR%%/Aws/Ssm/Exception/SsmException.php @@ -913,6 +1049,8 @@ %%WWWDIR%%/Aws/Sts/RegionalEndpoints/ConfigurationProvider.php %%WWWDIR%%/Aws/Sts/RegionalEndpoints/Exception/ConfigurationException.php %%WWWDIR%%/Aws/Sts/StsClient.php +%%WWWDIR%%/Aws/SupplyChain/Exception/SupplyChainException.php +%%WWWDIR%%/Aws/SupplyChain/SupplyChainClient.php %%WWWDIR%%/Aws/Support/Exception/SupportException.php %%WWWDIR%%/Aws/Support/SupportClient.php %%WWWDIR%%/Aws/SupportApp/Exception/SupportAppException.php @@ -921,8 +1059,12 @@ %%WWWDIR%%/Aws/Swf/SwfClient.php %%WWWDIR%%/Aws/Synthetics/Exception/SyntheticsException.php %%WWWDIR%%/Aws/Synthetics/SyntheticsClient.php +%%WWWDIR%%/Aws/TaxSettings/Exception/TaxSettingsException.php +%%WWWDIR%%/Aws/TaxSettings/TaxSettingsClient.php %%WWWDIR%%/Aws/Textract/Exception/TextractException.php %%WWWDIR%%/Aws/Textract/TextractClient.php +%%WWWDIR%%/Aws/TimestreamInfluxDB/Exception/TimestreamInfluxDBException.php +%%WWWDIR%%/Aws/TimestreamInfluxDB/TimestreamInfluxDBClient.php %%WWWDIR%%/Aws/TimestreamQuery/Exception/TimestreamQueryException.php %%WWWDIR%%/Aws/TimestreamQuery/TimestreamQueryClient.php %%WWWDIR%%/Aws/TimestreamWrite/Exception/TimestreamWriteException.php @@ -930,6 +1072,7 @@ %%WWWDIR%%/Aws/Tnb/Exception/TnbException.php %%WWWDIR%%/Aws/Tnb/TnbClient.php %%WWWDIR%%/Aws/Token/BearerTokenAuthorization.php +%%WWWDIR%%/Aws/Token/BedrockTokenProvider.php %%WWWDIR%%/Aws/Token/ParsesIniTrait.php %%WWWDIR%%/Aws/Token/RefreshableTokenProviderInterface.php %%WWWDIR%%/Aws/Token/SsoToken.php @@ -938,6 +1081,7 @@ %%WWWDIR%%/Aws/Token/TokenAuthorization.php %%WWWDIR%%/Aws/Token/TokenInterface.php %%WWWDIR%%/Aws/Token/TokenProvider.php +%%WWWDIR%%/Aws/Token/TokenSource.php %%WWWDIR%%/Aws/TraceMiddleware.php %%WWWDIR%%/Aws/TranscribeService/Exception/TranscribeServiceException.php %%WWWDIR%%/Aws/TranscribeService/TranscribeServiceClient.php @@ -945,6 +1089,9 @@ %%WWWDIR%%/Aws/Transfer/TransferClient.php %%WWWDIR%%/Aws/Translate/Exception/TranslateException.php %%WWWDIR%%/Aws/Translate/TranslateClient.php +%%WWWDIR%%/Aws/TrustedAdvisor/Exception/TrustedAdvisorException.php +%%WWWDIR%%/Aws/TrustedAdvisor/TrustedAdvisorClient.php +%%WWWDIR%%/Aws/UserAgentMiddleware.php %%WWWDIR%%/Aws/VPCLattice/Exception/VPCLatticeException.php %%WWWDIR%%/Aws/VPCLattice/VPCLatticeClient.php %%WWWDIR%%/Aws/VerifiedPermissions/Exception/VerifiedPermissionsException.php @@ -962,16 +1109,18 @@ %%WWWDIR%%/Aws/WellArchitected/WellArchitectedClient.php %%WWWDIR%%/Aws/WorkDocs/Exception/WorkDocsException.php %%WWWDIR%%/Aws/WorkDocs/WorkDocsClient.php -%%WWWDIR%%/Aws/WorkLink/Exception/WorkLinkException.php -%%WWWDIR%%/Aws/WorkLink/WorkLinkClient.php %%WWWDIR%%/Aws/WorkMail/Exception/WorkMailException.php %%WWWDIR%%/Aws/WorkMail/WorkMailClient.php %%WWWDIR%%/Aws/WorkMailMessageFlow/Exception/WorkMailMessageFlowException.php %%WWWDIR%%/Aws/WorkMailMessageFlow/WorkMailMessageFlowClient.php %%WWWDIR%%/Aws/WorkSpaces/Exception/WorkSpacesException.php %%WWWDIR%%/Aws/WorkSpaces/WorkSpacesClient.php +%%WWWDIR%%/Aws/WorkSpacesThinClient/Exception/WorkSpacesThinClientException.php +%%WWWDIR%%/Aws/WorkSpacesThinClient/WorkSpacesThinClientClient.php %%WWWDIR%%/Aws/WorkSpacesWeb/Exception/WorkSpacesWebException.php %%WWWDIR%%/Aws/WorkSpacesWeb/WorkSpacesWebClient.php +%%WWWDIR%%/Aws/WorkspacesInstances/Exception/WorkspacesInstancesException.php +%%WWWDIR%%/Aws/WorkspacesInstances/WorkspacesInstancesClient.php %%WWWDIR%%/Aws/WrappedHttpHandler.php %%WWWDIR%%/Aws/XRay/Exception/XRayException.php %%WWWDIR%%/Aws/XRay/XRayClient.php @@ -995,15 +1144,18 @@ %%WWWDIR%%/Aws/data/acm/2015-12-08/paginators-1.json.php %%WWWDIR%%/Aws/data/acm/2015-12-08/smoke.json.php %%WWWDIR%%/Aws/data/acm/2015-12-08/waiters-2.json.php -%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/api-2.json.php -%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/alexaforbusiness/2017-11-09/paginators-1.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/aiops/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/aliases.json.php %%WWWDIR%%/Aws/data/amp/2020-08-01/api-2.json.php %%WWWDIR%%/Aws/data/amp/2020-08-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/amp/2020-08-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/amp/2020-08-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/amp/2020-08-01/smoke.json.php %%WWWDIR%%/Aws/data/amp/2020-08-01/waiters-2.json.php %%WWWDIR%%/Aws/data/amplify/2017-07-25/api-2.json.php %%WWWDIR%%/Aws/data/amplify/2017-07-25/endpoint-rule-set-1.json.php @@ -1036,10 +1188,17 @@ %%WWWDIR%%/Aws/data/appconfig/2019-10-09/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/appconfig/2019-10-09/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/appconfig/2019-10-09/paginators-1.json.php +%%WWWDIR%%/Aws/data/appconfig/2019-10-09/waiters-2.json.php %%WWWDIR%%/Aws/data/appconfigdata/2021-11-11/api-2.json.php %%WWWDIR%%/Aws/data/appconfigdata/2021-11-11/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/appconfigdata/2021-11-11/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/appconfigdata/2021-11-11/paginators-1.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/api-2.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/smoke.json.php +%%WWWDIR%%/Aws/data/appfabric/2023-05-19/waiters-2.json.php %%WWWDIR%%/Aws/data/appflow/2020-08-23/api-2.json.php %%WWWDIR%%/Aws/data/appflow/2020-08-23/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/appflow/2020-08-23/endpoint-tests-1.json.php @@ -1057,6 +1216,10 @@ %%WWWDIR%%/Aws/data/application-insights/2018-11-25/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/application-insights/2018-11-25/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/application-insights/2018-11-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/application-signals/2024-04-15/api-2.json.php +%%WWWDIR%%/Aws/data/application-signals/2024-04-15/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/application-signals/2024-04-15/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/application-signals/2024-04-15/paginators-1.json.php %%WWWDIR%%/Aws/data/applicationcostprofiler/2020-09-10/api-2.json.php %%WWWDIR%%/Aws/data/applicationcostprofiler/2020-09-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/applicationcostprofiler/2020-09-10/endpoint-tests-1.json.php @@ -1083,10 +1246,30 @@ %%WWWDIR%%/Aws/data/appsync/2017-07-25/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/appsync/2017-07-25/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/appsync/2017-07-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/api-2.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/paginators-1.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/smoke.json.php +%%WWWDIR%%/Aws/data/apptest/2022-12-06/waiters-2.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/arc-region-switch/2022-07-26/waiters-2.json.php %%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/api-2.json.php %%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/smoke.json.php +%%WWWDIR%%/Aws/data/arc-zonal-shift/2022-10-30/waiters-2.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/artifact/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/athena/2017-05-18/api-2.json.php %%WWWDIR%%/Aws/data/athena/2017-05-18/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/athena/2017-05-18/endpoint-tests-1.json.php @@ -1106,6 +1289,11 @@ %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/smoke.json.php %%WWWDIR%%/Aws/data/autoscaling/2011-01-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/b2bi/2022-06-23/api-2.json.php +%%WWWDIR%%/Aws/data/b2bi/2022-06-23/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/b2bi/2022-06-23/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/b2bi/2022-06-23/paginators-1.json.php +%%WWWDIR%%/Aws/data/b2bi/2022-06-23/waiters-2.json.php %%WWWDIR%%/Aws/data/backup-gateway/2021-01-01/api-2.json.php %%WWWDIR%%/Aws/data/backup-gateway/2021-01-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/backup-gateway/2021-01-01/endpoint-tests-1.json.php @@ -1114,15 +1302,89 @@ %%WWWDIR%%/Aws/data/backup/2018-11-15/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/backup/2018-11-15/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/backup/2018-11-15/paginators-1.json.php -%%WWWDIR%%/Aws/data/backupstorage/2018-04-10/api-2.json.php -%%WWWDIR%%/Aws/data/backupstorage/2018-04-10/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/backupstorage/2018-04-10/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/backupstorage/2018-04-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/backupsearch/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/api-2.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/paginators-1.json.php %%WWWDIR%%/Aws/data/batch/2016-08-10/smoke.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/api-2.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/paginators-1.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/smoke.json.php +%%WWWDIR%%/Aws/data/bcm-dashboards/2025-08-18/waiters-2.json.php +%%WWWDIR%%/Aws/data/bcm-data-exports/2023-11-26/api-2.json.php +%%WWWDIR%%/Aws/data/bcm-data-exports/2023-11-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bcm-data-exports/2023-11-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bcm-data-exports/2023-11-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/api-2.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/smoke.json.php +%%WWWDIR%%/Aws/data/bcm-pricing-calculator/2024-06-19/waiters-2.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/api-2.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/smoke.json.php +%%WWWDIR%%/Aws/data/bcm-recommended-actions/2024-11-14/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock-agent-runtime/2023-07-26/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock-agent/2023-06-05/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore-control/2023-06-05/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock-agentcore/2024-02-28/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation-runtime/2024-06-13/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation-runtime/2024-06-13/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation-runtime/2024-06-13/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation-runtime/2024-06-13/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation/2023-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation/2023-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation/2023-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-data-automation/2023-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock-runtime/2023-09-30/waiters-2.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/api-2.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/paginators-1.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/smoke.json.php +%%WWWDIR%%/Aws/data/bedrock/2023-04-20/waiters-2.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/api-2.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/paginators-1.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/smoke.json.php +%%WWWDIR%%/Aws/data/billing/2023-09-07/waiters-2.json.php %%WWWDIR%%/Aws/data/billingconductor/2021-07-30/api-2.json.php %%WWWDIR%%/Aws/data/billingconductor/2021-07-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/billingconductor/2021-07-30/endpoint-tests-1.json.php @@ -1141,6 +1403,10 @@ %%WWWDIR%%/Aws/data/ce/2017-10-25/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ce/2017-10-25/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ce/2017-10-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/chatbot/2017-10-11/api-2.json.php +%%WWWDIR%%/Aws/data/chatbot/2017-10-11/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/chatbot/2017-10-11/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/chatbot/2017-10-11/paginators-1.json.php %%WWWDIR%%/Aws/data/chime-sdk-identity/2021-04-20/api-2.json.php %%WWWDIR%%/Aws/data/chime-sdk-identity/2021-04-20/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/chime-sdk-identity/2021-04-20/endpoint-tests-1.json.php @@ -1171,6 +1437,12 @@ %%WWWDIR%%/Aws/data/cleanrooms/2022-02-17/paginators-1.json.php %%WWWDIR%%/Aws/data/cleanrooms/2022-02-17/smoke.json.php %%WWWDIR%%/Aws/data/cleanrooms/2022-02-17/waiters-2.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/api-2.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/paginators-1.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/smoke.json.php +%%WWWDIR%%/Aws/data/cleanroomsml/2023-09-06/waiters-2.json.php %%WWWDIR%%/Aws/data/cloud9/2017-09-23/api-2.json.php %%WWWDIR%%/Aws/data/cloud9/2017-09-23/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cloud9/2017-09-23/endpoint-tests-1.json.php @@ -1195,6 +1467,10 @@ %%WWWDIR%%/Aws/data/cloudformation/2010-05-15/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudformation/2010-05-15/smoke.json.php %%WWWDIR%%/Aws/data/cloudformation/2010-05-15/waiters-2.json.php +%%WWWDIR%%/Aws/data/cloudfront-keyvaluestore/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/cloudfront-keyvaluestore/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/cloudfront-keyvaluestore/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/cloudfront-keyvaluestore/2022-07-26/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudfront/2015-07-27/api-2.json.php %%WWWDIR%%/Aws/data/cloudfront/2015-07-27/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cloudfront/2015-07-27/endpoint-tests-1.json.php @@ -1291,6 +1567,7 @@ %%WWWDIR%%/Aws/data/cloudsearchdomain/2013-01-01/api-2.json.php %%WWWDIR%%/Aws/data/cloudsearchdomain/2013-01-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cloudsearchdomain/2013-01-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/cloudsearchdomain/2013-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/cloudtrail-data/2021-08-11/api-2.json.php %%WWWDIR%%/Aws/data/cloudtrail-data/2021-08-11/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cloudtrail-data/2021-08-11/endpoint-tests-1.json.php @@ -1320,6 +1597,10 @@ %%WWWDIR%%/Aws/data/codecommit/2015-04-13/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/codecommit/2015-04-13/paginators-1.json.php %%WWWDIR%%/Aws/data/codecommit/2015-04-13/smoke.json.php +%%WWWDIR%%/Aws/data/codeconnections/2023-12-01/api-2.json.php +%%WWWDIR%%/Aws/data/codeconnections/2023-12-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/codeconnections/2023-12-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/codeconnections/2023-12-01/paginators-1.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/api-2.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/codedeploy/2014-10-06/endpoint-tests-1.json.php @@ -1336,6 +1617,8 @@ %%WWWDIR%%/Aws/data/codeguru-security/2018-05-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/codeguru-security/2018-05-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/codeguru-security/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/codeguru-security/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/codeguru-security/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/codeguruprofiler/2019-07-18/api-2.json.php %%WWWDIR%%/Aws/data/codeguruprofiler/2019-07-18/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/codeguruprofiler/2019-07-18/endpoint-tests-1.json.php @@ -1353,11 +1636,6 @@ %%WWWDIR%%/Aws/data/codestar-notifications/2019-10-15/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/codestar-notifications/2019-10-15/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/codestar-notifications/2019-10-15/paginators-1.json.php -%%WWWDIR%%/Aws/data/codestar/2017-04-19/api-2.json.php -%%WWWDIR%%/Aws/data/codestar/2017-04-19/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/codestar/2017-04-19/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/codestar/2017-04-19/paginators-1.json.php -%%WWWDIR%%/Aws/data/codestar/2017-04-19/smoke.json.php %%WWWDIR%%/Aws/data/cognito-identity/2014-06-30/api-2.json.php %%WWWDIR%%/Aws/data/cognito-identity/2014-06-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cognito-identity/2014-06-30/endpoint-tests-1.json.php @@ -1402,18 +1680,36 @@ %%WWWDIR%%/Aws/data/connectcampaigns/2021-01-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/connectcampaigns/2021-01-30/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/connectcampaigns/2021-01-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/connectcampaignsv2/2024-04-23/api-2.json.php +%%WWWDIR%%/Aws/data/connectcampaignsv2/2024-04-23/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/connectcampaignsv2/2024-04-23/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/connectcampaignsv2/2024-04-23/paginators-1.json.php %%WWWDIR%%/Aws/data/connectcases/2022-10-03/api-2.json.php %%WWWDIR%%/Aws/data/connectcases/2022-10-03/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/connectcases/2022-10-03/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/connectcases/2022-10-03/paginators-1.json.php +%%WWWDIR%%/Aws/data/connectcases/2022-10-03/smoke.json.php +%%WWWDIR%%/Aws/data/connectcases/2022-10-03/waiters-2.json.php %%WWWDIR%%/Aws/data/connectparticipant/2018-09-07/api-2.json.php %%WWWDIR%%/Aws/data/connectparticipant/2018-09-07/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/connectparticipant/2018-09-07/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/connectparticipant/2018-09-07/paginators-1.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/controlcatalog/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/controltower/2018-05-10/api-2.json.php %%WWWDIR%%/Aws/data/controltower/2018-05-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/controltower/2018-05-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/controltower/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/cost-optimization-hub/2022-07-26/waiters-2.json.php %%WWWDIR%%/Aws/data/cur/2017-01-06/api-2.json.php %%WWWDIR%%/Aws/data/cur/2017-01-06/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/cur/2017-01-06/endpoint-tests-1.json.php @@ -1446,10 +1742,19 @@ %%WWWDIR%%/Aws/data/datasync/2018-11-09/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/datasync/2018-11-09/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/datasync/2018-11-09/paginators-1.json.php +%%WWWDIR%%/Aws/data/datazone/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/datazone/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/datazone/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/datazone/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/dax/2017-04-19/api-2.json.php %%WWWDIR%%/Aws/data/dax/2017-04-19/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/dax/2017-04-19/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/dax/2017-04-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/deadline/2023-10-12/api-2.json.php +%%WWWDIR%%/Aws/data/deadline/2023-10-12/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/deadline/2023-10-12/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/deadline/2023-10-12/paginators-1.json.php +%%WWWDIR%%/Aws/data/deadline/2023-10-12/waiters-2.json.php %%WWWDIR%%/Aws/data/detective/2018-10-26/api-2.json.php %%WWWDIR%%/Aws/data/detective/2018-10-26/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/detective/2018-10-26/endpoint-tests-1.json.php @@ -1468,6 +1773,10 @@ %%WWWDIR%%/Aws/data/directconnect/2012-10-25/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/directconnect/2012-10-25/paginators-1.json.php %%WWWDIR%%/Aws/data/directconnect/2012-10-25/smoke.json.php +%%WWWDIR%%/Aws/data/directory-service-data/2023-05-31/api-2.json.php +%%WWWDIR%%/Aws/data/directory-service-data/2023-05-31/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/directory-service-data/2023-05-31/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/directory-service-data/2023-05-31/paginators-1.json.php %%WWWDIR%%/Aws/data/discovery/2015-11-01/api-2.json.php %%WWWDIR%%/Aws/data/discovery/2015-11-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/discovery/2015-11-01/endpoint-tests-1.json.php @@ -1502,6 +1811,12 @@ %%WWWDIR%%/Aws/data/ds/2015-04-16/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ds/2015-04-16/paginators-1.json.php %%WWWDIR%%/Aws/data/ds/2015-04-16/smoke.json.php +%%WWWDIR%%/Aws/data/ds/2015-04-16/waiters-2.json.php +%%WWWDIR%%/Aws/data/dsql/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/dsql/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/dsql/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/dsql/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/dsql/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/api-2.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/dynamodb/2011-12-05/endpoint-tests-1.json.php @@ -1564,15 +1879,17 @@ %%WWWDIR%%/Aws/data/ecs/2014-11-13/paginators-1.json.php %%WWWDIR%%/Aws/data/ecs/2014-11-13/smoke.json.php %%WWWDIR%%/Aws/data/ecs/2014-11-13/waiters-2.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/api-2.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/smoke.json.php +%%WWWDIR%%/Aws/data/eks-auth/2023-11-26/waiters-2.json.php %%WWWDIR%%/Aws/data/eks/2017-11-01/api-2.json.php %%WWWDIR%%/Aws/data/eks/2017-11-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/eks/2017-11-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/eks/2017-11-01/paginators-1.json.php %%WWWDIR%%/Aws/data/eks/2017-11-01/waiters-2.json.php -%%WWWDIR%%/Aws/data/elastic-inference/2017-07-25/api-2.json.php -%%WWWDIR%%/Aws/data/elastic-inference/2017-07-25/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/elastic-inference/2017-07-25/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/elastic-inference/2017-07-25/paginators-1.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/api-2.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/elasticache/2015-02-02/endpoint-tests-1.json.php @@ -1636,6 +1953,10 @@ %%WWWDIR%%/Aws/data/entitlement.marketplace/2017-01-11/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/entitlement.marketplace/2017-01-11/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/entitlement.marketplace/2017-01-11/paginators-1.json.php +%%WWWDIR%%/Aws/data/entityresolution/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/entityresolution/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/entityresolution/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/entityresolution/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/es/2015-01-01/api-2.json.php %%WWWDIR%%/Aws/data/es/2015-01-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/es/2015-01-01/endpoint-tests-1.json.php @@ -1655,6 +1976,12 @@ %%WWWDIR%%/Aws/data/evidently/2021-02-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/evidently/2021-02-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/evidently/2021-02-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/api-2.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/smoke.json.php +%%WWWDIR%%/Aws/data/evs/2023-07-27/waiters-2.json.php %%WWWDIR%%/Aws/data/finspace-data/2020-07-13/api-2.json.php %%WWWDIR%%/Aws/data/finspace-data/2020-07-13/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/finspace-data/2020-07-13/endpoint-tests-1.json.php @@ -1688,6 +2015,12 @@ %%WWWDIR%%/Aws/data/frauddetector/2019-11-15/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/frauddetector/2019-11-15/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/frauddetector/2019-11-15/paginators-1.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/api-2.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/paginators-1.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/smoke.json.php +%%WWWDIR%%/Aws/data/freetier/2023-09-07/waiters-2.json.php %%WWWDIR%%/Aws/data/fsx/2018-03-01/api-2.json.php %%WWWDIR%%/Aws/data/fsx/2018-03-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/fsx/2018-03-01/endpoint-tests-1.json.php @@ -1697,10 +2030,24 @@ %%WWWDIR%%/Aws/data/gamelift/2015-10-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/gamelift/2015-10-01/paginators-1.json.php %%WWWDIR%%/Aws/data/gamelift/2015-10-01/smoke.json.php -%%WWWDIR%%/Aws/data/gamesparks/2021-08-17/api-2.json.php -%%WWWDIR%%/Aws/data/gamesparks/2021-08-17/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/gamesparks/2021-08-17/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/gamesparks/2021-08-17/paginators-1.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/gameliftstreams/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/geo-maps/2020-11-19/api-2.json.php +%%WWWDIR%%/Aws/data/geo-maps/2020-11-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/geo-maps/2020-11-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/geo-maps/2020-11-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/geo-places/2020-11-19/api-2.json.php +%%WWWDIR%%/Aws/data/geo-places/2020-11-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/geo-places/2020-11-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/geo-places/2020-11-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/geo-routes/2020-11-19/api-2.json.php +%%WWWDIR%%/Aws/data/geo-routes/2020-11-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/geo-routes/2020-11-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/geo-routes/2020-11-19/paginators-1.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/api-2.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/glacier/2012-06-01/endpoint-tests-1.json.php @@ -1747,10 +2094,7 @@ %%WWWDIR%%/Aws/data/healthlake/2017-07-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/healthlake/2017-07-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/healthlake/2017-07-01/paginators-1.json.php -%%WWWDIR%%/Aws/data/honeycode/2020-03-01/api-2.json.php -%%WWWDIR%%/Aws/data/honeycode/2020-03-01/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/honeycode/2020-03-01/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/honeycode/2020-03-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/healthlake/2017-07-01/waiters-2.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/api-2.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/iam/2010-05-08/endpoint-tests-1.json.php @@ -1769,6 +2113,10 @@ %%WWWDIR%%/Aws/data/importexport/2010-06-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/importexport/2010-06-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/importexport/2010-06-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/inspector-scan/2023-08-08/api-2.json.php +%%WWWDIR%%/Aws/data/inspector-scan/2023-08-08/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/inspector-scan/2023-08-08/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/inspector-scan/2023-08-08/paginators-1.json.php %%WWWDIR%%/Aws/data/inspector/2016-02-16/api-2.json.php %%WWWDIR%%/Aws/data/inspector/2016-02-16/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/inspector/2016-02-16/endpoint-tests-1.json.php @@ -1784,26 +2132,25 @@ %%WWWDIR%%/Aws/data/internetmonitor/2021-06-03/paginators-1.json.php %%WWWDIR%%/Aws/data/internetmonitor/2021-06-03/smoke.json.php %%WWWDIR%%/Aws/data/internetmonitor/2021-06-03/waiters-2.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/api-2.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/smoke.json.php +%%WWWDIR%%/Aws/data/invoicing/2024-12-01/waiters-2.json.php %%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/api-2.json.php %%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/iot-jobs-data/2017-09-29/paginators-1.json.php -%%WWWDIR%%/Aws/data/iot-roborunner/2018-05-10/api-2.json.php -%%WWWDIR%%/Aws/data/iot-roborunner/2018-05-10/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/iot-roborunner/2018-05-10/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/iot-roborunner/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/iot-managed-integrations/2025-03-03/api-2.json.php +%%WWWDIR%%/Aws/data/iot-managed-integrations/2025-03-03/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/iot-managed-integrations/2025-03-03/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/iot-managed-integrations/2025-03-03/paginators-1.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/api-2.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/paginators-1.json.php %%WWWDIR%%/Aws/data/iot/2015-05-28/smoke.json.php -%%WWWDIR%%/Aws/data/iot1click-devices/2018-05-14/api-2.json.php -%%WWWDIR%%/Aws/data/iot1click-devices/2018-05-14/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/iot1click-devices/2018-05-14/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/api-2.json.php -%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/iot1click-projects/2018-05-14/paginators-1.json.php %%WWWDIR%%/Aws/data/iotanalytics/2017-11-27/api-2.json.php %%WWWDIR%%/Aws/data/iotanalytics/2017-11-27/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/iotanalytics/2017-11-27/endpoint-tests-1.json.php @@ -1857,6 +2204,8 @@ %%WWWDIR%%/Aws/data/ivs-realtime/2020-07-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ivs-realtime/2020-07-14/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ivs-realtime/2020-07-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/ivs-realtime/2020-07-14/smoke.json.php +%%WWWDIR%%/Aws/data/ivs-realtime/2020-07-14/waiters-2.json.php %%WWWDIR%%/Aws/data/ivs/2020-07-14/api-2.json.php %%WWWDIR%%/Aws/data/ivs/2020-07-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ivs/2020-07-14/endpoint-tests-1.json.php @@ -1865,6 +2214,8 @@ %%WWWDIR%%/Aws/data/ivschat/2020-07-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ivschat/2020-07-14/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ivschat/2020-07-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/ivschat/2020-07-14/smoke.json.php +%%WWWDIR%%/Aws/data/ivschat/2020-07-14/waiters-2.json.php %%WWWDIR%%/Aws/data/kafka/2018-11-14/api-2.json.php %%WWWDIR%%/Aws/data/kafka/2018-11-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/kafka/2018-11-14/endpoint-tests-1.json.php @@ -1873,6 +2224,8 @@ %%WWWDIR%%/Aws/data/kafkaconnect/2021-09-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/kafkaconnect/2021-09-14/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/kafkaconnect/2021-09-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/kafkaconnect/2021-09-14/smoke.json.php +%%WWWDIR%%/Aws/data/kafkaconnect/2021-09-14/waiters-2.json.php %%WWWDIR%%/Aws/data/kendra-ranking/2022-10-19/api-2.json.php %%WWWDIR%%/Aws/data/kendra-ranking/2022-10-19/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/kendra-ranking/2022-10-19/endpoint-tests-1.json.php @@ -1887,6 +2240,11 @@ %%WWWDIR%%/Aws/data/keyspaces/2022-02-10/paginators-1.json.php %%WWWDIR%%/Aws/data/keyspaces/2022-02-10/smoke.json.php %%WWWDIR%%/Aws/data/keyspaces/2022-02-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/keyspacesstreams/2024-09-09/api-2.json.php +%%WWWDIR%%/Aws/data/keyspacesstreams/2024-09-09/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/keyspacesstreams/2024-09-09/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/keyspacesstreams/2024-09-09/paginators-1.json.php +%%WWWDIR%%/Aws/data/keyspacesstreams/2024-09-09/smoke.json.php %%WWWDIR%%/Aws/data/kinesis-video-archived-media/2017-09-30/api-2.json.php %%WWWDIR%%/Aws/data/kinesis-video-archived-media/2017-09-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/kinesis-video-archived-media/2017-09-30/endpoint-tests-1.json.php @@ -1936,6 +2294,10 @@ %%WWWDIR%%/Aws/data/lambda/2015-03-31/paginators-1.json.php %%WWWDIR%%/Aws/data/lambda/2015-03-31/smoke.json.php %%WWWDIR%%/Aws/data/lambda/2015-03-31/waiters-2.json.php +%%WWWDIR%%/Aws/data/launch-wizard/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/launch-wizard/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/launch-wizard/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/launch-wizard/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/lex-models/2017-04-19/api-2.json.php %%WWWDIR%%/Aws/data/lex-models/2017-04-19/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/lex-models/2017-04-19/endpoint-tests-1.json.php @@ -1948,6 +2310,8 @@ %%WWWDIR%%/Aws/data/license-manager-user-subscriptions/2018-05-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/license-manager-user-subscriptions/2018-05-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/license-manager-user-subscriptions/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/license-manager-user-subscriptions/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/license-manager-user-subscriptions/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/license-manager/2018-08-01/api-2.json.php %%WWWDIR%%/Aws/data/license-manager/2018-08-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/license-manager/2018-08-01/endpoint-tests-1.json.php @@ -1987,24 +2351,46 @@ %%WWWDIR%%/Aws/data/machinelearning/2014-12-12/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/machinelearning/2014-12-12/paginators-1.json.php %%WWWDIR%%/Aws/data/machinelearning/2014-12-12/waiters-2.json.php -%%WWWDIR%%/Aws/data/macie/2017-12-19/api-2.json.php -%%WWWDIR%%/Aws/data/macie/2017-12-19/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/macie/2017-12-19/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/macie/2017-12-19/paginators-1.json.php %%WWWDIR%%/Aws/data/macie2/2020-01-01/api-2.json.php %%WWWDIR%%/Aws/data/macie2/2020-01-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/macie2/2020-01-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/macie2/2020-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/macie2/2020-01-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/api-2.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/paginators-1.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/smoke.json.php +%%WWWDIR%%/Aws/data/mailmanager/2023-10-17/waiters-2.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/api-2.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/paginators-1.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/smoke.json.php +%%WWWDIR%%/Aws/data/managedblockchain-query/2023-05-04/waiters-2.json.php %%WWWDIR%%/Aws/data/managedblockchain/2018-09-24/api-2.json.php %%WWWDIR%%/Aws/data/managedblockchain/2018-09-24/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/managedblockchain/2018-09-24/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/managedblockchain/2018-09-24/paginators-1.json.php %%WWWDIR%%/Aws/data/manifest.json.php +%%WWWDIR%%/Aws/data/marketplace-agreement/2020-03-01/api-2.json.php +%%WWWDIR%%/Aws/data/marketplace-agreement/2020-03-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/marketplace-agreement/2020-03-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/marketplace-agreement/2020-03-01/paginators-1.json.php %%WWWDIR%%/Aws/data/marketplace-catalog/2018-09-17/api-2.json.php %%WWWDIR%%/Aws/data/marketplace-catalog/2018-09-17/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/marketplace-catalog/2018-09-17/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/marketplace-catalog/2018-09-17/paginators-1.json.php +%%WWWDIR%%/Aws/data/marketplace-deployment/2023-01-25/api-2.json.php +%%WWWDIR%%/Aws/data/marketplace-deployment/2023-01-25/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/marketplace-deployment/2023-01-25/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/marketplace-deployment/2023-01-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/marketplace-reporting/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/marketplacecommerceanalytics/2015-07-01/api-2.json.php %%WWWDIR%%/Aws/data/marketplacecommerceanalytics/2015-07-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/marketplacecommerceanalytics/2015-07-01/endpoint-tests-1.json.php @@ -2014,6 +2400,7 @@ %%WWWDIR%%/Aws/data/mediaconnect/2018-11-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/mediaconnect/2018-11-14/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/mediaconnect/2018-11-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/mediaconnect/2018-11-14/smoke.json.php %%WWWDIR%%/Aws/data/mediaconnect/2018-11-14/waiters-2.json.php %%WWWDIR%%/Aws/data/mediaconvert/2017-08-29/api-2.json.php %%WWWDIR%%/Aws/data/mediaconvert/2017-08-29/endpoint-rule-set-1.json.php @@ -2050,6 +2437,12 @@ %%WWWDIR%%/Aws/data/mediatailor/2018-04-23/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/mediatailor/2018-04-23/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/mediatailor/2018-04-23/paginators-1.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/api-2.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/smoke.json.php +%%WWWDIR%%/Aws/data/medical-imaging/2023-07-19/waiters-2.json.php %%WWWDIR%%/Aws/data/memorydb/2021-01-01/api-2.json.php %%WWWDIR%%/Aws/data/memorydb/2021-01-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/memorydb/2021-01-01/endpoint-tests-1.json.php @@ -2084,10 +2477,6 @@ %%WWWDIR%%/Aws/data/migrationhubstrategy/2020-02-19/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/migrationhubstrategy/2020-02-19/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/migrationhubstrategy/2020-02-19/paginators-1.json.php -%%WWWDIR%%/Aws/data/mobile/2017-07-01/api-2.json.php -%%WWWDIR%%/Aws/data/mobile/2017-07-01/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/mobile/2017-07-01/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/mobile/2017-07-01/paginators-1.json.php %%WWWDIR%%/Aws/data/models.lex.v2/2020-08-07/api-2.json.php %%WWWDIR%%/Aws/data/models.lex.v2/2020-08-07/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/models.lex.v2/2020-08-07/endpoint-tests-1.json.php @@ -2099,6 +2488,12 @@ %%WWWDIR%%/Aws/data/monitoring/2010-08-01/paginators-1.json.php %%WWWDIR%%/Aws/data/monitoring/2010-08-01/smoke.json.php %%WWWDIR%%/Aws/data/monitoring/2010-08-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/mpa/2022-07-26/waiters-2.json.php %%WWWDIR%%/Aws/data/mq/2017-11-27/api-2.json.php %%WWWDIR%%/Aws/data/mq/2017-11-27/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/mq/2017-11-27/endpoint-tests-1.json.php @@ -2112,29 +2507,69 @@ %%WWWDIR%%/Aws/data/mwaa/2020-07-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/mwaa/2020-07-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/mwaa/2020-07-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/neptune-graph/2023-11-29/api-2.json.php +%%WWWDIR%%/Aws/data/neptune-graph/2023-11-29/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/neptune-graph/2023-11-29/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/neptune-graph/2023-11-29/paginators-1.json.php +%%WWWDIR%%/Aws/data/neptune-graph/2023-11-29/waiters-2.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/api-2.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/paginators-1.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/smoke.json.php %%WWWDIR%%/Aws/data/neptune/2014-10-31/waiters-2.json.php +%%WWWDIR%%/Aws/data/neptunedata/2023-08-01/api-2.json.php +%%WWWDIR%%/Aws/data/neptunedata/2023-08-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/neptunedata/2023-08-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/neptunedata/2023-08-01/paginators-1.json.php %%WWWDIR%%/Aws/data/network-firewall/2020-11-12/api-2.json.php %%WWWDIR%%/Aws/data/network-firewall/2020-11-12/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/network-firewall/2020-11-12/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/network-firewall/2020-11-12/paginators-1.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/api-2.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/smoke.json.php +%%WWWDIR%%/Aws/data/networkflowmonitor/2023-04-19/waiters-2.json.php %%WWWDIR%%/Aws/data/networkmanager/2019-07-05/api-2.json.php %%WWWDIR%%/Aws/data/networkmanager/2019-07-05/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/networkmanager/2019-07-05/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/networkmanager/2019-07-05/paginators-1.json.php -%%WWWDIR%%/Aws/data/nimble/2020-08-01/api-2.json.php -%%WWWDIR%%/Aws/data/nimble/2020-08-01/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/nimble/2020-08-01/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/nimble/2020-08-01/paginators-1.json.php -%%WWWDIR%%/Aws/data/nimble/2020-08-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/api-2.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/smoke.json.php +%%WWWDIR%%/Aws/data/networkmonitor/2023-08-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/notifications/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/notificationscontacts/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/oam/2022-06-10/api-2.json.php %%WWWDIR%%/Aws/data/oam/2022-06-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/oam/2022-06-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/oam/2022-06-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/observabilityadmin/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/api-2.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/paginators-1.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/smoke.json.php +%%WWWDIR%%/Aws/data/odb/2024-08-20/waiters-2.json.php %%WWWDIR%%/Aws/data/omics/2022-11-28/api-2.json.php %%WWWDIR%%/Aws/data/omics/2022-11-28/defaults-1.json.php %%WWWDIR%%/Aws/data/omics/2022-11-28/endpoint-rule-set-1.json.php @@ -2151,17 +2586,8 @@ %%WWWDIR%%/Aws/data/opensearchserverless/2021-11-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/opensearchserverless/2021-11-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/opensearchserverless/2021-11-01/paginators-1.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/api-2.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/paginators-1.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/smoke.json.php -%%WWWDIR%%/Aws/data/opsworks/2013-02-18/waiters-2.json.php -%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/api-2.json.php -%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/paginators-1.json.php -%%WWWDIR%%/Aws/data/opsworkscm/2016-11-01/waiters-2.json.php +%%WWWDIR%%/Aws/data/opensearchserverless/2021-11-01/smoke.json.php +%%WWWDIR%%/Aws/data/opensearchserverless/2021-11-01/waiters-2.json.php %%WWWDIR%%/Aws/data/organizations/2016-11-28/api-2.json.php %%WWWDIR%%/Aws/data/organizations/2016-11-28/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/organizations/2016-11-28/endpoint-tests-1.json.php @@ -2179,14 +2605,40 @@ %%WWWDIR%%/Aws/data/panorama/2019-07-24/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/panorama/2019-07-24/paginators-1.json.php %%WWWDIR%%/Aws/data/partitions.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/partnercentral-selling/2022-07-26/waiters-2.json.php %%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/api-2.json.php %%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/paginators-1.json.php +%%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/smoke.json.php +%%WWWDIR%%/Aws/data/payment-cryptography-data/2022-02-03/waiters-2.json.php %%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/api-2.json.php %%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/paginators-1.json.php +%%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/smoke.json.php +%%WWWDIR%%/Aws/data/payment-cryptography/2021-09-14/waiters-2.json.php +%%WWWDIR%%/Aws/data/pca-connector-ad/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/pca-connector-ad/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-ad/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-ad/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/pca-connector-scep/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/api-2.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/smoke.json.php +%%WWWDIR%%/Aws/data/pcs/2023-02-10/waiters-2.json.php %%WWWDIR%%/Aws/data/personalize-events/2018-03-22/api-2.json.php %%WWWDIR%%/Aws/data/personalize-events/2018-03-22/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/personalize-events/2018-03-22/endpoint-tests-1.json.php @@ -2220,6 +2672,8 @@ %%WWWDIR%%/Aws/data/pipes/2015-10-07/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/pipes/2015-10-07/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/pipes/2015-10-07/paginators-1.json.php +%%WWWDIR%%/Aws/data/pipes/2015-10-07/smoke.json.php +%%WWWDIR%%/Aws/data/pipes/2015-10-07/waiters-2.json.php %%WWWDIR%%/Aws/data/polly/2016-06-10/api-2.json.php %%WWWDIR%%/Aws/data/polly/2016-06-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/polly/2016-06-10/endpoint-tests-1.json.php @@ -2231,16 +2685,29 @@ %%WWWDIR%%/Aws/data/pricing/2017-10-15/paginators-1.json.php %%WWWDIR%%/Aws/data/pricing/2017-10-15/smoke.json.php %%WWWDIR%%/Aws/data/pricing/2017-10-15/waiters-2.json.php -%%WWWDIR%%/Aws/data/privatenetworks/2021-12-03/api-2.json.php -%%WWWDIR%%/Aws/data/privatenetworks/2021-12-03/defaults-1.json.php -%%WWWDIR%%/Aws/data/privatenetworks/2021-12-03/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/privatenetworks/2021-12-03/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/privatenetworks/2021-12-03/paginators-1.json.php %%WWWDIR%%/Aws/data/proton/2020-07-20/api-2.json.php %%WWWDIR%%/Aws/data/proton/2020-07-20/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/proton/2020-07-20/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/proton/2020-07-20/paginators-1.json.php %%WWWDIR%%/Aws/data/proton/2020-07-20/waiters-2.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/api-2.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/smoke.json.php +%%WWWDIR%%/Aws/data/qapps/2023-11-27/waiters-2.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/api-2.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/smoke.json.php +%%WWWDIR%%/Aws/data/qbusiness/2023-11-27/waiters-2.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/api-2.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/paginators-1.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/smoke.json.php +%%WWWDIR%%/Aws/data/qconnect/2020-10-19/waiters-2.json.php %%WWWDIR%%/Aws/data/qldb-session/2019-07-11/api-2.json.php %%WWWDIR%%/Aws/data/qldb-session/2019-07-11/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/qldb-session/2019-07-11/endpoint-tests-1.json.php @@ -2298,6 +2765,12 @@ %%WWWDIR%%/Aws/data/rekognition/2016-06-27/paginators-1.json.php %%WWWDIR%%/Aws/data/rekognition/2016-06-27/smoke.json.php %%WWWDIR%%/Aws/data/rekognition/2016-06-27/waiters-2.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/api-2.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/paginators-1.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/smoke.json.php +%%WWWDIR%%/Aws/data/repostspace/2022-05-13/waiters-2.json.php %%WWWDIR%%/Aws/data/resiliencehub/2020-04-30/api-2.json.php %%WWWDIR%%/Aws/data/resiliencehub/2020-04-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/resiliencehub/2020-04-30/endpoint-tests-1.json.php @@ -2306,6 +2779,8 @@ %%WWWDIR%%/Aws/data/resource-explorer-2/2022-07-28/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/resource-explorer-2/2022-07-28/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/resource-explorer-2/2022-07-28/paginators-1.json.php +%%WWWDIR%%/Aws/data/resource-explorer-2/2022-07-28/smoke.json.php +%%WWWDIR%%/Aws/data/resource-explorer-2/2022-07-28/waiters-2.json.php %%WWWDIR%%/Aws/data/resource-groups/2017-11-27/api-2.json.php %%WWWDIR%%/Aws/data/resource-groups/2017-11-27/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/resource-groups/2017-11-27/endpoint-tests-1.json.php @@ -2346,6 +2821,10 @@ %%WWWDIR%%/Aws/data/route53domains/2014-05-15/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/route53domains/2014-05-15/paginators-1.json.php %%WWWDIR%%/Aws/data/route53domains/2014-05-15/smoke.json.php +%%WWWDIR%%/Aws/data/route53profiles/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/route53profiles/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/route53profiles/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/route53profiles/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/route53resolver/2018-04-01/api-2.json.php %%WWWDIR%%/Aws/data/route53resolver/2018-04-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/route53resolver/2018-04-01/endpoint-tests-1.json.php @@ -2382,6 +2861,18 @@ %%WWWDIR%%/Aws/data/s3outposts/2017-07-25/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/s3outposts/2017-07-25/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/s3outposts/2017-07-25/paginators-1.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/s3tables/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/api-2.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/paginators-1.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/smoke.json.php +%%WWWDIR%%/Aws/data/s3vectors/2025-07-15/waiters-2.json.php %%WWWDIR%%/Aws/data/sagemaker-a2i-runtime/2019-11-07/api-2.json.php %%WWWDIR%%/Aws/data/sagemaker-a2i-runtime/2019-11-07/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/sagemaker-a2i-runtime/2019-11-07/endpoint-tests-1.json.php @@ -2426,6 +2917,12 @@ %%WWWDIR%%/Aws/data/secretsmanager/2017-10-17/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/secretsmanager/2017-10-17/paginators-1.json.php %%WWWDIR%%/Aws/data/secretsmanager/2017-10-17/smoke.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/paginators-1.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/smoke.json.php +%%WWWDIR%%/Aws/data/security-ir/2018-05-10/waiters-2.json.php %%WWWDIR%%/Aws/data/securityhub/2018-10-26/api-2.json.php %%WWWDIR%%/Aws/data/securityhub/2018-10-26/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/securityhub/2018-10-26/endpoint-tests-1.json.php @@ -2476,11 +2973,6 @@ %%WWWDIR%%/Aws/data/sms-voice/2018-09-05/api-2.json.php %%WWWDIR%%/Aws/data/sms-voice/2018-09-05/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/sms-voice/2018-09-05/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/sms/2016-10-24/api-2.json.php -%%WWWDIR%%/Aws/data/sms/2016-10-24/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/sms/2016-10-24/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/sms/2016-10-24/paginators-1.json.php -%%WWWDIR%%/Aws/data/sms/2016-10-24/smoke.json.php %%WWWDIR%%/Aws/data/snow-device-management/2021-08-04/api-2.json.php %%WWWDIR%%/Aws/data/snow-device-management/2021-08-04/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/snow-device-management/2021-08-04/endpoint-tests-1.json.php @@ -2495,6 +2987,10 @@ %%WWWDIR%%/Aws/data/sns/2010-03-31/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/sns/2010-03-31/paginators-1.json.php %%WWWDIR%%/Aws/data/sns/2010-03-31/smoke.json.php +%%WWWDIR%%/Aws/data/socialmessaging/2024-01-01/api-2.json.php +%%WWWDIR%%/Aws/data/socialmessaging/2024-01-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/socialmessaging/2024-01-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/socialmessaging/2024-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/api-2.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/sqs/2012-11-05/endpoint-tests-1.json.php @@ -2505,11 +3001,19 @@ %%WWWDIR%%/Aws/data/ssm-contacts/2021-05-03/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ssm-contacts/2021-05-03/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ssm-contacts/2021-05-03/paginators-1.json.php +%%WWWDIR%%/Aws/data/ssm-guiconnect/2021-05-01/api-2.json.php +%%WWWDIR%%/Aws/data/ssm-guiconnect/2021-05-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/ssm-guiconnect/2021-05-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/ssm-guiconnect/2021-05-01/paginators-1.json.php %%WWWDIR%%/Aws/data/ssm-incidents/2018-05-10/api-2.json.php %%WWWDIR%%/Aws/data/ssm-incidents/2018-05-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ssm-incidents/2018-05-10/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/ssm-incidents/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/ssm-incidents/2018-05-10/waiters-2.json.php +%%WWWDIR%%/Aws/data/ssm-quicksetup/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/ssm-quicksetup/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/ssm-quicksetup/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/ssm-quicksetup/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/ssm-sap/2018-05-10/api-2.json.php %%WWWDIR%%/Aws/data/ssm-sap/2018-05-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/ssm-sap/2018-05-10/endpoint-tests-1.json.php @@ -2524,6 +3028,8 @@ %%WWWDIR%%/Aws/data/sso-admin/2020-07-20/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/sso-admin/2020-07-20/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/sso-admin/2020-07-20/paginators-1.json.php +%%WWWDIR%%/Aws/data/sso-admin/2020-07-20/smoke.json.php +%%WWWDIR%%/Aws/data/sso-admin/2020-07-20/waiters-2.json.php %%WWWDIR%%/Aws/data/sso-oidc/2019-06-10/api-2.json.php %%WWWDIR%%/Aws/data/sso-oidc/2019-06-10/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/sso-oidc/2019-06-10/endpoint-tests-1.json.php @@ -2550,6 +3056,10 @@ %%WWWDIR%%/Aws/data/sts/2011-06-15/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/sts/2011-06-15/paginators-1.json.php %%WWWDIR%%/Aws/data/sts/2011-06-15/smoke.json.php +%%WWWDIR%%/Aws/data/supplychain/2024-01-01/api-2.json.php +%%WWWDIR%%/Aws/data/supplychain/2024-01-01/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/supplychain/2024-01-01/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/supplychain/2024-01-01/paginators-1.json.php %%WWWDIR%%/Aws/data/support-app/2021-08-20/api-2.json.php %%WWWDIR%%/Aws/data/support-app/2021-08-20/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/support-app/2021-08-20/endpoint-tests-1.json.php @@ -2568,10 +3078,18 @@ %%WWWDIR%%/Aws/data/synthetics/2017-10-11/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/synthetics/2017-10-11/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/synthetics/2017-10-11/paginators-1.json.php +%%WWWDIR%%/Aws/data/taxsettings/2018-05-10/api-2.json.php +%%WWWDIR%%/Aws/data/taxsettings/2018-05-10/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/taxsettings/2018-05-10/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/taxsettings/2018-05-10/paginators-1.json.php %%WWWDIR%%/Aws/data/textract/2018-06-27/api-2.json.php %%WWWDIR%%/Aws/data/textract/2018-06-27/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/textract/2018-06-27/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/textract/2018-06-27/paginators-1.json.php +%%WWWDIR%%/Aws/data/timestream-influxdb/2023-01-27/api-2.json.php +%%WWWDIR%%/Aws/data/timestream-influxdb/2023-01-27/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/timestream-influxdb/2023-01-27/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/timestream-influxdb/2023-01-27/paginators-1.json.php %%WWWDIR%%/Aws/data/timestream-query/2018-11-01/api-2.json.php %%WWWDIR%%/Aws/data/timestream-query/2018-11-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/timestream-query/2018-11-01/endpoint-tests-1.json.php @@ -2598,6 +3116,10 @@ %%WWWDIR%%/Aws/data/translate/2017-07-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/translate/2017-07-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/translate/2017-07-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/trustedadvisor/2022-09-15/api-2.json.php +%%WWWDIR%%/Aws/data/trustedadvisor/2022-09-15/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/trustedadvisor/2022-09-15/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/trustedadvisor/2022-09-15/paginators-1.json.php %%WWWDIR%%/Aws/data/verifiedpermissions/2021-12-01/api-2.json.php %%WWWDIR%%/Aws/data/verifiedpermissions/2021-12-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/verifiedpermissions/2021-12-01/endpoint-tests-1.json.php @@ -2612,6 +3134,8 @@ %%WWWDIR%%/Aws/data/vpc-lattice/2022-11-30/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/vpc-lattice/2022-11-30/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/vpc-lattice/2022-11-30/paginators-1.json.php +%%WWWDIR%%/Aws/data/vpc-lattice/2022-11-30/smoke.json.php +%%WWWDIR%%/Aws/data/vpc-lattice/2022-11-30/waiters-2.json.php %%WWWDIR%%/Aws/data/waf-regional/2016-11-28/api-2.json.php %%WWWDIR%%/Aws/data/waf-regional/2016-11-28/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/waf-regional/2016-11-28/endpoint-tests-1.json.php @@ -2639,10 +3163,6 @@ %%WWWDIR%%/Aws/data/workdocs/2016-05-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/workdocs/2016-05-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/workdocs/2016-05-01/paginators-1.json.php -%%WWWDIR%%/Aws/data/worklink/2018-09-25/api-2.json.php -%%WWWDIR%%/Aws/data/worklink/2018-09-25/endpoint-rule-set-1.json.php -%%WWWDIR%%/Aws/data/worklink/2018-09-25/endpoint-tests-1.json.php -%%WWWDIR%%/Aws/data/worklink/2018-09-25/paginators-1.json.php %%WWWDIR%%/Aws/data/workmail/2017-10-01/api-2.json.php %%WWWDIR%%/Aws/data/workmail/2017-10-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/workmail/2017-10-01/endpoint-tests-1.json.php @@ -2651,10 +3171,22 @@ %%WWWDIR%%/Aws/data/workmailmessageflow/2019-05-01/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/workmailmessageflow/2019-05-01/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/workmailmessageflow/2019-05-01/paginators-1.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/api-2.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/paginators-1.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/smoke.json.php +%%WWWDIR%%/Aws/data/workspaces-instances/2022-07-26/waiters-2.json.php +%%WWWDIR%%/Aws/data/workspaces-thin-client/2023-08-22/api-2.json.php +%%WWWDIR%%/Aws/data/workspaces-thin-client/2023-08-22/endpoint-rule-set-1.json.php +%%WWWDIR%%/Aws/data/workspaces-thin-client/2023-08-22/endpoint-tests-1.json.php +%%WWWDIR%%/Aws/data/workspaces-thin-client/2023-08-22/paginators-1.json.php %%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/api-2.json.php %%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/endpoint-tests-1.json.php %%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/paginators-1.json.php +%%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/smoke.json.php +%%WWWDIR%%/Aws/data/workspaces-web/2020-07-08/waiters-2.json.php %%WWWDIR%%/Aws/data/workspaces/2015-04-08/api-2.json.php %%WWWDIR%%/Aws/data/workspaces/2015-04-08/endpoint-rule-set-1.json.php %%WWWDIR%%/Aws/data/workspaces/2015-04-08/endpoint-tests-1.json.php @@ -2680,8 +3212,11 @@ %%WWWDIR%%/Aws/signer/Exception/signerException.php %%WWWDIR%%/Aws/signer/signerClient.php %%WWWDIR%%/CHANGELOG.md +%%WWWDIR%%/GuzzleHttp/BodySummarizer.php +%%WWWDIR%%/GuzzleHttp/BodySummarizerInterface.php %%WWWDIR%%/GuzzleHttp/Client.php %%WWWDIR%%/GuzzleHttp/ClientInterface.php +%%WWWDIR%%/GuzzleHttp/ClientTrait.php %%WWWDIR%%/GuzzleHttp/Cookie/CookieJar.php %%WWWDIR%%/GuzzleHttp/Cookie/CookieJarInterface.php %%WWWDIR%%/GuzzleHttp/Cookie/FileCookieJar.php @@ -2693,7 +3228,6 @@ %%WWWDIR%%/GuzzleHttp/Exception/GuzzleException.php %%WWWDIR%%/GuzzleHttp/Exception/InvalidArgumentException.php %%WWWDIR%%/GuzzleHttp/Exception/RequestException.php -%%WWWDIR%%/GuzzleHttp/Exception/SeekException.php %%WWWDIR%%/GuzzleHttp/Exception/ServerException.php %%WWWDIR%%/GuzzleHttp/Exception/TooManyRedirectsException.php %%WWWDIR%%/GuzzleHttp/Exception/TransferException.php @@ -2702,11 +3236,13 @@ %%WWWDIR%%/GuzzleHttp/Handler/CurlHandler.php %%WWWDIR%%/GuzzleHttp/Handler/CurlMultiHandler.php %%WWWDIR%%/GuzzleHttp/Handler/EasyHandle.php +%%WWWDIR%%/GuzzleHttp/Handler/HeaderProcessor.php %%WWWDIR%%/GuzzleHttp/Handler/MockHandler.php %%WWWDIR%%/GuzzleHttp/Handler/Proxy.php %%WWWDIR%%/GuzzleHttp/Handler/StreamHandler.php %%WWWDIR%%/GuzzleHttp/HandlerStack.php %%WWWDIR%%/GuzzleHttp/MessageFormatter.php +%%WWWDIR%%/GuzzleHttp/MessageFormatterInterface.php %%WWWDIR%%/GuzzleHttp/Middleware.php %%WWWDIR%%/GuzzleHttp/Pool.php %%WWWDIR%%/GuzzleHttp/PrepareBodyMiddleware.php @@ -2726,14 +3262,14 @@ %%WWWDIR%%/GuzzleHttp/Promise/TaskQueue.php %%WWWDIR%%/GuzzleHttp/Promise/TaskQueueInterface.php %%WWWDIR%%/GuzzleHttp/Promise/Utils.php -%%WWWDIR%%/GuzzleHttp/Promise/functions.php -%%WWWDIR%%/GuzzleHttp/Promise/functions_include.php %%WWWDIR%%/GuzzleHttp/Psr7/AppendStream.php %%WWWDIR%%/GuzzleHttp/Psr7/BufferStream.php %%WWWDIR%%/GuzzleHttp/Psr7/CachingStream.php %%WWWDIR%%/GuzzleHttp/Psr7/DroppingStream.php +%%WWWDIR%%/GuzzleHttp/Psr7/Exception/MalformedUriException.php %%WWWDIR%%/GuzzleHttp/Psr7/FnStream.php %%WWWDIR%%/GuzzleHttp/Psr7/Header.php +%%WWWDIR%%/GuzzleHttp/Psr7/HttpFactory.php %%WWWDIR%%/GuzzleHttp/Psr7/InflateStream.php %%WWWDIR%%/GuzzleHttp/Psr7/LazyOpenStream.php %%WWWDIR%%/GuzzleHttp/Psr7/LimitStream.php @@ -2757,13 +3293,10 @@ %%WWWDIR%%/GuzzleHttp/Psr7/UriNormalizer.php %%WWWDIR%%/GuzzleHttp/Psr7/UriResolver.php %%WWWDIR%%/GuzzleHttp/Psr7/Utils.php -%%WWWDIR%%/GuzzleHttp/Psr7/functions.php -%%WWWDIR%%/GuzzleHttp/Psr7/functions_include.php %%WWWDIR%%/GuzzleHttp/RedirectMiddleware.php %%WWWDIR%%/GuzzleHttp/RequestOptions.php %%WWWDIR%%/GuzzleHttp/RetryMiddleware.php %%WWWDIR%%/GuzzleHttp/TransferStats.php -%%WWWDIR%%/GuzzleHttp/UriTemplate.php %%WWWDIR%%/GuzzleHttp/Utils.php %%WWWDIR%%/GuzzleHttp/functions.php %%WWWDIR%%/GuzzleHttp/functions_include.php @@ -2781,6 +3314,10 @@ %%WWWDIR%%/JmesPath/Utils.php %%WWWDIR%%/LICENSE %%WWWDIR%%/NOTICE +%%WWWDIR%%/Psr/Http/Client/ClientExceptionInterface.php +%%WWWDIR%%/Psr/Http/Client/ClientInterface.php +%%WWWDIR%%/Psr/Http/Client/NetworkExceptionInterface.php +%%WWWDIR%%/Psr/Http/Client/RequestExceptionInterface.php %%WWWDIR%%/Psr/Http/Message/MessageInterface.php %%WWWDIR%%/Psr/Http/Message/RequestInterface.php %%WWWDIR%%/Psr/Http/Message/ResponseInterface.php @@ -2789,17 +3326,4 @@ %%WWWDIR%%/Psr/Http/Message/UploadedFileInterface.php %%WWWDIR%%/Psr/Http/Message/UriInterface.php %%WWWDIR%%/README.md -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Idn.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Info.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/LICENSE -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/DisallowedRanges.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/Regex.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/deviation.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/disallowed.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/disallowed_STD3_mapped.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/disallowed_STD3_valid.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/ignored.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/mapped.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/Resources/unidata/virama.php -%%WWWDIR%%/Symfony/Polyfill/Intl/Idn/bootstrap.php %%WWWDIR%%/aws-autoloader.php diff --git a/devel/efivar/Makefile b/devel/efivar/Makefile index 5e30a4f9a215..f8dcfa0620f3 100644 --- a/devel/efivar/Makefile +++ b/devel/efivar/Makefile @@ -1,53 +1,28 @@ PORTNAME= efivar -PORTVERSION= 0.15 -PORTREVISION= 9 +PORTVERSION= 39 CATEGORIES= devel -MAINTAINER= ports@FreeBSD.org -COMMENT= Tools and library to manipulate EFI variables +MAINTAINER= decke@FreeBSD.org +COMMENT= Tools and libraries to work with EFI variables WWW= https://github.com/rhboot/efivar LICENSE= LGPL21 NOT_FOR_ARCHS= powerpc powerpc64 powerpcspe NOT_FOR_ARCHS_REASON= specification only supports little-endian processors +BROKEN_FreeBSD_13= requires at least FreeBSD 14 +BUILD_DEPENDS= gsed:textproc/gsed LIB_DEPENDS= libpopt.so:devel/popt -CFLAGS+= -fpermissive +USES= gmake pkgconfig python -USES= gmake localbase pkgconfig USE_GCC= yes USE_GITHUB= yes GH_ACCOUNT= rhboot USE_LDCONFIG= yes +BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed -.include <bsd.port.pre.mk> - -post-patch: - @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/src/efivar.pc.in - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/efivar ${STAGEDIR}${PREFIX}/bin - ${INSTALL_LIB} ${WRKSRC}/src/libefivar.so ${STAGEDIR}${PREFIX}/lib - ${INSTALL_LIB} ${WRKSRC}/src/libefivar.so.0 ${STAGEDIR}${PREFIX}/lib - ${INSTALL_DATA} ${WRKSRC}/src/efivar.h ${STAGEDIR}${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/src/efivar-guids.h ${STAGEDIR}${PREFIX}/include - ${INSTALL_DATA} ${WRKSRC}/src/efivar.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig - ${INSTALL_MAN} ${WRKSRC}/docs/efivar.1 ${STAGEDIR}${PREFIX}/share/man/man1 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_append_variable.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_del_variable.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_get_next_variable_name.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_get_variable.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_get_variable_attributes.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_get_variable_size.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_guid_to_name.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_guid_to_str.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_guid_to_symbol.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_name_to_guid.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_set_variable.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_str_to_guid.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_symbol_to_guid.3 ${STAGEDIR}${PREFIX}/share/man/man3 - ${INSTALL_MAN} ${WRKSRC}/docs/efi_variables_supported.3 ${STAGEDIR}${PREFIX}/share/man/man3 - -.include <bsd.port.post.mk> +MAKE_ARGS+= CC="${CC}" LIBDIR="${PREFIX}/lib" + +.include <bsd.port.mk> diff --git a/devel/efivar/distinfo b/devel/efivar/distinfo index 4d6a04753aca..77a79246775d 100644 --- a/devel/efivar/distinfo +++ b/devel/efivar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1544125008 -SHA256 (rhboot-efivar-0.15_GH0.tar.gz) = 8e5a45ebbd116a96a43176e96b211c73f3ec8452da3bd0ce75a5716f86d4343f -SIZE (rhboot-efivar-0.15_GH0.tar.gz) = 30064 +TIMESTAMP = 1730568659 +SHA256 (rhboot-efivar-39_GH0.tar.gz) = c9edd15f2eeeea63232f3e669a48e992c7be9aff57ee22672ac31f5eca1609a6 +SIZE (rhboot-efivar-39_GH0.tar.gz) = 463349 diff --git a/devel/efivar/files/patch-Make.rules b/devel/efivar/files/patch-Make.rules deleted file mode 100644 index 24d302516477..000000000000 --- a/devel/efivar/files/patch-Make.rules +++ /dev/null @@ -1,15 +0,0 @@ ---- Make.rules.orig 2014-10-15 13:48:49 UTC -+++ Make.rules -@@ -2,10 +2,10 @@ - $(AR) -cvqs $@ $^ - - % : %.o -- $(CCLD) $(ccldflags) -o $@ $^ $(foreach lib,$(LIBS),-l$(lib)) -+ $(CCLD) $(ccldflags) -o $@ $^ $(LIBS) - - %.so.$(SONAME_VERSION) : -- $(CCLD) $(cflags) -Wl,-soname,$(SONAME) $(ccldflags) $(LIBFLAGS) $^ -o $@ $(foreach lib,$(LIBS),-l$(lib)) -+ $(CCLD) $(cflags) -Wl,-soname,$(SONAME) $(ccldflags) $(LIBFLAGS) $^ -o $@ $(LIBS) - - %.so : %.so.$(SONAME_VERSION) - ln -sf $^ $@ diff --git a/devel/efivar/files/patch-src-Makefile b/devel/efivar/files/patch-src-Makefile deleted file mode 100644 index f0fdf02e6ac4..000000000000 --- a/devel/efivar/files/patch-src-Makefile +++ /dev/null @@ -1,18 +0,0 @@ ---- src/Makefile.orig 2014-10-15 13:48:49 UTC -+++ src/Makefile -@@ -15,14 +15,13 @@ all : $(LIBTARGETS) $(PCTARGETS) $(BINTA - OBJECTS = lib.o vars.o efivarfs.o guid.o guidlist.o guid-symbols.o - DEPS = .lib.c.P .efivar.c.P .efivar.h.P .vars.c.P .lib.h.P \ - .generics.h.P .guid.h.P .guid.c.P --LIBS = dl - - libefivar.a :: $(OBJECTS) - - libefivar.so.$(SONAME_VERSION) :: $(OBJECTS) - - efivar : efivar.o libefivar.so -- $(CCLD) $(ccldflags) -L. -lefivar -o $@ $^ -lpopt $(foreach lib,$(LIBS),-l$(lib)) -+ $(CCLD) $(ccldflags) -L. -lefivar -o $@ $^ -lpopt $(LIBS) - - efivar.pc : efivar.pc.in - sed -e "s,@@VERSION@@,$(VERSION),g" \ diff --git a/devel/efivar/files/patch-src-efivar.c b/devel/efivar/files/patch-src-efivar.c deleted file mode 100644 index a06dddab8713..000000000000 --- a/devel/efivar/files/patch-src-efivar.c +++ /dev/null @@ -1,51 +0,0 @@ ---- src/efivar.c.orig 2014-10-15 15:48:49.000000000 +0200 -+++ src/efivar.c 2015-01-19 15:41:34.000000000 +0100 -@@ -16,11 +16,11 @@ - * along with this library. If not, see <http://www.gnu.org/licenses/>. - */ - --#include <ctype.h> - #include <fcntl.h> - #include <popt.h> - #include <stdio.h> - #include <stdlib.h> -+#include <sys/endian.h> - #include <sys/mman.h> - #include <sys/types.h> - #include <sys/stat.h> -@@ -53,7 +53,7 @@ list_all_variables(void) - int rc; - while ((rc = efi_get_next_variable_name(&guid, &name)) > 0) - printf(GUID_FORMAT "-%s\n", -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5], name); - -@@ -142,7 +142,7 @@ show_variable(char *guid_name) - } - - printf("GUID: "GUID_FORMAT "\n", -- guid.a, guid.b, guid.c, bswap_16(guid.d), -+ guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], guid.e[3], - guid.e[4], guid.e[5]); - printf("Name: \"%s\"\n", name); -@@ -240,7 +240,7 @@ prepare_data(const char *filename, void - goto err; - - buflen = statbuf.st_size; -- buf = mmap(NULL, buflen, PROT_READ, MAP_PRIVATE|MAP_POPULATE, fd, 0); -+ buf = mmap(NULL, buflen, PROT_READ, MAP_PRIVATE, fd, 0); - if (!buf) - goto err; - -@@ -338,7 +338,7 @@ int main(int argc, char *argv[]) - { - printf("{"GUID_FORMAT"} {%s} %s %s\n", - guid->guid.a, guid->guid.b, -- guid->guid.c, bswap_16(guid->guid.d), -+ guid->guid.c, bswap16(guid->guid.d), - guid->guid.e[0], guid->guid.e[1], - guid->guid.e[2], guid->guid.e[3], - guid->guid.e[4], guid->guid.e[5], diff --git a/devel/efivar/files/patch-src-efivar.h b/devel/efivar/files/patch-src-efivar.h deleted file mode 100644 index 80c6a8ccbd57..000000000000 --- a/devel/efivar/files/patch-src-efivar.h +++ /dev/null @@ -1,28 +0,0 @@ ---- src/efivar.h.orig 2014-10-15 15:48:49.000000000 +0200 -+++ src/efivar.h 2015-01-19 15:32:22.000000000 +0100 -@@ -25,7 +25,6 @@ - #include <sys/stat.h> - #include <sys/types.h> - #include <unistd.h> --#include <byteswap.h> - - typedef struct { - uint32_t a; -@@ -40,7 +39,7 @@ typedef struct { - #endif - - #define EFI_GUID(a,b,c,d,e0,e1,e2,e3,e4,e5) \ --((efi_guid_t) {(a), (b), (c), bswap_16(d), { (e0), (e1), (e2), (e3), (e4), (e5) }}) -+((efi_guid_t) {(a), (b), (c), bswap16(d), { (e0), (e1), (e2), (e3), (e4), (e5) }}) - - #define EFI_GLOBAL_GUID EFI_GUID(0x8be4df61,0x93ca,0x11d2,0xaa0d,0x00,0xe0,0x98,0x03,0x2b,0x8c) - -@@ -85,7 +84,7 @@ efi_set_variable(efi_guid_t guid, const - return -1; - } - -- if (__va_arg_pack_len() == 0) -+ if (__builtin_va_arg_pack_len() == 0) - return _efi_set_variable(guid, name, data, data_size, - attributes, 0644); - diff --git a/devel/efivar/files/patch-src-efivar.pc.in b/devel/efivar/files/patch-src-efivar.pc.in deleted file mode 100644 index 1220e37ce7df..000000000000 --- a/devel/efivar/files/patch-src-efivar.pc.in +++ /dev/null @@ -1,19 +0,0 @@ ---- src/efivar.pc.in.orig 2014-10-15 15:48:49.000000000 +0200 -+++ src/efivar.pc.in 2015-01-19 16:23:12.000000000 +0100 -@@ -1,10 +1,11 @@ --prefix=/usr --exec_prefix=/usr --libdir=@@LIBDIR@@ --includedir=/usr/include -+prefix=%%PREFIX%% -+exec_prefix=${prefix} -+libdir=${exec_prefix}/lib -+includedir=${prefix}/include - - Name: efivar - Description: UEFI Variable Management - Version: @@VERSION@@ - Requires: --Libs: -L${libdir} -lefivar -ldl -+Libs: -L${libdir} -lefivar -+Cflags: -I${includedir} diff --git a/devel/efivar/files/patch-src-efivarfs.c b/devel/efivar/files/patch-src-efivarfs.c deleted file mode 100644 index f28f06f61598..000000000000 --- a/devel/efivar/files/patch-src-efivarfs.c +++ /dev/null @@ -1,29 +0,0 @@ ---- src/efivarfs.c.orig 2015-01-19 15:38:34.000000000 +0100 -+++ src/efivarfs.c 2015-01-19 15:40:15.000000000 +0100 -@@ -18,15 +18,15 @@ - - #include <errno.h> - #include <fcntl.h> --#include <linux/magic.h> - #include <stdio.h> - #include <stdlib.h> - #include <string.h> - #include <sys/mman.h> -+#include <sys/mount.h> - #include <sys/types.h> -+#include <sys/param.h> - #include <sys/stat.h> - #include <sys/uio.h> --#include <sys/vfs.h> - #include <unistd.h> - - #include "lib.h" -@@ -66,7 +66,7 @@ efivarfs_probe(void) - #define make_efivarfs_path(str, guid, name) ({ \ - asprintf(str, EFIVARS_PATH "%s-" GUID_FORMAT, \ - name, (guid).a, (guid).b, (guid).c, \ -- bswap_16((guid).d), \ -+ bswap16((guid).d), \ - (guid).e[0], (guid).e[1], (guid).e[2], \ - (guid).e[3], (guid).e[4], (guid).e[5]); \ - }) diff --git a/devel/efivar/files/patch-src-guid.c b/devel/efivar/files/patch-src-guid.c deleted file mode 100644 index 314601d34995..000000000000 --- a/devel/efivar/files/patch-src-guid.c +++ /dev/null @@ -1,44 +0,0 @@ ---- src/guid.c.orig 2015-01-19 15:37:01.000000000 +0100 -+++ src/guid.c 2015-01-19 15:37:10.000000000 +0100 -@@ -41,17 +41,17 @@ efi_guid_to_str(const efi_guid_t *guid, - - if (!sp) { - return snprintf(NULL, 0, GUID_FORMAT, -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - } else if (sp && *sp) { - return snprintf(*sp, GUID_LENGTH_WITH_NUL, GUID_FORMAT, -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - } else { - rc = asprintf(&ret, GUID_FORMAT, -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - if (rc >= 0) -@@ -161,17 +161,17 @@ efi_guid_to_id_guid(const efi_guid_t *gu - } - if (!sp) { - return snprintf(NULL, 0, "{"GUID_FORMAT"}", -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - } else if (sp && *sp) { - return snprintf(*sp, GUID_LENGTH_WITH_NUL+2, "{"GUID_FORMAT"}", -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - } - rc = asprintf(&ret, "{"GUID_FORMAT"}", -- guid->a, guid->b, guid->c, bswap_16(guid->d), -+ guid->a, guid->b, guid->c, bswap16(guid->d), - guid->e[0], guid->e[1], guid->e[2], guid->e[3], - guid->e[4], guid->e[5]); - if (rc >= 0) diff --git a/devel/efivar/files/patch-src-guid.h b/devel/efivar/files/patch-src-guid.h deleted file mode 100644 index 006318f755f9..000000000000 --- a/devel/efivar/files/patch-src-guid.h +++ /dev/null @@ -1,20 +0,0 @@ ---- src/guid.h.orig 2014-10-15 15:48:49.000000000 +0200 -+++ src/guid.h 2015-01-19 15:34:12.000000000 +0100 -@@ -19,7 +19,7 @@ - #ifndef LIBEFIVAR_GUID_H - #define LIBEFIVAR_GUID_H 1 - --#include <endian.h> -+#include <sys/endian.h> - #include <errno.h> - #include <limits.h> - #include <stdlib.h> -@@ -111,7 +111,7 @@ text_to_guid(const char *text, efi_guid_ - strncpy(fourbytes, text+19, 4); - if (check_segment_sanity(fourbytes, 4) < 0) - return -1; -- guid->d = bswap_16((uint16_t)strtoul(fourbytes, NULL, 16)); -+ guid->d = bswap16((uint16_t)strtoul(fourbytes, NULL, 16)); - - /* 84be9c3e-8a32-42c0-891c-4cd3b072becc - * ^ */ diff --git a/devel/efivar/files/patch-src-test-Makefile b/devel/efivar/files/patch-src-test-Makefile deleted file mode 100644 index 22c70f7c9a73..000000000000 --- a/devel/efivar/files/patch-src-test-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- src/test/Makefile.orig 2014-10-15 13:48:49 UTC -+++ src/test/Makefile -@@ -4,7 +4,7 @@ TOPDIR = $(realpath $(SRCDIR)/../..) - include $(TOPDIR)/Make.defaults - - ccldflags += -L$(TOPDIR)/src/ -Wl,-rpath=$(TOPDIR)/src/ --LIBS=efivar -+LIBS = -lefivar - - all : tester - diff --git a/devel/efivar/files/patch-src-test-tester.c b/devel/efivar/files/patch-src-test-tester.c deleted file mode 100644 index fabd2c8bf30c..000000000000 --- a/devel/efivar/files/patch-src-test-tester.c +++ /dev/null @@ -1,14 +0,0 @@ ---- src/test/tester.c.orig 2015-01-19 15:43:11.000000000 +0100 -+++ src/test/tester.c 2015-01-19 15:43:31.000000000 +0100 -@@ -1,10 +1,10 @@ --#include <alloca.h> - #include <errno.h> - #include <fcntl.h> - #include <stdarg.h> - #include <stdio.h> - #include <stdlib.h> - #include <string.h> -+#include <sys/endian.h> - #include <sys/types.h> - #include <sys/stat.h> - #include <unistd.h> diff --git a/devel/efivar/files/patch-src-vars.c b/devel/efivar/files/patch-src-vars.c deleted file mode 100644 index fd9a2c6593f3..000000000000 --- a/devel/efivar/files/patch-src-vars.c +++ /dev/null @@ -1,47 +0,0 @@ ---- src/vars.c.orig 2015-01-19 15:36:23.000000000 +0100 -+++ src/vars.c 2015-01-19 15:36:36.000000000 +0100 -@@ -94,7 +94,7 @@ vars_get_variable_size(efi_guid_t guid, - - char *path = NULL; - int rc = asprintf(&path, VARS_PATH "%s-"GUID_FORMAT"/size", -- name, guid.a, guid.b, guid.c, bswap_16(guid.d), -+ name, guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], guid.e[3], - guid.e[4], guid.e[5]); - if (rc < 0) -@@ -146,7 +146,7 @@ vars_get_variable(efi_guid_t guid, const - size_t bufsize = -1; - char *path; - int rc = asprintf(&path, VARS_PATH "%s-" GUID_FORMAT "/raw_var", -- name, guid.a, guid.b, guid.c, bswap_16(guid.d), -+ name, guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], - guid.e[3], guid.e[4], guid.e[5]); - if (rc < 0) -@@ -193,7 +193,7 @@ vars_del_variable(efi_guid_t guid, const - int ret = -1; - char *path; - int rc = asprintf(&path, VARS_PATH "%s-" GUID_FORMAT "/raw_var", -- name, guid.a, guid.b, guid.c, bswap_16(guid.d), -+ name, guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], - guid.e[3], guid.e[4], guid.e[5]); - if (rc < 0) -@@ -280,7 +280,7 @@ vars_chmod_variable(efi_guid_t guid, con - - char *path; - int rc = asprintf(&path, VARS_PATH "%s-" GUID_FORMAT, -- name, guid.a, guid.b, guid.c, bswap_16(guid.d), -+ name, guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], guid.e[3], - guid.e[4], guid.e[5]); - if (rc < 0) -@@ -312,7 +312,7 @@ vars_set_variable(efi_guid_t guid, const - - char *path; - int rc = asprintf(&path, VARS_PATH "%s-" GUID_FORMAT "/data", -- name, guid.a, guid.b, guid.c, bswap_16(guid.d), -+ name, guid.a, guid.b, guid.c, bswap16(guid.d), - guid.e[0], guid.e[1], guid.e[2], guid.e[3], - guid.e[4], guid.e[5]); - if (rc < 0) diff --git a/devel/efivar/files/patch-src_compiler.h b/devel/efivar/files/patch-src_compiler.h new file mode 100644 index 000000000000..ad398379bffa --- /dev/null +++ b/devel/efivar/files/patch-src_compiler.h @@ -0,0 +1,13 @@ +--- src/compiler.h.orig 2024-01-31 20:08:46 UTC ++++ src/compiler.h +@@ -74,7 +74,9 @@ + + #define __ALIGN_MASK(x, mask) (((x) + (mask)) & ~(mask)) + #define __ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a) - 1) +-#define ALIGN(x, a) __ALIGN((x), (a)) ++#if !defined(ALIGN) ++# define ALIGN(x, a) __ALIGN((x), (a)) ++#endif + #define ALIGN_DOWN(x, a) __ALIGN((x) - ((a) - 1), (a)) + + #define ALIGNMENT_PADDING(value, align) ((align - (value % align)) % align) diff --git a/devel/efivar/files/patch-src_creator.c b/devel/efivar/files/patch-src_creator.c new file mode 100644 index 000000000000..21c7feb2106f --- /dev/null +++ b/devel/efivar/files/patch-src_creator.c @@ -0,0 +1,26 @@ +--- src/creator.c.orig 2024-01-31 20:08:46 UTC ++++ src/creator.c +@@ -9,16 +9,22 @@ + #include <fcntl.h> + #include <inttypes.h> + #include <limits.h> ++#if defined(__linux__) + #include <mntent.h> ++#endif ++#include <sys/types.h> + #include <netinet/in.h> + #include <netinet/ip.h> + #include <stdlib.h> + #include <stdio.h> +-#include <sys/types.h> + #include <sys/stat.h> + #include <sys/socket.h> + + #include "efiboot.h" ++ ++#if defined(__FreeBSD__) ++# include "mntent.h" ++#endif + + static int NONNULL(1, 2, 3) + find_file(const char * const filepath, char **devicep, char **relpathp) diff --git a/devel/efivar/files/patch-src_disk.c b/devel/efivar/files/patch-src_disk.c new file mode 100644 index 000000000000..796a0904ed29 --- /dev/null +++ b/devel/efivar/files/patch-src_disk.c @@ -0,0 +1,32 @@ +--- src/disk.c.orig 2024-01-31 20:08:46 UTC ++++ src/disk.c +@@ -14,6 +14,10 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#ifdef __FreeBSD__ ++# include <sys/disk.h> ++# undef LIST_HEAD ++#endif + #include <sys/ioctl.h> + #include <sys/mount.h> + #include <sys/stat.h> +@@ -158,8 +162,18 @@ msdos_disk_get_partition_info (int fd, int write_signa + } else if (num == 0) { + /* Whole disk */ + *start = 0; ++#if defined(__linux__) + ioctl(fd, BLKGETSIZE, &disk_size); + *size = disk_size; ++#elif defined(__FreeBSD__) ++ long sector_size=0; ++ ioctl(fd, DIOCGMEDIASIZE, &disk_size); ++ ioctl(fd, DIOCGSECTORSIZE, §or_size); ++ *size = disk_size / sector_size; ++#else ++ efi_error("could not get disk size (not implemented on your OS)"); ++ return -1; ++#endif + } else if (num >= 1 && num <= 4) { + /* Primary partition */ + *start = mbr->partition[num-1].starting_lba; diff --git a/devel/efivar/files/patch-src_dp.h b/devel/efivar/files/patch-src_dp.h new file mode 100644 index 000000000000..27a3cc282b2b --- /dev/null +++ b/devel/efivar/files/patch-src_dp.h @@ -0,0 +1,13 @@ +--- src/dp.h.orig 2024-01-31 20:08:46 UTC ++++ src/dp.h +@@ -6,7 +6,9 @@ + #ifndef _EFIVAR_INTERNAL_DP_H + #define _EFIVAR_INTERNAL_DP_H + +-#include <alloca.h> ++#if defined(__linux__) ++# include <alloca.h> ++#endif + #include <stdarg.h> + #include <stdio.h> + #include <stdlib.h> diff --git a/devel/efivar/files/patch-src_efisecdb.c b/devel/efivar/files/patch-src_efisecdb.c new file mode 100644 index 000000000000..dd61da8d2eb3 --- /dev/null +++ b/devel/efivar/files/patch-src_efisecdb.c @@ -0,0 +1,38 @@ +--- src/efisecdb.c.orig 2024-01-31 20:08:46 UTC ++++ src/efisecdb.c +@@ -93,7 +93,7 @@ secdb_warnx(const char * const fmt, ...) + int errnum = errno; + + fflush(stdout); +- fprintf(stderr, "%s: ", program_invocation_short_name); ++ fprintf(stderr, "%s: ", getprogname()); + va_start(ap, fmt); + vfprintf(stderr, fmt, ap); + va_end(ap); +@@ -109,7 +109,7 @@ secdb_err(int status, const char * const fmt, ...) + int errnum = errno; + + fflush(stdout); +- fprintf(stderr, "%s: ", program_invocation_short_name); ++ fprintf(stderr, "%s: ", getprogname()); + va_start(ap, fmt); + vfprintf(stderr, fmt, ap); + va_end(ap); +@@ -126,7 +126,7 @@ secdb_errx(int status, const char * const fmt, ...) + int errnum = errno; + + fflush(stdout); +- fprintf(stderr, "%s: ", program_invocation_short_name); ++ fprintf(stderr, "%s: ", getprogname()); + va_start(ap, fmt); + errno = errnum; + vfprintf(stderr, fmt, ap); +@@ -149,7 +149,7 @@ usage(int status) + " -t, --type=<hash-type> hash type to add (\"help\" lists options)\n" + " -c, --certificate=<file> certificate file to add\n" + " -L, --list-guids list well known guids\n", +- program_invocation_short_name); ++ getprogname()); + exit(status); + } + diff --git a/devel/efivar/files/patch-src_efivar.c b/devel/efivar/files/patch-src_efivar.c new file mode 100644 index 000000000000..5a419a603b42 --- /dev/null +++ b/devel/efivar/files/patch-src_efivar.c @@ -0,0 +1,31 @@ +--- src/efivar.c.orig 2024-01-31 20:08:46 UTC ++++ src/efivar.c +@@ -20,6 +20,10 @@ + #include <string.h> + #include <limits.h> + ++#if defined(__FreeBSD__) ++# undef LIST_HEAD ++#endif ++ + extern char *optarg; + extern int optind, opterr, optopt; + +@@ -408,7 +412,7 @@ prepare_data(const char *filename, uint8_t **data, siz + goto err; + + buflen = statbuf.st_size; +- buf = mmap(NULL, buflen, PROT_READ, MAP_PRIVATE|MAP_POPULATE, fd, 0); ++ buf = mmap(NULL, buflen, PROT_READ, MAP_PRIVATE, fd, 0); + if (buf == MAP_FAILED) + goto err; + +@@ -447,7 +451,7 @@ usage(int ret) + "Help options:\n" + " -?, --help Show this help message\n" + " --usage Display brief usage message\n", +- program_invocation_short_name); ++ getprogname()); + exit(ret); + } + diff --git a/devel/efivar/files/patch-src_efivarfs.c b/devel/efivar/files/patch-src_efivarfs.c new file mode 100644 index 000000000000..1ca8a549aba8 --- /dev/null +++ b/devel/efivar/files/patch-src_efivarfs.c @@ -0,0 +1,162 @@ +--- src/efivarfs.c.orig 2024-01-31 20:08:46 UTC ++++ src/efivarfs.c +@@ -9,20 +9,32 @@ + #include <err.h> + #include <errno.h> + #include <fcntl.h> +-#include <linux/magic.h> ++#if defined(__linux__) ++# include <linux/magic.h> ++#endif + #include <stdio.h> + #include <stdlib.h> + #include <string.h> + #include <sys/mman.h> + #include <sys/types.h> ++#include <sys/param.h> ++#include <sys/mount.h> + #include <sys/stat.h> + #include <sys/uio.h> +-#include <sys/vfs.h> ++#if defined(__linux__) ++# include <sys/vfs.h> ++#endif + #include <unistd.h> + ++#if defined(__FreeBSD__) ++# undef LIST_HEAD ++#endif ++ + #include "efivar.h" + +-#include <linux/fs.h> ++#if defined(__linux__) ++# include <linux/fs.h> ++#endif + + #ifndef EFIVARFS_MAGIC + # define EFIVARFS_MAGIC 0xde5e81e4 +@@ -102,6 +114,7 @@ efivarfs_set_fd_immutable(int fd, int immutable) + static int + efivarfs_set_fd_immutable(int fd, int immutable) + { ++#if defined(__linux__) + unsigned int flags; + int rc = 0; + +@@ -124,11 +137,42 @@ efivarfs_set_fd_immutable(int fd, int immutable) + } + + return rc; ++#elif defined(__FreeBSD__) ++ struct stat sb; ++ int rc = 0; ++ unsigned long flags; ++ ++ if (fstat(fd, &sb) == -1) { ++ if (errno == EBADF) ++ rc = 0; ++ else ++ efi_error("fstat(%d) failed", fd); ++ return rc; ++ } ++ ++ flags = sb.st_flags; ++ ++ if ((immutable && !(flags & UF_IMMUTABLE)) || ++ (!immutable && (flags & UF_IMMUTABLE))) { ++ if (immutable) ++ flags |= UF_IMMUTABLE; ++ else ++ flags &= ~UF_IMMUTABLE; ++ ++ if (chflagsat(fd, "", flags, AT_EMPTY_PATH) == -1) { ++ efi_error("chflagsat(%d) failed\n", fd); ++ rc = -1; ++ } ++ } ++ ++ return rc; ++#endif + } + + static int + efivarfs_make_fd_mutable(int fd, unsigned long *orig_attrs) + { ++#if defined(__linux__) + unsigned long mutable_attrs = 0; + + *orig_attrs = 0; +@@ -145,6 +189,26 @@ efivarfs_make_fd_mutable(int fd, unsigned long *orig_a + return -1; + + return 0; ++#elif defined(__FreeBSD__) ++ struct stat sb; ++ ++ *orig_attrs = 0; ++ ++ if (fstat(fd, &sb) == -1) ++ return -1; ++ ++ *orig_attrs = sb.st_flags; ++ ++ // if the file is not immutable, nothing to do ++ if ((sb.st_flags & UF_IMMUTABLE) == 0) ++ return 0; ++ ++ // remove user immutable flag ++ if (chflagsat(fd, "", sb.st_flags & ~UF_IMMUTABLE, AT_EMPTY_PATH) == -1) ++ return -1; ++ ++ return 0; ++#endif + } + + static int +@@ -375,10 +439,17 @@ efivarfs_set_variable(efi_guid_t guid, const char *nam + goto err; + } + ++#if defined(__linux__) + /* if the file is indeed immutable, clear and remember it */ + if (efivarfs_make_fd_mutable(rfd, &orig_attrs) == 0 && + (orig_attrs & FS_IMMUTABLE_FL)) + restore_immutable_fd = rfd; ++#elif defined(__FreeBSD__) ++ /* if the file is indeed immutable, clear and remember it */ ++ if (efivarfs_make_fd_mutable(rfd, &orig_attrs) == 0 && ++ (orig_attrs & UF_IMMUTABLE)) ++ restore_immutable_fd = rfd; ++#endif + } + + /* +@@ -414,9 +485,15 @@ efivarfs_set_variable(efi_guid_t guid, const char *nam + * immediately, and the write() below would fail otherwise. + */ + if (rfd == -1) { ++#if defined(__linux__) + if (efivarfs_make_fd_mutable(wfd, &orig_attrs) == 0 && + (orig_attrs & FS_IMMUTABLE_FL)) + restore_immutable_fd = wfd; ++#elif defined(__FreeBSD__) ++ if (efivarfs_make_fd_mutable(wfd, &orig_attrs) == 0 && ++ (orig_attrs & UF_IMMUTABLE)) ++ restore_immutable_fd = wfd; ++#endif + } else { + /* make sure rfd and wfd refer to the same file */ + struct stat wfd_stat; +@@ -452,7 +529,11 @@ err: + if (ret == -1 && rfd == -1 && wfd != -1 && unlink(path) == -1) + efi_error("failed to unlink %s", path); + ++#if defined(__linux__) + ioctl(restore_immutable_fd, FS_IOC_SETFLAGS, &orig_attrs); ++#elif defined(__FreeBSD__) ++ chflagsat(restore_immutable_fd, "", orig_attrs, AT_EMPTY_PATH); ++#endif + + if (wfd >= 0) + close(wfd); diff --git a/devel/efivar/files/patch-src_gpt.c b/devel/efivar/files/patch-src_gpt.c new file mode 100644 index 000000000000..87d6d523d72a --- /dev/null +++ b/devel/efivar/files/patch-src_gpt.c @@ -0,0 +1,59 @@ +--- src/gpt.c.orig 2024-01-31 20:08:46 UTC ++++ src/gpt.c +@@ -16,6 +16,11 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#if defined(__FreeBSD__) ++# include <sys/disk.h> ++# undef LIST_HEAD ++#endif ++#include <sys/ioctl.h> + #include <sys/mount.h> + #include <sys/param.h> + #include <sys/stat.h> +@@ -60,6 +65,7 @@ is_pmbr_valid(legacy_mbr *mbr) + return (magic && found); + } + ++#if defined(__linux__) + /** + * kernel_has_blkgetsize64() + * +@@ -92,6 +98,7 @@ kernel_has_blkgetsize64(void) + return 0; + return 1; + } ++#endif + + /************************************************************ + * _get_num_sectors +@@ -114,6 +121,8 @@ _get_num_sectors(int filedes) + unsigned long sectors=0; + uint64_t bytes=0; + int rc; ++ ++#if defined(__linux__) + if (kernel_has_blkgetsize64()) { + rc = ioctl(filedes, BLKGETSIZE64, &bytes); + if (!rc) +@@ -125,6 +134,19 @@ _get_num_sectors(int filedes) + return 0; + + return sectors; ++#elif defined(__FreeBSD__) ++ rc = ioctl(filedes, DIOCGMEDIASIZE, &bytes); ++ if (rc == -1) ++ return 0; ++ ++ rc = ioctl(filedes, DIOCGSECTORSIZE, §ors); ++ if (rc == -1) ++ return 0; ++ ++ return bytes / sectors; ++#else ++ return 0; ++#endif + } + + /************************************************************ diff --git a/devel/efivar/files/patch-src_include_defaults.mk b/devel/efivar/files/patch-src_include_defaults.mk new file mode 100644 index 000000000000..9c56eb219471 --- /dev/null +++ b/devel/efivar/files/patch-src_include_defaults.mk @@ -0,0 +1,26 @@ +--- src/include/defaults.mk.orig 2024-01-31 20:08:46 UTC ++++ src/include/defaults.mk +@@ -43,7 +43,6 @@ override CFLAGS = $(_CFLAGS) \ + override CFLAGS = $(_CFLAGS) \ + -std=gnu11 \ + -funsigned-char \ +- -fvisibility=hidden \ + $(call family,CFLAGS) \ + $(call pkg-config-cflags) + LDFLAGS_CLANG ?= -rtlib=compiler-rt +@@ -53,7 +52,6 @@ override LDFLAGS = $(CFLAGS) -L. $(_LDFLAGS) $(_CCLDFL + override _LDFLAGS := $(LDFLAGS) + override LDFLAGS = $(CFLAGS) -L. $(_LDFLAGS) $(_CCLDFLAGS) \ + -Wl,--build-id \ +- -Wl,--no-allow-shlib-undefined \ + -Wl,--no-undefined-version \ + -Wl,-z,now \ + -Wl,-z,muldefs \ +@@ -99,7 +97,6 @@ override HOST_LDFLAGS = $(HOST_CFLAGS) -L. \ + override HOST_LDFLAGS = $(HOST_CFLAGS) -L. \ + $(_HOST_LDFLAGS) $(_HOST_CCLDFLAGS) \ + -Wl,--build-id \ +- -Wl,--no-allow-shlib-undefined \ + -Wl,-z,now \ + -Wl,-z,muldefs \ + $(call family,HOST_LDFLAGS) \ diff --git a/devel/efivar/files/patch-src_include_gcc.specs b/devel/efivar/files/patch-src_include_gcc.specs new file mode 100644 index 000000000000..388f3d9e22cd --- /dev/null +++ b/devel/efivar/files/patch-src_include_gcc.specs @@ -0,0 +1,8 @@ +--- src/include/gcc.specs.orig 2024-01-31 20:08:46 UTC ++++ src/include/gcc.specs +@@ -5,4 +5,4 @@ + %{!shared:%{!static:%{!r:-pie}}} %{static:-Wl,-no-fa + + %{!shared:%{!static:%{!r:-pie}}} %{static:-Wl,-no-fatal-warnings -Wl,-static -static -Wl,-z,relro,-z,now} -grecord-gcc-switches + + *link: +-+ %{!static:--fatal-warnings} --no-undefined-version --no-allow-shlib-undefined -z now --build-id %{!static:%{!shared:-pie}} %{shared:-z relro} %{static:%<pie} +++ %{!static:--fatal-warnings} --no-undefined-version -z now --build-id %{!static:%{!shared:-pie}} %{shared:-z relro} %{static:%<pie} diff --git a/devel/efivar/files/patch-src_linux.c b/devel/efivar/files/patch-src_linux.c new file mode 100644 index 000000000000..1948fba2d92b --- /dev/null +++ b/devel/efivar/files/patch-src_linux.c @@ -0,0 +1,108 @@ +--- src/linux.c.orig 2024-01-31 20:08:46 UTC ++++ src/linux.c +@@ -12,17 +12,30 @@ + #include <fcntl.h> + #include <inttypes.h> + #include <limits.h> +-#include <linux/ethtool.h> +-#include <linux/version.h> +-#include <linux/sockios.h> ++#if defined(__linux__) ++# include <linux/ethtool.h> ++# include <linux/version.h> ++# include <linux/sockios.h> ++#elif defined(__FreeBSD__) ++# include <net/if.h> ++# include <net/if_dl.h> ++#endif + #include <net/if.h> +-#include <scsi/scsi.h> ++#if defined(__linux__) ++# include <scsi/scsi.h> ++#endif + #include <stdbool.h> + #include <stdio.h> ++#if defined(__FreeBSD__) ++# include <sys/disk.h> ++# undef LIST_HEAD ++#endif + #include <sys/ioctl.h> + #include <sys/mount.h> + #include <sys/socket.h> +-#include <sys/sysmacros.h> ++#if defined(__linux__) ++# include <sys/sysmacros.h> ++#endif + #include <sys/types.h> + #include <sys/param.h> + #include <sys/stat.h> +@@ -630,6 +643,7 @@ make_blockdev_path(uint8_t *buf, ssize_t size, struct + return off; + } + ++#if defined(__linux__) + ssize_t HIDDEN + make_mac_path(uint8_t *buf, ssize_t size, const char * const ifname) + { +@@ -693,7 +707,48 @@ err: + close(fd); + return ret; + } ++#elif defined(__FreeBSD__) ++ssize_t HIDDEN ++make_mac_path(uint8_t *buf, ssize_t size, const char * const ifname) ++{ ++ int fd; ++ struct ifreq ifr; ++ struct sockaddr_dl *sdl; ++ ssize_t ret = -1; + ++ if (!buf || !ifname) ++ return -1; ++ ++ fd = socket(AF_INET, SOCK_DGRAM, 0); ++ if (fd < 0) ++ return -1; ++ ++ memset(&ifr, 0, sizeof(ifr)); ++ strncpy(ifr.ifr_name, ifname, IFNAMSIZ-1); ++ ifr.ifr_name[IFNAMSIZ-1] = '\0'; ++ ++ if (ioctl(fd, SIOCGIFADDR, &ifr) < 0) { ++ close(fd); ++ return -1; ++ } ++ ++ // For MAC, use AF_LINK (sockaddr_dl) ++ if (ioctl(fd, SIOCGIFCONF, &ifr) < 0) { ++ close(fd); ++ return -1; ++ } ++ ++ sdl = (struct sockaddr_dl *)&ifr.ifr_addr; ++ if (sdl->sdl_alen > 0 && sdl->sdl_alen <= size) { ++ memcpy(buf, LLADDR(sdl), sdl->sdl_alen); ++ ret = sdl->sdl_alen; ++ } ++ ++ close(fd); ++ return ret; ++} ++#endif ++ + /************************************************************ + * get_sector_size + * Requires: +@@ -707,7 +762,12 @@ get_sector_size(int filedes) + { + int rc, sector_size = 512; + ++ (void)filedes; ++#if defined(__linux__) + rc = ioctl(filedes, BLKSSZGET, §or_size); ++#elif defined(__FreeBSD__) ++ rc = ioctl(filedes, DIOCGSECTORSIZE, §or_size); ++#endif + if (rc) + sector_size = 512; + return sector_size; diff --git a/devel/efivar/files/patch-src_mntent.h b/devel/efivar/files/patch-src_mntent.h new file mode 100644 index 000000000000..f4cf03ef4d55 --- /dev/null +++ b/devel/efivar/files/patch-src_mntent.h @@ -0,0 +1,192 @@ +--- src/mntent.h.orig 2025-10-12 11:00:40 UTC ++++ src/mntent.h +@@ -0,0 +1,189 @@ ++/* ++ * mntent ++ * mntent.h - compatibility header for FreeBSD ++ * ++ * Copyright (c) 2001 David Rufino <daverufino@btinternet.com> ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ */ ++ ++#ifndef VIFM__UTILS__MNTENT_H__ ++#define VIFM__UTILS__MNTENT_H__ ++ ++#include <stddef.h> ++#include <stdio.h> ++ ++#define MOUNTED "dummy" ++ ++#define MNTTYPE_NFS "nfs" ++ ++struct mntent ++{ ++ char *mnt_fsname; ++ char *mnt_dir; ++ char *mnt_type; ++ char *mnt_opts; ++ int mnt_freq; ++ int mnt_passno; ++}; ++ ++#define setmntent(x,y) ((FILE *)0x1) ++struct mntent * getmntent(FILE *fp); ++char * hasmntopt(const struct mntent *mnt, const char option[]); ++#define endmntent(x) ((int)1) ++ ++#endif /* VIFM__UTILS__MNTENT_H__ */ ++ ++#include <sys/param.h> ++#include <sys/ucred.h> ++#include <sys/mount.h> ++ ++#include <stdlib.h> ++#include <string.h> ++ ++#ifdef __NetBSD__ ++#define statfs statvfs ++#define f_flags f_flag ++#endif ++ ++static struct mntent * statfs_to_mntent(struct statfs *mntbuf); ++static char * flags2opts(int flags); ++static char * catopt(char s0[], const char s1[]); ++ ++char * ++hasmntopt(const struct mntent *mnt, const char option[]) ++{ ++ char *opt, *optbuf; ++ ++ optbuf = strdup(mnt->mnt_opts); ++ for(opt = optbuf; (opt = strtok(opt, " ")) != NULL; opt = NULL) ++ { ++ if(!strcasecmp(opt, option)) ++ { ++ opt = opt - optbuf + mnt->mnt_opts; ++ free(optbuf); ++ return (opt); ++ } ++ } ++ free(optbuf); ++ return NULL; ++} ++ ++struct mntent * ++getmntent(FILE *fp) ++{ ++ static int pos = -1; ++ static int mntsize = -1; ++ ++ static struct statfs *mntbuf; ++ ++ (void)fp; ++ ++ if(pos == -1 || mntsize == -1) ++ { ++ mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); ++ } ++ ++ pos++; ++ if(pos == mntsize) ++ { ++ pos = mntsize = -1; ++ return NULL; ++ } ++ ++ return statfs_to_mntent(&mntbuf[pos]); ++} ++ ++static struct mntent * ++statfs_to_mntent(struct statfs *mntbuf) ++{ ++ static struct mntent _mntent; ++ static char opts_buf[40], *tmp; ++ ++ _mntent.mnt_fsname = mntbuf->f_mntfromname; ++ _mntent.mnt_dir = mntbuf->f_mntonname; ++ _mntent.mnt_type = mntbuf->f_fstypename; ++ tmp = flags2opts (mntbuf->f_flags); ++ if(tmp != NULL) ++ { ++ opts_buf[sizeof(opts_buf) - 1] = '\0'; ++ strncpy(opts_buf, tmp, sizeof(opts_buf) - 1); ++ free(tmp); ++ } ++ else ++ { ++ *opts_buf = '\0'; ++ } ++ _mntent.mnt_opts = opts_buf; ++ _mntent.mnt_freq = _mntent.mnt_passno = 0; ++ return &_mntent; ++} ++ ++static char * ++flags2opts(int flags) ++{ ++ char *res = catopt(NULL, (flags & MNT_RDONLY) ? "ro" : "rw"); ++ if(flags & MNT_SYNCHRONOUS) res = catopt(res, "sync"); ++ if(flags & MNT_NOEXEC) res = catopt(res, "noexec"); ++ if(flags & MNT_NOSUID) res = catopt(res, "nosuid"); ++#ifndef __OpenBSD__ ++ if(flags & MNT_UNION) res = catopt(res, "union"); ++#endif ++ if(flags & MNT_ASYNC) res = catopt(res, "async"); ++ if(flags & MNT_NOATIME) res = catopt(res, "noatime"); ++#if !defined(__APPLE__) && !defined(__OpenBSD__) && !defined(__NetBSD__) ++ if(flags & MNT_NOCLUSTERR) res = catopt(res, "noclusterr"); ++ if(flags & MNT_NOCLUSTERW) res = catopt(res, "noclusterw"); ++ if(flags & MNT_NOSYMFOLLOW) res = catopt(res, "nosymfollow"); ++ if(flags & MNT_SUIDDIR) res = catopt(res, "suiddir"); ++#endif ++ ++ return res; ++} ++ ++static char * ++catopt(char s0[], const char s1[]) ++{ ++ char *cp; ++ ++ if(s1 == NULL || *s1 == '\0') ++ { ++ return s0; ++ } ++ if(s0 && *s0) ++ { ++ const size_t i = strlen(s0) + strlen(s1) + 1 + 1; ++ if((cp = malloc(i)) == NULL) ++ { ++ return NULL; ++ } ++ (void)snprintf(cp, i, "%s %s", s0, s1); ++ } ++ else ++ { ++ cp = strdup(s1); ++ } ++ ++ free(s0); ++ return cp; ++} diff --git a/devel/efivar/files/patch-src_test_tester.c b/devel/efivar/files/patch-src_test_tester.c new file mode 100644 index 000000000000..d93bb2d6456c --- /dev/null +++ b/devel/efivar/files/patch-src_test_tester.c @@ -0,0 +1,13 @@ +--- src/test/tester.c.orig 2024-01-31 20:08:46 UTC ++++ src/test/tester.c +@@ -5,7 +5,9 @@ + * Copyright 2012-2018 Peter M. Jones <pjones@redhat.com> + */ + +-#include <alloca.h> ++#if defined(__linux__) ++# include <alloca.h> ++#endif + #include <errno.h> + #include <fcntl.h> + #include <stdarg.h> diff --git a/devel/efivar/files/patch-src_thread-test.c b/devel/efivar/files/patch-src_thread-test.c new file mode 100644 index 000000000000..b46bf0bb4ead --- /dev/null +++ b/devel/efivar/files/patch-src_thread-test.c @@ -0,0 +1,22 @@ +--- src/thread-test.c.orig 2024-01-31 20:08:46 UTC ++++ src/thread-test.c +@@ -6,7 +6,9 @@ + + #include "fix_coverity.h" + +-#include <alloca.h> ++#if defined(__linux__) ++# include <alloca.h> ++#endif + #include <efivar.h> + #include <err.h> + #include <errno.h> +@@ -125,7 +127,7 @@ usage(int ret) + "Help options:\n" + " -?, --help Show this help message\n" + " --usage Display brief usage message\n", +- program_invocation_short_name); ++ getprogname()); + exit(ret); + } + diff --git a/devel/efivar/files/patch-src_time.c b/devel/efivar/files/patch-src_time.c new file mode 100644 index 000000000000..4a7edf743ef4 --- /dev/null +++ b/devel/efivar/files/patch-src_time.c @@ -0,0 +1,20 @@ +--- src/time.c.orig 2024-01-31 20:08:46 UTC ++++ src/time.c +@@ -52,7 +52,17 @@ tm_to_efi_time(const struct tm * const s, efi_time_t * + + if (tzadj) { + tzset(); ++ ++#if defined(__FreeBSD__) ++ time_t t = time(NULL); ++ struct tm lt = {0}; ++ ++ localtime_r(&t, <); ++ ++ d->timezone = lt.tm_gmtoff / 60; ++#else + d->timezone = timezone / 60; ++#endif + } + + return 0; diff --git a/devel/efivar/files/patch-src_util.h b/devel/efivar/files/patch-src_util.h new file mode 100644 index 000000000000..7c47def1ebf9 --- /dev/null +++ b/devel/efivar/files/patch-src_util.h @@ -0,0 +1,13 @@ +--- src/util.h.orig 2024-01-31 20:08:46 UTC ++++ src/util.h +@@ -8,7 +8,9 @@ + #ifndef EFIVAR_UTIL_H + #define EFIVAR_UTIL_H 1 + +-#include <alloca.h> ++#if defined(__linux__) ++# include <alloca.h> ++#endif + #include <ctype.h> + #include <endian.h> + #include <err.h> diff --git a/devel/efivar/pkg-descr b/devel/efivar/pkg-descr index 37d65fa5d927..6016e8495d1a 100644 --- a/devel/efivar/pkg-descr +++ b/devel/efivar/pkg-descr @@ -1 +1 @@ -Tools and library to manipulate EFI variables. +Tools and libraries to work with EFI variables. diff --git a/devel/efivar/pkg-plist b/devel/efivar/pkg-plist index bf135b272c8f..d95e99c0eb2e 100644 --- a/devel/efivar/pkg-plist +++ b/devel/efivar/pkg-plist @@ -1,9 +1,29 @@ +bin/efisecdb bin/efivar -include/efivar-guids.h -include/efivar.h +include/efivar/efiboot-creator.h +include/efivar/efiboot-loadopt.h +include/efivar/efiboot.h +include/efivar/efisec-secdb.h +include/efivar/efisec-types.h +include/efivar/efisec.h +include/efivar/efivar-dp.h +include/efivar/efivar-guids.h +include/efivar/efivar-time.h +include/efivar/efivar-types.h +include/efivar/efivar.h +lib/libefiboot.so +lib/libefiboot.so.1 +lib/libefiboot.so.1.39 +lib/libefisec.so +lib/libefisec.so.1 +lib/libefisec.so.1.39 lib/libefivar.so -lib/libefivar.so.0 +lib/libefivar.so.1 +lib/libefivar.so.1.39 +libdata/pkgconfig/efiboot.pc +libdata/pkgconfig/efisec.pc libdata/pkgconfig/efivar.pc +share/man/man1/efisecdb.1.gz share/man/man1/efivar.1.gz share/man/man3/efi_append_variable.3.gz share/man/man3/efi_del_variable.3.gz @@ -11,6 +31,7 @@ share/man/man3/efi_get_next_variable_name.3.gz share/man/man3/efi_get_variable.3.gz share/man/man3/efi_get_variable_attributes.3.gz share/man/man3/efi_get_variable_size.3.gz +share/man/man3/efi_guid_to_id_guid.3.gz share/man/man3/efi_guid_to_name.3.gz share/man/man3/efi_guid_to_str.3.gz share/man/man3/efi_guid_to_symbol.3.gz @@ -18,4 +39,18 @@ share/man/man3/efi_name_to_guid.3.gz share/man/man3/efi_set_variable.3.gz share/man/man3/efi_str_to_guid.3.gz share/man/man3/efi_symbol_to_guid.3.gz +share/man/man3/efi_variable_alloc.3.gz +share/man/man3/efi_variable_export.3.gz +share/man/man3/efi_variable_free.3.gz +share/man/man3/efi_variable_get_attributes.3.gz +share/man/man3/efi_variable_get_data.3.gz +share/man/man3/efi_variable_get_guid.3.gz +share/man/man3/efi_variable_get_name.3.gz +share/man/man3/efi_variable_import.3.gz +share/man/man3/efi_variable_realize.3.gz +share/man/man3/efi_variable_set_attributes.3.gz +share/man/man3/efi_variable_set_data.3.gz +share/man/man3/efi_variable_set_guid.3.gz +share/man/man3/efi_variable_set_name.3.gz +share/man/man3/efi_variable_t.3.gz share/man/man3/efi_variables_supported.3.gz diff --git a/devel/gh/Makefile b/devel/gh/Makefile index 83a45f0acafc..bb42c69618ec 100644 --- a/devel/gh/Makefile +++ b/devel/gh/Makefile @@ -1,7 +1,6 @@ PORTNAME= gh DISTVERSIONPREFIX= v -DISTVERSION= 2.79.0 -PORTREVISION= 2 +DISTVERSION= 2.81.0 CATEGORIES= devel MAINTAINER= dutra@FreeBSD.org diff --git a/devel/gh/distinfo b/devel/gh/distinfo index 975b442e49e5..20dfcdeaa3b3 100644 --- a/devel/gh/distinfo +++ b/devel/gh/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757700385 -SHA256 (go/devel_gh/gh-v2.79.0/v2.79.0.mod) = 8424dae144988c0fb202380c9b1b1224320a0d37207e82f9fbede1c8d509c01f -SIZE (go/devel_gh/gh-v2.79.0/v2.79.0.mod) = 11873 -SHA256 (go/devel_gh/gh-v2.79.0/v2.79.0.zip) = 0909ce0e58b4e41550d26e7d59c9695e83bcd90c34e2219982cd9d57a20f0c32 -SIZE (go/devel_gh/gh-v2.79.0/v2.79.0.zip) = 15542088 +TIMESTAMP = 1760501107 +SHA256 (go/devel_gh/gh-v2.81.0/v2.81.0.mod) = 3588c064bc1ff6c0aaaa00b75a01127e1513383ad4091492e8d62ec52116b0d1 +SIZE (go/devel_gh/gh-v2.81.0/v2.81.0.mod) = 11971 +SHA256 (go/devel_gh/gh-v2.81.0/v2.81.0.zip) = f23434421b0934f9af0b2e60924f15e2339178f4b4559719d7842ad0a171934e +SIZE (go/devel_gh/gh-v2.81.0/v2.81.0.zip) = 15622855 diff --git a/devel/gh/pkg-plist b/devel/gh/pkg-plist index 82029f922e05..00c60ba62cac 100644 --- a/devel/gh/pkg-plist +++ b/devel/gh/pkg-plist @@ -1,3 +1,7 @@ +%%MANPAGES%%share/man/man1/gh-agent-task.1.gz +%%MANPAGES%%share/man/man1/gh-agent-task-create.1.gz +%%MANPAGES%%share/man/man1/gh-agent-task-list.1.gz +%%MANPAGES%%share/man/man1/gh-agent-task-view.1.gz %%MANPAGES%%share/man/man1/gh-alias-delete.1.gz %%MANPAGES%%share/man/man1/gh-alias-import.1.gz %%MANPAGES%%share/man/man1/gh-alias-list.1.gz @@ -134,6 +138,8 @@ %%MANPAGES%%share/man/man1/gh-release-edit.1.gz %%MANPAGES%%share/man/man1/gh-release-list.1.gz %%MANPAGES%%share/man/man1/gh-release-upload.1.gz +%%MANPAGES%%share/man/man1/gh-release-verify.1.gz +%%MANPAGES%%share/man/man1/gh-release-verify-asset.1.gz %%MANPAGES%%share/man/man1/gh-release-view.1.gz %%MANPAGES%%share/man/man1/gh-release.1.gz %%MANPAGES%%share/man/man1/gh-repo-autolink-create.1.gz diff --git a/devel/glab/Makefile b/devel/glab/Makefile index 9b14a7ccb498..fd3f7cc616e0 100644 --- a/devel/glab/Makefile +++ b/devel/glab/Makefile @@ -1,7 +1,6 @@ PORTNAME= glab DISTVERSIONPREFIX= v -DISTVERSION= 1.73.1 -PORTREVISION= 1 +DISTVERSION= 1.74.0 CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org diff --git a/devel/glab/distinfo b/devel/glab/distinfo index fb2af53a4a46..f9697e1e984f 100644 --- a/devel/glab/distinfo +++ b/devel/glab/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1760252925 -SHA256 (go/devel_glab/glab-v1.73.1/v1.73.1.mod) = 6c38c677d14fc3d35aa06017b339ef57be98de0f2142523635d63b5eeb9ac600 -SIZE (go/devel_glab/glab-v1.73.1/v1.73.1.mod) = 8140 -SHA256 (go/devel_glab/glab-v1.73.1/v1.73.1.zip) = a698c8ef0d0ba94ee8be4b398ccfa7fa963cb5f16c507119a53bd5da0174559c -SIZE (go/devel_glab/glab-v1.73.1/v1.73.1.zip) = 17506729 +TIMESTAMP = 1760504467 +SHA256 (go/devel_glab/glab-v1.74.0/v1.74.0.mod) = 6c38c677d14fc3d35aa06017b339ef57be98de0f2142523635d63b5eeb9ac600 +SIZE (go/devel_glab/glab-v1.74.0/v1.74.0.mod) = 8140 +SHA256 (go/devel_glab/glab-v1.74.0/v1.74.0.zip) = d3f21f1223a444f52144fb0a89df395b0b610f65deec03271fa4425269fe53f8 +SIZE (go/devel_glab/glab-v1.74.0/v1.74.0.zip) = 17486124 diff --git a/devel/glab/pkg-plist b/devel/glab/pkg-plist index 7f6273740199..f6dbfbd47ee9 100644 --- a/devel/glab/pkg-plist +++ b/devel/glab/pkg-plist @@ -53,9 +53,6 @@ %%MANPAGES%%share/man/man1/glab-deploy-key.1.gz %%MANPAGES%%share/man/man1/glab-duo-ask.1.gz %%MANPAGES%%share/man/man1/glab-duo.1.gz -%%MANPAGES%%share/man/man1/glab-duo-claude-token.1.gz -%%MANPAGES%%share/man/man1/glab-duo-claude.1.gz -%%MANPAGES%%share/man/man1/glab-duo-codex.1.gz %%MANPAGES%%share/man/man1/glab-incident-close.1.gz %%MANPAGES%%share/man/man1/glab-incident-list.1.gz %%MANPAGES%%share/man/man1/glab-incident-note.1.gz diff --git a/devel/golangci-lint/Makefile b/devel/golangci-lint/Makefile index 604805b6e2a0..195dd0265ee7 100644 --- a/devel/golangci-lint/Makefile +++ b/devel/golangci-lint/Makefile @@ -1,7 +1,6 @@ PORTNAME= golangci-lint DISTVERSIONPREFIX= v -DISTVERSION= 2.4.0 -PORTREVISION= 3 +DISTVERSION= 2.5.0 CATEGORIES= devel MAINTAINER= dutra@FreeBSD.org diff --git a/devel/golangci-lint/distinfo b/devel/golangci-lint/distinfo index a3e2aadeaf85..6d5534dcbf22 100644 --- a/devel/golangci-lint/distinfo +++ b/devel/golangci-lint/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1756595488 -SHA256 (go/devel_golangci-lint/golangci-lint-v2.4.0/v2.4.0.mod) = 932eec519a8abe11111e4746f1675c8bd2120691b3893a4e6081ee4333c8fd55 -SIZE (go/devel_golangci-lint/golangci-lint-v2.4.0/v2.4.0.mod) = 9682 -SHA256 (go/devel_golangci-lint/golangci-lint-v2.4.0/v2.4.0.zip) = 89bdc80bd2c577a08749210d07c0867210c0bffa29352c7d63411de22468f5c3 -SIZE (go/devel_golangci-lint/golangci-lint-v2.4.0/v2.4.0.zip) = 1803634 +TIMESTAMP = 1760539161 +SHA256 (go/devel_golangci-lint/golangci-lint-v2.5.0/v2.5.0.mod) = 41e79ad6d4d78115005c2c70526c1b41b158031756be8baa8e3dc39c429b1152 +SIZE (go/devel_golangci-lint/golangci-lint-v2.5.0/v2.5.0.mod) = 9800 +SHA256 (go/devel_golangci-lint/golangci-lint-v2.5.0/v2.5.0.zip) = 94b66aa801f66ce99ff117b7c409b398bd4e94ccbc7821cda3ddf10a21e9035f +SIZE (go/devel_golangci-lint/golangci-lint-v2.5.0/v2.5.0.zip) = 1820419 diff --git a/devel/gwenhywfar/Makefile b/devel/gwenhywfar/Makefile index 84c2617f3a4c..a33bcc5afff0 100644 --- a/devel/gwenhywfar/Makefile +++ b/devel/gwenhywfar/Makefile @@ -1,8 +1,8 @@ PORTNAME= gwenhywfar -PORTVERSION= 5.12.2 +PORTVERSION= 5.13.0 PORTREVISION?= 0 CATEGORIES= devel net security -MASTER_SITES= https://www.aquamaniac.de/rdm/attachments/download/539/ +MASTER_SITES= https://www.aquamaniac.de/rdm/attachments/download/550/ MAINTAINER?= jhale@FreeBSD.org COMMENT?= Multi-platform helper library for networking and security applications @@ -64,7 +64,6 @@ INSTALL_WRKSRC= ${WRKSRC}/gui/${_GWEN_GUI} LIB_DEPENDS+= libFOX-1.6.so:x11-toolkits/fox16 CONFIGURE_ARGS+=--with-fox-includes=${LOCALBASE}/include/fox-1.6 \ --with-fox-libs=${LOCALBASE}/lib -CXXFLAGS+= -Dregister= . elif ${_GWEN_GUI} == "gtk2" LIB_DEPENDS+= libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ diff --git a/devel/gwenhywfar/distinfo b/devel/gwenhywfar/distinfo index fa5d582a9fb3..6ca803486e9b 100644 --- a/devel/gwenhywfar/distinfo +++ b/devel/gwenhywfar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758418544 -SHA256 (gwenhywfar-5.12.2.tar.gz) = 4351ac71d22b6819238d62e71f1f40be835c0ac239c9e59174aed5db6a1e8b58 -SIZE (gwenhywfar-5.12.2.tar.gz) = 2747208 +TIMESTAMP = 1760581211 +SHA256 (gwenhywfar-5.13.0.tar.gz) = 26513d4b032eb8108ff2b6bf234b7d60c710fd16059fb80077acd79c250824b9 +SIZE (gwenhywfar-5.13.0.tar.gz) = 2748050 diff --git a/devel/jenkins-lts/Makefile b/devel/jenkins-lts/Makefile index b22b9cc23ed9..3f0306954642 100644 --- a/devel/jenkins-lts/Makefile +++ b/devel/jenkins-lts/Makefile @@ -1,5 +1,5 @@ PORTNAME= jenkins -PORTVERSION= 2.516.3 +PORTVERSION= 2.528.1 CATEGORIES= devel java MASTER_SITES= https://get.jenkins.io/war-stable/${PORTVERSION}/ PKGNAMESUFFIX= -lts diff --git a/devel/jenkins-lts/distinfo b/devel/jenkins-lts/distinfo index 61567c35d05f..48fc3b48f1d9 100644 --- a/devel/jenkins-lts/distinfo +++ b/devel/jenkins-lts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758133479 -SHA256 (jenkins/2.516.3/jenkins.war) = 81b3abcc0f24cea48e74effe152f69dc5f0d880edc0c2737c61446b3c5992c00 -SIZE (jenkins/2.516.3/jenkins.war) = 87500304 +TIMESTAMP = 1760543849 +SHA256 (jenkins/2.528.1/jenkins.war) = d630dca265f75a8d581f127a9234f1679d4b0800a8f370d03ad4a154ceb7295b +SIZE (jenkins/2.528.1/jenkins.war) = 95450898 diff --git a/devel/jenkins/Makefile b/devel/jenkins/Makefile index 32b351935c4f..dff2fcdb8b38 100644 --- a/devel/jenkins/Makefile +++ b/devel/jenkins/Makefile @@ -1,5 +1,5 @@ PORTNAME= jenkins -PORTVERSION= 2.531 +PORTVERSION= 2.532 CATEGORIES= devel java MASTER_SITES= https://get.jenkins.io/war/${PORTVERSION}/ DISTNAME= jenkins diff --git a/devel/jenkins/distinfo b/devel/jenkins/distinfo index 89c17315aa04..7ed0b28a2209 100644 --- a/devel/jenkins/distinfo +++ b/devel/jenkins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760217877 -SHA256 (jenkins/2.531/jenkins.war) = ccaa59b34ff7b13bdc442d57b39eee130f7ee582792269fde262fb18b9212f41 -SIZE (jenkins/2.531/jenkins.war) = 94643876 +TIMESTAMP = 1760466660 +SHA256 (jenkins/2.532/jenkins.war) = 50e9b91184005736a6399dfdd26fece06ff26f9a720091c1406017c1d3f65b4f +SIZE (jenkins/2.532/jenkins.war) = 94658312 diff --git a/devel/llvm-devel/Makefile.COMMANDS b/devel/llvm-devel/Makefile.COMMANDS index 2b2600bfeb6f..93b56ac5db45 100644 --- a/devel/llvm-devel/Makefile.COMMANDS +++ b/devel/llvm-devel/Makefile.COMMANDS @@ -142,7 +142,9 @@ LLDB_COMMANDS= \ lldb-dap \ lldb-instr \ lldb-mcp \ - lldb-server + lldb-server \ + lldb-tblgen \ + yaml2macho-core MLIR_COMMANDS= \ mlir-cat \ diff --git a/devel/llvm-devel/Makefile.snapshot b/devel/llvm-devel/Makefile.snapshot index 2ce515f2a183..97d56d002ba5 100644 --- a/devel/llvm-devel/Makefile.snapshot +++ b/devel/llvm-devel/Makefile.snapshot @@ -4,6 +4,6 @@ # LLVM_MAJOR= 22 LLVM_RELEASE= ${LLVM_MAJOR}.0.0 -SNAPDATE= 20250904 +SNAPDATE= 20251007 -LLVM_PROJECT_COMMIT= 13f97f013adbe7ad0ef2bf3634d14b6fccfae90d +LLVM_PROJECT_COMMIT= cce7cfbf53f9e9b0927fb2edd464a8889abb8155 diff --git a/devel/llvm-devel/distinfo b/devel/llvm-devel/distinfo index afbcd1c105c2..95432a792625 100644 --- a/devel/llvm-devel/distinfo +++ b/devel/llvm-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756990631 -SHA256 (llvm-llvm-project-22.0.d20250904-13f97f013adbe7ad0ef2bf3634d14b6fccfae90d_GH0.tar.gz) = 8bf3fbe1de1ef1fd6cfcba7bf7486b868e3f3086c6f2a6e887e4c831c3e0d51e -SIZE (llvm-llvm-project-22.0.d20250904-13f97f013adbe7ad0ef2bf3634d14b6fccfae90d_GH0.tar.gz) = 247160057 +TIMESTAMP = 1759834561 +SHA256 (llvm-llvm-project-22.0.d20251007-cce7cfbf53f9e9b0927fb2edd464a8889abb8155_GH0.tar.gz) = d46b58adebf5c6bd57f80ed213d444dde6047bd5cc40a2e5f170c733ea3ee033 +SIZE (llvm-llvm-project-22.0.d20251007-cce7cfbf53f9e9b0927fb2edd464a8889abb8155_GH0.tar.gz) = 248714842 diff --git a/devel/llvm-devel/pkg-plist b/devel/llvm-devel/pkg-plist index 9a5845a29f81..b88c767bc2cb 100644 --- a/devel/llvm-devel/pkg-plist +++ b/devel/llvm-devel/pkg-plist @@ -129,6 +129,8 @@ bin/offload-arch-devel %%LLDB%%bin/lldb-instr-devel %%LLDB%%bin/lldb-mcp-devel %%LLDB%%bin/lldb-server-devel +%%LLDB%%bin/lldb-tblgen-devel +bin/yaml2macho-core-devel %%MLIR%%bin/mlir-cat-devel %%MLIR%%bin/mlir-lsp-server-devel %%MLIR%%bin/mlir-minimal-opt-devel @@ -231,6 +233,7 @@ llvm-devel/bin/llc %%LLDB%%llvm-devel/bin/lldb-instr %%LLDB%%llvm-devel/bin/lldb-mcp %%LLDB%%llvm-devel/bin/lldb-server +%%LLDB%%llvm-devel/bin/lldb-tblgen llvm-devel/bin/lli llvm-devel/bin/llvm-addr2line llvm-devel/bin/llvm-ar @@ -336,6 +339,7 @@ llvm-devel/bin/sanstats %%FLANG%%llvm-devel/bin/tco llvm-devel/bin/verify-uselistorder %%LLD%%llvm-devel/bin/wasm-ld +llvm-devel/bin/yaml2macho-core %%CLANG%%llvm-devel/include/clang-c/BuildSystem.h %%CLANG%%llvm-devel/include/clang-c/CXCompilationDatabase.h %%CLANG%%llvm-devel/include/clang-c/CXDiagnostic.h @@ -415,10 +419,12 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/CapturingThisInMemberVariableCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/CastingThroughVoidCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/ChainedComparisonCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/CommandProcessorCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/ComparePointerToMemberVirtualFunctionCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/CopyConstructorInitCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/CrtpConstructorAccessibilityCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/DanglingHandleCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/DerivedMethodShadowingBaseMethodCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/DynamicStaticInitializersCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/EasilySwappableParametersCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/EmptyCatchCheck.h @@ -484,8 +490,10 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/TaggedUnionMemberCountCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/TerminatingContinueCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/ThrowKeywordMissingCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/ThrowingStaticInitializationCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/TooSmallLoopVariableCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UncheckedOptionalAccessCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UncheckedStringToNumberConversionCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UndefinedMemoryManipulationCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UndelegatedConstructorCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UnhandledExceptionAtNewCheck.h @@ -498,7 +506,6 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UnusedReturnValueCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/UseAfterMoveCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/bugprone/VirtualNearMissCheck.h -%%EXTRAS%%llvm-devel/include/clang-tidy/cert/CommandProcessorCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/DefaultOperatorNewAlignmentCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/DontModifyStdNamespaceCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/FloatLoopCounter.h @@ -506,11 +513,7 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/cert/MutatingCopyCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/NonTrivialTypesLibcMemoryCallsCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/ProperlySeededRandomGeneratorCheck.h -%%EXTRAS%%llvm-devel/include/clang-tidy/cert/SetLongJmpCheck.h -%%EXTRAS%%llvm-devel/include/clang-tidy/cert/StaticObjectExceptionCheck.h -%%EXTRAS%%llvm-devel/include/clang-tidy/cert/StrToNumCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cert/ThrownExceptionTypeCheck.h -%%EXTRAS%%llvm-devel/include/clang-tidy/cert/VariadicFunctionDefCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/concurrency/MtUnsafeCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/concurrency/ThreadCanceltypeAsynchronousCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cppcoreguidelines/AvoidCapturingLambdaCoroutinesCheck.h @@ -544,6 +547,7 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/cppcoreguidelines/SpecialMemberFunctionsCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cppcoreguidelines/UseEnumClassCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/cppcoreguidelines/VirtualClassDestructorCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/custom/QueryCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/darwin/AvoidSpinlockCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/darwin/DispatchOnceNonstaticCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/fuchsia/DefaultArgumentsCallsCheck.h @@ -560,6 +564,7 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/google/DefaultArgumentsCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/google/ExplicitConstructorCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/google/ExplicitMakePairCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/google/FloatTypesCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/google/FunctionNamingCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/google/GlobalNamesInHeadersCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/google/GlobalVariableDeclarationCheck.h @@ -582,6 +587,7 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/llvm/PreferStaticOverAnonymousNamespaceCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/llvm/TwineLocalCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/llvm/UseNewMLIROpBuilderCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/llvm/UseRangesCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/llvmlibc/CalleeNamespaceCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/llvmlibc/ImplementationInNamespaceCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/llvmlibc/InlineFunctionDeclCheck.h @@ -613,6 +619,8 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/misc/UseInternalLinkageCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/modernize/AvoidBindCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/modernize/AvoidCArraysCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/modernize/AvoidSetjmpLongjmpCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/modernize/AvoidVariadicFunctionsCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/modernize/ConcatNestedNamespacesCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/modernize/DeprecatedHeadersCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/modernize/DeprecatedIosBaseAliasesCheck.h @@ -734,6 +742,7 @@ llvm-devel/bin/verify-uselistorder %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantFunctionPtrDereferenceCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantInlineSpecifierCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantMemberInitCheck.h +%%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantParenthesesCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantPreprocessorCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantSmartptrGetCheck.h %%EXTRAS%%llvm-devel/include/clang-tidy/readability/RedundantStringCStrCheck.h @@ -874,6 +883,7 @@ llvm-devel/bin/verify-uselistorder %%CLANG%%llvm-devel/include/clang/AST/ExternalASTSource.h %%CLANG%%llvm-devel/include/clang/AST/FormatString.h %%CLANG%%llvm-devel/include/clang/AST/GlobalDecl.h +%%CLANG%%llvm-devel/include/clang/AST/HLSLResource.h %%CLANG%%llvm-devel/include/clang/AST/IgnoreExpr.h %%CLANG%%llvm-devel/include/clang/AST/JSONNodeDumper.h %%CLANG%%llvm-devel/include/clang/AST/LambdaCapture.h @@ -947,6 +957,7 @@ llvm-devel/bin/verify-uselistorder %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/Dominators.h %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/IntervalPartition.h +%%CLANG%%llvm-devel/include/clang/Analysis/Analyses/LifetimeAnnotations.h %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/LifetimeSafety.h %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/LiveVariables.h %%CLANG%%llvm-devel/include/clang/Analysis/Analyses/PostOrderCFGView.h @@ -1393,7 +1404,6 @@ llvm-devel/bin/verify-uselistorder %%CLANG%%llvm-devel/include/clang/Interpreter/CodeCompletion.h %%CLANG%%llvm-devel/include/clang/Interpreter/Interpreter.h %%CLANG%%llvm-devel/include/clang/Interpreter/PartialTranslationUnit.h -%%CLANG%%llvm-devel/include/clang/Interpreter/RemoteJITUtils.h %%CLANG%%llvm-devel/include/clang/Interpreter/Value.h %%CLANG%%llvm-devel/include/clang/Lex/CodeCompletionHandler.h %%CLANG%%llvm-devel/include/clang/Lex/DependencyDirectivesScanner.h @@ -2375,6 +2385,7 @@ llvm-devel/bin/verify-uselistorder %%LLDB%%llvm-devel/include/lldb/Interpreter/CommandReturnObject.h %%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/OperatingSystemInterface.h %%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/ScriptedBreakpointInterface.h +%%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/ScriptedFrameInterface.h %%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/ScriptedInterface.h %%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h %%LLDB%%llvm-devel/include/lldb/Interpreter/Interfaces/ScriptedPlatformInterface.h @@ -2428,6 +2439,7 @@ llvm-devel/bin/verify-uselistorder %%LLDB%%llvm-devel/include/lldb/Protocol/MCP/Resource.h %%LLDB%%llvm-devel/include/lldb/Protocol/MCP/Server.h %%LLDB%%llvm-devel/include/lldb/Protocol/MCP/Tool.h +%%LLDB%%llvm-devel/include/lldb/Protocol/MCP/Transport.h %%LLDB%%llvm-devel/include/lldb/Symbol/ArmUnwindInfo.h %%LLDB%%llvm-devel/include/lldb/Symbol/Block.h %%LLDB%%llvm-devel/include/lldb/Symbol/CallFrameInfo.h @@ -2860,6 +2872,7 @@ llvm-devel/include/llvm/Analysis/InstSimplifyFolder.h llvm-devel/include/llvm/Analysis/InstructionPrecedenceTracking.h llvm-devel/include/llvm/Analysis/InstructionSimplify.h llvm-devel/include/llvm/Analysis/InteractiveModelRunner.h +llvm-devel/include/llvm/Analysis/InterestingMemoryOperand.h llvm-devel/include/llvm/Analysis/IteratedDominanceFrontier.h llvm-devel/include/llvm/Analysis/KernelInfo.h llvm-devel/include/llvm/Analysis/LastRunTrackingAnalysis.h @@ -3017,7 +3030,11 @@ llvm-devel/include/llvm/CAS/BuiltinCASContext.h llvm-devel/include/llvm/CAS/BuiltinObjectHasher.h llvm-devel/include/llvm/CAS/CASID.h llvm-devel/include/llvm/CAS/CASReference.h +llvm-devel/include/llvm/CAS/FileOffset.h +llvm-devel/include/llvm/CAS/MappedFileRegionArena.h llvm-devel/include/llvm/CAS/ObjectStore.h +llvm-devel/include/llvm/CAS/OnDiskDataAllocator.h +llvm-devel/include/llvm/CAS/OnDiskTrieRawHashMap.h llvm-devel/include/llvm/CGData/CGDataPatchItem.h llvm-devel/include/llvm/CGData/CodeGenData.h llvm-devel/include/llvm/CGData/CodeGenData.inc @@ -3695,6 +3712,7 @@ llvm-devel/include/llvm/ExecutionEngine/Orc/EPCGenericRTDyldMemoryManager.h llvm-devel/include/llvm/ExecutionEngine/Orc/EPCIndirectionUtils.h llvm-devel/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h llvm-devel/include/llvm/ExecutionEngine/Orc/ExecutorProcessControl.h +llvm-devel/include/llvm/ExecutionEngine/Orc/ExecutorResolutionGenerator.h llvm-devel/include/llvm/ExecutionEngine/Orc/GetDylibInterface.h llvm-devel/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h llvm-devel/include/llvm/ExecutionEngine/Orc/IRPartitionLayer.h @@ -3749,6 +3767,7 @@ llvm-devel/include/llvm/ExecutionEngine/Orc/Speculation.h llvm-devel/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/DefaultHostBootstrapValues.h llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/ExecutorBootstrapService.h +llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/ExecutorResolver.h llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/ExecutorSharedMemoryMapperService.h llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderGDB.h llvm-devel/include/llvm/ExecutionEngine/Orc/TargetProcess/JITLoaderPerf.h @@ -3904,6 +3923,7 @@ llvm-devel/include/llvm/IR/IntrinsicsRISCV.h llvm-devel/include/llvm/IR/IntrinsicsRISCV.td llvm-devel/include/llvm/IR/IntrinsicsRISCVXAndes.td llvm-devel/include/llvm/IR/IntrinsicsRISCVXCV.td +llvm-devel/include/llvm/IR/IntrinsicsRISCVXMIPS.td llvm-devel/include/llvm/IR/IntrinsicsRISCVXTHead.td llvm-devel/include/llvm/IR/IntrinsicsRISCVXsf.td llvm-devel/include/llvm/IR/IntrinsicsS390.h @@ -4239,7 +4259,6 @@ llvm-devel/include/llvm/ProfileData/SampleProfReader.h llvm-devel/include/llvm/ProfileData/SampleProfWriter.h llvm-devel/include/llvm/ProfileData/SymbolRemappingReader.h llvm-devel/include/llvm/Remarks/BitstreamRemarkContainer.h -llvm-devel/include/llvm/Remarks/BitstreamRemarkParser.h llvm-devel/include/llvm/Remarks/BitstreamRemarkSerializer.h llvm-devel/include/llvm/Remarks/HotnessThresholdParser.h llvm-devel/include/llvm/Remarks/Remark.h @@ -4372,17 +4391,22 @@ llvm-devel/include/llvm/Support/GenericLoopInfoImpl.h llvm-devel/include/llvm/Support/GlobPattern.h llvm-devel/include/llvm/Support/GraphWriter.h llvm-devel/include/llvm/Support/HashBuilder.h +llvm-devel/include/llvm/Support/HashingOutputBackend.h llvm-devel/include/llvm/Support/HexagonAttributeParser.h llvm-devel/include/llvm/Support/HexagonAttributes.h llvm-devel/include/llvm/Support/InitLLVM.h llvm-devel/include/llvm/Support/InstructionCost.h llvm-devel/include/llvm/Support/InterleavedRange.h llvm-devel/include/llvm/Support/JSON.h +llvm-devel/include/llvm/Support/Jobserver.h llvm-devel/include/llvm/Support/KnownBits.h llvm-devel/include/llvm/Support/KnownFPClass.h llvm-devel/include/llvm/Support/LEB128.h llvm-devel/include/llvm/Support/LICENSE.TXT llvm-devel/include/llvm/Support/LLVMDriver.h +llvm-devel/include/llvm/Support/LSP/Logging.h +llvm-devel/include/llvm/Support/LSP/Protocol.h +llvm-devel/include/llvm/Support/LSP/Transport.h llvm-devel/include/llvm/Support/LineIterator.h llvm-devel/include/llvm/Support/Locale.h llvm-devel/include/llvm/Support/LockFileManager.h @@ -4467,6 +4491,12 @@ llvm-devel/include/llvm/Support/VCSRevision.h llvm-devel/include/llvm/Support/Valgrind.h llvm-devel/include/llvm/Support/VersionTuple.h llvm-devel/include/llvm/Support/VirtualFileSystem.h +llvm-devel/include/llvm/Support/VirtualOutputBackend.h +llvm-devel/include/llvm/Support/VirtualOutputBackends.h +llvm-devel/include/llvm/Support/VirtualOutputConfig.def +llvm-devel/include/llvm/Support/VirtualOutputConfig.h +llvm-devel/include/llvm/Support/VirtualOutputError.h +llvm-devel/include/llvm/Support/VirtualOutputFile.h llvm-devel/include/llvm/Support/Watchdog.h llvm-devel/include/llvm/Support/Win64EH.h llvm-devel/include/llvm/Support/Windows/WindowsSupport.h @@ -4488,6 +4518,7 @@ llvm-devel/include/llvm/Support/type_traits.h llvm-devel/include/llvm/Support/xxhash.h llvm-devel/include/llvm/TableGen/AArch64ImmCheck.h llvm-devel/include/llvm/TableGen/Automaton.td +llvm-devel/include/llvm/TableGen/CodeGenHelpers.h llvm-devel/include/llvm/TableGen/DirectiveEmitter.h llvm-devel/include/llvm/TableGen/Error.h llvm-devel/include/llvm/TableGen/Main.h @@ -4674,6 +4705,7 @@ llvm-devel/include/llvm/Transforms/Scalar/DCE.h llvm-devel/include/llvm/Transforms/Scalar/DFAJumpThreading.h llvm-devel/include/llvm/Transforms/Scalar/DeadStoreElimination.h llvm-devel/include/llvm/Transforms/Scalar/DivRemPairs.h +llvm-devel/include/llvm/Transforms/Scalar/DropUnnecessaryAssumes.h llvm-devel/include/llvm/Transforms/Scalar/EarlyCSE.h llvm-devel/include/llvm/Transforms/Scalar/FlattenCFG.h llvm-devel/include/llvm/Transforms/Scalar/Float2Int.h @@ -4761,6 +4793,7 @@ llvm-devel/include/llvm/Transforms/Utils/ControlFlowUtils.h llvm-devel/include/llvm/Transforms/Utils/CountVisits.h llvm-devel/include/llvm/Transforms/Utils/CtorUtils.h llvm-devel/include/llvm/Transforms/Utils/DXILUpgrade.h +llvm-devel/include/llvm/Transforms/Utils/DebugSSAUpdater.h llvm-devel/include/llvm/Transforms/Utils/Debugify.h llvm-devel/include/llvm/Transforms/Utils/DeclareRuntimeLibcalls.h llvm-devel/include/llvm/Transforms/Utils/EntryExitInstrumenter.h @@ -4833,7 +4866,6 @@ llvm-devel/include/llvm/Transforms/Utils/UnifyLoopExits.h llvm-devel/include/llvm/Transforms/Utils/UnrollLoop.h llvm-devel/include/llvm/Transforms/Utils/VNCoercion.h llvm-devel/include/llvm/Transforms/Utils/ValueMapper.h -llvm-devel/include/llvm/Transforms/Vectorize/EVLIndVarSimplify.h llvm-devel/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h llvm-devel/include/llvm/Transforms/Vectorize/LoopIdiomVectorize.h llvm-devel/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h @@ -4971,7 +5003,6 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Bindings/Python/IRTypes.h %%MLIR%%llvm-devel/include/mlir/Bindings/Python/Nanobind.h %%MLIR%%llvm-devel/include/mlir/Bindings/Python/NanobindAdaptors.h -%%MLIR%%llvm-devel/include/mlir/Bindings/Python/PybindAdaptors.h %%MLIR%%llvm-devel/include/mlir/Bytecode/BytecodeImplementation.h %%MLIR%%llvm-devel/include/mlir/Bytecode/BytecodeOpInterface.cpp.inc %%MLIR%%llvm-devel/include/mlir/Bytecode/BytecodeOpInterface.h @@ -6156,8 +6187,6 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Transforms/Passes.h %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Transforms/Passes.h.inc %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Transforms/Passes.td -%%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Transforms/PassesEnums.cpp.inc -%%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Transforms/PassesEnums.h.inc %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Utils/ConversionUtils.h %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Utils/QuantUtils.h %%MLIR%%llvm-devel/include/mlir/Dialect/Tosa/Utils/ShapeUtils.h @@ -6215,6 +6244,11 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/PDLExtension/PDLExtensionOps.h %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/PDLExtension/PDLExtensionOps.h.inc %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/PDLExtension/PDLExtensionOps.td +%%MLIR%%llvm-devel/include/mlir/Dialect/Transform/SMTExtension/SMTExtension.h +%%MLIR%%llvm-devel/include/mlir/Dialect/Transform/SMTExtension/SMTExtensionOps.cpp.inc +%%MLIR%%llvm-devel/include/mlir/Dialect/Transform/SMTExtension/SMTExtensionOps.h +%%MLIR%%llvm-devel/include/mlir/Dialect/Transform/SMTExtension/SMTExtensionOps.h.inc +%%MLIR%%llvm-devel/include/mlir/Dialect/Transform/SMTExtension/SMTExtensionOps.td %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/Transforms/Passes.h %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/Transforms/Passes.h.inc %%MLIR%%llvm-devel/include/mlir/Dialect/Transform/Transforms/Passes.td @@ -6485,10 +6519,6 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Interfaces/ControlFlowInterfaces.h %%MLIR%%llvm-devel/include/mlir/Interfaces/ControlFlowInterfaces.h.inc %%MLIR%%llvm-devel/include/mlir/Interfaces/ControlFlowInterfaces.td -%%MLIR%%llvm-devel/include/mlir/Interfaces/CopyOpInterface.cpp.inc -%%MLIR%%llvm-devel/include/mlir/Interfaces/CopyOpInterface.h -%%MLIR%%llvm-devel/include/mlir/Interfaces/CopyOpInterface.h.inc -%%MLIR%%llvm-devel/include/mlir/Interfaces/CopyOpInterface.td %%MLIR%%llvm-devel/include/mlir/Interfaces/DataLayoutAttrInterface.cpp.inc %%MLIR%%llvm-devel/include/mlir/Interfaces/DataLayoutAttrInterface.h.inc %%MLIR%%llvm-devel/include/mlir/Interfaces/DataLayoutInterfaces.h @@ -6527,6 +6557,10 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Interfaces/LoopLikeInterface.h %%MLIR%%llvm-devel/include/mlir/Interfaces/LoopLikeInterface.h.inc %%MLIR%%llvm-devel/include/mlir/Interfaces/LoopLikeInterface.td +%%MLIR%%llvm-devel/include/mlir/Interfaces/MemOpInterfaces.cpp.inc +%%MLIR%%llvm-devel/include/mlir/Interfaces/MemOpInterfaces.h +%%MLIR%%llvm-devel/include/mlir/Interfaces/MemOpInterfaces.h.inc +%%MLIR%%llvm-devel/include/mlir/Interfaces/MemOpInterfaces.td %%MLIR%%llvm-devel/include/mlir/Interfaces/MemorySlotInterfaces.h %%MLIR%%llvm-devel/include/mlir/Interfaces/MemorySlotInterfaces.td %%MLIR%%llvm-devel/include/mlir/Interfaces/MemorySlotOpInterfaces.cpp.inc @@ -6703,10 +6737,7 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Tools/Plugins/DialectPlugin.h %%MLIR%%llvm-devel/include/mlir/Tools/Plugins/PassPlugin.h %%MLIR%%llvm-devel/include/mlir/Tools/lsp-server-support/CompilationDatabase.h -%%MLIR%%llvm-devel/include/mlir/Tools/lsp-server-support/Logging.h -%%MLIR%%llvm-devel/include/mlir/Tools/lsp-server-support/Protocol.h %%MLIR%%llvm-devel/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h -%%MLIR%%llvm-devel/include/mlir/Tools/lsp-server-support/Transport.h %%MLIR%%llvm-devel/include/mlir/Tools/mlir-lsp-server/MlirLspRegistryFunction.h %%MLIR%%llvm-devel/include/mlir/Tools/mlir-lsp-server/MlirLspServerMain.h %%MLIR%%llvm-devel/include/mlir/Tools/mlir-opt/MlirOptMain.h @@ -6717,6 +6748,7 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%MLIR%%llvm-devel/include/mlir/Tools/mlir-translate/MlirTranslateMain.h %%MLIR%%llvm-devel/include/mlir/Tools/mlir-translate/Translation.h %%MLIR%%llvm-devel/include/mlir/Tools/tblgen-lsp-server/TableGenLspServerMain.h +%%MLIR%%llvm-devel/include/mlir/Transforms/BubbleDownMemorySpaceCasts.h %%MLIR%%llvm-devel/include/mlir/Transforms/CFGToSCF.h %%MLIR%%llvm-devel/include/mlir/Transforms/CSE.h %%MLIR%%llvm-devel/include/mlir/Transforms/CommutativityUtils.h @@ -7074,6 +7106,7 @@ llvm-devel/include/llvm/XRay/YAMLXRayRecord.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_bitmanip.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_corev_alu.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_crypto.h +%%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_mips.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_nds.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_ntlh.h %%CLANG%%llvm-devel/lib/clang/%%LLVM_MAJOR%%/include/riscv_vector.h @@ -7392,6 +7425,7 @@ llvm-devel/lib/libLLVM.so.%%LLVM_MAJOR_MINOR%%git %%STATIC_LIBS%%llvm-devel/lib/libLLVMSparcDisassembler.a %%STATIC_LIBS%%llvm-devel/lib/libLLVMSparcInfo.a %%STATIC_LIBS%%llvm-devel/lib/libLLVMSupport.a +%%STATIC_LIBS%%llvm-devel/lib/libLLVMSupportLSP.a %%STATIC_LIBS%%llvm-devel/lib/libLLVMSymbolize.a %%STATIC_LIBS%%llvm-devel/lib/libLLVMSystemZAsmParser.a %%STATIC_LIBS%%llvm-devel/lib/libLLVMSystemZCodeGen.a @@ -7548,7 +7582,6 @@ llvm-devel/lib/libLTO.so.%%LLVM_MAJOR_MINOR%%git %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRConvertToEmitC.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRConvertToLLVMInterface.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRConvertToLLVMPass.a -%%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRCopyOpInterface.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRDLTIDialect.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRDLTITestPasses.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRDLTITransformOps.a @@ -7632,6 +7665,7 @@ llvm-devel/lib/libLTO.so.%%LLVM_MAJOR_MINOR%%git %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMathToROCDL.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMathToSPIRV.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMathTransforms.a +%%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMemOpInterfaces.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMemRefDialect.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMemRefTestPasses.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRMemRefToEmitC.a @@ -7799,6 +7833,7 @@ llvm-devel/lib/libLTO.so.%%LLVM_MAJOR_MINOR%%git %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformDialectUtils.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformLoopExtension.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformPDLExtension.a +%%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformSMTExtension.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformTuneExtension.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransformUtils.a %%STATIC_LIBS%%%%MLIR%%llvm-devel/lib/libMLIRTransforms.a @@ -7900,6 +7935,7 @@ llvm-devel/lib/libRemarks.so.%%LLVM_MAJOR_MINOR%%git %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyCERTModule.a %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyConcurrencyModule.a %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyCppCoreGuidelinesModule.a +%%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyCustomModule.a %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyDarwinModule.a %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyFuchsiaModule.a %%STATIC_LIBS%%%%EXTRAS%%llvm-devel/lib/libclangTidyGoogleModule.a @@ -8060,6 +8096,7 @@ llvm-devel/share/opt-viewer/style.css %%CLANG%%llvm-devel/share/scan-view/bugcatcher.ico %%CLANG%%llvm-devel/share/scan-view/startfile.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/BooleanExpression.py +%%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/DiffUpdater.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/LitConfig.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/LitTestCase.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/ProgressBar.py @@ -8071,6 +8108,7 @@ llvm-devel/share/opt-viewer/style.css %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/TestingConfig.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/__init__.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/builtin_commands/__init__.py +%%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/builtin_commands/_launch_with_limit.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/builtin_commands/cat.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/builtin_commands/diff.py %%LIT%%%%PYTHON_SITELIBDIR%%/%%LIT_MOD_NAME%%/cl_arguments.py diff --git a/devel/llvm21/Makefile b/devel/llvm21/Makefile index 5a46adcd39d6..7ee0cde6e127 100644 --- a/devel/llvm21/Makefile +++ b/devel/llvm21/Makefile @@ -1,5 +1,5 @@ PORTNAME= llvm -DISTVERSION= 21.1.2 +DISTVERSION= 21.1.3 PORTREVISION= 0 CATEGORIES= devel lang MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION}/ diff --git a/devel/llvm21/distinfo b/devel/llvm21/distinfo index 273b6b3bbbc9..6916a92c4509 100644 --- a/devel/llvm21/distinfo +++ b/devel/llvm21/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758722928 -SHA256 (llvm-project-21.1.2.src.tar.xz) = 1a417d1c8faf8d93e73fec1cbb76d393ed3218974c2283c7bac9672d3d47c54b -SIZE (llvm-project-21.1.2.src.tar.xz) = 158926856 +TIMESTAMP = 1759927782 +SHA256 (llvm-project-21.1.3.src.tar.xz) = 9c9db50d8046f668156d83f6b594631b4ca79a0d96e4f19bed9dc019b022e58f +SIZE (llvm-project-21.1.3.src.tar.xz) = 158943752 diff --git a/devel/poser/Makefile b/devel/poser/Makefile index 4b54a24a14bb..234f70c209d0 100644 --- a/devel/poser/Makefile +++ b/devel/poser/Makefile @@ -11,6 +11,9 @@ WWW= https://zirias.github.io/poser/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Unmaintained port +EXPIRATION_DATE=2025-12-31 + USES= compiler:c11 gmake pkgconfig tar:xz USE_LDCONFIG= yes diff --git a/devel/py-aiortc/Makefile b/devel/py-aiortc/Makefile index cf861bf2f3d0..3466f3ea69a1 100644 --- a/devel/py-aiortc/Makefile +++ b/devel/py-aiortc/Makefile @@ -1,5 +1,5 @@ PORTNAME= aiortc -DISTVERSION= 1.13.0 +DISTVERSION= 1.14.0 CATEGORIES= devel multimedia python www MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-aiortc/distinfo b/devel/py-aiortc/distinfo index adca35be9aa9..368affc20006 100644 --- a/devel/py-aiortc/distinfo +++ b/devel/py-aiortc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748523149 -SHA256 (aiortc-1.13.0.tar.gz) = 5d209975c22d0910fb5a0f0e2caa828f2da966c53580f7c7170ac3a16a871620 -SIZE (aiortc-1.13.0.tar.gz) = 1179894 +TIMESTAMP = 1760457231 +SHA256 (aiortc-1.14.0.tar.gz) = adc8a67ace10a085721e588e06a00358ed8eaf5f6b62f0a95358ff45628dd762 +SIZE (aiortc-1.14.0.tar.gz) = 1180864 diff --git a/devel/py-babi_grammars/Makefile b/devel/py-babi_grammars/Makefile index 74779c127a89..cc30ce3ee628 100644 --- a/devel/py-babi_grammars/Makefile +++ b/devel/py-babi_grammars/Makefile @@ -1,5 +1,5 @@ PORTNAME= babi_grammars -DISTVERSION= 0.0.63 +DISTVERSION= 0.0.64 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-babi_grammars/distinfo b/devel/py-babi_grammars/distinfo index 0ac74f18ec60..cc834e000d74 100644 --- a/devel/py-babi_grammars/distinfo +++ b/devel/py-babi_grammars/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757404785 -SHA256 (babi_grammars-0.0.63.tar.gz) = 5529af4cf0e942bfb9f90ea66e5fe17a2926878b90c3e1f0a95e20251356b88d -SIZE (babi_grammars-0.0.63.tar.gz) = 465155 +TIMESTAMP = 1760457295 +SHA256 (babi_grammars-0.0.64.tar.gz) = 1b39c34c58441d91fbe86d0ee0659f0222db7d88e5d2e2c713905551d2e37e24 +SIZE (babi_grammars-0.0.64.tar.gz) = 466917 diff --git a/devel/py-openstacksdk/Makefile b/devel/py-openstacksdk/Makefile index 1073e742a943..9724ed9b89e3 100644 --- a/devel/py-openstacksdk/Makefile +++ b/devel/py-openstacksdk/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}decorator>=4.4.1:devel/py-decorator@${PY_FLA ${PYTHON_PKGNAMEPREFIX}jmespath>=0.9.0:devel/py-jmespath@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonpatch>=1.16:devel/py-jsonpatch@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}keystoneauth1>=5.10.0:devel/py-keystoneauth1@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}os-service-types>=1.8.0:devel/py-os-service-types@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}os-service-types>0:devel/py-os-service-types@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pbr>=2.0.0:devel/py-pbr@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}platformdirs>=3:devel/py-platformdirs@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>=3.2.2:sysutils/py-psutil@${PY_FLAVOR} \ diff --git a/devel/py-pybind11/Makefile b/devel/py-pybind11/Makefile index 582cee5f3caf..a13d77c50b1a 100644 --- a/devel/py-pybind11/Makefile +++ b/devel/py-pybind11/Makefile @@ -1,5 +1,5 @@ PORTNAME= pybind11 -DISTVERSION= 2.13.6 +DISTVERSION= 3.0.1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,11 +11,11 @@ WWW= https://pybind11.readthedocs.io/en/stable/ \ LICENSE= BSD3CLAUSE -BUILD_DEPENDS= ${PY_SETUPTOOLS} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}scikit-build-core>0:devel/py-scikit-build-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} -USES= python -USE_PYTHON= pep517 concurrent autoplist +USES= cmake:indirect python +USE_PYTHON= pep517 concurrent autoplist pytest NO_ARCH= yes diff --git a/devel/py-pybind11/distinfo b/devel/py-pybind11/distinfo index 3a02704480e4..dc2251267414 100644 --- a/devel/py-pybind11/distinfo +++ b/devel/py-pybind11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1726298011 -SHA256 (pybind11-2.13.6.tar.gz) = ba6af10348c12b24e92fa086b39cfba0eff619b61ac77c406167d813b096d39a -SIZE (pybind11-2.13.6.tar.gz) = 218403 +TIMESTAMP = 1760505164 +SHA256 (pybind11-3.0.1.tar.gz) = 9c0f40056a016da59bab516efb523089139fcc6f2ba7e4930854c61efb932051 +SIZE (pybind11-3.0.1.tar.gz) = 546914 diff --git a/devel/py-scikit-build-core/Makefile b/devel/py-scikit-build-core/Makefile index 0c4739f0f45b..aa2108dde3b5 100644 --- a/devel/py-scikit-build-core/Makefile +++ b/devel/py-scikit-build-core/Makefile @@ -1,5 +1,5 @@ PORTNAME= scikit-build-core -DISTVERSION= 0.11.1 +DISTVERSION= 0.11.6 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -46,6 +46,6 @@ TEST_ENV= ${MAKE_ENV} \ NO_ARCH= yes -# tests as of 0.11.1: 1 failed, 415 passed, 5 skipped, 3 xfailed, 1 warning in 603.00s (0:10:03), see https://github.com/scikit-build/scikit-build-core/issues/1057 +# tests as of 0.11.6: 2 failed, 460 passed, 5 skipped, 4 xfailed, 1 warning in 1152.80s (0:19:12), see https://github.com/scikit-build/scikit-build-core/issues/1159 .include <bsd.port.mk> diff --git a/devel/py-scikit-build-core/distinfo b/devel/py-scikit-build-core/distinfo index 256a11ba316d..0d39780bddbf 100644 --- a/devel/py-scikit-build-core/distinfo +++ b/devel/py-scikit-build-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745646968 -SHA256 (scikit_build_core-0.11.1.tar.gz) = 4e5988df5cd33f0bdb9967b72663ca99f50383c9bc21d8b24fa40c0661ae72b7 -SIZE (scikit_build_core-0.11.1.tar.gz) = 273807 +TIMESTAMP = 1760505206 +SHA256 (scikit_build_core-0.11.6.tar.gz) = 5982ccd839735be99cfd3b92a8847c6c196692f476c215da84b79d2ad12f9f1b +SIZE (scikit_build_core-0.11.6.tar.gz) = 286006 diff --git a/devel/pybind11/Makefile b/devel/pybind11/Makefile index 1b6be96a204b..e0a989feae80 100644 --- a/devel/pybind11/Makefile +++ b/devel/pybind11/Makefile @@ -1,6 +1,6 @@ PORTNAME= pybind11 DISTVERSIONPREFIX= v -DISTVERSION= 2.13.6 +DISTVERSION= 3.0.1 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org @@ -23,4 +23,6 @@ CMAKE_TESTING_TARGET= pytest NO_ARCH= yes +# tests of 3.0.1: 5 failed, 1253 passed, 20 skipped, 2 xfailed, 1 xpassed in 53.99s + .include <bsd.port.mk> diff --git a/devel/pybind11/distinfo b/devel/pybind11/distinfo index d899221bd476..6153f18eacf0 100644 --- a/devel/pybind11/distinfo +++ b/devel/pybind11/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1726298147 -SHA256 (pybind-pybind11-v2.13.6_GH0.tar.gz) = e08cb87f4773da97fa7b5f035de8763abc656d87d5773e62f6da0587d1f0ec20 -SIZE (pybind-pybind11-v2.13.6_GH0.tar.gz) = 800804 +TIMESTAMP = 1760503125 +SHA256 (pybind-pybind11-v3.0.1_GH0.tar.gz) = 741633da746b7c738bb71f1854f957b9da660bcd2dce68d71949037f0969d0ca +SIZE (pybind-pybind11-v3.0.1_GH0.tar.gz) = 918227 diff --git a/devel/pybind11/pkg-plist b/devel/pybind11/pkg-plist index 1dff2e13bd8d..f7f1c9dfdb14 100644 --- a/devel/pybind11/pkg-plist +++ b/devel/pybind11/pkg-plist @@ -4,15 +4,26 @@ include/pybind11/cast.h include/pybind11/chrono.h include/pybind11/common.h include/pybind11/complex.h +include/pybind11/conduit/README.txt +include/pybind11/conduit/pybind11_conduit_v1.h +include/pybind11/conduit/pybind11_platform_abi_id.h +include/pybind11/conduit/wrap_include_python_h.h +include/pybind11/critical_section.h include/pybind11/detail/class.h include/pybind11/detail/common.h include/pybind11/detail/cpp_conduit.h include/pybind11/detail/descr.h +include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h include/pybind11/detail/exception_translation.h +include/pybind11/detail/function_record_pyobject.h include/pybind11/detail/init.h include/pybind11/detail/internals.h +include/pybind11/detail/native_enum_data.h +include/pybind11/detail/pybind11_namespace_macros.h +include/pybind11/detail/struct_smart_holder.h include/pybind11/detail/type_caster_base.h include/pybind11/detail/typeid.h +include/pybind11/detail/using_smart_holder.h include/pybind11/detail/value_and_holder.h include/pybind11/eigen.h include/pybind11/eigen/common.h @@ -23,7 +34,9 @@ include/pybind11/eval.h include/pybind11/functional.h include/pybind11/gil.h include/pybind11/gil_safe_call_once.h +include/pybind11/gil_simple.h include/pybind11/iostream.h +include/pybind11/native_enum.h include/pybind11/numpy.h include/pybind11/operators.h include/pybind11/options.h @@ -32,8 +45,11 @@ include/pybind11/pytypes.h include/pybind11/stl.h include/pybind11/stl/filesystem.h include/pybind11/stl_bind.h +include/pybind11/subinterpreter.h +include/pybind11/trampoline_self_life_support.h include/pybind11/type_caster_pyobject_ptr.h include/pybind11/typing.h +include/pybind11/warnings.h share/cmake/pybind11/FindPythonLibsNew.cmake share/cmake/pybind11/pybind11Common.cmake share/cmake/pybind11/pybind11Config.cmake diff --git a/devel/terraform-ls/Makefile b/devel/terraform-ls/Makefile index 62f4e1fda033..3fb3ccc5dfb6 100644 --- a/devel/terraform-ls/Makefile +++ b/devel/terraform-ls/Makefile @@ -1,7 +1,6 @@ PORTNAME= terraform-ls DISTVERSIONPREFIX= v -DISTVERSION= 0.37.0 -PORTREVISION= 2 +DISTVERSION= 0.38.2 CATEGORIES= devel MAINTAINER= dutra@FreeBSD.org diff --git a/devel/terraform-ls/distinfo b/devel/terraform-ls/distinfo index beff1db2dbd3..b16f7255e4b9 100644 --- a/devel/terraform-ls/distinfo +++ b/devel/terraform-ls/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757539496 -SHA256 (go/devel_terraform-ls/terraform-ls-v0.37.0/v0.37.0.mod) = e4b047450a7fadb828986014ddeb9d61afebe62b105f4f1b37aa843c29b77259 -SIZE (go/devel_terraform-ls/terraform-ls-v0.37.0/v0.37.0.mod) = 4900 -SHA256 (go/devel_terraform-ls/terraform-ls-v0.37.0/v0.37.0.zip) = 21e680d561cf094864a048bf0ba8e6ac97e32c75a7c6d50510f03d00fe874817 -SIZE (go/devel_terraform-ls/terraform-ls-v0.37.0/v0.37.0.zip) = 2757919 +TIMESTAMP = 1760539693 +SHA256 (go/devel_terraform-ls/terraform-ls-v0.38.2/v0.38.2.mod) = aaec55c2bbfafe1c50e9cd0476c017f2f2bc80683ce89f1cd0edb4090df738b4 +SIZE (go/devel_terraform-ls/terraform-ls-v0.38.2/v0.38.2.mod) = 4902 +SHA256 (go/devel_terraform-ls/terraform-ls-v0.38.2/v0.38.2.zip) = 297d835bac66116505fc5d88db634276ca6e3256fc96c915192a350c402482b0 +SIZE (go/devel_terraform-ls/terraform-ls-v0.38.2/v0.38.2.zip) = 2759361 diff --git a/devel/wasi-compiler-rt21/Makefile b/devel/wasi-compiler-rt21/Makefile index aee5a9e49300..161a5c8b3891 100644 --- a/devel/wasi-compiler-rt21/Makefile +++ b/devel/wasi-compiler-rt21/Makefile @@ -1,5 +1,5 @@ # must sync with devel/llvm21 -DISTVERSION= 21.1.2 +DISTVERSION= 21.1.3 MASTERDIR= ${.CURDIR}/../wasi-compiler-rt diff --git a/devel/wasi-libcxx21/Makefile b/devel/wasi-libcxx21/Makefile index e6578b60023b..69fcd63238b7 100644 --- a/devel/wasi-libcxx21/Makefile +++ b/devel/wasi-libcxx21/Makefile @@ -1,5 +1,5 @@ # must sync with devel/llvm21 -DISTVERSION= 21.1.2 +DISTVERSION= 21.1.3 MASTERDIR= ${.CURDIR}/../wasi-libcxx diff --git a/devel/xdg-user-dirs/Makefile b/devel/xdg-user-dirs/Makefile index a0078c18eaff..306e0a23511b 100644 --- a/devel/xdg-user-dirs/Makefile +++ b/devel/xdg-user-dirs/Makefile @@ -1,5 +1,6 @@ PORTNAME= xdg-user-dirs DISTVERSION= 0.19 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://user-dirs.freedesktop.org/releases/ @@ -17,4 +18,9 @@ USES= gettext gnome iconv localbase:ldflags meson tar:xz USE_GNOME= libxslt:build LDFLAGS+= ${ICONV_LIB} +post-patch: + ${REINPLACE_CMD} -e "s|get_option('sysconfdir')|'${PREFIX}/etc'|g" \ + -e "s|get_option('localedir')|'${PREFIX}/share/locale'|g" \ + ${WRKSRC}/meson.build + .include <bsd.port.mk> diff --git a/devel/xtl-quant-stack/Makefile b/devel/xtl-quant-stack/Makefile index cf506fcef6da..7a73fd50bad2 100644 --- a/devel/xtl-quant-stack/Makefile +++ b/devel/xtl-quant-stack/Makefile @@ -1,5 +1,5 @@ PORTNAME= xtl -DISTVERSION= 0.7.6 +DISTVERSION= 0.8.1 CATEGORIES= devel PKGNAMESUFFIX= -quant-stack @@ -23,10 +23,15 @@ GH_ACCOUNT= xtensor-stack NO_BUILD= yes NO_ARCH= yes -do-test: # tests fail to compile: https://github.com/xtensor-stack/xtl/issues/255 +do-test: @cd ${WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -Dxtl_DIR:STRING=${STAGEDIR}${PREFIX}/lib/cmake/xtl -DBUILD_TESTS=ON -DDOWNLOAD_GTEST=OFF && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} xtest +# tests as of 0.8.1: +# doctest] test cases: 224 | 224 passed | 0 failed | 0 skipped +# [doctest] assertions: 1214 | 1214 passed | 0 failed | +# [doctest] Status: SUCCESS! + .include <bsd.port.mk> diff --git a/devel/xtl-quant-stack/distinfo b/devel/xtl-quant-stack/distinfo index 828f722fbfdf..dc2310f12c84 100644 --- a/devel/xtl-quant-stack/distinfo +++ b/devel/xtl-quant-stack/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1702442875 -SHA256 (xtensor-stack-xtl-0.7.6_GH0.tar.gz) = dda442dc81f390f77561913062471c39b6ef19ffc6f64d3cd12b5c4b4607c957 -SIZE (xtensor-stack-xtl-0.7.6_GH0.tar.gz) = 159729 +TIMESTAMP = 1760416610 +SHA256 (xtensor-stack-xtl-0.8.1_GH0.tar.gz) = e69a696068ccffd2b435539d583665981b6c6abed596a72832bffbe3e13e1f49 +SIZE (xtensor-stack-xtl-0.8.1_GH0.tar.gz) = 138497 diff --git a/devel/xtl-quant-stack/pkg-plist b/devel/xtl-quant-stack/pkg-plist index c3237e325f3e..4b2854c9fa43 100644 --- a/devel/xtl-quant-stack/pkg-plist +++ b/devel/xtl-quant-stack/pkg-plist @@ -1,4 +1,3 @@ -include/xtl/xany.hpp include/xtl/xbase64.hpp include/xtl/xbasic_fixed_string.hpp include/xtl/xclosure.hpp @@ -28,8 +27,6 @@ include/xtl/xspan_impl.hpp include/xtl/xsystem.hpp include/xtl/xtl_config.hpp include/xtl/xtype_traits.hpp -include/xtl/xvariant.hpp -include/xtl/xvariant_impl.hpp include/xtl/xvisitor.hpp share/cmake/xtl/xtlConfig.cmake share/cmake/xtl/xtlConfigVersion.cmake diff --git a/editors/Makefile b/editors/Makefile index 3656e873007d..2315d902a115 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -243,7 +243,6 @@ SUBDIR += py-editorconfig SUBDIR += py-pynvim SUBDIR += py-vim-bridge - SUBDIR += quilter SUBDIR += rehex SUBDIR += retext SUBDIR += rubygem-neovim diff --git a/editors/emacs-devel/Makefile b/editors/emacs-devel/Makefile index 7e5c9bb78690..23e4ce2a34a1 100644 --- a/editors/emacs-devel/Makefile +++ b/editors/emacs-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= emacs -DISTVERSION= 31.0.50.20250930 +DISTVERSION= 31.0.50.20251015 PORTEPOCH= 3 CATEGORIES= editors PKGNAMESUFFIX= -devel @@ -24,7 +24,7 @@ USES= autoreconf:build cpe gmake localbase:ldflags makeinfo ncurses \ CPE_VENDOR= gnu USE_GITHUB= yes GH_ACCOUNT= emacs-mirror -GH_TAGNAME= ca704a67dc7 +GH_TAGNAME= eeaa9421479 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-build-details \ diff --git a/editors/emacs-devel/distinfo b/editors/emacs-devel/distinfo index 7c9e8f3408a9..96f05e1728a2 100644 --- a/editors/emacs-devel/distinfo +++ b/editors/emacs-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759227161 -SHA256 (emacs-mirror-emacs-31.0.50.20250930-ca704a67dc7_GH0.tar.gz) = 90b4c4fa6394300925300f541dec8ac3a10e499b664842cf794387485b1e33e7 -SIZE (emacs-mirror-emacs-31.0.50.20250930-ca704a67dc7_GH0.tar.gz) = 52355096 +TIMESTAMP = 1760534929 +SHA256 (emacs-mirror-emacs-31.0.50.20251015-eeaa9421479_GH0.tar.gz) = 9c06f7b15d6dbc473760b9588feef9d7d31424f9a23a658809cc32fd986af2ca +SIZE (emacs-mirror-emacs-31.0.50.20251015-eeaa9421479_GH0.tar.gz) = 52404925 diff --git a/editors/emacs-devel/pkg-plist b/editors/emacs-devel/pkg-plist index 0c579f295735..3eb279ac51ac 100644 --- a/editors/emacs-devel/pkg-plist +++ b/editors/emacs-devel/pkg-plist @@ -1699,6 +1699,8 @@ share/applications/emacsclient.desktop %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/eieio.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/eldoc.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/eldoc.elc +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/elisp-scope.el.gz +%%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/elisp-scope.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/elp.el.gz %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/elp.elc %%DATADIR%%/%%EMACS_VER%%/lisp/emacs-lisp/ert-font-lock.el.gz diff --git a/editors/quilter/Makefile b/editors/quilter/Makefile deleted file mode 100644 index 6b4ee8810203..000000000000 --- a/editors/quilter/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -PORTNAME= quilter -DISTVERSION= 3.3.4 -PORTREVISION= 2 -CATEGORIES= editors - -MAINTAINER= yuri@FreeBSD.org -COMMENT= Editor allowing you to focus on your writing -WWW= https://github.com/lainsce/quilter - -LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/LICENSE - -BUILD_DEPENDS= discount>0:textproc/discount -LIB_DEPENDS= libgee-0.8.so:devel/libgee \ - libgranite.so:x11-toolkits/granite \ - libgtkspell3-3.so:textproc/gtkspell3 \ - libwebkit2gtk-4.0.so:www/webkit2-gtk@40 \ - libhandy-1.so:x11-toolkits/libhandy - -USES= compiler:c11 desktop-file-utils gettext gnome meson pkgconfig python:build vala:build -USE_GITHUB= yes -GH_ACCOUNT= lainsce -USE_GNOME= glib20 gtk30 gtksourceview4 - -LDFLAGS+= ${LOCALBASE}/lib/libmarkdown.a - -BINARY_ALIAS= python3=${PYTHON_CMD} - -.include <bsd.port.mk> diff --git a/editors/quilter/distinfo b/editors/quilter/distinfo deleted file mode 100644 index a0954b75eb94..000000000000 --- a/editors/quilter/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1728746280 -SHA256 (lainsce-quilter-3.3.4_GH0.tar.gz) = ea43d9e44de1232cf145b7644460430dd44d960781bd1d86ee61a14ff4b6c940 -SIZE (lainsce-quilter-3.3.4_GH0.tar.gz) = 1461457 diff --git a/editors/quilter/files/patch-meson.build b/editors/quilter/files/patch-meson.build deleted file mode 100644 index 3f937b587c87..000000000000 --- a/editors/quilter/files/patch-meson.build +++ /dev/null @@ -1,20 +0,0 @@ ---- meson.build.orig 2024-10-12 15:19:01 UTC -+++ meson.build -@@ -76,7 +76,7 @@ cc = meson.get_compiler('c') - ) - - cc = meson.get_compiler('c') --libmarkdown = cc.find_library('markdown', required: true) -+#libmarkdown = cc.find_library('markdown', required: true) - dependencies = [ - dependency('gio-2.0'), - dependency('gtk+-3.0'), -@@ -88,7 +88,7 @@ dependencies = [ - dependency('webkit2gtk-4.0'), - dependency('gtkspell3-3.0'), - dependency('libhandy-1'), -- libmarkdown, -+ #libmarkdown, - cc.find_library('m', required: true) - ] - diff --git a/editors/quilter/pkg-descr b/editors/quilter/pkg-descr deleted file mode 100644 index 845bd62efdf3..000000000000 --- a/editors/quilter/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -Focus on your writing and write beautiful solid stories with the Focus Mode in -tow in this Markdown editor. diff --git a/editors/quilter/pkg-plist b/editors/quilter/pkg-plist deleted file mode 100644 index d9d99cc871bd..000000000000 --- a/editors/quilter/pkg-plist +++ /dev/null @@ -1,42 +0,0 @@ -bin/io.github.lainsce.Quilter -share/applications/io.github.lainsce.Quilter.desktop -share/fonts/truetype/quilt/QuiltMono.ttf -share/fonts/truetype/quilt/QuiltVier.ttf -share/fonts/truetype/quilt/QuiltZwei.ttf -share/glib-2.0/schemas/io.github.lainsce.Quilter.gschema.xml -share/gtksourceview-4/styles/io.github.lainsce.Quilter-dark.xml -share/gtksourceview-4/styles/io.github.lainsce.Quilter-sepia.xml -share/gtksourceview-4/styles/io.github.lainsce.Quilter.xml -share/icons/hicolor/scalable/apps/io.github.lainsce.Quilter.svg -share/icons/hicolor/scalable/apps/io.github.lainsce.QuilterDevel.svg -share/icons/hicolor/symbolic/apps/io.github.lainsce.Quilter-symbolic.svg -share/io.github.lainsce.Quilter/center_headers/cheaders.css -share/io.github.lainsce.Quilter/font/mono.css -share/io.github.lainsce.Quilter/font/sans.css -share/io.github.lainsce.Quilter/font/serif.css -share/io.github.lainsce.Quilter/highlight.js/lib/highlight.min.js -share/io.github.lainsce.Quilter/highlight.js/styles/dark.min.css -share/io.github.lainsce.Quilter/highlight.js/styles/default.min.css -share/io.github.lainsce.Quilter/highlight.js/styles/sepia.min.css -share/io.github.lainsce.Quilter/katex/katex.css -share/io.github.lainsce.Quilter/katex/katex.js -share/io.github.lainsce.Quilter/katex/render.js -share/io.github.lainsce.Quilter/mermaid/mermaid.js -share/io.github.lainsce.Quilter/wordlist/adjective.txt -share/io.github.lainsce.Quilter/wordlist/adverb.txt -share/io.github.lainsce.Quilter/wordlist/conjunction.txt -share/io.github.lainsce.Quilter/wordlist/verb.txt -share/locale/ca/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/da/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/de/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/eo/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/es/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/fr/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/it/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/ja/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/lt/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/nl/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/pl/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/pt_BR/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/locale/ru/LC_MESSAGES/io.github.lainsce.Quilter.mo -share/metainfo/io.github.lainsce.Quilter.appdata.xml diff --git a/emulators/Ymir/Makefile b/emulators/Ymir/Makefile index aaf5d4ed0a8c..ba5381637c76 100644 --- a/emulators/Ymir/Makefile +++ b/emulators/Ymir/Makefile @@ -1,6 +1,6 @@ PORTNAME= Ymir DISTVERSIONPREFIX= v -DISTVERSION= 0.1.8 +DISTVERSION= 0.2.0 CATEGORIES= emulators MAINTAINER= bsdcode@disroot.org @@ -16,17 +16,23 @@ ONLY_FOR_ARCHS_REASON= upstream only supports aarch64 and amd64 BUILD_DEPENDS= cereal>0:devel/cereal \ concurrentqueue>0:devel/concurrentqueue \ cxxopts>0:devel/cxxopts \ + date>0:devel/date \ glslangValidator:graphics/glslang \ glslc:graphics/shaderc \ + libnghttp3>0:www/libnghttp3 \ + libngtcp2>0:net/libngtcp2 \ + nlohmann-json>0:devel/nlohmann-json \ + semver>0:devel/semver \ stb>0:devel/stb \ - tomlplusplus>0:devel/tomlplusplus \ vulkan-headers>0:graphics/vulkan-headers LIB_DEPENDS= libchdr.so:devel/libchdr \ + libcurl.so:ftp/curl \ libfmt.so:devel/libfmt \ libglfw.so:graphics/glfw \ libimgui.so:x11-toolkits/imgui \ liblz4.so:archivers/liblz4 \ librtmidi.so:audio/rtmidi \ + libtomlplusplus.so:devel/tomlplusplus \ libvulkan.so:graphics/vulkan-loader \ libxxhash.so:devel/xxhash @@ -39,11 +45,11 @@ ${FLAVOR}_BUILD_DEPENDS= ${_${FLAVOR}_BR_DEPENDS} ${FLAVOR}_RUN_DEPENDS= ${_${FLAVOR}_BR_DEPENDS} USES= cmake compiler:c++20-lang desktop-file-utils gl \ - llvm${_LLVM_${ARCH}} pkgconfig sdl xorg + llvm${_LLVM_${ARCH}} localbase pkgconfig sdl xorg _LLVM_aarch64= :min=21 USE_GITHUB= yes GH_ACCOUNT= StrikerX3 -GH_TUPLE= StrikerX3:mio:c9dbe3a6f74b2c2c4a6c9621005c3df213a33eaa:mio/vendor/mio +GH_TUPLE= StrikerX3:mio:4e4cdc711d73d9dc96c0cb9475e6951f476218e6:mio/vendor/mio USE_GL= glut USE_SDL= sdl3 USE_XORG= xi xmu @@ -52,8 +58,7 @@ CMAKE_OFF= Ymir_DEV_BUILD \ Ymir_ENABLE_IMGUI_DEMO \ Ymir_ENABLE_SANDBOX \ Ymir_ENABLE_TESTS \ - Ymir_INCLUDE_PACKAGING \ - Ymir_SHARED_LIBS + Ymir_INCLUDE_PACKAGING CFLAGS+= -I${LOCALBASE}/include/concurrentqueue/moodycamel \ -I${LOCALBASE}/include/stb \ @@ -80,7 +85,7 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/apps/ymir-sdl3/res/io.github.strikerx3.ymir.desktop \ ${STAGEDIR}${DESKTOPDIR} ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/256x256/apps \ - ${STAGEDIR}${PREFIX}/share/metainfo + ${STAGEDIR}${PREFIX}/share/metainfo ${INSTALL_DATA} ${WRKSRC}/apps/ymir-sdl3/res/ymir.png \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/256x256/apps ${INSTALL_DATA} ${WRKSRC}/apps/ymir-sdl3/res/io.github.strikerx3.ymir.xml \ diff --git a/emulators/Ymir/distinfo b/emulators/Ymir/distinfo index ea0e78976f0f..26b0995b0a76 100644 --- a/emulators/Ymir/distinfo +++ b/emulators/Ymir/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757486628 -SHA256 (StrikerX3-Ymir-v0.1.8_GH0.tar.gz) = 6a5951c25a4a1796c0643aacdced3f31099014e4f89412c5eb11bb385c0218d3 -SIZE (StrikerX3-Ymir-v0.1.8_GH0.tar.gz) = 5477804 -SHA256 (StrikerX3-mio-c9dbe3a6f74b2c2c4a6c9621005c3df213a33eaa_GH0.tar.gz) = 384d3a3ee249ebda0766fa5dc9f8bc5a871c8b2e3d3eedf46f330e6350058738 -SIZE (StrikerX3-mio-c9dbe3a6f74b2c2c4a6c9621005c3df213a33eaa_GH0.tar.gz) = 34871 +TIMESTAMP = 1760363610 +SHA256 (StrikerX3-Ymir-v0.2.0_GH0.tar.gz) = 82270cd8cb0694d7575e1437e9a378e925d85c02cdb2c7eb7557eb8870fd5894 +SIZE (StrikerX3-Ymir-v0.2.0_GH0.tar.gz) = 6306947 +SHA256 (StrikerX3-mio-4e4cdc711d73d9dc96c0cb9475e6951f476218e6_GH0.tar.gz) = 5da72ba39d70edab8cc42075c40895758c4a4ad905f9254ed5fd216757331773 +SIZE (StrikerX3-mio-4e4cdc711d73d9dc96c0cb9475e6951f476218e6_GH0.tar.gz) = 34878 diff --git a/emulators/Ymir/files/patch-apps_ymir-sdl3_CMakeLists.txt b/emulators/Ymir/files/patch-apps_ymir-sdl3_CMakeLists.txt index e18e7f768ee3..8ba4d51260aa 100644 --- a/emulators/Ymir/files/patch-apps_ymir-sdl3_CMakeLists.txt +++ b/emulators/Ymir/files/patch-apps_ymir-sdl3_CMakeLists.txt @@ -1,11 +1,18 @@ ---- apps/ymir-sdl3/CMakeLists.txt.orig 2025-07-20 22:35:27 UTC +--- apps/ymir-sdl3/CMakeLists.txt.orig 2025-10-12 17:41:59 UTC +++ apps/ymir-sdl3/CMakeLists.txt -@@ -256,7 +256,7 @@ target_link_libraries(ymir-sdl3 PRIVATE - fmt - cxxopts - imgui::imgui -- tomlplusplus::tomlplusplus -+# tomlplusplus::tomlplusplus - cereal::cereal - lz4::lz4 - stb::stb +@@ -352,12 +352,12 @@ find_package(date CONFIG REQUIRED) + find_package(cereal CONFIG REQUIRED) + find_package(cxxopts CONFIG REQUIRED) + find_package(date CONFIG REQUIRED) +-find_package(OpenSSL CONFIG REQUIRED) + find_package(CURL REQUIRED) ++add_library(CURL::libcurl_static ALIAS CURL::libcurl) + find_package(fmt CONFIG REQUIRED) +-find_package(rtmidi CONFIG REQUIRED) ++pkg_check_modules(rtmidi REQUIRED IMPORTED_TARGET rtmidi) ++add_library(RtMidi::rtmidi ALIAS PkgConfig::rtmidi) + find_package(SDL3 CONFIG REQUIRED) +-find_package(Stb REQUIRED) + find_package(tomlplusplus CONFIG REQUIRED) + + target_include_directories(ymir-sdl3 diff --git a/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_views_settings_cdblock__settings__view.cpp b/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_views_settings_cdblock__settings__view.cpp new file mode 100644 index 000000000000..b9ecadb667d6 --- /dev/null +++ b/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_views_settings_cdblock__settings__view.cpp @@ -0,0 +1,11 @@ +--- apps/ymir-sdl3/src/app/ui/views/settings/cdblock_settings_view.cpp.orig 2025-10-13 11:40:42 UTC ++++ apps/ymir-sdl3/src/app/ui/views/settings/cdblock_settings_view.cpp +@@ -6,7 +6,7 @@ + + #include <util/sdl_file_dialog.hpp> + +-#include <misc/cpp/imgui_stdlib.h> ++#include <imgui_stdlib.h> + + #include <SDL3/SDL_misc.h> + diff --git a/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_windows_about__window.cpp b/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_windows_about__window.cpp new file mode 100644 index 000000000000..a42fe54d23b6 --- /dev/null +++ b/emulators/Ymir/files/patch-apps_ymir-sdl3_src_app_ui_windows_about__window.cpp @@ -0,0 +1,14 @@ +--- apps/ymir-sdl3/src/app/ui/windows/about_window.cpp.orig 2025-10-14 17:56:52 UTC ++++ apps/ymir-sdl3/src/app/ui/windows/about_window.cpp +@@ -48,6 +48,11 @@ + #define ZLIB_VERSION "1.3.1" // Private dependency of libchdr + #define ZSTD_VERSION "1.5.6" // Private dependency of libchdr + ++// Needed on 13.5, openssl in base is too old ++#ifndef OPENSSL_FULL_VERSION_STR ++#define OPENSSL_FULL_VERSION_STR OPENSSL_VERSION_TEXT ++#endif ++ + static const std::string fmtVersion = std::to_string(FMT_VERSION / 10000) + "." + + std::to_string(FMT_VERSION / 100 % 100) + "." + std::to_string(FMT_VERSION % 100); + diff --git a/emulators/Ymir/files/patch-libs_ymir-core_CMakeLists.txt b/emulators/Ymir/files/patch-libs_ymir-core_CMakeLists.txt index 2c971a407b7a..607ae6341003 100644 --- a/emulators/Ymir/files/patch-libs_ymir-core_CMakeLists.txt +++ b/emulators/Ymir/files/patch-libs_ymir-core_CMakeLists.txt @@ -1,13 +1,15 @@ ---- libs/ymir-core/CMakeLists.txt.orig 2025-07-20 22:35:27 UTC +--- libs/ymir-core/CMakeLists.txt.orig 2025-10-13 12:04:15 UTC +++ libs/ymir-core/CMakeLists.txt -@@ -239,7 +239,10 @@ target_compile_features(ymir-core PUBLIC cxx_std_20) +@@ -289,10 +289,12 @@ target_compile_features(ymir-core PUBLIC cxx_std_20) + ) target_compile_features(ymir-core PUBLIC cxx_std_20) - ## Add dependencies +find_package(Threads REQUIRED) -+ + find_package(fmt CONFIG REQUIRED) + + ## Add dependencies target_link_libraries(ymir-core PUBLIC + Threads::Threads - fmt + fmt::fmt mio concurrentqueue diff --git a/emulators/Ymir/files/patch-vendor_CMakeLists.txt b/emulators/Ymir/files/patch-vendor_CMakeLists.txt index c6c095066435..7b6c480df4a9 100644 --- a/emulators/Ymir/files/patch-vendor_CMakeLists.txt +++ b/emulators/Ymir/files/patch-vendor_CMakeLists.txt @@ -1,100 +1,40 @@ ---- vendor/CMakeLists.txt.orig 2025-07-20 22:35:27 UTC +--- vendor/CMakeLists.txt.orig 2025-10-12 17:41:59 UTC +++ vendor/CMakeLists.txt -@@ -22,9 +22,12 @@ message(STATUS "Adding vendored libraries") - - message(STATUS "Adding vendored libraries") - -+find_package(PkgConfig REQUIRED) -+ - # {fmt} - https://github.com/fmtlib/fmt - message(STATUS "==> {fmt}") --add_subdirectory(fmt EXCLUDE_FROM_ALL) -+pkg_check_modules(fmt REQUIRED IMPORTED_TARGET GLOBAL fmt) -+add_library(fmt ALIAS PkgConfig::fmt) - - # mio - https://github.com/vimpunk/mio - # Notes: -@@ -36,65 +39,55 @@ message(STATUS "==> SDL") - - # SDL - https://github.com/libsdl-org/SDL - message(STATUS "==> SDL") --set(SDL_DISABLE_UNINSTALL ON) --set(SDL_TEST_LIBRARY OFF) --set(SDL_TESTS OFF) --set(SDL_EXAMPLES OFF) --if (BUILD_SHARED_LIBS) -- set(SDL_SHARED ON) -- set(SDL_STATIC OFF) --else () -- set(SDL_SHARED OFF) -- set(SDL_STATIC ON) --endif () --add_subdirectory_quiet(SDL EXCLUDE_FROM_ALL) -+find_package(SDL3 REQUIRED GLOBAL) - - # cxxopts - https://github.com/jarro2783/cxxopts - message(STATUS "==> cxxopts") --add_subdirectory(cxxopts EXCLUDE_FROM_ALL) -+find_package(cxxopts REQUIRED GLOBAL) -+add_library(cxxopts ALIAS cxxopts::cxxopts) - +@@ -36,28 +36,31 @@ message(STATUS "==> concurrentqueue") # concurrentqueue - https://github.com/cameron314/concurrentqueue + # - Not available as a vcpkg port message(STATUS "==> concurrentqueue") -add_subdirectory(concurrentqueue EXCLUDE_FROM_ALL) +find_package(concurrentqueue REQUIRED GLOBAL) +add_library(concurrentqueue ALIAS concurrentqueue::concurrentqueue) # dear ImGui - https://github.com/ocornut/imgui - # docking branch + # - Using the docking branch message(STATUS "==> dear ImGui") -add_subdirectory(imgui EXCLUDE_FROM_ALL) +find_package(imgui REQUIRED GLOBAL) - # toml++ - https://github.com/marzer/tomlplusplus - message(STATUS "==> toml++") --add_subdirectory(tomlplusplus EXCLUDE_FROM_ALL) -+find_package(tomlplusplus REQUIRED GLOBAL) - # xxHash - https://github.com/Cyan4973/xxHash + # - Unable to configure AVX2 support message(STATUS "==> xxHash") -add_subdirectory(xxHash EXCLUDE_FROM_ALL) +pkg_check_modules(libxxhash REQUIRED IMPORTED_TARGET GLOBAL libxxhash) +add_library(xxHash::xxHash ALIAS PkgConfig::libxxhash) # lz4 - https://github.com/lz4/lz4 + # - Unable to configure AVX2 support message(STATUS "==> lz4") -add_subdirectory(lz4 EXCLUDE_FROM_ALL) +pkg_check_modules(liblz4 REQUIRED IMPORTED_TARGET GLOBAL liblz4) +add_library(lz4::lz4 ALIAS PkgConfig::liblz4) - # cereal - https://github.com/USCiLab/cereal - message(STATUS "==> cereal") --set(BUILD_DOC OFF) --set(BUILD_SANDBOX OFF) --set(JUST_INSTALL_CEREAL ON) --add_subdirectory(cereal EXCLUDE_FROM_ALL) -+find_package(cereal REQUIRED GLOBAL) - - # stb - https://github.com/nothings/stb - message(STATUS "==> stb") --add_subdirectory(stb) -+add_library(stb INTERFACE) -+add_library(stb::stb ALIAS stb) - # libchdr - https://github.com/rtissera/libchdr + # - Not available as a vcpkg port message(STATUS "==> libchdr") -set(BUILD_FUZZER OFF) -add_subdirectory(libchdr) +pkg_check_modules(libchdr REQUIRED IMPORTED_TARGET GLOBAL libchdr) +add_library(chdr-static ALIAS PkgConfig::libchdr) - # rtmidi - https://github.com/thestk/rtmidi - message(STATUS "==> rtmidi") --set(RTMIDI_BUILD_STATIC_LIBS ON) --set(RTMIDI_BUILD_TESTING OFF) --add_subdirectory(rtmidi) -+pkg_check_modules(rtmidi REQUIRED IMPORTED_TARGET GLOBAL rtmidi) -+add_library(rtmidi ALIAS PkgConfig::rtmidi) - - # -------------------------------------------------------------------------------------------------- - # Test dependencies + # Place vendored library projects under a Vendored folder in Visual Studio solutions + if (MSVC) diff --git a/emulators/Ymir/files/patch-vendor_mio_include_mio_detail_mmap.ipp b/emulators/Ymir/files/patch-vendor_mio_include_mio_detail_mmap.ipp deleted file mode 100644 index cf610729c0d1..000000000000 --- a/emulators/Ymir/files/patch-vendor_mio_include_mio_detail_mmap.ipp +++ /dev/null @@ -1,13 +0,0 @@ -https://github.com/vimpunk/mio/issues/110 - ---- vendor/mio/include/mio/detail/mmap.ipp.orig 2025-02-12 00:14:41 UTC -+++ vendor/mio/include/mio/detail/mmap.ipp -@@ -208,7 +208,7 @@ inline mmap_context memory_map(const file_handle_type - char* mapping_start = static_cast<char*>(::mmap( - 0, // Don't give hint as to where to map. - length_to_map, -- mode == access_mode::read ? PROT_READ : PROT_WRITE, -+ mode == access_mode::read ? PROT_READ : PROT_READ | PROT_WRITE, - mode == access_mode::copy_on_write ? MAP_PRIVATE : MAP_SHARED, - file_handle, - aligned_offset)); diff --git a/emulators/Ymir/pkg-descr b/emulators/Ymir/pkg-descr index 2eae362fc391..907adbc7aaba 100644 --- a/emulators/Ymir/pkg-descr +++ b/emulators/Ymir/pkg-descr @@ -3,14 +3,16 @@ Ymir is a Sega Saturn emulator with the following features: - Load games from MAME CHD, BIN+CUE, IMG+CCD, MDF+MDS or ISO files - Automatic IPL (BIOS) ROM detection - Automatic region switching -- Up to two players with standard Control Pads or 3D Control Pads on both ports +- Up to two players with a variety of controllers on both ports - Fully customizable keybindings -- Backup RAM, DRAM and ROM cartridges +- Backup RAM, DRAM and ROM cartridges (more to come) - Integrated backup memory manager to import and export saves, and transfer between internal and cartridge RAM -- Save states +- Forwards-compatible save states - Rewinding (up to one minute at 60 fps), turbo speed, frame step (forwards and backwards) - Full screen mode with VRR support and low input lag -- Optional deinterlaced/progressive rendering of high resolution modes +- Graphics enhancements such as optional deinterlaced/progressive rendering of + high resolution modes and transparent mesh polygon rendering +- Optional low level CD block emulation - A feature-rich debugger diff --git a/filesystems/Makefile b/filesystems/Makefile index 4f7065513f9a..67ebb926d71f 100644 --- a/filesystems/Makefile +++ b/filesystems/Makefile @@ -76,6 +76,7 @@ SUBDIR += mp3fs SUBDIR += mtools SUBDIR += mtpfs + SUBDIR += nbd-client-kmod SUBDIR += nbt SUBDIR += ntfs SUBDIR += ntfs-compression diff --git a/filesystems/kio-fuse/Makefile b/filesystems/kio-fuse/Makefile index fb88e9b94aa3..05127f8f3963 100644 --- a/filesystems/kio-fuse/Makefile +++ b/filesystems/kio-fuse/Makefile @@ -1,6 +1,5 @@ PORTNAME= kio-fuse -DISTVERSION= 5.1.0 -PORTREVISION= 2 +DISTVERSION= 5.1.1 CATEGORIES= filesystems sysutils kde MASTER_SITES= KDE/stable/${PORTNAME} @@ -11,10 +10,10 @@ WWW= https://invent.kde.org/system/kio-fuse LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-or-later.txt -USES= cmake compiler:c++11-lang fuse:3 kde:6 pkgconfig qt:6 tar:xz +USES= cmake compiler:c++17-lang fuse:3 kde:6 pkgconfig qt:6 tar:xz USE_KDE= coreaddons kio \ ecm:build -USE_QT= base +USE_QT= base declarative PLIST_FILES= lib/libexec/kio-fuse \ share/dbus-1/services/org.kde.KIOFuse.service diff --git a/filesystems/kio-fuse/distinfo b/filesystems/kio-fuse/distinfo index b839419dae7d..138202994112 100644 --- a/filesystems/kio-fuse/distinfo +++ b/filesystems/kio-fuse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1705202711 -SHA256 (kio-fuse-5.1.0.tar.xz) = 7d104581227d5a19b424b33f4168d181556b1015d6df2218e01a88d64449e94b -SIZE (kio-fuse-5.1.0.tar.xz) = 48820 +TIMESTAMP = 1760473515 +SHA256 (kio-fuse-5.1.1.tar.xz) = adf6aa7ce055c0987e716a93ac01f3c0a97c1280421443cd6b21e0e71d763d14 +SIZE (kio-fuse-5.1.1.tar.xz) = 49404 diff --git a/filesystems/kio-fuse/files/patch-CMakeLists.txt b/filesystems/kio-fuse/files/patch-data_CMakeLists.txt index f6a3612f75c0..f7db38656eb3 100644 --- a/filesystems/kio-fuse/files/patch-CMakeLists.txt +++ b/filesystems/kio-fuse/files/patch-data_CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2024-01-14 03:25:35 UTC -+++ CMakeLists.txt -@@ -72,10 +72,12 @@ ecm_generate_dbus_service_file( +--- data/CMakeLists.txt.orig 2025-10-13 17:56:58 UTC ++++ data/CMakeLists.txt +@@ -11,8 +11,10 @@ ecm_generate_dbus_service_file( DESTINATION ${KDE_INSTALL_DBUSSERVICEDIR} ) @@ -15,5 +15,3 @@ + ecm_install_configured_files(INPUT kio-fuse.service.in DESTINATION ${SYSTEMD_USER_UNIT_INSTALL_DIR}) + endif() endif() - - feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) diff --git a/filesystems/nbd-client-kmod/Makefile b/filesystems/nbd-client-kmod/Makefile new file mode 100644 index 000000000000..27d78925a28d --- /dev/null +++ b/filesystems/nbd-client-kmod/Makefile @@ -0,0 +1,31 @@ +PORTNAME= nbd-client +DISTVERSION= g20250928 +CATEGORIES= filesystems +PKGNAMESUFFIX= -kmod + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Kernel NBD client for FreeBSD GEOM framework +WWW= https://github.com/ryan-moeller/kernel-nbd-client + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= kmod ssl uidfix +USE_GITHUB= yes +GH_ACCOUNT= ryan-moeller +GH_PROJECT= kernel-nbd-client +GH_TAGNAME= df0528162deffaabaae4365394b4b6e75ff3fcaf + +MAKE_ENV= GEOM_CLASS_DIR="${PREFIX}/lib/geom" \ + MANDIR="${PREFIX}/share/man/man" + +SUB_FILES= gnbd + +pre-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/geom + +post-install: + ${INSTALL_SCRIPT} ${WRKDIR}/gnbd ${STAGEDIR}${PREFIX}/sbin/gnbd + ${INSTALL_DATA} ${WRKSRC}/devd.conf.sample ${STAGEDIR}${PREFIX}/etc/devd/${PORTNAME}.conf.sample + +.include <bsd.port.mk> diff --git a/filesystems/nbd-client-kmod/distinfo b/filesystems/nbd-client-kmod/distinfo new file mode 100644 index 000000000000..8d781e318f51 --- /dev/null +++ b/filesystems/nbd-client-kmod/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760457302 +SHA256 (ryan-moeller-kernel-nbd-client-g20250928-df0528162deffaabaae4365394b4b6e75ff3fcaf_GH0.tar.gz) = 9e6b66d41ae86c5eb52f9cb835b7517775d2a58a0523d7617ff55d91384f792f +SIZE (ryan-moeller-kernel-nbd-client-g20250928-df0528162deffaabaae4365394b4b6e75ff3fcaf_GH0.tar.gz) = 39296 diff --git a/filesystems/nbd-client-kmod/files/gnbd.in b/filesystems/nbd-client-kmod/files/gnbd.in new file mode 100644 index 000000000000..94d021b26b05 --- /dev/null +++ b/filesystems/nbd-client-kmod/files/gnbd.in @@ -0,0 +1,3 @@ +#!/bin/sh + +exec env GEOM_LIBRARY_PATH="%%LOCALBASE%%/lib/geom" /sbin/geom nbd "$@" diff --git a/filesystems/nbd-client-kmod/files/patch-lib_Makefile b/filesystems/nbd-client-kmod/files/patch-lib_Makefile new file mode 100644 index 000000000000..72ec380c46c4 --- /dev/null +++ b/filesystems/nbd-client-kmod/files/patch-lib_Makefile @@ -0,0 +1,12 @@ +--- lib/Makefile.orig 2025-10-14 17:24:26 UTC ++++ lib/Makefile +@@ -21,9 +21,6 @@ LDADD+= -lssl -lcrypto + LDADD+= -lssl -lcrypto + #.endif + +-# Not needed when in tree +-LINKS= /sbin/geom /sbin/gnbd +- + .PATH: ${SRCTOP}/sbin/geom/misc + + .include <bsd.lib.mk> diff --git a/filesystems/nbd-client-kmod/pkg-descr b/filesystems/nbd-client-kmod/pkg-descr new file mode 100644 index 000000000000..199e3750eea1 --- /dev/null +++ b/filesystems/nbd-client-kmod/pkg-descr @@ -0,0 +1,5 @@ +FreeBSD Geom NBD Client is a Network Block Device (NBD) client for +the FreeBSD kernel GEOM framework. + +The project consists of a kernel driver for the NBD GEOM class in +mod/ and a user library for the geom(8) control utility in lib/. diff --git a/filesystems/nbd-client-kmod/pkg-plist b/filesystems/nbd-client-kmod/pkg-plist new file mode 100644 index 000000000000..6467c9b1e620 --- /dev/null +++ b/filesystems/nbd-client-kmod/pkg-plist @@ -0,0 +1,5 @@ +/%%KMODDIR%%/geom_nbd.ko +lib/geom/geom_nbd.so +share/man/man8/gnbd.8.gz +sbin/gnbd +@sample etc/devd/nbd-client.conf.sample diff --git a/finance/aqbanking/Makefile b/finance/aqbanking/Makefile index c0844d7b6c91..ca25a8a20e2b 100644 --- a/finance/aqbanking/Makefile +++ b/finance/aqbanking/Makefile @@ -1,7 +1,7 @@ PORTNAME= aqbanking -PORTVERSION= 6.6.1 +PORTVERSION= 6.6.4 CATEGORIES= finance -MASTER_SITES= https://www.aquamaniac.de/rdm/attachments/download/535/ +MASTER_SITES= https://www.aquamaniac.de/rdm/attachments/download/548/ MAINTAINER= jhale@FreeBSD.org COMMENT= Online banking interface and financial data framework diff --git a/finance/aqbanking/distinfo b/finance/aqbanking/distinfo index 3efd998e8964..733fb127b98e 100644 --- a/finance/aqbanking/distinfo +++ b/finance/aqbanking/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754204436 -SHA256 (aqbanking-6.6.1.tar.gz) = 3250fa6d893f816d29c19af35fe5fccb74c080e21753fd9e52579a792dd48567 -SIZE (aqbanking-6.6.1.tar.gz) = 2729954 +TIMESTAMP = 1760583556 +SHA256 (aqbanking-6.6.4.tar.gz) = a25c209538fa163f3749676a084493c9a43d9045a945aeee2db25dfd9a502b7f +SIZE (aqbanking-6.6.4.tar.gz) = 2741409 diff --git a/finance/hs-hledger/Makefile b/finance/hs-hledger/Makefile index 9cb411db988b..283f31970647 100644 --- a/finance/hs-hledger/Makefile +++ b/finance/hs-hledger/Makefile @@ -1,5 +1,5 @@ PORTNAME= hledger -DISTVERSION= 1.42.1 +DISTVERSION= 1.50.2 CATEGORIES= finance haskell MAINTAINER= yuri@FreeBSD.org @@ -17,25 +17,39 @@ USE_CABAL= Decimal-0.5.2 \ Glob-0.10.2_3 \ OneTuple-0.4.2_1 \ Only-0.1_2 \ - QuickCheck-2.15.0.1_1 \ + QuickCheck-2.16.0.0 \ + RSA-2.4.1_2 \ + SHA-1.6.4.4 \ StateVar-1.2.2 \ - aeson-2.2.3.0_3 \ + aeson-2.2.3.0_4 \ aeson-pretty-0.8.10 \ - ansi-terminal-1.1.2 \ - ansi-terminal-types-1.1 \ + ansi-terminal-1.1.3 \ + ansi-terminal-types-1.1.3 \ + appar-0.1.8 \ + asn1-encoding-0.9.6_2 \ + asn1-parse-0.9.5 \ + asn1-types-0.3.4 \ assoc-1.1.1_1 \ + async-2.2.5_3 \ attoparsec-0.14.4_6 \ attoparsec-aeson-2.2.2.0 \ + authenticate-oauth-1.7_1 \ base-compat-0.14.1 \ base-orphans-0.9.3 \ + base16-bytestring-1.0.2.0_1 \ + base64-bytestring-1.2.1.0_1 \ + basement-0.0.16 \ bifunctors-5.6.2_2 \ - blaze-builder-0.4.2.3 \ + blaze-builder-0.4.4.1 \ blaze-html-0.9.2.0_1 \ blaze-markup-0.8.3.0_2 \ + byteorder-1.0.4 \ call-stack-0.4.0 \ case-insensitive-1.2.1.0 \ - cassava-0.5.3.2_1 \ + cassava-0.5.4.1 \ cassava-megaparsec-2.1.1 \ + cborg-0.2.10.0_3 \ + cereal-0.5.8.3 \ character-ps-0.1 \ clock-0.8.4 \ cmdargs-0.10.22 \ @@ -43,66 +57,99 @@ USE_CABAL= Decimal-0.5.2 \ comonad-5.0.9_1 \ contravariant-1.5.5 \ control-monad-free-0.6.2 \ + cookie-0.5.1 \ + crypto-api-0.13.3_1 \ + crypto-pubkey-types-0.4.3 \ + crypton-1.0.4 \ + crypton-connection-0.4.5 \ + crypton-socks-0.6.2 \ + crypton-x509-1.7.7 \ + crypton-x509-store-1.6.11 \ + crypton-x509-system-1.6.7 \ + crypton-x509-validation-1.6.14 \ csv-0.1.2 \ - data-default-0.8.0.0 \ + data-default-0.8.0.1 \ data-default-class-0.2.0.0 \ data-fix-0.3.4_1 \ distributive-0.6.2.1_1 \ dlist-1.0_2 \ - doclayout-0.5 \ + doclayout-0.5.0.1 \ + ech-config-0.0.1 \ emojis-0.1.4.1 \ - encoding-0.10 \ + encoding-0.10.2 \ + entropy-0.4.1.11 \ extensible-exceptions-0.1.1.4 \ extra-1.8 \ file-embed-0.0.16.0 \ generically-0.1.1_4 \ githash-0.1.7.0 \ + half-0.3.3_1 \ hashable-1.5.0.0_1 \ hashtables-1.4.2 \ - hledger-lib-1.42.1 \ - hsc2hs-0.68.10_3 \ + hledger-lib-1.50.2 \ + hourglass-0.2.12_1 \ + hpke-0.0.0 \ + hsc2hs-0.68.10_4 \ html-1.0.1.2 \ + http-api-data-0.6.2 \ + http-client-0.7.19 \ + http-client-tls-0.3.6.4_2 \ + http-types-0.12.4 \ indexed-traversable-0.1.4_1 \ indexed-traversable-instances-0.1.2_1 \ integer-conversion-0.1.1_1 \ integer-logarithms-1.0.4 \ + iproute-1.7.15 \ lucid-2.11.20250303 \ math-functions-0.3.4.4 \ megaparsec-9.7.0 \ - microlens-0.4.14.0 \ - microlens-th-0.4.3.17 \ - mmorph-1.2.0_3 \ + memory-0.18.0_1 \ + microlens-0.5.0.0 \ + microlens-th-0.4.3.18 \ + mime-types-0.1.2.0 \ + mmorph-1.2.1_1 \ modern-uri-0.3.6.1_3 \ + monad-control-1.0.3.1 \ + mtl-compat-0.2.2 \ + network-3.2.8.0 \ + network-byte-order-0.1.7 \ network-uri-2.6.4.2_1 \ - optparse-applicative-0.18.1.0_1 \ - os-string-2.0.7 \ + old-locale-1.0.0.7_2 \ + old-time-1.1.0.4 \ + optparse-applicative-0.19.0.0 \ + os-string-2.0.8 \ parser-combinators-1.3.0_1 \ - pretty-simple-4.1.3.0 \ + pem-0.2.4 \ + pretty-simple-4.1.4.0 \ prettyprinter-1.7.1 \ prettyprinter-ansi-terminal-1.1.3 \ - primitive-0.9.0.0_2 \ - profunctors-5.6.2_3 \ + primitive-0.9.1.0 \ + profunctors-5.6.3 \ quote-quot-0.2.1.0 \ - random-1.2.1.3 \ + random-1.3.1 \ reflection-2.1.9_1 \ regex-base-0.94.0.3 \ regex-compat-0.95.2.2 \ regex-posix-0.96.0.2 \ - regex-tdfa-1.3.2.3 \ + regex-tdfa-1.3.2.5 \ + req-3.13.4_4 \ + retry-0.9.3.1 \ safe-0.3.21_1 \ scientific-0.3.8.0_2 \ semialign-1.3.1_2 \ semigroupoids-6.0.1_2 \ - shakespeare-2.1.0.1 \ + serialise-0.2.6.1_5 \ + shakespeare-2.1.7.1 \ split-0.2.5 \ - splitmix-0.1.1 \ + splitmix-0.1.3.1 \ + streaming-commons-0.2.3.0 \ strict-0.5.1_1 \ tabular-0.2.2.8_1 \ tagged-0.8.9 \ - tasty-1.5.3_1 \ + tasty-1.5.3_2 \ tasty-hunit-0.10.2 \ temporary-1.3 \ - terminal-size-0.3.4 \ + terminal-size-0.3.4_1 \ text-ansi-0.3.0.1_2 \ text-builder-linear-0.1.3 \ text-iso8601-0.1.1_2 \ @@ -113,15 +160,20 @@ USE_CABAL= Decimal-0.5.2 \ these-1.2.1_2 \ time-compat-1.9.8 \ timeit-2.0_2 \ + tls-2.1.11 \ + transformers-base-0.4.6 \ transformers-compat-0.7.2 \ uglymemo-0.1.0.1 \ - unordered-containers-0.2.20_4 \ + unix-time-0.4.17 \ + unliftio-core-0.2.1.0_4 \ + unordered-containers-0.2.20.1 \ utf8-string-1.0.2 \ utility-ht-0.0.17.2 \ - uuid-types-1.0.6_2 \ - vector-0.13.2.0_1 \ - vector-stream-0.1.0.1_3 \ + uuid-types-1.0.6_3 \ + vector-0.13.2.0_2 \ + vector-stream-0.1.0.1_4 \ witherable-0.5_1 \ - wizards-1.0.3_3 + wizards-1.0.3_3 \ + zlib-0.7.1.1 .include <bsd.port.mk> diff --git a/finance/hs-hledger/distinfo b/finance/hs-hledger/distinfo index 29f88cb906aa..6a0892b32edc 100644 --- a/finance/hs-hledger/distinfo +++ b/finance/hs-hledger/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1741896404 -SHA256 (cabal/hledger-1.42.1/hledger-1.42.1.tar.gz) = 78d88f1541e2fc9aa2a86b2c9cb42cffe41b1697f5e0d94f03698d37d9d88233 -SIZE (cabal/hledger-1.42.1/hledger-1.42.1.tar.gz) = 858638 +TIMESTAMP = 1760566738 +SHA256 (cabal/hledger-1.50.2/hledger-1.50.2.tar.gz) = 1c00c3582549e56f92e018af0955b02f377a5aa9aecca574bf40ef2d581a2c13 +SIZE (cabal/hledger-1.50.2/hledger-1.50.2.tar.gz) = 893974 SHA256 (cabal/Decimal-0.5.2/Decimal-0.5.2.tar.gz) = a37a0220424e4bcb8cae1d38844c7027ee314449758d0d14ff3e2e0a5c8a87a7 SIZE (cabal/Decimal-0.5.2/Decimal-0.5.2.tar.gz) = 9546 SHA256 (cabal/Diff-1.0.2/Diff-1.0.2.tar.gz) = cd7e26d3d5ebf7f2c1a7525aebe251fbcbffee2a6362db634b4be23b9e354d85 @@ -17,42 +17,74 @@ SHA256 (cabal/Only-0.1/Only-0.1.tar.gz) = ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85 SIZE (cabal/Only-0.1/Only-0.1.tar.gz) = 1960 SHA256 (cabal/Only-0.1/revision/2.cabal) = c6033d181e0f802e9e8543f683fa9c50aeb01cfdf6c83cd5bb72fb47aa863b07 SIZE (cabal/Only-0.1/revision/2.cabal) = 1398 -SHA256 (cabal/QuickCheck-2.15.0.1/QuickCheck-2.15.0.1.tar.gz) = a3b2216ddbaf481dbc82414b6120f8b726d969db3f0b51f20a7a45425ef36e7f -SIZE (cabal/QuickCheck-2.15.0.1/QuickCheck-2.15.0.1.tar.gz) = 81502 -SHA256 (cabal/QuickCheck-2.15.0.1/revision/1.cabal) = 0cfd337bb9e6fbf09255bd24bb498a156f1d9bcd465396ac8657b25034b9ee31 -SIZE (cabal/QuickCheck-2.15.0.1/revision/1.cabal) = 9046 +SHA256 (cabal/QuickCheck-2.16.0.0/QuickCheck-2.16.0.0.tar.gz) = 0b563fa6ea11653d76d57e96625f4a476e02b9fdaeba9c05d2ccc10d8da802c0 +SIZE (cabal/QuickCheck-2.16.0.0/QuickCheck-2.16.0.0.tar.gz) = 83903 +SHA256 (cabal/RSA-2.4.1/RSA-2.4.1.tar.gz) = 72c5d8c45ef1013e0e8aff763bb8894df0f022f28e698e33ae87bbdb33d69041 +SIZE (cabal/RSA-2.4.1/RSA-2.4.1.tar.gz) = 14603 +SHA256 (cabal/RSA-2.4.1/revision/2.cabal) = d2e711da52c19e332d374b3c0202a77d3088b59a0ba64abe6107569752fd1e24 +SIZE (cabal/RSA-2.4.1/revision/2.cabal) = 2356 +SHA256 (cabal/SHA-1.6.4.4/SHA-1.6.4.4.tar.gz) = 6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44 +SIZE (cabal/SHA-1.6.4.4/SHA-1.6.4.4.tar.gz) = 2715144 SHA256 (cabal/StateVar-1.2.2/StateVar-1.2.2.tar.gz) = 5e4b39da395656a59827b0280508aafdc70335798b50e5d6fd52596026251825 SIZE (cabal/StateVar-1.2.2/StateVar-1.2.2.tar.gz) = 5048 SHA256 (cabal/aeson-2.2.3.0/aeson-2.2.3.0.tar.gz) = daa25cf428256ad05d21f2bfa44077c1b14d6c784b7930a202ee901f11cc6baa SIZE (cabal/aeson-2.2.3.0/aeson-2.2.3.0.tar.gz) = 340855 -SHA256 (cabal/aeson-2.2.3.0/revision/3.cabal) = 61e559f2bad61a98aac564f2a4fd892d21e9e1712e14e3db93326317aa944a9b -SIZE (cabal/aeson-2.2.3.0/revision/3.cabal) = 6378 +SHA256 (cabal/aeson-2.2.3.0/revision/4.cabal) = 7d48c2395ef168d2c2070fdb02c7998384be27d31a03bb35d1740af4a19a857b +SIZE (cabal/aeson-2.2.3.0/revision/4.cabal) = 6368 SHA256 (cabal/aeson-pretty-0.8.10/aeson-pretty-0.8.10.tar.gz) = 2a21f2cd78adcb149ceba770239ed664519552911e7680172b18ff695cfa7ae5 SIZE (cabal/aeson-pretty-0.8.10/aeson-pretty-0.8.10.tar.gz) = 5894 -SHA256 (cabal/ansi-terminal-1.1.2/ansi-terminal-1.1.2.tar.gz) = a8d04a3e0451e22a6499a92311f0df1196dc65b687df7d10e3f30d92420156b0 -SIZE (cabal/ansi-terminal-1.1.2/ansi-terminal-1.1.2.tar.gz) = 36259 -SHA256 (cabal/ansi-terminal-types-1.1/ansi-terminal-types-1.1.tar.gz) = f2e5333eb78da5f4dd330fca0c81a59276cc150c625647cd20f57b7f297a5d25 -SIZE (cabal/ansi-terminal-types-1.1/ansi-terminal-types-1.1.tar.gz) = 4746 +SHA256 (cabal/ansi-terminal-1.1.3/ansi-terminal-1.1.3.tar.gz) = 88d11a165cd709bfd603b4bc36afd5b39d3e9eec69ee466ca4359441d468c092 +SIZE (cabal/ansi-terminal-1.1.3/ansi-terminal-1.1.3.tar.gz) = 32633 +SHA256 (cabal/ansi-terminal-types-1.1.3/ansi-terminal-types-1.1.3.tar.gz) = 9fc9ce2157f1889bd99a4d22c9f1c64589590be0f797c3efe71c8fa17a11a689 +SIZE (cabal/ansi-terminal-types-1.1.3/ansi-terminal-types-1.1.3.tar.gz) = 8791 +SHA256 (cabal/appar-0.1.8/appar-0.1.8.tar.gz) = c4ceeddc26525b58d82c41b6d3e32141371a200a6794aae185b6266ccc81631f +SIZE (cabal/appar-0.1.8/appar-0.1.8.tar.gz) = 4037 +SHA256 (cabal/asn1-encoding-0.9.6/asn1-encoding-0.9.6.tar.gz) = d9f8deabd3b908e5cf83c0d813c08dc0143b3ec1c0d97f660d2cfa02c1c8da0a +SIZE (cabal/asn1-encoding-0.9.6/asn1-encoding-0.9.6.tar.gz) = 17343 +SHA256 (cabal/asn1-encoding-0.9.6/revision/2.cabal) = 27ed8f6043aed79630313bb931f7c8e2b510f0b4586cd55c16ae040c7d1ea098 +SIZE (cabal/asn1-encoding-0.9.6/revision/2.cabal) = 2060 +SHA256 (cabal/asn1-parse-0.9.5/asn1-parse-0.9.5.tar.gz) = 8f1fe1344d30b39dc594d74df2c55209577722af1497204b4c2b6d6e8747f39e +SIZE (cabal/asn1-parse-0.9.5/asn1-parse-0.9.5.tar.gz) = 2951 +SHA256 (cabal/asn1-types-0.3.4/asn1-types-0.3.4.tar.gz) = 78ee92a251379298ca820fa53edbf4b33c539b9fcd887c86f520c30e3b4e21a8 +SIZE (cabal/asn1-types-0.3.4/asn1-types-0.3.4.tar.gz) = 6472 SHA256 (cabal/assoc-1.1.1/assoc-1.1.1.tar.gz) = 231149b7fef09f5dd95af51228615e3b296dbd0faadeca053e0644a4b13b0ff6 SIZE (cabal/assoc-1.1.1/assoc-1.1.1.tar.gz) = 3158 SHA256 (cabal/assoc-1.1.1/revision/1.cabal) = 0ab39b4d1feb4caca95ac6e314f48782b27a86a6b8d1f5e8dc4be9fbed11185f SIZE (cabal/assoc-1.1.1/revision/1.cabal) = 1420 +SHA256 (cabal/async-2.2.5/async-2.2.5.tar.gz) = 1818473ebab9212afad2ed76297aefde5fae8b5d4404daf36939aece6a8f16f7 +SIZE (cabal/async-2.2.5/async-2.2.5.tar.gz) = 15742 +SHA256 (cabal/async-2.2.5/revision/3.cabal) = b7648c6165729a973d95cb328f9fd874813a81c727707e8b2552b4f03399763b +SIZE (cabal/async-2.2.5/revision/3.cabal) = 3366 SHA256 (cabal/attoparsec-0.14.4/attoparsec-0.14.4.tar.gz) = 3f337fe58624565de12426f607c23e60c7b09c86b4e3adfc827ca188c9979e6c SIZE (cabal/attoparsec-0.14.4/attoparsec-0.14.4.tar.gz) = 160701 SHA256 (cabal/attoparsec-0.14.4/revision/6.cabal) = 35129d0ab1741f000f1a7d2fc839544919ee6fbb8f2d6e7f0a629c41f91035f3 SIZE (cabal/attoparsec-0.14.4/revision/6.cabal) = 5914 SHA256 (cabal/attoparsec-aeson-2.2.2.0/attoparsec-aeson-2.2.2.0.tar.gz) = fe9b2c23a16fe1ff8f41c329940cccc80aca7ac6a9ea314f7a77cf142d8f9edd SIZE (cabal/attoparsec-aeson-2.2.2.0/attoparsec-aeson-2.2.2.0.tar.gz) = 8081 +SHA256 (cabal/authenticate-oauth-1.7/authenticate-oauth-1.7.tar.gz) = 746ff695fec1bd7c7b90f1952847ce3453fadf0f18a31db206753360b3219b78 +SIZE (cabal/authenticate-oauth-1.7/authenticate-oauth-1.7.tar.gz) = 9632 +SHA256 (cabal/authenticate-oauth-1.7/revision/1.cabal) = af2b03698756b2bbb42b8d30236b4d012e31db2b7ce63753158f63d5b0a81da5 +SIZE (cabal/authenticate-oauth-1.7/revision/1.cabal) = 1640 SHA256 (cabal/base-compat-0.14.1/base-compat-0.14.1.tar.gz) = 74e655541e645e8fc7aade1e6a1b6973561be0bca9369bc1623aa345019a35e9 SIZE (cabal/base-compat-0.14.1/base-compat-0.14.1.tar.gz) = 32244 SHA256 (cabal/base-orphans-0.9.3/base-orphans-0.9.3.tar.gz) = 17a35079c8719014560c028d9805ec1301b900972adf212e00af23fe3ebfabd8 SIZE (cabal/base-orphans-0.9.3/base-orphans-0.9.3.tar.gz) = 19923 +SHA256 (cabal/base16-bytestring-1.0.2.0/base16-bytestring-1.0.2.0.tar.gz) = 1d5a91143ef0e22157536093ec8e59d226a68220ec89378d5dcaeea86472c784 +SIZE (cabal/base16-bytestring-1.0.2.0/base16-bytestring-1.0.2.0.tar.gz) = 7219 +SHA256 (cabal/base16-bytestring-1.0.2.0/revision/1.cabal) = a694e88f9ec9fc79f0b03f233d3fea592b68f70a34aac2ddb5bcaecb6562e2fd +SIZE (cabal/base16-bytestring-1.0.2.0/revision/1.cabal) = 2630 +SHA256 (cabal/base64-bytestring-1.2.1.0/base64-bytestring-1.2.1.0.tar.gz) = fbf8ed30edde271eb605352021431d8f1b055f95a56af31fe2eacf6bdfdc49c9 +SIZE (cabal/base64-bytestring-1.2.1.0/base64-bytestring-1.2.1.0.tar.gz) = 13743 +SHA256 (cabal/base64-bytestring-1.2.1.0/revision/1.cabal) = 45305ccf8914c66d385b518721472c7b8c858f1986945377f74f85c1e0d49803 +SIZE (cabal/base64-bytestring-1.2.1.0/revision/1.cabal) = 2502 +SHA256 (cabal/basement-0.0.16/basement-0.0.16.tar.gz) = 7fb77e249aef76ba5aed3059d556800ce02b614597c488ba01f0a16449146300 +SIZE (cabal/basement-0.0.16/basement-0.0.16.tar.gz) = 134837 SHA256 (cabal/bifunctors-5.6.2/bifunctors-5.6.2.tar.gz) = 1086a9285061eed0c2c5d3cb65aa223defd52fca6d0515bb69ddf2dbc3d9697a SIZE (cabal/bifunctors-5.6.2/bifunctors-5.6.2.tar.gz) = 38193 SHA256 (cabal/bifunctors-5.6.2/revision/2.cabal) = 115a621c4eaaabb07834f9e4dd3371e21f39d034305062f4bd5cd72c2f8880d2 SIZE (cabal/bifunctors-5.6.2/revision/2.cabal) = 3332 -SHA256 (cabal/blaze-builder-0.4.2.3/blaze-builder-0.4.2.3.tar.gz) = 66291874236b7342adab033e3cddae414a23a2865dfb44095dfc4e0b9d46703b -SIZE (cabal/blaze-builder-0.4.2.3/blaze-builder-0.4.2.3.tar.gz) = 60777 +SHA256 (cabal/blaze-builder-0.4.4.1/blaze-builder-0.4.4.1.tar.gz) = 971d360428ac97af9a4e55e4f2c23649f6cedc0ce5d6e94d520e663f33ea5113 +SIZE (cabal/blaze-builder-0.4.4.1/blaze-builder-0.4.4.1.tar.gz) = 59452 SHA256 (cabal/blaze-html-0.9.2.0/blaze-html-0.9.2.0.tar.gz) = 65542ef39f7644a3d76afcadeb976d3e334c6947516b7313fcb59165cea1608f SIZE (cabal/blaze-html-0.9.2.0/blaze-html-0.9.2.0.tar.gz) = 81915 SHA256 (cabal/blaze-html-0.9.2.0/revision/1.cabal) = 85c42f84f4ead2c48844fbe0865069add3bb3bb3322d38607e93d5515a4c9c58 @@ -61,16 +93,22 @@ SHA256 (cabal/blaze-markup-0.8.3.0/blaze-markup-0.8.3.0.tar.gz) = 8606ac8b4a1f7f SIZE (cabal/blaze-markup-0.8.3.0/blaze-markup-0.8.3.0.tar.gz) = 14647 SHA256 (cabal/blaze-markup-0.8.3.0/revision/2.cabal) = 027f218b81d28a7c0a33b93d456c4e5aa92d145e9dcee14834fbad73a39ad7e4 SIZE (cabal/blaze-markup-0.8.3.0/revision/2.cabal) = 2360 +SHA256 (cabal/byteorder-1.0.4/byteorder-1.0.4.tar.gz) = bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919 +SIZE (cabal/byteorder-1.0.4/byteorder-1.0.4.tar.gz) = 2030 SHA256 (cabal/call-stack-0.4.0/call-stack-0.4.0.tar.gz) = 430bcf8a3404f7e55319573c0b807b1356946f0c8f289bb3d9afb279c636b87b SIZE (cabal/call-stack-0.4.0/call-stack-0.4.0.tar.gz) = 2757 SHA256 (cabal/case-insensitive-1.2.1.0/case-insensitive-1.2.1.0.tar.gz) = 296dc17e0c5f3dfb3d82ced83e4c9c44c338ecde749b278b6eae512f1d04e406 SIZE (cabal/case-insensitive-1.2.1.0/case-insensitive-1.2.1.0.tar.gz) = 53609 -SHA256 (cabal/cassava-0.5.3.2/cassava-0.5.3.2.tar.gz) = 3ad25d225d2c0db54ef17372d8bf206356bcb7e02a0e7ff38f7078f141d0a9c9 -SIZE (cabal/cassava-0.5.3.2/cassava-0.5.3.2.tar.gz) = 37741 -SHA256 (cabal/cassava-0.5.3.2/revision/1.cabal) = b2e52282af6ca7b42bdd0fb427079b908a2b2e4b350b77df19cdb45ee4fe7876 -SIZE (cabal/cassava-0.5.3.2/revision/1.cabal) = 4977 +SHA256 (cabal/cassava-0.5.4.1/cassava-0.5.4.1.tar.gz) = d40636f530737a99c0282084322230d04d6e1b445e779a0d0a5005f6285a495f +SIZE (cabal/cassava-0.5.4.1/cassava-0.5.4.1.tar.gz) = 38097 SHA256 (cabal/cassava-megaparsec-2.1.1/cassava-megaparsec-2.1.1.tar.gz) = 4631963337675db145c2bf9752bf27b4bae68b7c48ffcac60b428f557b63e786 SIZE (cabal/cassava-megaparsec-2.1.1/cassava-megaparsec-2.1.1.tar.gz) = 7428 +SHA256 (cabal/cborg-0.2.10.0/cborg-0.2.10.0.tar.gz) = 17fe070c38fc498cab49bcb9d6215b7747d53bedf96502e9bcce9cad73b9c797 +SIZE (cabal/cborg-0.2.10.0/cborg-0.2.10.0.tar.gz) = 92122 +SHA256 (cabal/cborg-0.2.10.0/revision/3.cabal) = 47c044ade185e59433ec301fd3d85c7a1b9709cc752daf8b6388c9190aa618aa +SIZE (cabal/cborg-0.2.10.0/revision/3.cabal) = 5397 +SHA256 (cabal/cereal-0.5.8.3/cereal-0.5.8.3.tar.gz) = 99905220661b26e5bd91130bd9772554938608a5b1d717240a6eb331121e0f6a +SIZE (cabal/cereal-0.5.8.3/cereal-0.5.8.3.tar.gz) = 20166 SHA256 (cabal/character-ps-0.1/character-ps-0.1.tar.gz) = 22de71fde38b236d3e9168a832b5e1e75d1fb4f4028667bdf747b3b4c8c1529c SIZE (cabal/character-ps-0.1/character-ps-0.1.tar.gz) = 8192 SHA256 (cabal/clock-0.8.4/clock-0.8.4.tar.gz) = 6ae9898afe788a5e334cd5fad5d18a3c2e8e59fa09aaf7b957dbb38a4767df2e @@ -87,10 +125,32 @@ SHA256 (cabal/contravariant-1.5.5/contravariant-1.5.5.tar.gz) = 062fd66580d7aad0 SIZE (cabal/contravariant-1.5.5/contravariant-1.5.5.tar.gz) = 13815 SHA256 (cabal/control-monad-free-0.6.2/control-monad-free-0.6.2.tar.gz) = 63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1 SIZE (cabal/control-monad-free-0.6.2/control-monad-free-0.6.2.tar.gz) = 3665 +SHA256 (cabal/cookie-0.5.1/cookie-0.5.1.tar.gz) = 1adde62726e3a3bbe147c02514fe0c4f5f2c5a2ff63842deac10c451a2a6f7a0 +SIZE (cabal/cookie-0.5.1/cookie-0.5.1.tar.gz) = 6680 +SHA256 (cabal/crypto-api-0.13.3/crypto-api-0.13.3.tar.gz) = 298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5 +SIZE (cabal/crypto-api-0.13.3/crypto-api-0.13.3.tar.gz) = 48346 +SHA256 (cabal/crypto-api-0.13.3/revision/1.cabal) = e572c0cdc58ba6773ea200ea5261d6bf5fc116d910b52cf1c671d85b940ed6fc +SIZE (cabal/crypto-api-0.13.3/revision/1.cabal) = 2366 +SHA256 (cabal/crypto-pubkey-types-0.4.3/crypto-pubkey-types-0.4.3.tar.gz) = 7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60 +SIZE (cabal/crypto-pubkey-types-0.4.3/crypto-pubkey-types-0.4.3.tar.gz) = 11234 +SHA256 (cabal/crypton-1.0.4/crypton-1.0.4.tar.gz) = b4885402206422450823e7001a40d0f6b11d0c603a0cb8bf8ff5a186b7c4011a +SIZE (cabal/crypton-1.0.4/crypton-1.0.4.tar.gz) = 649976 +SHA256 (cabal/crypton-connection-0.4.5/crypton-connection-0.4.5.tar.gz) = bcddb9f095eb7f13526bcbd4c20001b4bec737c1e6b2dcb6939f643fb83225de +SIZE (cabal/crypton-connection-0.4.5/crypton-connection-0.4.5.tar.gz) = 9360 +SHA256 (cabal/crypton-socks-0.6.2/crypton-socks-0.6.2.tar.gz) = a836087e5c277413c79e6d94a7bf346bfb61eaffb2f55555875c76dfeca69f3b +SIZE (cabal/crypton-socks-0.6.2/crypton-socks-0.6.2.tar.gz) = 11908 +SHA256 (cabal/crypton-x509-1.7.7/crypton-x509-1.7.7.tar.gz) = efece48c8c4adfee209979c2967037d90e6ba1b7b4e7bb1081d1d4cd93daf382 +SIZE (cabal/crypton-x509-1.7.7/crypton-x509-1.7.7.tar.gz) = 21547 +SHA256 (cabal/crypton-x509-store-1.6.11/crypton-x509-store-1.6.11.tar.gz) = 03a991cc1241873435761b379eed94a4e899e0c4804df1719ea5b281903b781f +SIZE (cabal/crypton-x509-store-1.6.11/crypton-x509-store-1.6.11.tar.gz) = 12772 +SHA256 (cabal/crypton-x509-system-1.6.7/crypton-x509-system-1.6.7.tar.gz) = a436261e5f5e83d85080f57a5509c8224c9e75a6e56d0c43a7d2967052b634ca +SIZE (cabal/crypton-x509-system-1.6.7/crypton-x509-system-1.6.7.tar.gz) = 3496 +SHA256 (cabal/crypton-x509-validation-1.6.14/crypton-x509-validation-1.6.14.tar.gz) = ed0e394127db59d66a0a8e4bde28fa0b8cc67cc9a810793b54a58e96df4c601d +SIZE (cabal/crypton-x509-validation-1.6.14/crypton-x509-validation-1.6.14.tar.gz) = 19693 SHA256 (cabal/csv-0.1.2/csv-0.1.2.tar.gz) = 8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600 SIZE (cabal/csv-0.1.2/csv-0.1.2.tar.gz) = 2923 -SHA256 (cabal/data-default-0.8.0.0/data-default-0.8.0.0.tar.gz) = 23f20e3089976fee1670077b745746219a25290bd5e654320c8af6aedf72dd31 -SIZE (cabal/data-default-0.8.0.0/data-default-0.8.0.0.tar.gz) = 4597 +SHA256 (cabal/data-default-0.8.0.1/data-default-0.8.0.1.tar.gz) = ce085de8ec2196f0c1d30af0ad8a517d5737c9edfd4ebfbb49e8687dfc40b6ca +SIZE (cabal/data-default-0.8.0.1/data-default-0.8.0.1.tar.gz) = 5821 SHA256 (cabal/data-default-class-0.2.0.0/data-default-class-0.2.0.0.tar.gz) = 0ae530c4fb0bd6c8a8ba399429ccd9c75f9c7696049117178f4ceeb2bd08d5b4 SIZE (cabal/data-default-class-0.2.0.0/data-default-class-0.2.0.0.tar.gz) = 1589 SHA256 (cabal/data-fix-0.3.4/data-fix-0.3.4.tar.gz) = 8df052d18c047ab9e9200536a8799b5af3997ebecbbb091a7384b6be8416ab37 @@ -105,12 +165,16 @@ SHA256 (cabal/dlist-1.0/dlist-1.0.tar.gz) = 173d637328bb173fcc365f30d29ff4a94292 SIZE (cabal/dlist-1.0/dlist-1.0.tar.gz) = 18667 SHA256 (cabal/dlist-1.0/revision/2.cabal) = 854727594c5a816ab3d10f15b1bc4fedaf9e3f7d1ef517a2bb9011f29ba261d2 SIZE (cabal/dlist-1.0/revision/2.cabal) = 3942 -SHA256 (cabal/doclayout-0.5/doclayout-0.5.tar.gz) = b030410245d9dea721e5bd75511b95bc0380efe159066f3914916e3ad2af2496 -SIZE (cabal/doclayout-0.5/doclayout-0.5.tar.gz) = 43437 +SHA256 (cabal/doclayout-0.5.0.1/doclayout-0.5.0.1.tar.gz) = 6521d8b04b0b49f5a0d633874c9e5b3b5e2aa4abd94a9bae80f976c0932c7007 +SIZE (cabal/doclayout-0.5.0.1/doclayout-0.5.0.1.tar.gz) = 43467 +SHA256 (cabal/ech-config-0.0.1/ech-config-0.0.1.tar.gz) = b236b6d7ea1385c280b76051edc7d8f6db31c9cb7b35df5c06f5a0bd75b4feba +SIZE (cabal/ech-config-0.0.1/ech-config-0.0.1.tar.gz) = 5423 SHA256 (cabal/emojis-0.1.4.1/emojis-0.1.4.1.tar.gz) = 8000d6197b1d43b9b3cd0711c34f120420f358d0425167d2fb7e616d65470ae5 SIZE (cabal/emojis-0.1.4.1/emojis-0.1.4.1.tar.gz) = 52794 -SHA256 (cabal/encoding-0.10/encoding-0.10.tar.gz) = f2d70b508a25f6f20ee54082a65a4b8a8be3f9a4b0359e5b32b6df9b0451b50c -SIZE (cabal/encoding-0.10/encoding-0.10.tar.gz) = 652997 +SHA256 (cabal/encoding-0.10.2/encoding-0.10.2.tar.gz) = 2fb6ce7fba65414a5fc389cd9a6236c40d34339b5341238358ac88b6e5a6cc1d +SIZE (cabal/encoding-0.10.2/encoding-0.10.2.tar.gz) = 653045 +SHA256 (cabal/entropy-0.4.1.11/entropy-0.4.1.11.tar.gz) = f5dd5a01278f8318d9793ed6071b742f13ce36c7456328baae4acc818e2d92ea +SIZE (cabal/entropy-0.4.1.11/entropy-0.4.1.11.tar.gz) = 9112 SHA256 (cabal/extensible-exceptions-0.1.1.4/extensible-exceptions-0.1.1.4.tar.gz) = 6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388 SIZE (cabal/extensible-exceptions-0.1.1.4/extensible-exceptions-0.1.1.4.tar.gz) = 8531 SHA256 (cabal/extra-1.8/extra-1.8.tar.gz) = 2fa4ce5eae50560bba80f1883913cf2ed52b3d87fd290dae27d838c94f5389a1 @@ -123,20 +187,40 @@ SHA256 (cabal/generically-0.1.1/revision/4.cabal) = 3f64278f5c582dd7c6963967b129 SIZE (cabal/generically-0.1.1/revision/4.cabal) = 1203 SHA256 (cabal/githash-0.1.7.0/githash-0.1.7.0.tar.gz) = 1ad5e7c26bd9c9c4e4c3232206694b153845fe11f227e39d214eef0d95f330d4 SIZE (cabal/githash-0.1.7.0/githash-0.1.7.0.tar.gz) = 7661 +SHA256 (cabal/half-0.3.3/half-0.3.3.tar.gz) = f476049628d6ff79722fb073c01e85f2a11b2ef3835fdc3fc21a61f05d17ab02 +SIZE (cabal/half-0.3.3/half-0.3.3.tar.gz) = 8359 +SHA256 (cabal/half-0.3.3/revision/1.cabal) = b5109ef8de7ae45cc8aa1ea89c54e9f94bfcea7898dc0aa675131b7894f941d0 +SIZE (cabal/half-0.3.3/revision/1.cabal) = 2011 SHA256 (cabal/hashable-1.5.0.0/hashable-1.5.0.0.tar.gz) = e58b3a8e18da5f6cd7e937e5fd683e500bb1f8276b3768269759119ca0cddb6a SIZE (cabal/hashable-1.5.0.0/hashable-1.5.0.0.tar.gz) = 89062 SHA256 (cabal/hashable-1.5.0.0/revision/1.cabal) = 2f23146cbe0325029927b221647695a4c7d6e97548ff731110979e34361f58ef SIZE (cabal/hashable-1.5.0.0/revision/1.cabal) = 5914 SHA256 (cabal/hashtables-1.4.2/hashtables-1.4.2.tar.gz) = ca0e299fee6c0c918f45ce0907afbff1c3891998bb792d1717e4d5f12350ef0d SIZE (cabal/hashtables-1.4.2/hashtables-1.4.2.tar.gz) = 58869 -SHA256 (cabal/hledger-lib-1.42.1/hledger-lib-1.42.1.tar.gz) = d4eec36757c783df29ddd4e05e36376d61b023a2f3fe0738dc09209e62dfa930 -SIZE (cabal/hledger-lib-1.42.1/hledger-lib-1.42.1.tar.gz) = 344711 +SHA256 (cabal/hledger-lib-1.50.2/hledger-lib-1.50.2.tar.gz) = 030d825a79ab9dd09cd63186ea1465baccd2cf799b927e00053e5891740607f4 +SIZE (cabal/hledger-lib-1.50.2/hledger-lib-1.50.2.tar.gz) = 365805 +SHA256 (cabal/hourglass-0.2.12/hourglass-0.2.12.tar.gz) = 44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a +SIZE (cabal/hourglass-0.2.12/hourglass-0.2.12.tar.gz) = 25797 +SHA256 (cabal/hourglass-0.2.12/revision/1.cabal) = 85c46cb6cd30c84546929926d4402a534f723651198e5945c9e59b9e699a8979 +SIZE (cabal/hourglass-0.2.12/revision/1.cabal) = 3197 +SHA256 (cabal/hpke-0.0.0/hpke-0.0.0.tar.gz) = 7b0b7dfb4f7081beab54c4cb0cb3df3f3c03ce05cb11747f190bab22df19b83c +SIZE (cabal/hpke-0.0.0/hpke-0.0.0.tar.gz) = 25248 SHA256 (cabal/hsc2hs-0.68.10/hsc2hs-0.68.10.tar.gz) = 6f4e34d788fe2ca7091ee0a10307ee8a7c060a1ba890f2bffad16a7d4d5cef76 SIZE (cabal/hsc2hs-0.68.10/hsc2hs-0.68.10.tar.gz) = 40517 -SHA256 (cabal/hsc2hs-0.68.10/revision/3.cabal) = 276325277350cd2c2c88916ed3ae5cd35b2b4f494ec594fbd9534081eb7fb759 -SIZE (cabal/hsc2hs-0.68.10/revision/3.cabal) = 3008 +SHA256 (cabal/hsc2hs-0.68.10/revision/4.cabal) = 725ef6da03d3d6e332db4de0a35bee45d72e4d31decc5ec7f153e6837af5f03e +SIZE (cabal/hsc2hs-0.68.10/revision/4.cabal) = 3114 SHA256 (cabal/html-1.0.1.2/html-1.0.1.2.tar.gz) = 0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061 SIZE (cabal/html-1.0.1.2/html-1.0.1.2.tar.gz) = 11021 +SHA256 (cabal/http-api-data-0.6.2/http-api-data-0.6.2.tar.gz) = dc84a9ff403922f03bdc497cedee145fdd0058b1bb47be59cf714460eaec8234 +SIZE (cabal/http-api-data-0.6.2/http-api-data-0.6.2.tar.gz) = 20873 +SHA256 (cabal/http-client-0.7.19/http-client-0.7.19.tar.gz) = a02c1be082e8f48c959ac7150a48a405f8d4383e0942639481e84b220f29ad61 +SIZE (cabal/http-client-0.7.19/http-client-0.7.19.tar.gz) = 96836 +SHA256 (cabal/http-client-tls-0.3.6.4/http-client-tls-0.3.6.4.tar.gz) = 7756006fee8ab924c521372e0f9d6705579016b9fab0b0312d1b9a335cfc18a3 +SIZE (cabal/http-client-tls-0.3.6.4/http-client-tls-0.3.6.4.tar.gz) = 7954 +SHA256 (cabal/http-client-tls-0.3.6.4/revision/2.cabal) = efe0a32d59c3a38ea35eb9c1b6e7beffa3592e39b2065a727cb84ccd654d16f3 +SIZE (cabal/http-client-tls-0.3.6.4/revision/2.cabal) = 2135 +SHA256 (cabal/http-types-0.12.4/http-types-0.12.4.tar.gz) = 4d4b1bb0cc817e5fef0c9c76c9647f69f4d300c45a105043493eff86381be549 +SIZE (cabal/http-types-0.12.4/http-types-0.12.4.tar.gz) = 18707 SHA256 (cabal/indexed-traversable-0.1.4/indexed-traversable-0.1.4.tar.gz) = 58be09afdf3ad5a25c2aa0d2a7df80d602df09f4e76d3abf2b7cdb0e75d03b22 SIZE (cabal/indexed-traversable-0.1.4/indexed-traversable-0.1.4.tar.gz) = 9465 SHA256 (cabal/indexed-traversable-0.1.4/revision/1.cabal) = 42d9e84a65a0c17c248233cab98ada872ff6140dfa24d109d6eb285204d07e7d @@ -151,56 +235,74 @@ SHA256 (cabal/integer-conversion-0.1.1/revision/1.cabal) = 941d4ae16e2124cbff5de SIZE (cabal/integer-conversion-0.1.1/revision/1.cabal) = 2256 SHA256 (cabal/integer-logarithms-1.0.4/integer-logarithms-1.0.4.tar.gz) = 6a93c76c2518cbe2d72ab17da6ae46d8cae93cbfb7c5a5ad5783f903c1448f45 SIZE (cabal/integer-logarithms-1.0.4/integer-logarithms-1.0.4.tar.gz) = 8948 +SHA256 (cabal/iproute-1.7.15/iproute-1.7.15.tar.gz) = 18a331a7e0e6f9dc89a2da95577b0d76bd2690b8f832b72b46d6cc9b667b4ba5 +SIZE (cabal/iproute-1.7.15/iproute-1.7.15.tar.gz) = 18033 SHA256 (cabal/lucid-2.11.20250303/lucid-2.11.20250303.tar.gz) = bbe62357e944549ce7f45c8f998e82b4d90c5aff6462446fb01cf32cddb744f4 SIZE (cabal/lucid-2.11.20250303/lucid-2.11.20250303.tar.gz) = 21416 SHA256 (cabal/math-functions-0.3.4.4/math-functions-0.3.4.4.tar.gz) = 2441d8dd50eff445356048b2a0cdf88c4a7ba0f56614293d4975e1b081faf8fa SIZE (cabal/math-functions-0.3.4.4/math-functions-0.3.4.4.tar.gz) = 429048 SHA256 (cabal/megaparsec-9.7.0/megaparsec-9.7.0.tar.gz) = b9ed423625bf20ae7a72480d40d2dd16018a67e2ec45afb840a3607aa931ec97 SIZE (cabal/megaparsec-9.7.0/megaparsec-9.7.0.tar.gz) = 67078 -SHA256 (cabal/microlens-0.4.14.0/microlens-0.4.14.0.tar.gz) = 56792a613e4fb0634bdedf54dcb773ac4baae8be0fec8bd88e1bb8b7a649922e -SIZE (cabal/microlens-0.4.14.0/microlens-0.4.14.0.tar.gz) = 28262 -SHA256 (cabal/microlens-th-0.4.3.17/microlens-th-0.4.3.17.tar.gz) = 1d762c027ca332ae906cb031e87a423c2bbedebe3bb9d988188692a5de4c0a94 -SIZE (cabal/microlens-th-0.4.3.17/microlens-th-0.4.3.17.tar.gz) = 24258 -SHA256 (cabal/mmorph-1.2.0/mmorph-1.2.0.tar.gz) = 61338058eb676b466a462ca45d59f436a77a3bd6b816e4268c6d88522b6a4280 -SIZE (cabal/mmorph-1.2.0/mmorph-1.2.0.tar.gz) = 6861 -SHA256 (cabal/mmorph-1.2.0/revision/3.cabal) = df9b213ec18f811cb3137b478d148f3f1680ee43f841cb775835fa282fdb0295 -SIZE (cabal/mmorph-1.2.0/revision/3.cabal) = 1083 +SHA256 (cabal/memory-0.18.0/memory-0.18.0.tar.gz) = fd4eb6f638e24b81b4e6cdd68772a531726f2f67686c8969d3407d82f7862e3e +SIZE (cabal/memory-0.18.0/memory-0.18.0.tar.gz) = 41957 +SHA256 (cabal/memory-0.18.0/revision/1.cabal) = 9f4de967352f80b6f174c9a166f315393dde80b77d7b67e41268ae7dec0319f9 +SIZE (cabal/memory-0.18.0/revision/1.cabal) = 4581 +SHA256 (cabal/microlens-0.5.0.0/microlens-0.5.0.0.tar.gz) = 04608e891112af94eb218b602e5edd5efa58bee9016764df914fa0bdb814bf65 +SIZE (cabal/microlens-0.5.0.0/microlens-0.5.0.0.tar.gz) = 29409 +SHA256 (cabal/microlens-th-0.4.3.18/microlens-th-0.4.3.18.tar.gz) = 417ef41008ceab2a67bb008f364376b96224594e6e999499c083cab081b0ed8b +SIZE (cabal/microlens-th-0.4.3.18/microlens-th-0.4.3.18.tar.gz) = 24271 +SHA256 (cabal/mime-types-0.1.2.0/mime-types-0.1.2.0.tar.gz) = 013ae48a4c1726a4f91a64e882f3fe1fb903a7d4b8c14da51286fe5e4b974f61 +SIZE (cabal/mime-types-0.1.2.0/mime-types-0.1.2.0.tar.gz) = 12044 +SHA256 (cabal/mmorph-1.2.1/mmorph-1.2.1.tar.gz) = 0e59d6028463ec832c908edf85b4e7adba02cfb98ad33cebb55295ecbba74ce6 +SIZE (cabal/mmorph-1.2.1/mmorph-1.2.1.tar.gz) = 6951 +SHA256 (cabal/mmorph-1.2.1/revision/1.cabal) = ea4c137f09d377ad071ff266a5f623c67376ff100094b96c44eedd7d3042ee02 +SIZE (cabal/mmorph-1.2.1/revision/1.cabal) = 1083 SHA256 (cabal/modern-uri-0.3.6.1/modern-uri-0.3.6.1.tar.gz) = 0246f9cfced1227abe3a6403eeacc6b5f79f7e3319759a4dd1fd341c12454fe9 SIZE (cabal/modern-uri-0.3.6.1/modern-uri-0.3.6.1.tar.gz) = 26185 SHA256 (cabal/modern-uri-0.3.6.1/revision/3.cabal) = 1ff00fbd7e695b0695bb325a1fe375cc8c83b55cd7b7c08af083526809a8d76a SIZE (cabal/modern-uri-0.3.6.1/revision/3.cabal) = 3602 +SHA256 (cabal/monad-control-1.0.3.1/monad-control-1.0.3.1.tar.gz) = ae0baea04d99375ef788140367179994a7178d400a8ce0d9026846546772713c +SIZE (cabal/monad-control-1.0.3.1/monad-control-1.0.3.1.tar.gz) = 13985 +SHA256 (cabal/mtl-compat-0.2.2/mtl-compat-0.2.2.tar.gz) = 1955398fe2115674f47f553b2caaf928c6aa3424271a5cd13bc191e54bfe3a9e +SIZE (cabal/mtl-compat-0.2.2/mtl-compat-0.2.2.tar.gz) = 5128 +SHA256 (cabal/network-3.2.8.0/network-3.2.8.0.tar.gz) = 51788e5eeb7d77264f260acd48df8055a4dbc2477e8d634a8493677bb15c5fc8 +SIZE (cabal/network-3.2.8.0/network-3.2.8.0.tar.gz) = 146148 +SHA256 (cabal/network-byte-order-0.1.7/network-byte-order-0.1.7.tar.gz) = 480ce0ad7f67364ec8d4ce8d815f463d9e4074e3789be22a5722cfdebed08679 +SIZE (cabal/network-byte-order-0.1.7/network-byte-order-0.1.7.tar.gz) = 6402 SHA256 (cabal/network-uri-2.6.4.2/network-uri-2.6.4.2.tar.gz) = 9c188973126e893250b881f20e8811dca06c223c23402b06f7a1f2e995797228 SIZE (cabal/network-uri-2.6.4.2/network-uri-2.6.4.2.tar.gz) = 31309 SHA256 (cabal/network-uri-2.6.4.2/revision/1.cabal) = 6fffb57373962b5651a2db8b0af732098b3bf029a7ced76a9855615de2026588 SIZE (cabal/network-uri-2.6.4.2/revision/1.cabal) = 3217 -SHA256 (cabal/optparse-applicative-0.18.1.0/optparse-applicative-0.18.1.0.tar.gz) = 63811ab4fd26e829b8868364325a88be3acc79819f5bb5005b2dd3b961ecc491 -SIZE (cabal/optparse-applicative-0.18.1.0/optparse-applicative-0.18.1.0.tar.gz) = 60682 -SHA256 (cabal/optparse-applicative-0.18.1.0/revision/1.cabal) = f30973861ac7e7ebff05ff8c7c3d1e4d283a1f3850e1cc14106b0693ec1b6d82 -SIZE (cabal/optparse-applicative-0.18.1.0/revision/1.cabal) = 5289 -SHA256 (cabal/os-string-2.0.7/os-string-2.0.7.tar.gz) = 339c35fd3a290522f23de4e33528423cfd0b0a8f22946b0b9816a817b926cba0 -SIZE (cabal/os-string-2.0.7/os-string-2.0.7.tar.gz) = 44683 +SHA256 (cabal/old-locale-1.0.0.7/old-locale-1.0.0.7.tar.gz) = dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50 +SIZE (cabal/old-locale-1.0.0.7/old-locale-1.0.0.7.tar.gz) = 3384 +SHA256 (cabal/old-locale-1.0.0.7/revision/2.cabal) = fa998be2c7e00cd26a6e9075bea790caaf3932caa3e9497ad69bc20380dd6911 +SIZE (cabal/old-locale-1.0.0.7/revision/2.cabal) = 1071 +SHA256 (cabal/old-time-1.1.0.4/old-time-1.1.0.4.tar.gz) = 1e22eb7f7b924a676f52e317917b3b5eeceee11c74ef4bc609c0bcec624c166f +SIZE (cabal/old-time-1.1.0.4/old-time-1.1.0.4.tar.gz) = 75542 +SHA256 (cabal/optparse-applicative-0.19.0.0/optparse-applicative-0.19.0.0.tar.gz) = cf16aeefd821730c7738447fa7c6b7ada7ca1c9cc25400d64ef283294d345871 +SIZE (cabal/optparse-applicative-0.19.0.0/optparse-applicative-0.19.0.0.tar.gz) = 67629 +SHA256 (cabal/os-string-2.0.8/os-string-2.0.8.tar.gz) = 02794279dd30282e7b0d45a860dda50ee26a92b1461f5da4545f62dab4172686 +SIZE (cabal/os-string-2.0.8/os-string-2.0.8.tar.gz) = 44896 SHA256 (cabal/parser-combinators-1.3.0/parser-combinators-1.3.0.tar.gz) = 9310ef0d49f8a8922acda10b1cded9854cbee04dea717effc6ee5983072e4447 SIZE (cabal/parser-combinators-1.3.0/parser-combinators-1.3.0.tar.gz) = 11699 SHA256 (cabal/parser-combinators-1.3.0/revision/1.cabal) = 8659573e0d443d573f5b53f81b81dafbdc988d282b90c11e3da73562b4ea7876 SIZE (cabal/parser-combinators-1.3.0/revision/1.cabal) = 1640 -SHA256 (cabal/pretty-simple-4.1.3.0/pretty-simple-4.1.3.0.tar.gz) = 2aab1db01cdb1cc7847b2d11d915ac80a7df8e12bc0e5567e5331a93b782d00e -SIZE (cabal/pretty-simple-4.1.3.0/pretty-simple-4.1.3.0.tar.gz) = 40919 +SHA256 (cabal/pem-0.2.4/pem-0.2.4.tar.gz) = 770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4 +SIZE (cabal/pem-0.2.4/pem-0.2.4.tar.gz) = 4717 +SHA256 (cabal/pretty-simple-4.1.4.0/pretty-simple-4.1.4.0.tar.gz) = 3a51aa5c987bba79c2bc75b14b28b2bcba7862f18162431811476512be2dae1f +SIZE (cabal/pretty-simple-4.1.4.0/pretty-simple-4.1.4.0.tar.gz) = 40964 SHA256 (cabal/prettyprinter-1.7.1/prettyprinter-1.7.1.tar.gz) = 5e6ea6903114fa118fcc359633dfb7ecddecb92c06c853d02a77b72b251f0b45 SIZE (cabal/prettyprinter-1.7.1/prettyprinter-1.7.1.tar.gz) = 56907 SHA256 (cabal/prettyprinter-ansi-terminal-1.1.3/prettyprinter-ansi-terminal-1.1.3.tar.gz) = 813739308ad6050620578994effe21058a170a341716acf52573fae42b5b1db3 SIZE (cabal/prettyprinter-ansi-terminal-1.1.3/prettyprinter-ansi-terminal-1.1.3.tar.gz) = 8879 -SHA256 (cabal/primitive-0.9.0.0/primitive-0.9.0.0.tar.gz) = 696d4bd291c94d736142d6182117dca4258d3ef28bfefdb649ac8b5ecd0999c7 -SIZE (cabal/primitive-0.9.0.0/primitive-0.9.0.0.tar.gz) = 60580 -SHA256 (cabal/primitive-0.9.0.0/revision/2.cabal) = de20bf4eff1f972088854c8efda6eaca2d3147aff62232c3707f059152638759 -SIZE (cabal/primitive-0.9.0.0/revision/2.cabal) = 3203 -SHA256 (cabal/profunctors-5.6.2/profunctors-5.6.2.tar.gz) = 65955d7b50525a4a3bccdab1d982d2ae342897fd38140d5a94b5ef3800d8c92a -SIZE (cabal/profunctors-5.6.2/profunctors-5.6.2.tar.gz) = 28522 -SHA256 (cabal/profunctors-5.6.2/revision/3.cabal) = e178ba4468982326656626e2089e296f64485e68fdddc9f4476dcd5d612b4f78 -SIZE (cabal/profunctors-5.6.2/revision/3.cabal) = 2484 +SHA256 (cabal/primitive-0.9.1.0/primitive-0.9.1.0.tar.gz) = 44b4de41813c7bc5db8a57f87c3612a069b65086946268ba165097252ebd3d76 +SIZE (cabal/primitive-0.9.1.0/primitive-0.9.1.0.tar.gz) = 61724 +SHA256 (cabal/profunctors-5.6.3/profunctors-5.6.3.tar.gz) = b9c6f427368d2e811e4c48b59005218672458fd2f00a02cbefb8be9c751c0ef3 +SIZE (cabal/profunctors-5.6.3/profunctors-5.6.3.tar.gz) = 28146 SHA256 (cabal/quote-quot-0.2.1.0/quote-quot-0.2.1.0.tar.gz) = 67dc25909c5b9bb373c66a9c9c1721d1e73915bd5518f42d1f97b793f42e4df7 SIZE (cabal/quote-quot-0.2.1.0/quote-quot-0.2.1.0.tar.gz) = 6731 -SHA256 (cabal/random-1.2.1.3/random-1.2.1.3.tar.gz) = e9c81926a7d1e40328f645f73592b31efc9c631589669a7f130687b9cc3051dc -SIZE (cabal/random-1.2.1.3/random-1.2.1.3.tar.gz) = 47117 +SHA256 (cabal/random-1.3.1/random-1.3.1.tar.gz) = d840ac83f265b0cfa2a678f8ec78627eb50cf9be2f067c52c8a4239c29b71a35 +SIZE (cabal/random-1.3.1/random-1.3.1.tar.gz) = 63846 SHA256 (cabal/reflection-2.1.9/reflection-2.1.9.tar.gz) = c6a7d5e41ad0ee1a05c660acf4fd34b21f38330eec165d246b7fffb398e59fb3 SIZE (cabal/reflection-2.1.9/reflection-2.1.9.tar.gz) = 17560 SHA256 (cabal/reflection-2.1.9/revision/1.cabal) = eaf28dc9884718a306ed1e0c215a24b36c68b8aa3be425617f66d886d43fe1e0 @@ -211,8 +313,14 @@ SHA256 (cabal/regex-compat-0.95.2.2/regex-compat-0.95.2.2.tar.gz) = e27ed1d8c361 SIZE (cabal/regex-compat-0.95.2.2/regex-compat-0.95.2.2.tar.gz) = 4658 SHA256 (cabal/regex-posix-0.96.0.2/regex-posix-0.96.0.2.tar.gz) = 7e570460c35c5deec54d1ba46305ddb4679c7d4aae84f631dd0c61daaeaa8150 SIZE (cabal/regex-posix-0.96.0.2/regex-posix-0.96.0.2.tar.gz) = 13343 -SHA256 (cabal/regex-tdfa-1.3.2.3/regex-tdfa-1.3.2.3.tar.gz) = 8571bcf85825e503c768d2ffb868fc5ddccced06ad385228f1ed85ee6d32dc6f -SIZE (cabal/regex-tdfa-1.3.2.3/regex-tdfa-1.3.2.3.tar.gz) = 83017 +SHA256 (cabal/regex-tdfa-1.3.2.5/regex-tdfa-1.3.2.5.tar.gz) = 2e3dfb449a548484f7d3b4e2a1b1040b39be26c4f3182a47004dc5eddf028a78 +SIZE (cabal/regex-tdfa-1.3.2.5/regex-tdfa-1.3.2.5.tar.gz) = 83371 +SHA256 (cabal/req-3.13.4/req-3.13.4.tar.gz) = f37fc48d15fb63a6edc546403eaa261310258d72737b42c02ea39d95049d0069 +SIZE (cabal/req-3.13.4/req-3.13.4.tar.gz) = 41953 +SHA256 (cabal/req-3.13.4/revision/4.cabal) = 9354cf9abe2f080a6f2eae53a0ba693e1dc9cfc1dc74acabde8cdf06d9ec2493 +SIZE (cabal/req-3.13.4/revision/4.cabal) = 3831 +SHA256 (cabal/retry-0.9.3.1/retry-0.9.3.1.tar.gz) = 622e35114b920f76fa2e1ae6515575b9973fac19c679f5426ea6574a5d0b7ed6 +SIZE (cabal/retry-0.9.3.1/retry-0.9.3.1.tar.gz) = 18717 SHA256 (cabal/safe-0.3.21/safe-0.3.21.tar.gz) = 2c81fea42bbe79ec488774043c1ec54f30efba059df9a4f3681ce83d85007f01 SIZE (cabal/safe-0.3.21/safe-0.3.21.tar.gz) = 11778 SHA256 (cabal/safe-0.3.21/revision/1.cabal) = b928ea1645876788155b38ce85c7e46d157a1bb41d2b05f5770b13d60bc6a3f7 @@ -229,12 +337,18 @@ SHA256 (cabal/semigroupoids-6.0.1/semigroupoids-6.0.1.tar.gz) = 1d532030862414f5 SIZE (cabal/semigroupoids-6.0.1/semigroupoids-6.0.1.tar.gz) = 36372 SHA256 (cabal/semigroupoids-6.0.1/revision/2.cabal) = bfee06a6d88038a88ddd10fc21c230bf5ee3a14d0584dc6ab7ad54a9252c2c21 SIZE (cabal/semigroupoids-6.0.1/revision/2.cabal) = 7539 -SHA256 (cabal/shakespeare-2.1.0.1/shakespeare-2.1.0.1.tar.gz) = 6cb655f3734de1b920faf67f313d45e31fc7f8fcf0a2e00a45f986d8e107d22f -SIZE (cabal/shakespeare-2.1.0.1/shakespeare-2.1.0.1.tar.gz) = 71698 +SHA256 (cabal/serialise-0.2.6.1/serialise-0.2.6.1.tar.gz) = 63949799ffd10675ef70ea701c1eb63e618629b3b2f7b25f07c5a966e24e77f4 +SIZE (cabal/serialise-0.2.6.1/serialise-0.2.6.1.tar.gz) = 75106 +SHA256 (cabal/serialise-0.2.6.1/revision/5.cabal) = a67f89b5533b1148ad465dc7f24baeed2e2e9e7d81d2a147fc7fa8ff1089ca4d +SIZE (cabal/serialise-0.2.6.1/revision/5.cabal) = 8814 +SHA256 (cabal/shakespeare-2.1.7.1/shakespeare-2.1.7.1.tar.gz) = daaf1c052e9a58628a4b70755080cba54b0042ec71655d2628f4c9393eead119 +SIZE (cabal/shakespeare-2.1.7.1/shakespeare-2.1.7.1.tar.gz) = 74125 SHA256 (cabal/split-0.2.5/split-0.2.5.tar.gz) = 52da404e8397c1ab238354c8d4fd9a7e9c5cac8849cc2ce2e45facc85e74a913 SIZE (cabal/split-0.2.5/split-0.2.5.tar.gz) = 16008 -SHA256 (cabal/splitmix-0.1.1/splitmix-0.1.1.tar.gz) = d678c41a603a62032cf7e5f8336bb8222c93990e4b59c8b291b7ca26c7eb12c7 -SIZE (cabal/splitmix-0.1.1/splitmix-0.1.1.tar.gz) = 21981 +SHA256 (cabal/splitmix-0.1.3.1/splitmix-0.1.3.1.tar.gz) = b6bcd0d79bd4fe40975c8ebe803be2f3bfbf6006069a59745a325a0df3f86270 +SIZE (cabal/splitmix-0.1.3.1/splitmix-0.1.3.1.tar.gz) = 21955 +SHA256 (cabal/streaming-commons-0.2.3.0/streaming-commons-0.2.3.0.tar.gz) = 26384af91f5ab9470b0bbdd0ce2172db43fc79730b7c5a3405d89c3663eb1e57 +SIZE (cabal/streaming-commons-0.2.3.0/streaming-commons-0.2.3.0.tar.gz) = 37874 SHA256 (cabal/strict-0.5.1/strict-0.5.1.tar.gz) = 77719280c2a86312e748227bfa732eeaae0e7df48d57acc3c2e5b7b07afe2f8b SIZE (cabal/strict-0.5.1/strict-0.5.1.tar.gz) = 11798 SHA256 (cabal/strict-0.5.1/revision/1.cabal) = 58c373b7c7748cbb4a5a6c8c15073f99a1c10a9a9bb6894ac33f43a5cdb901f2 @@ -247,14 +361,16 @@ SHA256 (cabal/tagged-0.8.9/tagged-0.8.9.tar.gz) = 6daad88ebb414ba6a556d2898d2cbe SIZE (cabal/tagged-0.8.9/tagged-0.8.9.tar.gz) = 8151 SHA256 (cabal/tasty-1.5.3/tasty-1.5.3.tar.gz) = 54a0c7b644813af871a3726ac8771b5e17b5158c792a7acf8f9e2d3ae9360780 SIZE (cabal/tasty-1.5.3/tasty-1.5.3.tar.gz) = 66548 -SHA256 (cabal/tasty-1.5.3/revision/1.cabal) = 9d56ea9dbc274fc853fc531373b2c91bfe360e21460c2c6a5838897d86e3f6d0 -SIZE (cabal/tasty-1.5.3/revision/1.cabal) = 2923 +SHA256 (cabal/tasty-1.5.3/revision/2.cabal) = 6b5dda3f16db1274a0b3e6c4073ac57172a1e96b1dca05666c5cbd1183639412 +SIZE (cabal/tasty-1.5.3/revision/2.cabal) = 2923 SHA256 (cabal/tasty-hunit-0.10.2/tasty-hunit-0.10.2.tar.gz) = 5af01fa7c1ef98b324da062e36f79986a8b1b83ff0cf6fd53f95d976b41e03f6 SIZE (cabal/tasty-hunit-0.10.2/tasty-hunit-0.10.2.tar.gz) = 7808 SHA256 (cabal/temporary-1.3/temporary-1.3.tar.gz) = 8c442993694b5ffca823ce864af95bd2841fb5264ee511c61cf48cc71d879890 SIZE (cabal/temporary-1.3/temporary-1.3.tar.gz) = 5686 SHA256 (cabal/terminal-size-0.3.4/terminal-size-0.3.4.tar.gz) = b0f070d6926cdaacf3a412c5518e5c23afca1e0ed00808a5328c96e468b67f49 SIZE (cabal/terminal-size-0.3.4/terminal-size-0.3.4.tar.gz) = 4457 +SHA256 (cabal/terminal-size-0.3.4/revision/1.cabal) = 21d7f1320eeb86177e860ec07a3d8e7510977b1b415a96ebb62ee4ad72955770 +SIZE (cabal/terminal-size-0.3.4/revision/1.cabal) = 1364 SHA256 (cabal/text-ansi-0.3.0.1/text-ansi-0.3.0.1.tar.gz) = 0078b6e1adfb3fbbb4e241e20116829c3ede02f3906eb292ab4540c9e82f3846 SIZE (cabal/text-ansi-0.3.0.1/text-ansi-0.3.0.1.tar.gz) = 6149 SHA256 (cabal/text-ansi-0.3.0.1/revision/2.cabal) = 10c9db7dc1e914bcf8ef42cad3471109a5f9787e7955f907b8182706098a59ae @@ -287,30 +403,38 @@ SHA256 (cabal/timeit-2.0/timeit-2.0.tar.gz) = a14df4e578db371e5c609f078420914454 SIZE (cabal/timeit-2.0/timeit-2.0.tar.gz) = 2117 SHA256 (cabal/timeit-2.0/revision/2.cabal) = 35d7c3ce64b458bbb1200320203f21281c975c85acc636a634500601c474fded SIZE (cabal/timeit-2.0/revision/2.cabal) = 1197 +SHA256 (cabal/tls-2.1.11/tls-2.1.11.tar.gz) = 059a173398504f03cdcf33543ee33ba45082c3270f52a4d5810f84ddf7f684e3 +SIZE (cabal/tls-2.1.11/tls-2.1.11.tar.gz) = 185047 +SHA256 (cabal/transformers-base-0.4.6/transformers-base-0.4.6.tar.gz) = 323bf8689eb691b122661cffa41a25e00fea7a768433fe2dde35d3da7d32cf90 +SIZE (cabal/transformers-base-0.4.6/transformers-base-0.4.6.tar.gz) = 2902 SHA256 (cabal/transformers-compat-0.7.2/transformers-compat-0.7.2.tar.gz) = b62c7304c9f3cbc9463d0739aa85cb9489f217ea092b9d625d417514fbcc9d6a SIZE (cabal/transformers-compat-0.7.2/transformers-compat-0.7.2.tar.gz) = 46485 SHA256 (cabal/uglymemo-0.1.0.1/uglymemo-0.1.0.1.tar.gz) = fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847 SIZE (cabal/uglymemo-0.1.0.1/uglymemo-0.1.0.1.tar.gz) = 887 -SHA256 (cabal/unordered-containers-0.2.20/unordered-containers-0.2.20.tar.gz) = d9cfb287cf00592d39dc9c3cac8b99627ea08f2c01798e70130fc39f7c90f11d -SIZE (cabal/unordered-containers-0.2.20/unordered-containers-0.2.20.tar.gz) = 59823 -SHA256 (cabal/unordered-containers-0.2.20/revision/4.cabal) = 233cbcdda6c2698932bb391ce0935fb44f80c115621ee815a21ed33ac8ede422 -SIZE (cabal/unordered-containers-0.2.20/revision/4.cabal) = 3921 +SHA256 (cabal/unix-time-0.4.17/unix-time-0.4.17.tar.gz) = f63a05be5dcc5ac8f72c26c9fef8dcc993638ca9b545b9bd69b8a3924c201f8c +SIZE (cabal/unix-time-0.4.17/unix-time-0.4.17.tar.gz) = 53677 +SHA256 (cabal/unliftio-core-0.2.1.0/unliftio-core-0.2.1.0.tar.gz) = 99384cba8d56d9d61b85e38a313a93ebcdb78be6566367f0930ef580597fe3e3 +SIZE (cabal/unliftio-core-0.2.1.0/unliftio-core-0.2.1.0.tar.gz) = 3865 +SHA256 (cabal/unliftio-core-0.2.1.0/revision/4.cabal) = f6a2736f858b5390d9384dca43d3ea4d96e9ca17217791791ca4951ba6e8072a +SIZE (cabal/unliftio-core-0.2.1.0/revision/4.cabal) = 996 +SHA256 (cabal/unordered-containers-0.2.20.1/unordered-containers-0.2.20.1.tar.gz) = 708a60513d6da61e09b60b9a486106af703a889b5b43472a27c3b60bf35246ab +SIZE (cabal/unordered-containers-0.2.20.1/unordered-containers-0.2.20.1.tar.gz) = 60625 SHA256 (cabal/utf8-string-1.0.2/utf8-string-1.0.2.tar.gz) = ee48deada7600370728c4156cb002441de770d0121ae33a68139a9ed9c19b09a SIZE (cabal/utf8-string-1.0.2/utf8-string-1.0.2.tar.gz) = 10726 SHA256 (cabal/utility-ht-0.0.17.2/utility-ht-0.0.17.2.tar.gz) = 0a8ec081956d18f8ca84f58aacf39a5ab1a7dc08302e2ce28b4ac3768bb0372c SIZE (cabal/utility-ht-0.0.17.2/utility-ht-0.0.17.2.tar.gz) = 33604 SHA256 (cabal/uuid-types-1.0.6/uuid-types-1.0.6.tar.gz) = 7e0dd953483d6fd3ca49bcaed6b11f9e3c2787213479b2581e07747836b8357e SIZE (cabal/uuid-types-1.0.6/uuid-types-1.0.6.tar.gz) = 11222 -SHA256 (cabal/uuid-types-1.0.6/revision/2.cabal) = 88e78c100b699cb829524af914cea82422bd518ce90625122ebe4c8048aee13d -SIZE (cabal/uuid-types-1.0.6/revision/2.cabal) = 2619 +SHA256 (cabal/uuid-types-1.0.6/revision/3.cabal) = 5ac2b681a8d7676f6a51ac1b113bfdcf18dd7fdbb313034850ed6493eef96da0 +SIZE (cabal/uuid-types-1.0.6/revision/3.cabal) = 2619 SHA256 (cabal/vector-0.13.2.0/vector-0.13.2.0.tar.gz) = 28f203c786cbf8ac6dc3fea3378ec36f34173d505fb4a1dd60fc8418ad91c423 SIZE (cabal/vector-0.13.2.0/vector-0.13.2.0.tar.gz) = 185739 -SHA256 (cabal/vector-0.13.2.0/revision/1.cabal) = b736a57b73520d2acf4865e3e2b40030d69782f35f870e376dc717ee2508d81f -SIZE (cabal/vector-0.13.2.0/revision/1.cabal) = 8804 +SHA256 (cabal/vector-0.13.2.0/revision/2.cabal) = 9ac338c8da52d8a37db08434ca4480fef2cea4f9aac240f4f994bb467f5275b4 +SIZE (cabal/vector-0.13.2.0/revision/2.cabal) = 8804 SHA256 (cabal/vector-stream-0.1.0.1/vector-stream-0.1.0.1.tar.gz) = d0f507334bdea5431a2f07f525a97f29e76522c32210f5de6d5a2b4f1d42bf7c SIZE (cabal/vector-stream-0.1.0.1/vector-stream-0.1.0.1.tar.gz) = 12577 -SHA256 (cabal/vector-stream-0.1.0.1/revision/3.cabal) = 5ac96695212a45ae7dc16d8031dbf5311da53e052c35f7ad4a8e2db7fafb651e -SIZE (cabal/vector-stream-0.1.0.1/revision/3.cabal) = 1642 +SHA256 (cabal/vector-stream-0.1.0.1/revision/4.cabal) = 483be6df13c72169a917640589666f9fece7bea9fa13fcd41d052dab37ea289e +SIZE (cabal/vector-stream-0.1.0.1/revision/4.cabal) = 1642 SHA256 (cabal/witherable-0.5/witherable-0.5.tar.gz) = 48434cc1e465b13cbc0133a90c3ec0d827c93b77ce95807fe0a38b65f4918cd1 SIZE (cabal/witherable-0.5/witherable-0.5.tar.gz) = 10819 SHA256 (cabal/witherable-0.5/revision/1.cabal) = 85bab588ebca37996fc3171b9d8b2e065eb0536c9f44224bcf037c0849a881de @@ -319,3 +443,5 @@ SHA256 (cabal/wizards-1.0.3/wizards-1.0.3.tar.gz) = 05650d7bf6dd0e6b87d0d7da6fb0 SIZE (cabal/wizards-1.0.3/wizards-1.0.3.tar.gz) = 8243 SHA256 (cabal/wizards-1.0.3/revision/3.cabal) = cb7798895ee35e06c00a69eb1cd8a3c45921e3c5fb76ffcf11a76a15fbda4365 SIZE (cabal/wizards-1.0.3/revision/3.cabal) = 3533 +SHA256 (cabal/zlib-0.7.1.1/zlib-0.7.1.1.tar.gz) = bf95ab01ed924be800addea195fba5ca97ec69f378368f6ff466bdc29666c1c1 +SIZE (cabal/zlib-0.7.1.1/zlib-0.7.1.1.tar.gz) = 29324 diff --git a/games/Makefile b/games/Makefile index fef48266dbba..b40fdef8c6a5 100644 --- a/games/Makefile +++ b/games/Makefile @@ -309,7 +309,6 @@ SUBDIR += fs2open SUBDIR += funnyboat SUBDIR += galaxis - SUBDIR += galaxyhack SUBDIR += garden-of-coloured-lights SUBDIR += gargoyle SUBDIR += gbrainy @@ -1137,7 +1136,6 @@ SUBDIR += xpired SUBDIR += xpuzzletama SUBDIR += xpyraminx - SUBDIR += xqf SUBDIR += xrally SUBDIR += xray-16 SUBDIR += xray_re-tools diff --git a/games/galaxyhack/Makefile b/games/galaxyhack/Makefile deleted file mode 100644 index 512e7ae98896..000000000000 --- a/games/galaxyhack/Makefile +++ /dev/null @@ -1,74 +0,0 @@ -PORTNAME= galaxyhack -PORTVERSION= 1.74 -PORTREVISION= 43 -CATEGORIES= games -MASTER_SITES= SF \ - SF/${PORTNAME}/Fleet%20packages/020906:fleets -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} - -MAINTAINER= ports@FreeBSD.org -COMMENT= AI script based strategy game -WWW= https://galaxyhack.sourceforge.net/ - -LICENSE= GPLv2 -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= fails to build with boost-1.85+ -EXPIRATION_DATE=2025-10-13 - -BUILD_DEPENDS= winicontoppm:graphics/netpbm -LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ - libfreetype.so:print/freetype2 - -OPTIONS_DEFINE= FLEETS OPTIMIZED_CFLAGS -OPTIONS_DEFAULT= OPTIMIZED_CFLAGS -OPTIONS_SUB= yes -FLEETS_DESC= Additional fleets - -WRKSRC= ${WRKDIR}/${PORTNAME}/src - -USES= compiler:c++11-lang dos2unix gmake sdl tar:bzip2 -USE_SDL= gfx image mixer sdl -ALL_TARGET= ${PORTNAME} - -CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} -CXXFLAGS_clang= -Wno-c++11-narrowing - -SUB_FILES= ${PORTNAME}-sh - -PLIST_FILES= bin/galaxyhack \ - libexec/galaxyhack \ - share/pixmaps/galaxyhack.png -PORTDATA= * - -DESKTOP_ENTRIES="GalaxyHack" "" "${PREFIX}/share/pixmaps/galaxyhack.png" \ - "${PORTNAME}" "" "" - -FLEETS_DISTFILES= gh_fleets_020906.zip:fleets -FLEETS_EXTRACT_DEPENDS= ${UNZIP_CMD}:archivers/unzip -OPTIMIZED_CFLAGS_MAKE_ENV= OPTIMIZED_CFLAGS=YES - -post-build: - @(winicontoppm ${WRKSRC}/../GalaxyHack.ico | pnmtopng \ - > ${WRKDIR}/galaxyhack.png) - -do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}-sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/libexec/ - @${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/../settings.dat ${STAGEDIR}${DATADIR} -.for d in fleets gamedata graphics music standardpictures - @(cd ${WRKSRC}/.. && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}) -.endfor - @${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps - ${INSTALL_DATA} ${WRKDIR}/galaxyhack.png ${STAGEDIR}/${PREFIX}/share/pixmaps - -do-install-FLEETS-on: - @${MKDIR} ${STAGEDIR}${DATADIR} - @${UNZIP_CMD} -o ${DISTDIR}/${FLEETS_DISTFILES:S/:fleets//} \ - -x "*/CVS/*" "*/.svn/*" -d ${STAGEDIR}${DATADIR} - @cd ${STAGEDIR}${PREFIX} && ${FIND} -d ${DATADIR_REL} -type d -empty -exec \ - ${ECHO_CMD} @dir {} \; >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/games/galaxyhack/distinfo b/games/galaxyhack/distinfo deleted file mode 100644 index 92850ced4655..000000000000 --- a/games/galaxyhack/distinfo +++ /dev/null @@ -1,4 +0,0 @@ -SHA256 (galaxyhack-1.74.tar.bz2) = ae6529008fe5be76607ce78833ef3b5d55e10f60a998b5747255b0854037880a -SIZE (galaxyhack-1.74.tar.bz2) = 9948336 -SHA256 (gh_fleets_020906.zip) = d159de55d36c5699f76102403ada9541cf875c49d13f42b764b2ad389ce4250b -SIZE (gh_fleets_020906.zip) = 7451243 diff --git a/games/galaxyhack/files/galaxyhack-sh.in b/games/galaxyhack/files/galaxyhack-sh.in deleted file mode 100644 index 930b2551a4ab..000000000000 --- a/games/galaxyhack/files/galaxyhack-sh.in +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh - -# The executable needs to be run from its data directory, and needs to store -# configuration in it. We therefore mirror the data directory hierarchy in -# ~/.galaxyhack, and create symlinks to the data files, but the configuration -# file is copied, and write permission for the user is added to it. - -if [ -d ~/.galaxyhack ] -then - echo "Using existing ~/.galaxyhack directory." -else - echo "Creating ~/.galaxyhack directory." - cd %%DATADIR%% || exit 1 - find * -type d -exec mkdir -p ~/.galaxyhack/{} \; - cp settings.dat ~/.galaxyhack && chmod u+w ~/.galaxyhack/settings.dat - find * -type f -exec ln -s %%DATADIR%%/{} ~/.galaxyhack/{} \; 2>/dev/null -fi - -cd ~/.galaxyhack || exit 1 -exec %%PREFIX%%/libexec/galaxyhack "$@" diff --git a/games/galaxyhack/files/patch-JSDL.cpp b/games/galaxyhack/files/patch-JSDL.cpp deleted file mode 100644 index bacd8c758b04..000000000000 --- a/games/galaxyhack/files/patch-JSDL.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- JSDL.cpp.orig 2015-09-20 01:08:54 UTC -+++ JSDL.cpp -@@ -18,6 +18,7 @@ - #include <SDL_mixer.h> - - #include <cstdlib> -+#include <cstring> - #include <fstream> - #include <stdexcept> - diff --git a/games/galaxyhack/files/patch-Makefile b/games/galaxyhack/files/patch-Makefile deleted file mode 100644 index ef26385d8848..000000000000 --- a/games/galaxyhack/files/patch-Makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.orig Wed Oct 4 22:32:43 2006 -+++ Makefile Wed Oct 4 22:34:18 2006 -@@ -9,9 +9,13 @@ - INSTALL_DIR=/usr/local/share - INSTALL_BIN_DIR=/usr/local/bin - --CXX = g++ --CXXFLAGS = $(shell sdl-config --cflags) -O3 --LDFLAGS = $(shell sdl-config --libs) -lSDL_image -lSDL_mixer -lboost_filesystem -+CXX ?= g++ -+CXXFLAGS += $(shell $(SDL_CONFIG) --cflags) -+LDFLAGS += $(shell $(SDL_CONFIG) --libs) -lSDL_image -lSDL_mixer -lboost_filesystem -lboost_system -+ -+ifdef OPTIMIZED_CFLAGS -+CXXFLAGS += -O3 -+endif - - OBJS = AIInterpreter.o AutoFireUnit.o BCCompiler.o DerivedGroups.o DragWindow.o \ - ForceSelect.o ForceSelectWin.o GenWindow.o GenWindow_Base.o GFX.o Globals.o \ diff --git a/games/galaxyhack/files/patch-SetupBattle.cpp b/games/galaxyhack/files/patch-SetupBattle.cpp deleted file mode 100644 index 355a2c7bc048..000000000000 --- a/games/galaxyhack/files/patch-SetupBattle.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- SetupBattle.cpp.orig Fri Jul 6 01:44:52 2007 -+++ SetupBattle.cpp Fri Jul 6 01:52:29 2007 -@@ -18,7 +18,7 @@ - #include "PreBattle.h" - - #include <sstream> --#include <boost/filesystem/exception.hpp> -+#include <boost/filesystem.hpp> - - using std::stringstream; - using std::getline; diff --git a/games/galaxyhack/files/patch-boost-1.52 b/games/galaxyhack/files/patch-boost-1.52 deleted file mode 100644 index ac824e4efbcf..000000000000 --- a/games/galaxyhack/files/patch-boost-1.52 +++ /dev/null @@ -1,77 +0,0 @@ ---- ForceSelectWin.cpp.orig 2012-08-20 17:35:01.000000000 +0200 -+++ ForceSelectWin.cpp 2012-08-20 17:47:19.000000000 +0200 -@@ -1596,15 +1596,15 @@ - fs::directory_iterator directoryEnd; // default construction yields past-the-end - for (fs::directory_iterator iter(sourcePath); iter != directoryEnd; ++iter) { - if (is_directory(*iter)) { -- fs::create_directory(destPath.string() + "/" + iter->leaf()); -- DoCopy(sourcePath.string() + "/" + iter->leaf(), destPath.string() + "/" + iter->leaf()); -+ fs::create_directory(destPath.string() + "/" + iter->path().filename().string()); -+ DoCopy(sourcePath.string() + "/" + iter->path().filename().string(), destPath.string() + "/" + iter->path().filename().string()); - continue; - } - string destFile; -- if (iter->leaf() == sideName + ".dat") -+ if (iter->path().filename() == sideName + ".dat") - destFile = theInput + ".dat"; - else -- destFile = iter->leaf(); -+ destFile = iter->path().filename().string(); - - fs::copy_file(*iter, destPath.string() + "/" + destFile); - } ---- Main.cpp.orig 2012-08-20 17:48:13.000000000 +0200 -+++ Main.cpp 2012-08-20 17:50:51.000000000 +0200 -@@ -339,12 +339,6 @@ - - void GameInit(char* argv[]) { - namespace fs = boost::filesystem; -- //boost is really quite stupid -- #ifndef WIN32 -- fs::path::default_name_check(fs::windows_name); -- #else -- fs::path::default_name_check(fs::native); -- #endif - - FindHomePath(); - LoadSettings(argv); ---- Menu_Base.cpp.orig 2012-08-20 17:51:05.000000000 +0200 -+++ Menu_Base.cpp 2012-08-20 17:52:15.000000000 +0200 -@@ -206,7 +206,7 @@ - - fs::directory_iterator directoryEnd; // default construction yields past-the-end - for (fs::directory_iterator iter(directory); iter != directoryEnd; ++iter) { -- string filename = iter->leaf(); -+ string filename = iter->path().filename().string(); - - if (filename.find('.') == filename.npos) - continue; -@@ -237,7 +237,7 @@ - fs::directory_iterator directoryEnd; // default construction yields past-the-end - for (fs::directory_iterator iter(globalSettings.bdp + "fleets/"); iter != directoryEnd; ++iter) { - if (fs::is_directory(*iter)) { -- string fleetName = iter->leaf(); -+ string fleetName = iter->path().filename().string(); - - if (CheckFleetExists(fleetName)) { - tempItem.desc = fleetName; -@@ -261,7 +261,7 @@ - fs::path iterPath(GetFleetDir(whichSide)); - fs::directory_iterator directoryEnd; // default construction yields past-the-end - for (fs::directory_iterator iter(iterPath); iter != directoryEnd; ++iter) { -- string filename = iter->leaf(); -+ string filename = iter->path().filename().string(); - - if (filename.find('.') == filename.npos) - continue; ---- Stuff.cpp.orig 2012-08-20 17:52:36.000000000 +0200 -+++ Stuff.cpp 2012-08-20 17:53:11.000000000 +0200 -@@ -657,7 +657,7 @@ - fs::directory_iterator directoryEnd; // default construction yields past-the-end - for (fs::directory_iterator iter(tempPath); iter != directoryEnd; ++iter) { - if (fs::is_directory(*iter) && !fs::is_empty(*iter)) -- RemoveDirectory(iter->string()); -+ RemoveDirectory(iter->path().string()); - else - fs::remove(*iter); - } diff --git a/games/galaxyhack/pkg-descr b/games/galaxyhack/pkg-descr deleted file mode 100644 index 210f8f34966a..000000000000 --- a/games/galaxyhack/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -GalaxyHack allows you to design a fleet of spaceships which can then be tested -in AI script based battles against fleets designed by other players. Though -battles take place in real time, the strategy comes before hand, both in -writing short AI scripts in a simple scripting language, and also in the set -up and selection of your fleet. You don't actually have any control over your -units at all mid-battle, but rather use the time to see where the set up of -your fleets is working, where your fleets' weaknesses lie and changes are -needed, and perhaps also to learn from the strategy of your opponent. - -The game revolves around very large capital ships, from which smaller ships -are launched. To win a battle you must destroy of all of your opponent's -capital ships before they destroy yours. - -There can be hundreds of units in any one battle, but there is no harvesting, -resource management or base building. diff --git a/games/veloren-weekly/Makefile b/games/veloren-weekly/Makefile index 33118a3a1e0f..3b43347450b2 100644 --- a/games/veloren-weekly/Makefile +++ b/games/veloren-weekly/Makefile @@ -1,5 +1,5 @@ PORTNAME= veloren -PORTVERSION= s20251008 +PORTVERSION= s20251015 CATEGORIES= games wayland PKGNAMESUFFIX= -weekly @@ -24,7 +24,7 @@ RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-pl USES= cargo xorg USE_XORG= xcb USE_GITLAB= yes -GL_TAGNAME= v0.17.0-1253-g8176fe3613 # git describe --match='v[0-9]*' weekly +GL_TAGNAME= v0.17.0-1267-g95d857f67f # git describe --match='v[0-9]*' weekly CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib" PLIST_FILES= bin/${PORTNAME}-server-cli \ bin/${PORTNAME}-voxygen \ diff --git a/games/veloren-weekly/distinfo b/games/veloren-weekly/distinfo index d8789159a2f9..46a6623dc307 100644 --- a/games/veloren-weekly/distinfo +++ b/games/veloren-weekly/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1759952259 +TIMESTAMP = 1760557897 SHA256 (rust/crates/ab_glyph-0.2.31.crate) = e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d SIZE (rust/crates/ab_glyph-0.2.31.crate) = 20909 SHA256 (rust/crates/ab_glyph_rasterizer-0.1.10.crate) = 366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618 @@ -1925,5 +1925,5 @@ SHA256 (veloren-conrod-c74446362371dc837b8b4b6d6ddcd7693b48d9b6_GL0.tar.gz) = 43 SIZE (veloren-conrod-c74446362371dc837b8b4b6d6ddcd7693b48d9b6_GL0.tar.gz) = 808402 SHA256 (DaforLynx-kira-v0.10.7-with-config_GH0.tar.gz) = ffc38b7c73cb6419d02a21a3905cd0b00b3a544711230c5b11ef77301b7b9bb2 SIZE (DaforLynx-kira-v0.10.7-with-config_GH0.tar.gz) = 4379268 -SHA256 (veloren-v0.17.0-1253-g8176fe3613.tar.bz2) = db8ad800fb1fb91adc3ff4ee1f0fd642e670718a962eba8fe4f09df59f0ed22d -SIZE (veloren-v0.17.0-1253-g8176fe3613.tar.bz2) = 345070395 +SHA256 (veloren-v0.17.0-1267-g95d857f67f.tar.bz2) = bd3a7b67ca2dae8d73b64f8fb3cbf56bb41aa06c38d87ab31e381158b6f35ea0 +SIZE (veloren-v0.17.0-1267-g95d857f67f.tar.bz2) = 345076938 diff --git a/games/veloren-weekly/files/patch-nodebug b/games/veloren-weekly/files/patch-nodebug index 3215301f5dfc..d6155b9225b5 100644 --- a/games/veloren-weekly/files/patch-nodebug +++ b/games/veloren-weekly/files/patch-nodebug @@ -1,30 +1,30 @@ Don't generate debuginfo as the binaries will be stripped ---- Cargo.toml.orig 2024-02-07 19:13:27 UTC +--- Cargo.toml.orig 2025-10-15 13:35:33 UTC +++ Cargo.toml -@@ -81,25 +81,6 @@ panic = "abort" # don't need unwinding so we +@@ -96,25 +96,6 @@ panic = "abort" # don't need unwinding so we lto = true debug = false panic = "abort" # don't need unwinding so we can skip including the landing pads for that -# line tables so we can have useful backtraces for in-house crates -[profile.release.package."veloren-network"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-network-protocol"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-common"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-common-systems"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-client"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-server"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-server-cli"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-voxygen"] --debug = 1 +-debug = "line-tables-only" -[profile.release.package."veloren-world"] --debug = 1 +-debug = "line-tables-only" - # used for cargo bench - [profile.bench] + [profile.release-thinlto] + inherits = 'release' diff --git a/games/xqf/Makefile b/games/xqf/Makefile deleted file mode 100644 index 874ce8235b5a..000000000000 --- a/games/xqf/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -PORTNAME= xqf -PORTVERSION= 1.0.6.2 -PORTREVISION= 3 -DISTVERSIONPREFIX= ${PORTNAME}- -CATEGORIES= games - -MAINTAINER= ports@FreeBSD.org -COMMENT= Server browser for many popular 3D action games -WWW= http://www.linuxgames.com/xqf/ - -BROKEN= Fails to build, ld: error: non-exported symbol 'environ' in '/usr/lib/crt1.o' is referenced by DSO '/lib/libc.so.7' -EXPIRATION_DATE=2025-10-13 - -RUN_DEPENDS= qstat:games/qstat - -USES= autoreconf gettext gmake gnome pkgconfig xorg -USE_GNOME= intlhack gdkpixbuf gdkpixbuf2xlib -USE_XORG= x11 -GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share - -USE_GITHUB= yes -GH_ACCOUNT= XQF - -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lX11 - -PORTDATA= * -PORTDOCS= * - -OPTIONS_DEFINE= GTK2 BZIP2 DOCS -OPTIONS_DEFAULT=GTK2 BZIP2 - -GTK2_USE= GNOME=gtk20 -GTK2_CONFIGURE_ENABLE= gtk2 - -BZIP2_CONFIGURE_ENABLE= bzip2 - -post-install: - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/xqfdocs.html ${STAGEDIR}${DOCSDIR} - -.include <bsd.port.mk> diff --git a/games/xqf/distinfo b/games/xqf/distinfo deleted file mode 100644 index 0642f555fa71..000000000000 --- a/games/xqf/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1615661122 -SHA256 (XQF-xqf-xqf-1.0.6.2_GH0.tar.gz) = bcfb87c9a452993b13bd1019b0c61459a37cbc37b13b951b73f2a93b2b1c83ad -SIZE (XQF-xqf-xqf-1.0.6.2_GH0.tar.gz) = 595096 diff --git a/games/xqf/files/patch-src__country-filter.h b/games/xqf/files/patch-src__country-filter.h deleted file mode 100644 index 828dd7db4cd5..000000000000 --- a/games/xqf/files/patch-src__country-filter.h +++ /dev/null @@ -1,12 +0,0 @@ ---- src/country-filter.h.orig 2014-11-02 00:43:18 UTC -+++ src/country-filter.h -@@ -22,6 +22,9 @@ - - #include <glib.h> - #include "pixmaps.h" -+#include <sys/types.h> -+#include <sys/socket.h> -+#include <netinet/in.h> - #include <arpa/inet.h> - - extern unsigned MaxCountries; diff --git a/games/xqf/files/patch-src__trayicon.c b/games/xqf/files/patch-src__trayicon.c deleted file mode 100644 index 040703fa3c6c..000000000000 --- a/games/xqf/files/patch-src__trayicon.c +++ /dev/null @@ -1,19 +0,0 @@ ---- src/trayicon.c.orig 2014-11-02 00:43:18 UTC -+++ src/trayicon.c -@@ -726,6 +726,7 @@ static void egg_tray_icon_update_manager_window (EggTr - icon->ready=TRUE; - } - } else { -+ GdkWindow *gdkwin; - - icon->box=gtk_event_box_new (); - gtk_container_add(GTK_CONTAINER(icon), icon->box); -@@ -736,8 +737,6 @@ static void egg_tray_icon_update_manager_window (EggTr - - gtk_widget_show (icon->image); - gtk_widget_show(icon->box); -- -- GdkWindow *gdkwin; - - gdkwin = gdk_window_lookup (icon->manager_window); - gdk_window_add_filter (gdkwin, egg_tray_icon_manager_filter, icon); diff --git a/games/xqf/files/patch-src_filter.c b/games/xqf/files/patch-src_filter.c deleted file mode 100644 index 81fd064ce7b9..000000000000 --- a/games/xqf/files/patch-src_filter.c +++ /dev/null @@ -1,10 +0,0 @@ ---- src/filter.c.orig 2014-11-02 00:43:18 UTC -+++ src/filter.c -@@ -142,6 +142,7 @@ static unsigned filter_current_time = 1; - - unsigned server_filter_dialog_current_filter = 0; - -+unsigned current_server_filter; - - static GtkWidget *filter_option_menu; - static GtkWidget *filter_retries_spinner; diff --git a/games/xqf/files/patch-src_filter.h b/games/xqf/files/patch-src_filter.h deleted file mode 100644 index 98c28df52651..000000000000 --- a/games/xqf/files/patch-src_filter.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/filter.h.orig 2014-11-02 00:43:18 UTC -+++ src/filter.h -@@ -89,7 +89,6 @@ extern unsigned char cur_filter; - - extern GArray* server_filters; - --unsigned int current_server_filter; - extern unsigned int current_server_filter; - - diff --git a/games/xqf/pkg-descr b/games/xqf/pkg-descr deleted file mode 100644 index 7d2d050cd126..000000000000 --- a/games/xqf/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -XQF is a game server browser and launcher for Unix/X11 for many popular games -such as the Quake series, Unreal Tournament series, Half-Life etc. XQF is a -front-end to QStat, a program by Steve Jankowski and uses the GTK+ toolkit. diff --git a/games/xqf/pkg-plist b/games/xqf/pkg-plist deleted file mode 100644 index 96cc3f83137f..000000000000 --- a/games/xqf/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -bin/xqf -share/man/man6/xqf.6.gz -share/locale/ca/LC_MESSAGES/xqf.mo -share/locale/da/LC_MESSAGES/xqf.mo -share/locale/de/LC_MESSAGES/xqf.mo -share/locale/es/LC_MESSAGES/xqf.mo -share/locale/fi/LC_MESSAGES/xqf.mo -share/locale/fr/LC_MESSAGES/xqf.mo -share/locale/pl/LC_MESSAGES/xqf.mo -share/locale/ru/LC_MESSAGES/xqf.mo -share/applications/xqf.desktop -share/pixmaps/xqf.png -share/pixmaps/xqf.svg -share/pixmaps/xqf.xpm -share/pixmaps/xqf_22x22.png -share/pixmaps/xqf_32x32.png -share/pixmaps/xqf_48x48.png -share/pixmaps/xqf_48x48_2.png -@dir libexec/xqf diff --git a/graphics/frei0r/distinfo b/graphics/frei0r/distinfo index fbbd64e50389..ad3a06785455 100644 --- a/graphics/frei0r/distinfo +++ b/graphics/frei0r/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756953325 -SHA256 (dyne-frei0r-v2.4.0_GH0.tar.gz) = 6b3491ee65c775b251ecd0ba2cb86955ca2469de47c73718170442732cb9ce75 -SIZE (dyne-frei0r-v2.4.0_GH0.tar.gz) = 935395 +TIMESTAMP = 1760584037 +SHA256 (dyne-frei0r-v2.5.0_GH0.tar.gz) = c511aeb51faeb0de2afe47327c30026d5b76ccc910a0b93d286029f07d29c656 +SIZE (dyne-frei0r-v2.5.0_GH0.tar.gz) = 939132 diff --git a/graphics/frei0r/files/patch-src_filter_CMakeLists.txt b/graphics/frei0r/files/patch-src_filter_CMakeLists.txt index 2d6a3fd597e5..b3de8938b99f 100644 --- a/graphics/frei0r/files/patch-src_filter_CMakeLists.txt +++ b/graphics/frei0r/files/patch-src_filter_CMakeLists.txt @@ -1,6 +1,6 @@ - Add logic so slave ports can build without installing base plugins. ---- src/filter/CMakeLists.txt.orig 2025-09-03 14:34:34 UTC +--- src/filter/CMakeLists.txt.orig 2025-10-07 14:15:56 UTC +++ src/filter/CMakeLists.txt @@ -15,6 +15,7 @@ endif (${Cairo_FOUND}) add_subdirectory (mirr0r) @@ -10,7 +10,7 @@ add_subdirectory (3dflippo) add_subdirectory (aech0r) add_subdirectory (alpha0ps) -@@ -101,3 +102,4 @@ add_subdirectory (vignette) +@@ -102,3 +103,4 @@ add_subdirectory (vignette) add_subdirectory (twolay0r) add_subdirectory (vertigo) add_subdirectory (vignette) diff --git a/graphics/frei0r/files/patch-src_filter_heatmap0r_CMakeLists.txt b/graphics/frei0r/files/patch-src_filter_heatmap0r_CMakeLists.txt new file mode 100644 index 000000000000..58f3c3557a18 --- /dev/null +++ b/graphics/frei0r/files/patch-src_filter_heatmap0r_CMakeLists.txt @@ -0,0 +1,10 @@ +Don't forget to install it! + +--- src/filter/heatmap0r/CMakeLists.txt.orig 2025-10-07 14:15:56 UTC ++++ src/filter/heatmap0r/CMakeLists.txt +@@ -9,3 +9,5 @@ set_target_properties (${TARGET} PROPERTIES PREFIX "") + + # No «lib» prefix (name.so instead of libname.so) + set_target_properties (${TARGET} PROPERTIES PREFIX "") ++ ++install (TARGETS ${TARGET} LIBRARY DESTINATION ${LIBDIR}) diff --git a/graphics/frei0r/pkg-plist b/graphics/frei0r/pkg-plist index 43cd158e817b..57124bae10c0 100644 --- a/graphics/frei0r/pkg-plist +++ b/graphics/frei0r/pkg-plist @@ -69,6 +69,7 @@ lib/frei0r-1/glow.so lib/frei0r-1/grain_extract.so lib/frei0r-1/grain_merge.so lib/frei0r-1/hardlight.so +lib/frei0r-1/heatmap0r.so lib/frei0r-1/hue.so lib/frei0r-1/hueshift0r.so lib/frei0r-1/invert0r.so diff --git a/graphics/frei0r/version.mk b/graphics/frei0r/version.mk index 4857de20d005..de7ec6e8b8d6 100644 --- a/graphics/frei0r/version.mk +++ b/graphics/frei0r/version.mk @@ -1 +1 @@ -FREI0R_VERSION= 2.4.0 +FREI0R_VERSION= 2.5.0 diff --git a/graphics/mesa-devel/Makefile b/graphics/mesa-devel/Makefile index ebfafd1e4f5a..00526bd5a72c 100644 --- a/graphics/mesa-devel/Makefile +++ b/graphics/mesa-devel/Makefile @@ -1,6 +1,6 @@ PORTNAME= mesa -DISTVERSION= 25.2-branchpoint-4433 -DISTVERSIONSUFFIX= -g07f3b62d59d +DISTVERSION= 25.2-branchpoint-4828 +DISTVERSIONSUFFIX= -g84d8e6824be CATEGORIES= graphics PKGNAMESUFFIX= -devel diff --git a/graphics/mesa-devel/distinfo b/graphics/mesa-devel/distinfo index 7f7e31ef4e65..f6f09b851849 100644 --- a/graphics/mesa-devel/distinfo +++ b/graphics/mesa-devel/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1759959813 -SHA256 (mesa-25.2-branchpoint-4433-g07f3b62d59d.tar.bz2) = 3bf9a8993e6b9c0bd5f1e782c6561d7d20a4e0c92b80335f6f0ea72fe4990bf6 -SIZE (mesa-25.2-branchpoint-4433-g07f3b62d59d.tar.bz2) = 58737590 +TIMESTAMP = 1760569293 +SHA256 (mesa-25.2-branchpoint-4828-g84d8e6824be.tar.bz2) = 16d14453c0a9a801ed47d34474fe05a1d925c7f34b3369313953c5b07a8fd6c6 +SIZE (mesa-25.2-branchpoint-4828-g84d8e6824be.tar.bz2) = 55320540 SHA256 (700efacda59c.patch) = 0d567fe737ad1404e1f12d7cd018826d9095c23835f1ed5aaa1c81cb58d3d008 SIZE (700efacda59c.patch) = 983 SHA256 (de5cf0a44b50.patch) = c9e02e5eb1fb4e3aa2bc7a7e0a70f28f3ee609835ff0b59e827893a821983851 diff --git a/graphics/vv/Makefile b/graphics/vv/Makefile index f238b61ff4ed..949a0af9f166 100644 --- a/graphics/vv/Makefile +++ b/graphics/vv/Makefile @@ -1,8 +1,7 @@ PORTNAME= vv DISTVERSIONPREFIX= v -DISTVERSION= 1.4.0-383 -DISTVERSIONSUFFIX= -g7a783a8b -PORTREVISION= 8 +DISTVERSION= 1.4.0-406 +DISTVERSIONSUFFIX= -gd33ac3e8 CATEGORIES= graphics MAINTAINER= yuri@FreeBSD.org @@ -18,15 +17,16 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libgdcmCommon.so:devel/gdcm \ libhdf5_cpp.so:science/hdf5 \ libITKLabelMap-5.0.so:science/InsightToolkit501 \ - libpng.so:graphics/png \ - libsz.so:science/libaec \ + libmpi.so:net/mpich \ + libnetcdf.so:science/netcdf \ + libpng16.so:graphics/png \ libtiff.so:graphics/tiff \ - libvtkIOSQL-8.2.so:math/vtk8 + libvtkIOSQL-${VTK_VER}.so:math/vtk9 -USES= cmake compiler:c++11-lang eigen:3 jpeg qt:5 xorg +USES= cmake compiler:c++11-lang eigen:3 jpeg python:build,run qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= open-vv -USE_QT= core designer gui network sql widgets xml buildtools:build qmake:build +USE_QT= core designer gui network opengl declarative sql widgets xml buildtools:build qmake:build USE_XORG= ice sm x11 xext xt USE_CXXSTD= c++11 @@ -40,7 +40,31 @@ PLIST_FILES= bin/vv CXXFLAGS+= -msse2 # workaround for ITK failing to add -msse2 on i386: https://github.com/open-vv/vv/issues/83 & https://github.com/InsightSoftwareConsortium/ITK/issues/2011 .endif +post-patch: + @${REINPLACE_CMD} -e 's/VTK_OVERRIDE/override/g' \ + ${WRKSRC}/vv/vtkVOXImageWriter.h \ + ${WRKSRC}/vv/vvAnimatedGIFWriter.h \ + ${WRKSRC}/vv/vvBlendImageActor.h \ + ${WRKSRC}/vv/vvClipPolyData.h \ + ${WRKSRC}/vv/vvGlyph2D.h \ + ${WRKSRC}/vv/vvGlyphSource.h \ + ${WRKSRC}/vv/vvInteractorStyleNavigator.h \ + ${WRKSRC}/vv/vvLandmarksGlyph.h \ + ${WRKSRC}/vv/vvSlicer.h + @${REINPLACE_CMD} -e 's/Widget()->GetRenderWindow()/Widget()->renderWindow()/g' \ + ${WRKSRC}/vv/vvToolHistogramCommand.cxx + @${REINPLACE_CMD} -e 's/Widget->GetRenderWindow()/Widget->renderWindow()/g' \ + ${WRKSRC}/vv/vvMainWindow.cxx \ + ${WRKSRC}/vv/vvSegmentationDialog.cxx \ + ${WRKSRC}/vv/vvSurfaceViewerDialog.cxx \ + ${WRKSRC}/vv/vvToolHistogram.cxx \ + ${WRKSRC}/vv/vvToolProfile.cxx + @${REINPLACE_CMD} -e 's/widget->GetRenderWindow()/widget->renderWindow()/g' \ + ${WRKSRC}/vv/vvMainWindow.cxx + post-configure: # workaround for "error: unable to find library -lGTest::GTest", see https://github.com/open-vv/vv/issues/74 @${REINPLACE_CMD} -E 's/ -lGTest::(GTest|Main) / /g' ${BUILD_WRKSRC}/build.ninja + @${REINPLACE_CMD} -E 's|/usr/local/lib/libtiff\.so\.[0-9]+\.[0-9]+\.[0-9]+|/usr/local/lib/libtiff.so|g' ${BUILD_WRKSRC}/build.ninja +.include <../../math/vtk9/Makefile.version> .include <bsd.port.post.mk> diff --git a/graphics/vv/distinfo b/graphics/vv/distinfo index a7748e6e693c..5f0f729f98bf 100644 --- a/graphics/vv/distinfo +++ b/graphics/vv/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1600492328 -SHA256 (open-vv-vv-v1.4.0-383-g7a783a8b_GH0.tar.gz) = dfa80f7036297e859bf5c6b18b2b187fc05dc50a17f0b074d909e96fa8c2acbb -SIZE (open-vv-vv-v1.4.0-383-g7a783a8b_GH0.tar.gz) = 4860982 +TIMESTAMP = 1760419528 +SHA256 (open-vv-vv-v1.4.0-406-gd33ac3e8_GH0.tar.gz) = 7f3e10a3a1391ccebd56d685316303b2fbf7f0112417d8caadb4562644cebf06 +SIZE (open-vv-vv-v1.4.0-406-gd33ac3e8_GH0.tar.gz) = 8248327 diff --git a/graphics/vv/files/patch-common_clitkCommon.txx b/graphics/vv/files/patch-common_clitkCommon.txx new file mode 100644 index 000000000000..8f800d137543 --- /dev/null +++ b/graphics/vv/files/patch-common_clitkCommon.txx @@ -0,0 +1,25 @@ +Remove deprecated std::binary_function base class. + +C++17 removed std::binary_function which was deprecated in C++11. +Replace with plain structs that define operator(). + +--- common/clitkCommon.txx.orig 2025-04-17 12:54:38 UTC ++++ common/clitkCommon.txx +@@ -135,7 +135,7 @@ template<class Type> + + //-------------------------------------------------------------------- + template<class Type> +-struct vectorComparisonLowerThan: public std::binary_function<int, int, bool> { ++struct vectorComparisonLowerThan { + vectorComparisonLowerThan(const std::vector<Type> & v):vect(v) {}; + bool operator()(int x, int y) { + return (vect[x] < vect[y]); +@@ -146,7 +146,7 @@ template<class Type> + + //-------------------------------------------------------------------- + template<class Type> +-struct vectorComparisonGreaterThan: public std::binary_function<int, int, bool> { ++struct vectorComparisonGreaterThan { + vectorComparisonGreaterThan(const std::vector<Type> & v):vect(v) {}; + bool operator()(int x, int y) { + return (vect[x] > vect[y]); diff --git a/graphics/vv/files/patch-common_clitkXdrImageIOWriter.cxx b/graphics/vv/files/patch-common_clitkXdrImageIOWriter.cxx new file mode 100644 index 000000000000..0a7eef8e114b --- /dev/null +++ b/graphics/vv/files/patch-common_clitkXdrImageIOWriter.cxx @@ -0,0 +1,15 @@ +Remove register storage class specifier. + +C++17 removed the 'register' keyword which was deprecated in C++11. + +--- common/clitkXdrImageIOWriter.cxx.orig 2025-04-17 12:54:38 UTC ++++ common/clitkXdrImageIOWriter.cxx +@@ -464,7 +464,7 @@ static size_t nki_private_compress(signed char *dest, + unsigned long iCRC; + unsigned long iCRC2; + unsigned int iHeaderSize=8; // value for iMode==1 and iMode==3 +- register int val; ++ int val; + size_t i,j; + NKI_MODE2* pHeader = (NKI_MODE2*)dest; + NKI_MODE2_64BITS* pHeader_64bits = (NKI_MODE2_64BITS*)dest; diff --git a/graphics/vv/files/patch-common_rtkEdfImageIO.h b/graphics/vv/files/patch-common_rtkEdfImageIO.h new file mode 100644 index 000000000000..f79dd805a41f --- /dev/null +++ b/graphics/vv/files/patch-common_rtkEdfImageIO.h @@ -0,0 +1,15 @@ +Update ITK enum name for ITK 5.0 compatibility. + +ITK 5.0 renamed IOByteOrderEnum to ByteOrder. + +--- common/rtkEdfImageIO.h.orig 2025-04-17 12:54:38 UTC ++++ common/rtkEdfImageIO.h +@@ -100,7 +100,7 @@ class EdfImageIO : public itk::ImageIOBase (protected) + // table key-value structure + struct table { + const char *key; +- itk::ImageIOBase::IOByteOrderEnum value; ++ itk::ImageIOBase::ByteOrder value; + }; + + struct table3 { diff --git a/graphics/vv/files/patch-itk_RelativePositionPropImageFilter.txx b/graphics/vv/files/patch-itk_RelativePositionPropImageFilter.txx new file mode 100644 index 000000000000..f6d963c9eada --- /dev/null +++ b/graphics/vv/files/patch-itk_RelativePositionPropImageFilter.txx @@ -0,0 +1,30 @@ +Remove register storage class specifier. + +C++17 removed the 'register' keyword which was deprecated in C++11. + +--- itk/RelativePositionPropImageFilter.txx.orig 2025-04-17 12:54:38 UTC ++++ itk/RelativePositionPropImageFilter.txx +@@ -365,12 +365,12 @@ namespace itk + + typename TabulationImageType::IndexType start; + +- for(register int i=0;i<ImageDimension;i++) ++ for(int i=0;i<ImageDimension;i++) + start[i]=0; + + typename TabulationImageType::SizeType size = this->GetInput()->GetLargestPossibleRegion().GetSize(); + +- for(register int i=0;i<ImageDimension;i++) ++ for(int i=0;i<ImageDimension;i++) + size[i]*=2; + + typename TabulationImageType::RegionType region; +@@ -390,7 +390,7 @@ namespace itk + m_AngleTabulation->GetRequestedRegion().GetIndex(); + + typename TabulationImageType::SizeType center = this->GetInput()->GetLargestPossibleRegion().GetSize(); +- for(register int i=0;i<ImageDimension;i++) ++ for(int i=0;i<ImageDimension;i++) + center[i]-=1; + + VectorType vecttemp; diff --git a/graphics/vv/files/patch-vv_vv.cxx b/graphics/vv/files/patch-vv_vv.cxx index b3517f001de0..1167955d887f 100644 --- a/graphics/vv/files/patch-vv_vv.cxx +++ b/graphics/vv/files/patch-vv_vv.cxx @@ -1,11 +1,36 @@ ---- vv/vv.cxx.orig 2020-09-19 05:31:12 UTC +Update for VTK 9 and fix platform-specific code. + +- Replace QVTKOpenGLWidget with QVTKOpenGLNativeWidget (VTK 9 API change) +- Wrap Windows-specific #pragma in #ifdef _WIN32 to prevent linking errors + on non-Windows platforms + +--- vv/vv.cxx.orig 2025-04-17 12:54:38 UTC +++ vv/vv.cxx -@@ -53,7 +53,7 @@ +@@ -43,7 +43,7 @@ + #include "vvToolsList.h" + #include "vvConfiguration.h" + #if (VTK_MAJOR_VERSION == 8 && VTK_MINOR_VERSION >= 2) || VTK_MAJOR_VERSION >= 9 +-#include <QVTKOpenGLWidget.h> ++#include <QVTKOpenGLNativeWidget.h> + #endif + + #include <vtkFileOutputWindow.h> +@@ -56,7 +56,9 @@ #include <sys/types.h> #include <sys/stat.h> #include <errno.h> --#pragma comment(lib, "ws2_32.lib") -+//#pragma comment(lib, "ws2_32.lib") ++#ifdef _WIN32 + #pragma comment(lib, "ws2_32.lib") ++#endif typedef enum {O_BASE,O_OVERLAY,O_FUSION,O_VF,O_CONTOUR,O_LANDMARKS} OpenModeType; typedef enum {P_NORMAL,P_SEQUENCE,P_WINDOW,P_LEVEL} ParseModeType; +@@ -119,7 +121,7 @@ int main( int argc, char** argv ) + #endif + + #if (VTK_MAJOR_VERSION == 8 && VTK_MINOR_VERSION >= 2) || VTK_MAJOR_VERSION >= 9 +- QSurfaceFormat::setDefaultFormat(QVTKOpenGLWidget::defaultFormat()); ++ QSurfaceFormat::setDefaultFormat(QVTKOpenGLNativeWidget::defaultFormat()); + #endif + CLITK_INIT; + diff --git a/graphics/vv/files/patch-vv_vvBlendImageActor.cxx b/graphics/vv/files/patch-vv_vvBlendImageActor.cxx new file mode 100644 index 000000000000..0f2bd047929a --- /dev/null +++ b/graphics/vv/files/patch-vv_vvBlendImageActor.cxx @@ -0,0 +1,56 @@ +Update OpenGL and VTK headers for VTK 9 compatibility. + +VTK 9 removed several deprecated headers and changed OpenGL handling: +- Removed vtk_glew.h and vtkOpenGL.h (no longer needed) +- Added vtkOpenGLState.h and vtk_glad.h for modern OpenGL +- Replaced vtkgl::BlendEquationEXT with standard glBlendEquation + (OpenGL 3.2+ has blend equations built-in, no extensions needed) + +--- vv/vvBlendImageActor.cxx.orig 2025-04-17 12:54:38 UTC ++++ vv/vvBlendImageActor.cxx +@@ -3,7 +3,7 @@ - University of LYON http://www.universit + + Authors belong to: + - University of LYON http://www.universite-lyon.fr/ +-- Léon Bérard cancer center http://www.centreleonberard.fr ++- L�on B�rard cancer center http://www.centreleonberard.fr + - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr + + This software is distributed WITHOUT ANY WARRANTY; without even +@@ -17,11 +17,11 @@ - CeCILL-B http://www.cecill.info/licences/Licence_C + ===========================================================================**/ + + #include "vvBlendImageActor.h" +-#include <vtk_glew.h> + #include <vtkOpenGLRenderWindow.h> + #include <vtkOpenGLRenderer.h> +-#include <vtkOpenGL.h> + #include <vtkObjectFactory.h> ++#include <vtkOpenGLState.h> ++#include <vtk_glad.h> + + vtkStandardNewMacro(vvBlendImageActor); + +@@ -45,19 +45,14 @@ void vvBlendImageActor::Render(vtkRenderer *ren) + VTK_IMAGE_ACTOR::Render(ren); + + #else +- vtkOpenGLExtensionManager *extensions = renwin->GetExtensionManager(); +- if (extensions->ExtensionSupported("GL_EXT_blend_minmax")) { +- extensions->LoadExtension("GL_EXT_blend_minmax"); +- vtkgl::BlendEquationEXT( vtkgl::MAX ); +- } ++ // VTK 9 uses OpenGL 3.2+ which has blend equations built-in ++ glBlendEquation(GL_MAX); + + //Call normal render + VTK_IMAGE_ACTOR::Render(ren); + + //Move back blending to weighted sum +- if (vtkgl::BlendEquationEXT!=0) { +- vtkgl::BlendEquationEXT( vtkgl::FUNC_ADD ); +- } ++ glBlendEquation(GL_FUNC_ADD); + #endif + } + diff --git a/graphics/vv/files/patch-vv_vvSlicer.cxx b/graphics/vv/files/patch-vv_vvSlicer.cxx new file mode 100644 index 000000000000..7612f66f5b5e --- /dev/null +++ b/graphics/vv/files/patch-vv_vvSlicer.cxx @@ -0,0 +1,25 @@ +Update for VTK 9 compatibility. + +- Remove deprecated vtkToolkits.h header (no longer exists in VTK 9) +- Convert vtkStdString to const char* when calling SetCaption() + (VTK 9 changed API to require explicit conversion) + +--- vv/vvSlicer.cxx.orig 2025-04-17 12:54:38 UTC ++++ vv/vvSlicer.cxx +@@ -44,7 +44,6 @@ + #include <vtkImageData.h> + #include <vtkImageActor.h> + #include <vvBlendImageActor.h> +-#include <vtkToolkits.h> + #include <vtkObjectFactory.h> + #include <vtkPointData.h> + #include <vtkDataArray.h> +@@ -1877,7 +1876,7 @@ void vvSlicer::DisplayLandmarks() + double *position = mLandClipper->GetOutput()->GetPoint(id); + vtkStdString label = static_cast<vtkStringArray*>(mLandClipper->GetOutput()->GetPointData()->GetAbstractArray("labels"))->GetValue(id); + vtkSmartPointer<vtkCaptionActor2D> label_actor = vtkSmartPointer<vtkCaptionActor2D>::New(); +- label_actor->SetCaption(label); ++ label_actor->SetCaption(label.c_str()); + label_actor->SetAttachmentPoint(position); + label_actor->GetCaptionTextProperty()->SetColor(1,0,0); + label_actor->GetCaptionTextProperty()->SetOrientation(33.333333); diff --git a/lang/gcc13-devel/Makefile b/lang/gcc13-devel/Makefile index 1802432296c1..667f20aafc9b 100644 --- a/lang/gcc13-devel/Makefile +++ b/lang/gcc13-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 13.4.1.s20251002 +PORTVERSION= 13.4.1.s20251009 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc13-devel/distinfo b/lang/gcc13-devel/distinfo index 93c666b043ff..697faa4616b1 100644 --- a/lang/gcc13-devel/distinfo +++ b/lang/gcc13-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759480335 -SHA256 (gcc-13-20251002.tar.xz) = 1b1e6809e8c18929d43a10f237299347d57d6f4abfa91740b21e097cc441b60c -SIZE (gcc-13-20251002.tar.xz) = 84599604 +TIMESTAMP = 1760084440 +SHA256 (gcc-13-20251009.tar.xz) = acc0dc987313e24da57f5343afec86887cc6dad24f75ff0fdf3320c5479c0568 +SIZE (gcc-13-20251009.tar.xz) = 84593904 diff --git a/lang/gcc14-devel/Makefile b/lang/gcc14-devel/Makefile index e50c4d63bf8a..43af14e156ae 100644 --- a/lang/gcc14-devel/Makefile +++ b/lang/gcc14-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 14.3.1.s20251003 +PORTVERSION= 14.3.1.s20251010 PORTEPOCH= 1 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} diff --git a/lang/gcc14-devel/distinfo b/lang/gcc14-devel/distinfo index ebd51d276df5..1ba8ce0d9d5a 100644 --- a/lang/gcc14-devel/distinfo +++ b/lang/gcc14-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759565672 -SHA256 (gcc-14-20251003.tar.xz) = e119c3fa2516107e28b9f48c816362b1fff82ae3373929661f1a73d3054d18b1 -SIZE (gcc-14-20251003.tar.xz) = 88346112 +TIMESTAMP = 1760541538 +SHA256 (gcc-14-20251010.tar.xz) = b9115bb77206c637d379018493fa0ce59681ba92778980c41800effb69065d8a +SIZE (gcc-14-20251010.tar.xz) = 88327164 diff --git a/lang/gcc15-devel/Makefile b/lang/gcc15-devel/Makefile index 54ba1c5db17d..fd46a7ba1797 100644 --- a/lang/gcc15-devel/Makefile +++ b/lang/gcc15-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 15.2.1.s20251004 +PORTVERSION= 15.2.1.s20251011 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc15-devel/distinfo b/lang/gcc15-devel/distinfo index 7cc3b9221ab3..df40a24d09fd 100644 --- a/lang/gcc15-devel/distinfo +++ b/lang/gcc15-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759653883 -SHA256 (gcc-15-20251004.tar.xz) = 19ae971850907bb8fbd1e76354dcc5333273dd81942d40fcd0a1a6796cefc289 -SIZE (gcc-15-20251004.tar.xz) = 92342084 +TIMESTAMP = 1760541617 +SHA256 (gcc-15-20251011.tar.xz) = ea14e08ae449d692ddcd38376e8063682d6908f68c463ca7a3a85b94c7f70b4b +SIZE (gcc-15-20251011.tar.xz) = 92333560 diff --git a/lang/gcc16-devel/Makefile b/lang/gcc16-devel/Makefile index a677854c4914..659fd619f6b2 100644 --- a/lang/gcc16-devel/Makefile +++ b/lang/gcc16-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcc -PORTVERSION= 16.0.0.s20251005 +PORTVERSION= 16.0.0.s20251012 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc16-devel/distinfo b/lang/gcc16-devel/distinfo index 1b12c8014d93..32c2caceccc4 100644 --- a/lang/gcc16-devel/distinfo +++ b/lang/gcc16-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759824831 -SHA256 (gcc-16-20251005.tar.xz) = e2e3d3a8908840d810a1325e67d818171f741a736857c3678d64509c66e994be -SIZE (gcc-16-20251005.tar.xz) = 95768580 +TIMESTAMP = 1760541708 +SHA256 (gcc-16-20251012.tar.xz) = f2c0913a3540d12423ecc5b70500c80f49c3b79cb61144be4e0d4ca1d85ec193 +SIZE (gcc-16-20251012.tar.xz) = 95852732 diff --git a/lang/go-devel/Makefile b/lang/go-devel/Makefile index 3f88e4f1bc5c..e320cd53fc72 100644 --- a/lang/go-devel/Makefile +++ b/lang/go-devel/Makefile @@ -45,6 +45,8 @@ SHEBANG_FILES?= misc/wasm/go_js_wasm_exec misc/wasm/go_wasip1_wasm_exec SHEBANG_GLOB= *.bash *.pl *.sh REINPLACE_ARGS= -i'' +# Example: 1.24.2 matches go124, 1.25.2 matches go125, etc. +PORTSCOUT?= limit:^${DISTVERSION:R:S/./\./g}\. # Upstream archive contains files with UTF-8 names EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 ${TAR} diff --git a/lang/go124/Makefile b/lang/go124/Makefile index fc144e1799f2..332ef1526b26 100644 --- a/lang/go124/Makefile +++ b/lang/go124/Makefile @@ -15,7 +15,6 @@ SHEBANG_FILES= lib/wasm/go_js_wasm_exec lib/wasm/go_wasip1_wasm_exec MASTERDIR= ${.CURDIR}/../go-devel PATCHDIR= ${.CURDIR}/files -PORTSCOUT= limit:^1\.24\. WRKSRC= ${WRKDIR}/go diff --git a/lang/go125/Makefile b/lang/go125/Makefile index 303b249fd25c..950f33536e32 100644 --- a/lang/go125/Makefile +++ b/lang/go125/Makefile @@ -15,7 +15,6 @@ SHEBANG_FILES= lib/wasm/go_js_wasm_exec lib/wasm/go_wasip1_wasm_exec MASTERDIR= ${.CURDIR}/../go-devel PATCHDIR= ${.CURDIR}/files -PORTSCOUT= limit:^1\.25\. WRKSRC= ${WRKDIR}/go diff --git a/lang/pocl/Makefile b/lang/pocl/Makefile index 1b3268cabd9e..505151e0e072 100644 --- a/lang/pocl/Makefile +++ b/lang/pocl/Makefile @@ -1,7 +1,6 @@ PORTNAME= pocl DISTVERSIONPREFIX= v -DISTVERSION= 7.0 -PORTREVISION= 1 +DISTVERSION= 7.1 CATEGORIES= lang MAINTAINER= ohartmann@walstatt.org @@ -14,21 +13,18 @@ LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 powerpc64 powerpc64le ONLY_FOR_ARCHS_REASON= only tested on ${ONLY_FOR_ARCHS:tW:S/ /, /g} -BUILD_DEPENDS= clang${LLVM_VER}:devel/llvm${LLVM_VER} \ - opencl>=3:devel/opencl \ - spirv-llvm-translator-llvm${LLVM_VER}>=${LLVM_VER}:devel/spirv-llvm-translator@llvm${LLVM_VER} \ +_BR_DEPENDS= opencl>=3:devel/opencl \ + spirv-llvm-translator-llvm${LLVM_VERSION}>=${LLVM_VERSION}:devel/spirv-llvm-translator@llvm${LLVM_VERSION} \ spirv-tools>0:graphics/spirv-tools - +BUILD_DEPENDS= ${_BR_DEPENDS} LIB_DEPENDS= libhwloc.so:devel/hwloc2 \ - libLLVM-${LLVM_VER}.so:devel/llvm${LLVM_VER} \ libOpenCL.so:devel/ocl-icd -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= ${_BR_DEPENDS} USES= cmake:noninja gmake localbase:ldflags ncurses pkgconfig python USE_GITHUB= yes USE_LDCONFIG= yes -LLVM_VER= 20 CMAKE_ARGS= ${CMAKE_ARGS_${ARCH}} \ -DENABLE_HOST_CPU_DEVICES=ON \ -DENABLE_HOST_CPU_DEVICES_OPENMP=ON \ @@ -38,30 +34,39 @@ CMAKE_ARGS= ${CMAKE_ARGS_${ARCH}} \ -DENABLE_SPIRV=ON \ -DHAVE_OCL_ICD_30_COMPATIBLE=ON \ -DHOST_COMPILER_SUPPORTS_FLOAT16:BOOL=OFF \ - -DLLVM_CONFIG_LOCATION=${LOCALBASE}/bin/llvm-config${LLVM_VER}/ \ + -DLLVM_CONFIG_LOCATION=${LOCALBASE}/bin/llvm-config${LLVM_VERSION}/ \ -DPOCL_ICD_ABSOLUTE_PATH=ON \ -DPOCL_INSTALL_PKGCONFIG_DIR="${PREFIX}/libdata/pkgconfig" \ - -DWITH_LLVM_CONFIG="${LOCALBASE}/llvm${LLVM_VER}/bin/llvm-config" + -DWITH_LLVM_CONFIG="${LOCALBASE}/llvm${LLVM_VERSION}/bin/llvm-config" CMAKE_ARGS_aarch64= -DLLC_HOST_CPU=cortex-a53 CMAKE_ARGS_powerpc64= -DLLC_HOST_CPU=ppc64 CMAKE_ARGS_powerpc64le= -DLLC_HOST_CPU=ppc64le CMAKE_ARGS_amd64= -DKERNELLIB_HOST_CPU_VARIANTS=distro -PLIST_SUB= CONFIGURE_TARGET=${CONFIGURE_TARGET:S/amd64/x86_64/} +PLIST_SUB= CONFIGURE_TARGET=${CONFIGURE_TARGET:S/amd64/x86_64/} OPTIONS_DEFINE= CONFORMANCE DEBUG DOCS DOCS_PDF LTTNG OMP REMOTE \ SHARED_LIBS STATIC_LLVM TESTS -OPTIONS_DEFAULT= OMP SHARED_LIBS TESTS +OPTIONS_DEFAULT= LLVM21 OMP SHARED_LIBS TESTS +OPTIONS_SINGLE= LLVM +OPTIONS_SINGLE_LLVM= LLVM17 LLVM18 LLVM19 LLVM20 LLVM21 LLVMDEFAULT OPTIONS_SUB= yes CONFORMANCE_DESC= Conformant pocl build (defaults to OFF) DEBUG_DESC= Build POCL with DEBUG messages DOCS_DESC= Build documentation (needs textproc/py-sphinx) DOCS_PDF_DESC= Build PDF alongside with standard HTML docs +LLVM17_DESC= Use llvm 17 +LLVM18_DESC= Use llvm 18 +LLVM19_DESC= Use llvm 19 +LLVM20_DESC= Use llvm 20 +LLVM21_DESC= Use llvm 21 +LLVMDEFAULT_DESC= Use default llvm version +LLVM_DESC= LLVM version to choose LTTNG_DESC= Trace both server and client lib with lttng OMP_DESC= Enable OpenMP on CPU driver -REMOTE_DESC= Enable pocld, a remote server +REMOTE_DESC= Enable pocld, a remote server (esperimental) SHARED_LIBS_DESC= Build shared libs STATIC_LLVM_DESC= Have static libLLVM TESTS_DESC= Enable compilation of internal tests @@ -79,6 +84,13 @@ DOCS_CMAKE_OFF= -DENABLE_DOCS=OFF DOCS_PDF_IMPLIES= DOCS DOCS_PDF_BROKEN= TeX error: Unicode character ≈ (U+2248) not set up for use with LaTeX. +LLVM17_USES= llvm:17,build,lib,run +LLVM18_USES= llvm:18,build,lib,run +LLVM19_USES= llvm:19,build,lib,run +LLVM20_USES= llvm:20,build,lib,run +LLVM21_USES= llvm:21,build,lib,run +LLVMDEFAULT_USES= llvm:min=17,max=21,build,lib,run + LTTNG_LIB_DEPENDS= liblttng-ust.so:sysutils/lttng-ust LTTNG_CMAKE_ON= -DENABLE_LTTNG=YES LTTNG_CMAKE_OFF= -DENABLE_LTTNG=NO diff --git a/lang/pocl/distinfo b/lang/pocl/distinfo index 8860b0ec290e..bf0d18ef2e01 100644 --- a/lang/pocl/distinfo +++ b/lang/pocl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748010431 -SHA256 (pocl-pocl-v7.0_GH0.tar.gz) = f55caba8c3ce12bec7b683ce55104c7555e19457fc2ac72c6f035201e362be08 -SIZE (pocl-pocl-v7.0_GH0.tar.gz) = 3766036 +TIMESTAMP = 1760001904 +SHA256 (pocl-pocl-v7.1_GH0.tar.gz) = 1110057cb0736c74819ad65238655a03f7b93403a0ca60cdd8849082f515ca25 +SIZE (pocl-pocl-v7.1_GH0.tar.gz) = 3889905 diff --git a/lang/pocl/pkg-plist b/lang/pocl/pkg-plist index 69b54bb8e7b6..d73eeb8ed328 100644 --- a/lang/pocl/pkg-plist +++ b/lang/pocl/pkg-plist @@ -2,7 +2,7 @@ bin/poclcc etc/OpenCL/vendors/pocl.icd lib/libpocl.so lib/libpocl.so.2 -lib/libpocl.so.2.14.0 +lib/libpocl.so.2.15.0 lib/pocl/libpocl-devices-basic.so lib/pocl/libpocl-devices-pthread.so libdata/pkgconfig/pocl.pc @@ -33,6 +33,7 @@ libdata/pkgconfig/pocl.pc %%PORTDOCS%%%%DOCSDIR%%/html/notes_5_0.html %%PORTDOCS%%%%DOCSDIR%%/html/notes_6_0.html %%PORTDOCS%%%%DOCSDIR%%/html/notes_7_0.html +%%PORTDOCS%%%%DOCSDIR%%/html/notes_7_1.html %%PORTDOCS%%%%DOCSDIR%%/html/opencl_status.html %%PORTDOCS%%%%DOCSDIR%%/html/pocl_binary.html %%PORTDOCS%%%%DOCSDIR%%/html/proxy.html diff --git a/lang/python-doc-html/distinfo b/lang/python-doc-html/distinfo index b6bdd4e44218..148382e0d004 100644 --- a/lang/python-doc-html/distinfo +++ b/lang/python-doc-html/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1760232378 +TIMESTAMP = 1760233632 SHA256 (python/python-2.7.18-docs-html.tar.bz2) = 20445e9a571cacdd350f702f0980e4dc559b6ff81f1d69affe9b0a862fef2f0e SIZE (python/python-2.7.18-docs-html.tar.bz2) = 4634932 SHA256 (python/python-2.7.18-docs-pdf-a4.tar.bz2) = dbac6953e48aac341351067ba0938393e415b10bf48ac8cbbc7247deaf13ab67 @@ -11,12 +11,12 @@ SHA256 (python/python-3.10.19-docs-pdf-a4.tar.bz2) = 60a66d9f4d54dfc44a738f0baab SIZE (python/python-3.10.19-docs-pdf-a4.tar.bz2) = 16784042 SHA256 (python/python-3.10.19-docs-text.tar.bz2) = 01a1a9b9f9ecce300b08cbf69fac6e7d0c18c36b852fe5dff1691e33966aaa2c SIZE (python/python-3.10.19-docs-text.tar.bz2) = 2692682 -SHA256 (python/python-3.11.13-docs-html.tar.bz2) = 954bfe769459645fb45802c920bcf59f8881c74c4f94d30922d44edd7a08c542 -SIZE (python/python-3.11.13-docs-html.tar.bz2) = 8003127 -SHA256 (python/python-3.11.13-docs-pdf-a4.tar.bz2) = 46a92e8742de3267e69ea380678e4e6395fdc002fafb7842db25d672a6236e9b -SIZE (python/python-3.11.13-docs-pdf-a4.tar.bz2) = 17604236 -SHA256 (python/python-3.11.13-docs-text.tar.bz2) = b93b9cc1439fea23df90e0ded2c6faadb9f0ec7c773738371e26c1b7e6209300 -SIZE (python/python-3.11.13-docs-text.tar.bz2) = 2836348 +SHA256 (python/python-3.11.14-docs-html.tar.bz2) = 706bc8613eccdc76424d7a590adf36793623f7bfbf480260812a581a575cbae8 +SIZE (python/python-3.11.14-docs-html.tar.bz2) = 8011943 +SHA256 (python/python-3.11.14-docs-pdf-a4.tar.bz2) = a3e54af51981f53ad57b1c9fb27c43f1c2a229c63f02b79beaf4dcf020822daa +SIZE (python/python-3.11.14-docs-pdf-a4.tar.bz2) = 17607647 +SHA256 (python/python-3.11.14-docs-text.tar.bz2) = 7a45f9613a6edbd0c8ced91881c5be40fb218f809c1ea943e16472761956b85c +SIZE (python/python-3.11.14-docs-text.tar.bz2) = 2832948 SHA256 (python/python-3.12.12-docs-html.tar.bz2) = 93d20d849a8931c2e9e1fd1b0d32646c154b867751ca4080c905c810815a4fa9 SIZE (python/python-3.12.12-docs-html.tar.bz2) = 8444609 SHA256 (python/python-3.12.12-docs-pdf-a4.tar.bz2) = 653235601908c3729ba322b9a38a1ebe30d51099ea9c90289901696eb0ddc778 diff --git a/lang/python311/Makefile b/lang/python311/Makefile index afd49583ec74..23c42ce9bfce 100644 --- a/lang/python311/Makefile +++ b/lang/python311/Makefile @@ -1,6 +1,5 @@ PORTNAME= python DISTVERSION= ${PYTHON_DISTVERSION} -PORTREVISION= 1 CATEGORIES= lang python MASTER_SITES= PYTHON/ftp/python/${DISTVERSION:C/[a-z].*//} PKGNAMESUFFIX= ${PYTHON_SUFFIX} diff --git a/lang/python311/Makefile.version b/lang/python311/Makefile.version index 9b38b86b4222..c14d63e33bdb 100644 --- a/lang/python311/Makefile.version +++ b/lang/python311/Makefile.version @@ -4,4 +4,4 @@ # 1. Update python documentation (lang/python-doc-*) # Run "make -C lang/python-doc-html makesum" # 2. Remove PORTREVISION in Makefile -PYTHON_DISTVERSION= 3.11.13 +PYTHON_DISTVERSION= 3.11.14 diff --git a/lang/python311/distinfo b/lang/python311/distinfo index 2ad4cdb62efe..75deef2f6da6 100644 --- a/lang/python311/distinfo +++ b/lang/python311/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1749685283 -SHA256 (python/Python-3.11.13.tar.xz) = 8fb5f9fbc7609fa822cb31549884575db7fd9657cbffb89510b5d7975963a83a -SIZE (python/Python-3.11.13.tar.xz) = 20117496 -SHA256 (python/0c33e5baedf18ebcb04bc41dff7cfc614d5ea5fe.patch) = 2b9857d46cb45cbf0db322a7149f940f8aae8265f66f8ff8f5cd88d2af4015c5 -SIZE (python/0c33e5baedf18ebcb04bc41dff7cfc614d5ea5fe.patch) = 23930 +TIMESTAMP = 1760233094 +SHA256 (python/Python-3.11.14.tar.xz) = 8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78 +SIZE (python/Python-3.11.14.tar.xz) = 20326860 diff --git a/lang/python311/pkg-plist b/lang/python311/pkg-plist index 875480307d58..7384500769bb 100644 --- a/lang/python311/pkg-plist +++ b/lang/python311/pkg-plist @@ -2206,7 +2206,7 @@ lib/libpython%%PYTHON_VER%%%%ABI%%.so.1.0-gdb.py %%PYTHON_LIBDIR%%/ensurepip/__pycache__/_uninstall%%PYTHON_TAG%%.opt-2.pyc %%PYTHON_LIBDIR%%/ensurepip/__pycache__/_uninstall%%PYTHON_TAG%%.pyc %%PYTHON_LIBDIR%%/ensurepip/_bundled/pip-24.0-py3-none-any.whl -%%PYTHON_LIBDIR%%/ensurepip/_bundled/setuptools-65.5.0-py3-none-any.whl +%%PYTHON_LIBDIR%%/ensurepip/_bundled/setuptools-79.0.1-py3-none-any.whl %%PYTHON_LIBDIR%%/ensurepip/_uninstall.py %%PYTHON_LIBDIR%%/enum.py %%PYTHON_LIBDIR%%/filecmp.py diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index 87346b998274..7ddfde02a37c 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -1,5 +1,5 @@ PORTNAME= seed7 -DISTVERSION= 05_20250729 +DISTVERSION= 05_20250930 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 25c350a95aed..522970a6dafc 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1753863983 -SHA256 (seed7_05_20250729.tgz) = 416a8a54e61b1539f5fbc131827a38d588758415e617b9941af3cd6b0e2105f0 -SIZE (seed7_05_20250729.tgz) = 4386548 +TIMESTAMP = 1760538033 +SHA256 (seed7_05_20250930.tgz) = a0ca3c643d2723254e2db1076ed95e1d992f5e3109ba9126e3d15fb4f4c5ebdf +SIZE (seed7_05_20250930.tgz) = 4412992 diff --git a/mail/Makefile b/mail/Makefile index 092979a16662..6805cdb4c98b 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -519,6 +519,7 @@ SUBDIR += py-dkimpy-milter SUBDIR += py-email-reply-parser SUBDIR += py-email-validator + SUBDIR += py-exchangelib SUBDIR += py-flanker SUBDIR += py-flask-mail SUBDIR += py-flufl.bounce @@ -543,6 +544,7 @@ SUBDIR += py-pyspf SUBDIR += py-python-slimta SUBDIR += py-pyzmail + SUBDIR += py-resend SUBDIR += py-rfc6555 SUBDIR += py-spf-engine SUBDIR += py-tlsrpt-reporter diff --git a/mail/msmtp/Makefile b/mail/msmtp/Makefile index 85ceb645669f..f88ef950d2eb 100644 --- a/mail/msmtp/Makefile +++ b/mail/msmtp/Makefile @@ -1,5 +1,5 @@ PORTNAME= msmtp -PORTVERSION= 1.8.31 +PORTVERSION= 1.8.32 CATEGORIES= mail MASTER_SITES= https://marlam.de/msmtp/releases/ diff --git a/mail/msmtp/distinfo b/mail/msmtp/distinfo index aae37628e473..fce1ba8fec57 100644 --- a/mail/msmtp/distinfo +++ b/mail/msmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757225396 -SHA256 (msmtp-1.8.31.tar.xz) = c262b11762d8582a3c6d6ca8d8b2cca2b1605497324ca27cc57fdc145a27119f -SIZE (msmtp-1.8.31.tar.xz) = 455820 +TIMESTAMP = 1760543755 +SHA256 (msmtp-1.8.32.tar.xz) = 20cd58b58dd007acf7b937fa1a1e21f3afb3e9ef5bbcfb8b4f5650deadc64db4 +SIZE (msmtp-1.8.32.tar.xz) = 456960 diff --git a/mail/nextcloud-mail/Makefile b/mail/nextcloud-mail/Makefile index be1cd264570e..4975487e426b 100644 --- a/mail/nextcloud-mail/Makefile +++ b/mail/nextcloud-mail/Makefile @@ -1,5 +1,5 @@ PORTNAME= mail -PORTVERSION= 5.5.8 +PORTVERSION= 5.5.9 DISTVERSIONPREFIX= v CATEGORIES= mail diff --git a/mail/nextcloud-mail/distinfo b/mail/nextcloud-mail/distinfo index 705ed8fe1cab..bccfcf02a377 100644 --- a/mail/nextcloud-mail/distinfo +++ b/mail/nextcloud-mail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760429923 -SHA256 (nextcloud/mail-v5.5.8.tar.gz) = 85dc8b08805bb217a05fa8932a8b76f849fa74b31ab352e3a9d17ca3e1a5a07d -SIZE (nextcloud/mail-v5.5.8.tar.gz) = 29056695 +TIMESTAMP = 1760546183 +SHA256 (nextcloud/mail-v5.5.9.tar.gz) = 477b062099b96cfb85ae482e5d71838da4d50765d982a09e4f9f67d3955cc4dc +SIZE (nextcloud/mail-v5.5.9.tar.gz) = 29063037 diff --git a/mail/pantomime/Makefile b/mail/pantomime/Makefile index 7fa6d998db63..2d91f5783ae1 100644 --- a/mail/pantomime/Makefile +++ b/mail/pantomime/Makefile @@ -1,31 +1,27 @@ PORTNAME= pantomime DISTVERSION= 1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail gnustep MASTER_SITES= SAVANNAH/gnustep-nonfsf/ DISTNAME= Pantomime-${DISTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mew14930xvi@inbox.lv COMMENT= Mail/MIME handling library for GNUstep -WWW= http://www.collaboration-world.com/cgi-bin/project/index.cgi?pid=3 +WWW= https://www.nongnu.org/gnustep-nonfsf/gnumail/ LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/Documentation/LICENSE USES= gnustep iconv ssl -# The use of libiconv shouldn't be necessary, but a build dependency installs -# it and we end up picking up the header. -USE_GNUSTEP= back build -USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} - -MAKE_ARGS+= LIBRARIES_DEPEND_UPON='${ICONV_LIB} -lssl' - +USE_GNUSTEP= back build DEFAULT_LIBVERSION= ${DISTVERSION:R} -.include <bsd.port.pre.mk> +USE_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES} + +MAKE_ARGS+= LIBRARIES_DEPEND_UPON='-lssl' -.if ${OPSYS} == FreeBSD -CFLAGS+= -Wno-error=int-conversion -.endif +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Library/Frameworks/Pantomime.framework/Versions/${DISTVERSION:R}/libPantomime.so.${DISTVERSION} -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/mail/pantomime/pkg-descr b/mail/pantomime/pkg-descr index 13e3f55972fc..e2a1822d8406 100644 --- a/mail/pantomime/pkg-descr +++ b/mail/pantomime/pkg-descr @@ -1,3 +1,5 @@ Mail/MIME handling library for GNUstep. - -LICENSE: LGPL2 or later +The Pantomime framework supports the major mail protocols: POP3, IMAP, +and SMTP. +Pantomime provides a set of Objective-C classes that model a mail +system. diff --git a/mail/py-exchangelib/Makefile b/mail/py-exchangelib/Makefile new file mode 100644 index 000000000000..268afd31fb55 --- /dev/null +++ b/mail/py-exchangelib/Makefile @@ -0,0 +1,40 @@ +PORTNAME= exchangelib +DISTVERSIONPREFIX= v +DISTVERSION= 5.6.0 +CATEGORIES= mail python +#MASTER_SITES= PYPI # no tests +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Client for Microsoft Exchange Web Services (EWS) +WWW= https://github.com/ecederstrand/exchangelib + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cached-property>0:devel/py-cached-property@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}defusedxml>=0.6.0:devel/py-defusedxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dnspython>=2.2.0:dns/py-dnspython@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}isodate>0:devel/py-isodate@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml>3.0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}oauthlib>0:security/py-oauthlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.31.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests_ntlm>=0.2.0:www/py-requests_ntlm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests-oauthlib>0:www/py-requests-oauthlib@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tzdata>0:devel/py-tzdata@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tzlocal>0:devel/py-tzlocal@${PY_FLAVOR} + +USES= python +USE_PYTHON= pep517 autoplist pytest + +USE_GITHUB= yes +GH_ACCOUNT= ecederstrand + +NO_ARCH= yes + +# tests as of 5.6.0: 62 passed, 435 skipped in 8.62s + +.include <bsd.port.mk> diff --git a/mail/py-exchangelib/distinfo b/mail/py-exchangelib/distinfo new file mode 100644 index 000000000000..458116e1627d --- /dev/null +++ b/mail/py-exchangelib/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760468833 +SHA256 (ecederstrand-exchangelib-v5.6.0_GH0.tar.gz) = d969b1857bab6318a78cb54a809464cbf8ed2c37e1375200b1fca0f947053d2c +SIZE (ecederstrand-exchangelib-v5.6.0_GH0.tar.gz) = 3049641 diff --git a/mail/py-exchangelib/files/patch-pyproject.toml b/mail/py-exchangelib/files/patch-pyproject.toml new file mode 100644 index 000000000000..66b9465d43e5 --- /dev/null +++ b/mail/py-exchangelib/files/patch-pyproject.toml @@ -0,0 +1,12 @@ +--- pyproject.toml.orig 2024-10-10 01:50:58 UTC ++++ pyproject.toml +@@ -24,8 +24,7 @@ description = "Client for Microsoft Exchange Web Serv + description = "Client for Microsoft Exchange Web Services (EWS)" + readme = {file = "README.md", content-type = "text/markdown"} + requires-python = ">=3.10" +-license = "BSD-2-Clause" +-license-files = ["LICENSE"] ++license = {text = "BSD-2-Clause"} + keywords = [ + "autodiscover", + "ews", diff --git a/mail/py-exchangelib/pkg-descr b/mail/py-exchangelib/pkg-descr new file mode 100644 index 000000000000..19904c33aa26 --- /dev/null +++ b/mail/py-exchangelib/pkg-descr @@ -0,0 +1,13 @@ +Exchangelib is a Python client for Microsoft Exchange Web Services (EWS). +It allows to access and manage mailbox items such as email, calendar, contacts, +and tasks. + +With exchangelib, you can: +* Search, create, update, and delete items in your mailbox. +* Send and receive email messages. +* Manage calendar events and appointments. +* Access and modify contacts and distribution lists. +* Work with tasks and other mailbox items. + +Exchangelib is compatible with Exchange Server 2007 and later, as well +as Office 365. diff --git a/mail/py-resend/Makefile b/mail/py-resend/Makefile new file mode 100644 index 000000000000..e317f7979aaa --- /dev/null +++ b/mail/py-resend/Makefile @@ -0,0 +1,36 @@ +PORTNAME= resend +DISTVERSION= 2.17.0 +CATEGORIES= mail python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tagattie@FreeBSD.org +COMMENT= Resend Python SDK +WWW= https://github.com/resend/resend-python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +BR_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.31.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.4.0:devel/py-typing-extensions@${PY_FLAVOR} +BUILD_DEPENDS= ${BR_DEPENDS} +RUN_DEPENDS= ${BR_DEPENDS} + +USES= python + +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-extract: + @${CP} ${FILESDIR}/requirements.txt ${WRKSRC} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/mail/py-resend/distinfo b/mail/py-resend/distinfo new file mode 100644 index 000000000000..956e27ba3020 --- /dev/null +++ b/mail/py-resend/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760506235 +SHA256 (resend-2.17.0.tar.gz) = 90c8adbe92bfc14c9dfbe0bbe68cee14bd8813fdd568f36ae71df7a8946bbd4a +SIZE (resend-2.17.0.tar.gz) = 16964 diff --git a/mail/py-resend/files/requirements.txt b/mail/py-resend/files/requirements.txt new file mode 100644 index 000000000000..935af601a213 --- /dev/null +++ b/mail/py-resend/files/requirements.txt @@ -0,0 +1,2 @@ +requests>=2.31.0 +typing_extensions>=4.4.0 diff --git a/mail/py-resend/pkg-descr b/mail/py-resend/pkg-descr new file mode 100644 index 000000000000..f1206c34f721 --- /dev/null +++ b/mail/py-resend/pkg-descr @@ -0,0 +1,4 @@ +Resend is the email API for developers. + +The best way to reach humans instead of spam folders. Deliver +transactional and marketing emails at scale. diff --git a/math/Makefile b/math/Makefile index c53eb5072daf..5be7d12943d1 100644 --- a/math/Makefile +++ b/math/Makefile @@ -607,6 +607,7 @@ SUBDIR += octave-forge-joystick SUBDIR += octave-forge-level-set SUBDIR += octave-forge-linear-algebra + SUBDIR += octave-forge-llms SUBDIR += octave-forge-lssa SUBDIR += octave-forge-ltfat SUBDIR += octave-forge-mapping @@ -1294,7 +1295,6 @@ SUBDIR += vinci SUBDIR += visualpolylib SUBDIR += vowpal_wabbit - SUBDIR += vtk8 SUBDIR += vtk9 SUBDIR += wavelib SUBDIR += wcalc diff --git a/math/geogebra/Makefile b/math/geogebra/Makefile index 8d4a8db5b136..623cddb8ef2c 100644 --- a/math/geogebra/Makefile +++ b/math/geogebra/Makefile @@ -1,5 +1,5 @@ PORTNAME= geogebra -DISTVERSION= 5-2-899-0 +DISTVERSION= 5-2-903-0 CATEGORIES= math education java MASTER_SITES= http://download.geogebra.org/installers/5.2/ \ https://static.geogebra.org/images/ \ diff --git a/math/geogebra/distinfo b/math/geogebra/distinfo index 84a9e4d8c457..2377af69810e 100644 --- a/math/geogebra/distinfo +++ b/math/geogebra/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1757477906 -SHA256 (GeoGebra-Linux-Portable-5-2-899-0.tar.bz2) = dda3e8075e66990418a5913e38bbdd72a8bf32a2805f1886aa1d13aaad95b264 -SIZE (GeoGebra-Linux-Portable-5-2-899-0.tar.bz2) = 62954321 +TIMESTAMP = 1760496589 +SHA256 (GeoGebra-Linux-Portable-5-2-903-0.tar.bz2) = cc1cdc9c42622987b50dddf34df95d061c9e3691b90d5da8a08405f410f3c6f3 +SIZE (GeoGebra-Linux-Portable-5-2-903-0.tar.bz2) = 62981031 SHA256 (geogebra.png) = e97122d77209e2c235f5afcee8f783c1e933d14062851ac73a4ed7a6520c5614 SIZE (geogebra.png) = 4018 SHA256 (geogebra-logo.svg) = 55ded6b5ec9ad382494f858d8ab5def0ed6c7d529481cd212863b2edde3b5e07 diff --git a/math/libqalculate/Makefile b/math/libqalculate/Makefile index 86304eccd656..399d7eb24c8b 100644 --- a/math/libqalculate/Makefile +++ b/math/libqalculate/Makefile @@ -1,5 +1,5 @@ PORTNAME= libqalculate -PORTVERSION= 5.7.0 +PORTVERSION= 5.8.0 CATEGORIES= math MASTER_SITES= https://github.com/Qalculate/${PORTNAME}/releases/download/v${PORTVERSION}/ diff --git a/math/libqalculate/distinfo b/math/libqalculate/distinfo index 4cbc8eb21bab..078a64d4de44 100644 --- a/math/libqalculate/distinfo +++ b/math/libqalculate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754377124 -SHA256 (libqalculate-5.7.0.tar.gz) = b0aa7e7f6b729ad88f41c3562e81bdc349e072f4df0e62ce152304d979702cfe -SIZE (libqalculate-5.7.0.tar.gz) = 2835670 +TIMESTAMP = 1760528533 +SHA256 (libqalculate-5.8.0.tar.gz) = 5595dc304de252945ee51bd68cef3b5f0dacf3ce1c75bd0a8f6c158c1c723741 +SIZE (libqalculate-5.8.0.tar.gz) = 2664148 diff --git a/math/libqalculate/pkg-plist b/math/libqalculate/pkg-plist index a61ca69ef777..c400e126afc7 100644 --- a/math/libqalculate/pkg-plist +++ b/math/libqalculate/pkg-plist @@ -16,7 +16,7 @@ include/libqalculate/util.h lib/libqalculate.a lib/libqalculate.so lib/libqalculate.so.23 -lib/libqalculate.so.23.3.6 +lib/libqalculate.so.23.3.7 libdata/pkgconfig/libqalculate.pc share/man/man1/qalc.1.gz %%NLS%%share/locale/ca/LC_MESSAGES/libqalculate.mo diff --git a/math/octave-forge-llms/Makefile b/math/octave-forge-llms/Makefile new file mode 100644 index 000000000000..1315b9d1e3b8 --- /dev/null +++ b/math/octave-forge-llms/Makefile @@ -0,0 +1,22 @@ +PORTNAME= octave-forge-llms +DISTVERSIONPREFIX= release- +DISTVERSION= 0.1.0 +CATEGORIES= math + +MAINTAINER= stephen@FreeBSD.org +COMMENT= Octave-forge package ${OCTAVE_PKGNAME} +WWW= https://packages.octave.org/ + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKDIR}/${OCTAVE_SRC}/COPYING + +RUN_DEPENDS+= ${OCTAVE_TARBALLS_DIR}/datatypes.tar.gz:math/octave-forge-datatypes + +USES= octave +USE_GITHUB= yes +GH_ACCOUNT= pr0m1th3as +GH_PROJECT= octave-llms + +OCTAVE_SRC= ${GH_PROJECT}-release-${DISTVERSION} + +.include <bsd.port.mk> diff --git a/math/octave-forge-llms/distinfo b/math/octave-forge-llms/distinfo new file mode 100644 index 000000000000..12eb43d7d877 --- /dev/null +++ b/math/octave-forge-llms/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760558006 +SHA256 (octave-forge/pr0m1th3as-octave-llms-release-0.1.0_GH0.tar.gz) = 59593d29d8cec165f34b630771cbd319e11f0f9c87e3df6925b734a47f29715c +SIZE (octave-forge/pr0m1th3as-octave-llms-release-0.1.0_GH0.tar.gz) = 335688 diff --git a/math/octave-forge-llms/pkg-descr b/math/octave-forge-llms/pkg-descr new file mode 100644 index 000000000000..406d012ee713 --- /dev/null +++ b/math/octave-forge-llms/pkg-descr @@ -0,0 +1,8 @@ +The octave-forge package is the result of The GNU Octave Repository project, +which is intended to be a central location for custom scripts, functions and +extensions for GNU Octave. contains the source for all the functions plus +build and install scripts. + +This is llms. + + Large Language Models for GNU Octave. diff --git a/math/octave-forge-pkg-octave-doc/Makefile b/math/octave-forge-pkg-octave-doc/Makefile index 3660f1458105..4e8b26c32cee 100644 --- a/math/octave-forge-pkg-octave-doc/Makefile +++ b/math/octave-forge-pkg-octave-doc/Makefile @@ -1,6 +1,6 @@ PORTNAME= octave-forge-pkg-octave-doc DISTVERSIONPREFIX= release- -DISTVERSION= 0.6.7 +DISTVERSION= 0.6.8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-pkg-octave-doc/distinfo b/math/octave-forge-pkg-octave-doc/distinfo index 6b3a3e79edba..454d67b4b895 100644 --- a/math/octave-forge-pkg-octave-doc/distinfo +++ b/math/octave-forge-pkg-octave-doc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759102778 -SHA256 (octave-forge/gnu-octave-pkg-octave-doc-release-0.6.7_GH0.tar.gz) = 3aa52b681b7bbfea65d3999ee92e8bacbef26938b1ce64324590f75b89fb53fb -SIZE (octave-forge/gnu-octave-pkg-octave-doc-release-0.6.7_GH0.tar.gz) = 162500 +TIMESTAMP = 1760547190 +SHA256 (octave-forge/gnu-octave-pkg-octave-doc-release-0.6.8_GH0.tar.gz) = 3aef12b6c4cc5019236eed4d7d05bed6be021bb4f6912ef3d0190b57fb68ded6 +SIZE (octave-forge/gnu-octave-pkg-octave-doc-release-0.6.8_GH0.tar.gz) = 162955 diff --git a/math/octave-forge/Makefile b/math/octave-forge/Makefile index e019fcf5caa6..ac98489cd213 100644 --- a/math/octave-forge/Makefile +++ b/math/octave-forge/Makefile @@ -1,5 +1,5 @@ PORTNAME= octave-forge -PORTVERSION= 20251013 +PORTVERSION= 20251015 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org @@ -21,7 +21,7 @@ OPTIONS_DEFINE= AUDIO ACTUARIAL AUTOMATIC_DIFFERENTIATION \ GENERATE_HTML GNUPLOT GSL HDF5OCT IDENT IMAGE \ INFORMATIONTHEORY INTEGRATION INTERNAL_FLUID_FLOW \ INTERVAL IO IRSA JOYSTICK LEVEL_SET \ - LINEAR_ALGEBRA LSSA LTFAT \ + LINEAR_ALGEBRA LLMS LSSA LTFAT \ MAPPING MATGEOM \ MBOCT_FEM_PKG MBOCT_MBDYN_PKG MBOCT_NUMERICAL_PKG \ MBOCT_OCTAVE_PKG MCCABE_THIELE \ diff --git a/math/py-numpy/Makefile b/math/py-numpy/Makefile index 22f8b33f9ed3..7b7273abe5be 100644 --- a/math/py-numpy/Makefile +++ b/math/py-numpy/Makefile @@ -1,6 +1,6 @@ PORTNAME= numpy PORTVERSION= 1.26.4 -PORTREVISION= 9 +PORTREVISION= 10 PORTEPOCH= 1 CATEGORIES= math python MASTER_SITES= PYPI \ @@ -18,12 +18,14 @@ WWW= https://www.numpy.org/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}meson-python>=0:devel/meson-python@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=6.24.1:devel/py-hypothesis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest>=6.2.5:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.2.0:devel/py-typing-extensions@${PY_FLAVOR} -USES= compiler:c11 cpe fortran python:3.9+ -USE_PYTHON= allflavors autoplist concurrent cython distutils +USES= compiler:c11 cpe fortran pkgconfig python:3.9+ shebangfix +USE_PYTHON= autoplist concurrent cython pep517 GCCLIBDIR_CMDS= ${FC} -print-file-name=libgfortran.so | ${SED} -e \ s/libgfortran.so// @@ -61,6 +63,10 @@ OPENBLAS_VARS= BLASLIBS="openblas, gfortran" \ LIBRARIES=libraries SUITESPARSE_LIB_DEPENDS= libumfpack.so:math/suitesparse-umfpack +SHEBANG_FILES= numpy/f2py/crackfortran.py numpy/f2py/f2py2e.py \ + numpy/f2py/rules.py numpy/testing/print_coercion_tables.py \ + numpy/testing/setup.py + post-extract: @${TOUCH} ${WRKSRC}/numpy/f2py/tests/src/temp @${TOUCH} ${WRKSRC}/numpy/random/_examples/temp diff --git a/math/py-numpy/files/patch-numpy_core_setup.py b/math/py-numpy/files/patch-numpy_core_setup.py new file mode 100644 index 000000000000..7502a4df93fb --- /dev/null +++ b/math/py-numpy/files/patch-numpy_core_setup.py @@ -0,0 +1,19 @@ +--- numpy/core/setup.py.orig 2024-02-05 21:17:48 UTC ++++ numpy/core/setup.py +@@ -9,7 +9,6 @@ from numpy.distutils import log + from os.path import join + + from numpy.distutils import log +-from numpy.distutils.msvccompiler import lib_opts_if_msvc + from distutils.dep_util import newer + from sysconfig import get_config_var + from numpy.compat import npy_load_module +@@ -688,7 +687,7 @@ def configuration(parent_package='',top_path=None): + install_dir='lib', + build_info={ + 'include_dirs' : [], # empty list required for creating npy_math_internal.h +- 'extra_compiler_args': [lib_opts_if_msvc], ++ 'extra_compiler_args': [], + }) + config.add_npy_pkg_config("npymath.ini.in", "lib/npy-pkg-config", + subst_dict) diff --git a/math/py-numpy/files/patch-numpy_distutils_mingw32ccompiler.py b/math/py-numpy/files/patch-numpy_distutils_mingw32ccompiler.py new file mode 100644 index 000000000000..a7466a818792 --- /dev/null +++ b/math/py-numpy/files/patch-numpy_distutils_mingw32ccompiler.py @@ -0,0 +1,17 @@ +--- numpy/distutils/mingw32ccompiler.py.orig 2024-02-05 21:17:48 UTC ++++ numpy/distutils/mingw32ccompiler.py +@@ -24,7 +24,13 @@ from distutils.unixccompiler import UnixCCompiler + + import distutils.cygwinccompiler + from distutils.unixccompiler import UnixCCompiler +-from distutils.msvccompiler import get_build_version as get_build_msvc_version ++ ++try: ++ from distutils.msvccompiler import get_build_version as get_build_msvc_version ++except ImportError: ++ def get_build_msvc_version(): ++ return None ++ + from distutils.errors import UnknownFileError + from numpy.distutils.misc_util import (msvc_runtime_library, + msvc_runtime_version, diff --git a/math/py-numpy/files/patch-numpy_random_setup.py b/math/py-numpy/files/patch-numpy_random_setup.py new file mode 100644 index 000000000000..74ff5ffc8e54 --- /dev/null +++ b/math/py-numpy/files/patch-numpy_random_setup.py @@ -0,0 +1,23 @@ +--- numpy/random/setup.py.orig 2024-02-05 21:17:48 UTC ++++ numpy/random/setup.py +@@ -3,7 +3,6 @@ from numpy.distutils.system_info import platform_bits + from os.path import join + + from numpy.distutils.system_info import platform_bits +-from numpy.distutils.msvccompiler import lib_opts_if_msvc + + + def configuration(parent_package='', top_path=None): +@@ -70,11 +69,7 @@ def configuration(parent_package='', top_path=None): + not initialized the distutils build command, so use this deferred + calculation to run when we are building the library. + """ +- opts = lib_opts_if_msvc(build_cmd) +- if build_cmd.compiler.compiler_type != 'msvc': +- # Some bit generators require c99 +- opts.append('-std=c99') +- return opts ++ return ['-std=c99'] + + config.add_installed_library('npyrandom', + sources=npyrandom_sources, diff --git a/math/py-numpy/files/patch-pyproject.toml b/math/py-numpy/files/patch-pyproject.toml new file mode 100644 index 000000000000..3eb3c97a8da5 --- /dev/null +++ b/math/py-numpy/files/patch-pyproject.toml @@ -0,0 +1,11 @@ +--- pyproject.toml.orig 2025-06-24 22:40:55 UTC ++++ pyproject.toml +@@ -2,7 +2,7 @@ requires = [ + build-backend = "mesonpy" + requires = [ + "Cython>=0.29.34,<3.1", +- "meson-python>=0.15.0,<0.16.0", ++ "meson-python>=0.15.0", + ] + + [project] diff --git a/math/qalculate-gtk/Makefile b/math/qalculate-gtk/Makefile index ab20fb2d0e04..74b9b74a0248 100644 --- a/math/qalculate-gtk/Makefile +++ b/math/qalculate-gtk/Makefile @@ -1,6 +1,5 @@ PORTNAME= qalculate-gtk -PORTVERSION= 5.7.0 -PORTREVISION= 1 +PORTVERSION= 5.8.0 CATEGORIES= math MASTER_SITES= https://github.com/Qalculate/${PORTNAME}/releases/download/v${PORTVERSION}/ diff --git a/math/qalculate-gtk/distinfo b/math/qalculate-gtk/distinfo index 393049d4c84a..aee789da32cb 100644 --- a/math/qalculate-gtk/distinfo +++ b/math/qalculate-gtk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754377627 -SHA256 (qalculate-gtk-5.7.0.tar.gz) = dcb3663b36abafdfe32e943644bf4fc64bd685c0225f944a3f1c4a85e70db3b5 -SIZE (qalculate-gtk-5.7.0.tar.gz) = 3074403 +TIMESTAMP = 1760531708 +SHA256 (qalculate-gtk-5.8.0.tar.gz) = fdd74cbf011d5ff88219489033ec207d856aa116d3e16b729ccdbea9277a5d41 +SIZE (qalculate-gtk-5.8.0.tar.gz) = 3089390 diff --git a/math/qalculate-qt/Makefile b/math/qalculate-qt/Makefile index 1c23e9ffb775..d04f8b06a72d 100644 --- a/math/qalculate-qt/Makefile +++ b/math/qalculate-qt/Makefile @@ -1,5 +1,5 @@ PORTNAME= qalculate-qt -PORTVERSION= 5.7.0 +PORTVERSION= 5.8.0 CATEGORIES= math MASTER_SITES= https://github.com/Qalculate/${PORTNAME}/releases/download/v${PORTVERSION}/ diff --git a/math/qalculate-qt/distinfo b/math/qalculate-qt/distinfo index 31f5530abbcd..152db4a88f6a 100644 --- a/math/qalculate-qt/distinfo +++ b/math/qalculate-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754377968 -SHA256 (qalculate-qt-5.7.0.tar.gz) = 76e03b976a7b1347a6e8779b6be83ea053ab74e8ddeafb0aa62d20b3fadc0b9c -SIZE (qalculate-qt-5.7.0.tar.gz) = 1992166 +TIMESTAMP = 1760531474 +SHA256 (qalculate-qt-5.8.0.tar.gz) = 7c8e3074b709177462ead9b2b36736b18f1cb0f8e88dda3608911b9f7491c8e6 +SIZE (qalculate-qt-5.8.0.tar.gz) = 2016264 diff --git a/math/vtk8/Makefile b/math/vtk8/Makefile deleted file mode 100644 index 06d0030f5f76..000000000000 --- a/math/vtk8/Makefile +++ /dev/null @@ -1,130 +0,0 @@ -PORTNAME= vtk -DISTVERSION= 8.2.0 # it has only one consumer that is possibly dead upstream but is still compiling fine -PORTREVISION= 6 -CATEGORIES= math graphics -MASTER_SITES= http://www.vtk.org/files/release/${VTK_SHORT_VER}/ -PKGNAMESUFFIX= 8 -DISTNAME= ${PORTNAME:tu}-${PORTVERSION} - -MAINTAINER= yuri@FreeBSD.org -COMMENT= Visualization toolkit -WWW= https://www.vtk.org - -LICENSE= BSD3CLAUSE - -BROKEN_FreeBSD_13= complation fails: error: no member named 'derived' in 'Transpose<TranspositionsBase<type-parameter-0-0>>' -BROKEN_FreeBSD_15= complation fails: error: no member named 'derived' in 'Transpose<TranspositionsBase<type-parameter-0-0>>' - -LIB_DEPENDS= libtiff.so:graphics/tiff \ - libpng.so:graphics/png \ - libfreetype.so:print/freetype2 \ - libexpat.so:textproc/expat2 - -CONFLICTS= vtk9 - -USES= alias cmake compiler:c++11-lang gl jpeg localbase perl5 xorg -USE_LDCONFIG= ${PREFIX}/lib/vtk-${VTK_SHORT_VER} -USE_XORG= ice x11 xt xext sm - -CMAKE_ON= BUILD_SHARED_LIBS \ - VTK_INSTALL_NO_DOCUMENTATION VTK_USE_SYSTEM_EXPAT VTK_USE_SYSTEM_TIFF \ - VTK_USE_SYSTEM_PNG VTK_USE_SYSTEM_JPEG VTK_USE_SYSTEM_FREETYPE VTK_USE_SYSTEM_ZLIB \ - Module_vtkTestingCore Module_vtkTestingRendering -CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=false \ - -DVTK_INSTALL_LIBRARY_DIR=lib/vtk-${VTK_SHORT_VER} \ - -DVTK_INSTALL_ARCHIVE_DIR=lib/vtk-${VTK_SHORT_VER} \ - -DVTK_INSTALL_QT_DIR=/${QT_LIBDIR_REL}/plugins/designer \ - -DSTAGEDIR=${STAGEDIR} - -VTK_SHORT_VER= ${PORTVERSION:R} - -DOCSDIR= ${PREFIX}/share/doc/vtk-${VTK_SHORT_VER} -DATADIR= ${PREFIX}/share/vtk-${VTK_SHORT_VER} - -# Options -OPTIONS_DEFINE= DESIGNER DOCS OSMESA QT5 -OPTIONS_DEFAULT= MPI QT5 -OSMESA_DESC= Use Mesa for off-screen rendering -DESIGNER_DESC= Build the Qt Designer plugin -OPTIONS_SUB= yes - -# Options groups -#VTK_GROUPS= Imaging MPI Qt Rendering StandAlone Views -VTK_GROUPS= MPI -VTK_WRAPS= JAVA TCLTK -OPTIONS_GROUP= GROUPS WRAPPING -OPTIONS_GROUP_GROUPS=${VTK_GROUPS} -OPTIONS_GROUP_WRAPPING=${VTK_WRAPS} -GROUPS_DESC= Groups -WRAPPING_DESC= Wrapping -.for g in ${VTK_GROUPS} -$g_DESC= Build the $g group -.endfor -.for w in ${VTK_WRAPS} -$w_DESC= $w wrapping -.endfor - -QT5_USES= qt:5 -QT5_USE= QT=core,gui,sql,uiplugin,widgets,x11extras,qmake:build,buildtools:build -QT5_CMAKE_ON= -DVTK_QT_VERSION:STRING="5" \ - -DCMAKE_PREFIX_PATH:STRING=${LOCALBASE}/lib/qt5 \ - -DVTK_Group_Qt:BOOL=ON - -DESIGNER_CMAKE_BOOL= QT_DESIGNER_PLUGIN -DESIGNER_USE= QT=designer -DESIGNER_IMPLIES= QT5 - -MPI_LIB_DEPENDS= libmpi_cxx.so:net/openmpi4 -MPI_CMAKE_ON= -DMPIEXEC=${LOCALBASE}/mpi/openmpi/bin/mpiexec - -OSMESA_CMAKE_ARGS= -DVTK_OPENGL_HAS_OSMESA:BOOL=ON \ - -DOSMESA_INCLUDE_DIR:PATH=${LOCALBASE}/include/Mesa \ - -DOSMESA_LIBRARY:FILEPATH=${LOCALBASE}/lib/libOSMesa.so \ - -DOPENGL_gl_LIBRARY:FILEPATH=${LOCALBASE}/lib/libOSMesa.so \ - -DVTK_USE_X:BOOL=OFF -OSMESA_LIB_DEPENDS= libOSMesa.so:graphics/libosmesa - -# Wrapping -JAVA_CATEGORIES= java -JAVA_USES= java -JAVA_CMAKE_BOOL= VTK_WRAP_JAVA Module_vtkWrappingJava -JAVA_CMAKE_ON= -DJAVA_INCLUDE_PATH:PATH=${JAVA_HOME}/include \ - -DJAVA_AWT_LIBRARY:PATH=${JAVA_HOME}/jre/lib/${ARCH}/libjawt.so \ - -DJAVA_JVM_LIBRARY:PATH=${JAVA_HOME}/jre/lib/${ATCH}/libjava.so - -TCLTK_USES= tk -TCLTK_CMAKE_BOOL= VTK_WRAP_TCL VTK_Group_Tk -TCLTK_CMAKE_ON= -DTCL_INCLUDE_PATH:PATH=${TCL_INCLUDEDIR} \ - -DTK_INCLUDE_PATH:PATH=${TK_INCLUDEDIR} \ - -DVTK_INSTALL_TCL_DIR=lib/vtk-${VTK_SHORT_VER} - -DOCS_CMAKE_BOOL= BUILD_DOCUMENTATION -DOCS_BUILD_DEPENDS= doxygen:devel/doxygen - -# Mangling so that it will build when science/netcdf is installed. -post-patch: - @${MV} ${WRKSRC}/ThirdParty/netcdf/vtknetcdf/include/netcdf.h \ - ${WRKSRC}/ThirdParty/netcdf/vtknetcdf/include/xxxnetcdf.h - @${FIND} ${WRKSRC}/ThirdParty/netcdf -type f | ${XARGS} ${REINPLACE_CMD} \ - -E 's/[[:<:]]netcdf\.h[[:>:]]/xxxnetcdf.h/' - -.include <bsd.port.options.mk> - -.for g in ${VTK_GROUPS} -. if ${PORT_OPTIONS:M${g}} -CMAKE_ARGS+= -DVTK_Group_${g}:BOOL=ON -. else -CMAKE_ARGS+= -DVTK_Group_${g}:BOOL=OFF -. endif -.endfor - -.if !${PORT_OPTIONS:MOSMESA} -USES+= gl -USE_GL= gl glu -.endif - -post-install: # autoplist: thousands of files, complex dependencies on options - @cd ${STAGEDIR}${PREFIX} && \ - ${FIND} * -type f -or -type l >> ${TMPPLIST} - -.include <bsd.port.mk> diff --git a/math/vtk8/distinfo b/math/vtk8/distinfo deleted file mode 100644 index 5cc3a3a28ff4..000000000000 --- a/math/vtk8/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1587775906 -SHA256 (VTK-8.2.0.tar.gz) = 34c3dc775261be5e45a8049155f7228b6bd668106c72a3c435d95730d17d57bb -SIZE (VTK-8.2.0.tar.gz) = 35511819 diff --git a/math/vtk8/files/patch-GUISupport_Qt_CMakeLists.txt b/math/vtk8/files/patch-GUISupport_Qt_CMakeLists.txt deleted file mode 100644 index 43e82e2f9310..000000000000 --- a/math/vtk8/files/patch-GUISupport_Qt_CMakeLists.txt +++ /dev/null @@ -1,28 +0,0 @@ ---- GUISupport/Qt/CMakeLists.txt.orig 2019-01-30 17:15:13 UTC -+++ GUISupport/Qt/CMakeLists.txt -@@ -128,21 +128,21 @@ if(VTK_BUILD_QT_DESIGNER_PLUGIN AND add_qvtkwidget) - find_package(Qt5 COMPONENTS ${qt_component} REQUIRED QUIET) - add_definitions(${Qt5${qt_component}_DEFINITIONS}) - include_directories(${Qt5${qt_component}_INCLUDE_DIRS}) -- qt5_wrap_cpp(PluginMocSrcs ${PluginMocHeaders} TARGET QVTKWidgetPlugin) -+ qt5_wrap_cpp(PluginMocSrcs ${PluginMocHeaders} TARGET QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION}) - set(QT_LIBRARIES Qt5::${qt_component}) - - # add QVTK plugin from sources - # stand-alone as it doesn't depend on QVTK library -- add_library(QVTKWidgetPlugin -+ add_library(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} - SHARED - ${PluginLibSrcs} - ${PluginMocSrcs} - ) - -- set_target_properties(QVTKWidgetPlugin PROPERTIES COMPILE_DEFINITIONS QT_NO_DEBUG) -+ set_target_properties(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} PROPERTIES COMPILE_DEFINITIONS QT_NO_DEBUG) - - # link with Qt libs -- vtk_module_link_libraries(QVTKWidgetPlugin ${QT_LIBRARIES}) -+ vtk_module_link_libraries(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} ${QT_LIBRARIES}) - - # install rules - diff --git a/math/vtk8/files/patch-GUISupport_Qt_PluginInstall.cmake.in b/math/vtk8/files/patch-GUISupport_Qt_PluginInstall.cmake.in deleted file mode 100644 index 19c95db7c524..000000000000 --- a/math/vtk8/files/patch-GUISupport_Qt_PluginInstall.cmake.in +++ /dev/null @@ -1,11 +0,0 @@ ---- GUISupport/Qt/PluginInstall.cmake.in.orig 2017-11-21 08:23:50 UTC -+++ GUISupport/Qt/PluginInstall.cmake.in -@@ -10,7 +10,7 @@ if (WIN32) - set(BUILDTYPE_SUFFIX @CMAKE_RELEASE_POSTFIX@) - endif () - endif () --set(VTK_INSTALL_QT_PLUGIN_FILE "@CMAKE_SHARED_LIBRARY_PREFIX@QVTKWidgetPlugin${BUILDTYPE_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@") -+set(VTK_INSTALL_QT_PLUGIN_FILE "@CMAKE_SHARED_LIBRARY_PREFIX@QVTKWidgetPlugin-@VTK_MAJOR_VERSION@.@VTK_MINOR_VERSION@${BUILDTYPE_SUFFIX}@CMAKE_SHARED_LIBRARY_SUFFIX@") - set(VTK_CONFIGURATIONS "@CMAKE_CONFIGURATION_TYPES@") - - if(VTK_CONFIGURATIONS) diff --git a/math/vtk8/files/patch-Rendering_FreeType_vtkFreeTypeTools.cxx b/math/vtk8/files/patch-Rendering_FreeType_vtkFreeTypeTools.cxx deleted file mode 100644 index e3d29d4d7deb..000000000000 --- a/math/vtk8/files/patch-Rendering_FreeType_vtkFreeTypeTools.cxx +++ /dev/null @@ -1,11 +0,0 @@ ---- Rendering/FreeType/vtkFreeTypeTools.cxx.orig 2020-10-22 10:20:24 UTC -+++ Rendering/FreeType/vtkFreeTypeTools.cxx -@@ -387,7 +387,7 @@ FTC_CMapCache* vtkFreeTypeTools::GetCMapCache() - } - - //---------------------------------------------------------------------------- --FT_CALLBACK_DEF(FT_Error) -+static FT_Error - vtkFreeTypeToolsFaceRequester(FTC_FaceID face_id, - FT_Library lib, - FT_Pointer request_data, diff --git a/math/vtk8/files/patch-Rendering_Qt_vtkQtLabelRenderStrategy.cxx b/math/vtk8/files/patch-Rendering_Qt_vtkQtLabelRenderStrategy.cxx deleted file mode 100644 index b733cfeee383..000000000000 --- a/math/vtk8/files/patch-Rendering_Qt_vtkQtLabelRenderStrategy.cxx +++ /dev/null @@ -1,10 +0,0 @@ ---- Rendering/Qt/vtkQtLabelRenderStrategy.cxx.orig 2020-05-28 17:13:13 UTC -+++ Rendering/Qt/vtkQtLabelRenderStrategy.cxx -@@ -41,6 +41,7 @@ - #include <QImage> - #include <QMap> - #include <QPainter> -+#include <QPainterPath> - #include <QPair> - #include <QPixmap> - #include <QTextDocument> diff --git a/math/vtk8/files/patch-Rendering_Qt_vtkQtStringToImage.cxx b/math/vtk8/files/patch-Rendering_Qt_vtkQtStringToImage.cxx deleted file mode 100644 index 299be5f51c46..000000000000 --- a/math/vtk8/files/patch-Rendering_Qt_vtkQtStringToImage.cxx +++ /dev/null @@ -1,10 +0,0 @@ ---- Rendering/Qt/vtkQtStringToImage.cxx.orig 2020-06-05 04:36:21 UTC -+++ Rendering/Qt/vtkQtStringToImage.cxx -@@ -31,6 +31,7 @@ - #include <QFontMetrics> - #include <QImage> - #include <QPainter> -+#include <QPainterPath> - #include <QPixmap> - #include <QTextDocument> - #include <QTextStream> diff --git a/math/vtk8/files/patch-ThirdParty_libproj_vtklibproj_src_pj__mutex.c b/math/vtk8/files/patch-ThirdParty_libproj_vtklibproj_src_pj__mutex.c deleted file mode 100644 index bd453a0dc9ca..000000000000 --- a/math/vtk8/files/patch-ThirdParty_libproj_vtklibproj_src_pj__mutex.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ThirdParty/libproj/vtklibproj/src/pj_mutex.c.orig 2020-04-25 01:23:01 UTC -+++ ThirdParty/libproj/vtklibproj/src/pj_mutex.c -@@ -124,7 +124,7 @@ void pj_acquire_lock() - pthread_mutex_lock( &pj_precreated_lock); - - pthread_mutexattr_init(&mutex_attr); --#ifdef HAVE_PTHREAD_MUTEX_RECURSIVE -+#if defined(HAVE_PTHREAD_MUTEX_RECURSIVE) || defined(__FreeBSD__) - pthread_mutexattr_settype(&mutex_attr, PTHREAD_MUTEX_RECURSIVE); - #else - pthread_mutexattr_settype(&mutex_attr, PTHREAD_MUTEX_RECURSIVE_NP); diff --git a/math/vtk8/files/patch-ThirdParty_verdict_vtkverdict_CMakeLists.txt b/math/vtk8/files/patch-ThirdParty_verdict_vtkverdict_CMakeLists.txt deleted file mode 100644 index f7e860060a89..000000000000 --- a/math/vtk8/files/patch-ThirdParty_verdict_vtkverdict_CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ ---- ThirdParty/verdict/vtkverdict/CMakeLists.txt.orig 2019-01-30 17:15:13 UTC -+++ ThirdParty/verdict/vtkverdict/CMakeLists.txt -@@ -128,14 +128,14 @@ endif () - # Installation stuff - # - IF(NOT verdict_INSTALL_NO_DEVELOPMENT) -- install(FILES -- README -- Verdict.htm -- Verdict.doc -- verdict_test.cpp -- DESTINATION ${verdict_INSTALL_DOC_DIR}/verdict/${verdict_VERSION}/ -- COMPONENT Development -- ) -+# install(FILES -+# README -+# Verdict.htm -+# Verdict.doc -+# verdict_test.cpp -+# DESTINATION ${verdict_INSTALL_DOC_DIR}/verdict/${verdict_VERSION}/ -+# COMPONENT Development -+# ) - - install( - FILES ${verdict_BINARY_DIR}/verdict.h diff --git a/math/vtk8/files/patch-git_a9079bd b/math/vtk8/files/patch-git_a9079bd deleted file mode 100644 index 1248811772dd..000000000000 --- a/math/vtk8/files/patch-git_a9079bd +++ /dev/null @@ -1,44 +0,0 @@ -Obtained from: - https://gitlab.kitware.com/vtk/vtk/-/commit/a9079bdccbb2165583d6773a5ed848427e2a38a8.patch - -From a9079bdccbb2165583d6773a5ed848427e2a38a8 Mon Sep 17 00:00:00 2001 -From: Seacas Upstream <kwrobot@kitware.com> -Date: Tue, 28 Jan 2020 09:13:38 -0500 -Subject: [PATCH] exodusII 2020-01-28 (d97eb08d) - -Code extracted from: - - https://gitlab.kitware.com/third-party/seacas.git - -at commit d97eb08d79e87c82facfae39bc75deb60c0a2d83 (for/vtk-20200128-7.24f-v2019-12-18). ---- - src/ex_create_par.c | 2 +- - src/ex_open_par.c | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/ex_create_par.c b/src/ex_create_par.c -index 8d5d6734f0..ef439618da 100644 ---- ThirdParty/exodusII/vtkexodusII/src/ex_create_par.c -+++ ThirdParty/exodusII/vtkexodusII/src/ex_create_par.c -@@ -216,5 +216,5 @@ int ex_create_par_int(const char *path, int cmode, int *comp_ws, int *io_ws, MPI - * Prevent warning in some versions of ranlib(1) because the object - * file has no symbols. - */ --const char exodus_unused_symbol_dummy_1; -+const char exodus_unused_symbol_dummy_ex_create_par; - #endif -diff --git a/src/ex_open_par.c b/src/ex_open_par.c -index b2faa22c29..9df4818767 100644 ---- ThirdParty/exodusII/vtkexodusII/src/ex_open_par.c -+++ ThirdParty/exodusII/vtkexodusII/src/ex_open_par.c -@@ -459,5 +459,5 @@ int ex_open_par_int(const char *path, int mode, int *comp_ws, int *io_ws, float - * Prevent warning in some versions of ranlib(1) because the object - * file has no symbols. - */ --const char exodus_unused_symbol_dummy_1; -+const char exodus_unused_symbol_dummy_ex_open_par; - #endif --- -GitLab - - diff --git a/math/vtk8/pkg-descr b/math/vtk8/pkg-descr deleted file mode 100644 index 250b76ca8cc1..000000000000 --- a/math/vtk8/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -The Visualization Toolkit (VTK) is an open-source, freely available software -system for 3D computer graphics, image processing and visualization. VTK -consists of a C++ class library and several interpreted interface layers -including Tcl/Tk, Java, and Python. Kitware, whose team created and continues -to extend the toolkit, offers professional support and consulting services for -VTK. VTK supports a wide variety of visualization algorithms including: scalar, -vector, tensor, texture, and volumetric methods; and advanced modeling -techniques such as: implicit modeling, polygon reduction, mesh smoothing, -cutting, contouring, and Delaunay triangulation. VTK has an extensive -information visualization framework, has a suite of 3D interaction widgets, -supports parallel processing, and integrates with various databases on GUI -toolkits such as Qt and Tk. diff --git a/math/xtensor-python/Makefile b/math/xtensor-python/Makefile index 5e9004ad03c1..e655514f484f 100644 --- a/math/xtensor-python/Makefile +++ b/math/xtensor-python/Makefile @@ -1,5 +1,5 @@ PORTNAME= xtensor-python -DISTVERSION= 0.27.0 +DISTVERSION= 0.29.0 CATEGORIES= math python MAINTAINER= yuri@FreeBSD.org @@ -17,20 +17,23 @@ RUN_DEPENDS= ${HPP_DEPENDS} TEST_DEPENDS= googletest>0:devel/googletest \ pybind11>0:devel/pybind11 -USES= cmake compiler:c++14-lang python +USES= cmake compiler:c++20-lang localbase:ldflags python USE_GITHUB= yes GH_ACCOUNT= xtensor-stack CXXFLAGS+= -I${PYTHON_INCLUDEDIR} -I${PYTHON_SITELIBDIR}/numpy/core/include # workaround for https://github.com/xtensor-stack/xtensor-python/issues/272 +LDFLAGS+= -lpython${PYTHON_VER} NO_BUILD= yes NO_ARCH= yes -do-test: install +do-test: @cd ${WRKSRC}/test && \ ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} . && \ ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} && \ ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} xtest +# tests as of 0.29.0: [ PASSED ] 55 tests. + .include <bsd.port.mk> diff --git a/math/xtensor-python/distinfo b/math/xtensor-python/distinfo index d867423177b3..838cc4dbee20 100644 --- a/math/xtensor-python/distinfo +++ b/math/xtensor-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1708074061 -SHA256 (xtensor-stack-xtensor-python-0.27.0_GH0.tar.gz) = 40ee01bd213aeb7bf64f6d8a3257f4fa98ed31c401596c6c7b3b115f61a473b9 -SIZE (xtensor-stack-xtensor-python-0.27.0_GH0.tar.gz) = 65455 +TIMESTAMP = 1760503057 +SHA256 (xtensor-stack-xtensor-python-0.29.0_GH0.tar.gz) = 2915b220bd11b70fdd9fbb2db5f313e751189fec083e406228c8e5a31dfaa4a2 +SIZE (xtensor-stack-xtensor-python-0.29.0_GH0.tar.gz) = 66835 diff --git a/math/xtensor-python/pkg-plist b/math/xtensor-python/pkg-plist index e9f7970198bd..0009a66e0660 100644 --- a/math/xtensor-python/pkg-plist +++ b/math/xtensor-python/pkg-plist @@ -7,6 +7,7 @@ include/xtensor-python/pytensor.hpp include/xtensor-python/pyvectorize.hpp include/xtensor-python/xtensor_python_config.hpp include/xtensor-python/xtensor_type_caster_base.hpp -lib/cmake/xtensor-python/xtensor-pythonConfig.cmake -lib/cmake/xtensor-python/xtensor-pythonConfigVersion.cmake -lib/cmake/xtensor-python/xtensor-pythonTargets.cmake +share/cmake/xtensor-python/xtensor-pythonConfig.cmake +share/cmake/xtensor-python/xtensor-pythonConfigVersion.cmake +share/cmake/xtensor-python/xtensor-pythonTargets.cmake +share/pkgconfig/xtensor-python.pc diff --git a/math/xtensor/Makefile b/math/xtensor/Makefile index de14c6f3bb9b..a98b5cb5cb6a 100644 --- a/math/xtensor/Makefile +++ b/math/xtensor/Makefile @@ -1,5 +1,5 @@ PORTNAME= xtensor -DISTVERSION= 0.25.0 +DISTVERSION= 0.27.1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org @@ -18,7 +18,7 @@ TEST_DEPENDS= nlohmann-json>0:devel/nlohmann-json \ doctest>0:devel/doctest \ googletest>0:devel/googletest -USES= cmake:testing # 2 tests fail, see https://github.com/xtensor-stack/xtensor/issues/2722 +USES= cmake:testing USE_GITHUB= yes GH_ACCOUNT= xtensor-stack @@ -27,4 +27,6 @@ CMAKE_TESTING_ON= BUILD_TESTS NO_BUILD= yes NO_ARCH= yes +# tests as of 0.27.1: 100% tests passed, 0 tests failed out of 81 + .include <bsd.port.mk> diff --git a/math/xtensor/distinfo b/math/xtensor/distinfo index 25aac7f34028..d9d1f8404a1b 100644 --- a/math/xtensor/distinfo +++ b/math/xtensor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1708063969 -SHA256 (xtensor-stack-xtensor-0.25.0_GH0.tar.gz) = 32d5d9fd23998c57e746c375a544edf544b74f0a18ad6bc3c38cbba968d5e6c7 -SIZE (xtensor-stack-xtensor-0.25.0_GH0.tar.gz) = 1214069 +TIMESTAMP = 1760416559 +SHA256 (xtensor-stack-xtensor-0.27.1_GH0.tar.gz) = 117c192ae3b7c37c0156dedaa88038e0599a6b264666c3c6c2553154b500fe23 +SIZE (xtensor-stack-xtensor-0.27.1_GH0.tar.gz) = 1224405 diff --git a/math/xtensor/pkg-plist b/math/xtensor/pkg-plist index 1675a78d7ed1..c063a9d6ca54 100644 --- a/math/xtensor/pkg-plist +++ b/math/xtensor/pkg-plist @@ -1,77 +1,81 @@ +etc/xeus-cpp/tags.d/xtensor.json include/xtensor.hpp -include/xtensor/xaccessible.hpp -include/xtensor/xaccumulator.hpp -include/xtensor/xadapt.hpp -include/xtensor/xarray.hpp -include/xtensor/xassign.hpp -include/xtensor/xaxis_iterator.hpp -include/xtensor/xaxis_slice_iterator.hpp -include/xtensor/xblockwise_reducer.hpp -include/xtensor/xblockwise_reducer_functors.hpp -include/xtensor/xbroadcast.hpp -include/xtensor/xbuffer_adaptor.hpp -include/xtensor/xbuilder.hpp -include/xtensor/xchunked_array.hpp -include/xtensor/xchunked_assign.hpp -include/xtensor/xchunked_view.hpp -include/xtensor/xcomplex.hpp -include/xtensor/xcontainer.hpp -include/xtensor/xcsv.hpp -include/xtensor/xdynamic_view.hpp -include/xtensor/xeval.hpp -include/xtensor/xexception.hpp -include/xtensor/xexpression.hpp -include/xtensor/xexpression_holder.hpp -include/xtensor/xexpression_traits.hpp -include/xtensor/xfixed.hpp -include/xtensor/xfunction.hpp -include/xtensor/xfunctor_view.hpp -include/xtensor/xgenerator.hpp -include/xtensor/xhistogram.hpp -include/xtensor/xindex_view.hpp -include/xtensor/xinfo.hpp -include/xtensor/xio.hpp -include/xtensor/xiterable.hpp -include/xtensor/xiterator.hpp -include/xtensor/xjson.hpp -include/xtensor/xlayout.hpp -include/xtensor/xmanipulation.hpp -include/xtensor/xmasked_view.hpp -include/xtensor/xmath.hpp -include/xtensor/xmime.hpp -include/xtensor/xmultiindex_iterator.hpp -include/xtensor/xnoalias.hpp -include/xtensor/xnorm.hpp -include/xtensor/xnpy.hpp -include/xtensor/xoffset_view.hpp -include/xtensor/xoperation.hpp -include/xtensor/xoptional.hpp -include/xtensor/xoptional_assembly.hpp -include/xtensor/xoptional_assembly_base.hpp -include/xtensor/xoptional_assembly_storage.hpp -include/xtensor/xpad.hpp -include/xtensor/xrandom.hpp -include/xtensor/xreducer.hpp -include/xtensor/xrepeat.hpp -include/xtensor/xscalar.hpp -include/xtensor/xsemantic.hpp -include/xtensor/xset_operation.hpp -include/xtensor/xshape.hpp -include/xtensor/xslice.hpp -include/xtensor/xsort.hpp -include/xtensor/xstorage.hpp -include/xtensor/xstrided_view.hpp -include/xtensor/xstrided_view_base.hpp -include/xtensor/xstrides.hpp -include/xtensor/xtensor.hpp -include/xtensor/xtensor_config.hpp -include/xtensor/xtensor_forward.hpp -include/xtensor/xtensor_simd.hpp -include/xtensor/xutils.hpp -include/xtensor/xvectorize.hpp -include/xtensor/xview.hpp -include/xtensor/xview_utils.hpp +include/xtensor/chunk/xchunked_array.hpp +include/xtensor/chunk/xchunked_assign.hpp +include/xtensor/chunk/xchunked_view.hpp +include/xtensor/containers/xadapt.hpp +include/xtensor/containers/xarray.hpp +include/xtensor/containers/xbuffer_adaptor.hpp +include/xtensor/containers/xcontainer.hpp +include/xtensor/containers/xfixed.hpp +include/xtensor/containers/xscalar.hpp +include/xtensor/containers/xstorage.hpp +include/xtensor/containers/xtensor.hpp +include/xtensor/core/xaccessible.hpp +include/xtensor/core/xassign.hpp +include/xtensor/core/xeval.hpp +include/xtensor/core/xexpression.hpp +include/xtensor/core/xexpression_traits.hpp +include/xtensor/core/xfunction.hpp +include/xtensor/core/xiterable.hpp +include/xtensor/core/xiterator.hpp +include/xtensor/core/xlayout.hpp +include/xtensor/core/xmath.hpp +include/xtensor/core/xmultiindex_iterator.hpp +include/xtensor/core/xnoalias.hpp +include/xtensor/core/xoperation.hpp +include/xtensor/core/xsemantic.hpp +include/xtensor/core/xshape.hpp +include/xtensor/core/xstrides.hpp +include/xtensor/core/xtensor_config.hpp +include/xtensor/core/xtensor_forward.hpp +include/xtensor/core/xvectorize.hpp +include/xtensor/generators/xbuilder.hpp +include/xtensor/generators/xgenerator.hpp +include/xtensor/generators/xrandom.hpp +include/xtensor/io/xcsv.hpp +include/xtensor/io/xinfo.hpp +include/xtensor/io/xio.hpp +include/xtensor/io/xjson.hpp +include/xtensor/io/xmime.hpp +include/xtensor/io/xnpy.hpp +include/xtensor/misc/xcomplex.hpp +include/xtensor/misc/xexpression_holder.hpp +include/xtensor/misc/xfft.hpp +include/xtensor/misc/xhistogram.hpp +include/xtensor/misc/xmanipulation.hpp +include/xtensor/misc/xpad.hpp +include/xtensor/misc/xset_operation.hpp +include/xtensor/misc/xsort.hpp +include/xtensor/misc/xtl_concepts.hpp +include/xtensor/optional/xoptional.hpp +include/xtensor/optional/xoptional_assembly.hpp +include/xtensor/optional/xoptional_assembly_base.hpp +include/xtensor/optional/xoptional_assembly_storage.hpp +include/xtensor/reducers/xaccumulator.hpp +include/xtensor/reducers/xblockwise_reducer.hpp +include/xtensor/reducers/xblockwise_reducer_functors.hpp +include/xtensor/reducers/xnorm.hpp +include/xtensor/reducers/xreducer.hpp +include/xtensor/utils/xexception.hpp +include/xtensor/utils/xtensor_simd.hpp +include/xtensor/utils/xutils.hpp +include/xtensor/views/xaxis_iterator.hpp +include/xtensor/views/xaxis_slice_iterator.hpp +include/xtensor/views/xbroadcast.hpp +include/xtensor/views/xdynamic_view.hpp +include/xtensor/views/xfunctor_view.hpp +include/xtensor/views/xindex_view.hpp +include/xtensor/views/xmasked_view.hpp +include/xtensor/views/xoffset_view.hpp +include/xtensor/views/xrepeat.hpp +include/xtensor/views/xslice.hpp +include/xtensor/views/xstrided_view.hpp +include/xtensor/views/xstrided_view_base.hpp +include/xtensor/views/xview.hpp +include/xtensor/views/xview_utils.hpp share/cmake/xtensor/xtensorConfig.cmake share/cmake/xtensor/xtensorConfigVersion.cmake share/cmake/xtensor/xtensorTargets.cmake share/pkgconfig/xtensor.pc +share/xeus-cpp/tagfiles/xtensor.tag diff --git a/misc/crush/Makefile b/misc/crush/Makefile index 26fa326a6ab8..960e74cf0252 100644 --- a/misc/crush/Makefile +++ b/misc/crush/Makefile @@ -1,7 +1,6 @@ PORTNAME= crush DISTVERSIONPREFIX= v -DISTVERSION= 0.11.0 -PORTREVISION= 1 +DISTVERSION= 0.11.1 CATEGORIES= misc devel MAINTAINER= tagattie@FreeBSD.org diff --git a/misc/crush/distinfo b/misc/crush/distinfo index df6f9b34ce1e..c74b37620eb9 100644 --- a/misc/crush/distinfo +++ b/misc/crush/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1760432088 -SHA256 (go/misc_crush/crush-v0.11.0/v0.11.0.mod) = 3726515ee279e2c17845581dc346de2360b8476b9ebdc8093c125b032bf14894 -SIZE (go/misc_crush/crush-v0.11.0/v0.11.0.mod) = 8056 -SHA256 (go/misc_crush/crush-v0.11.0/v0.11.0.zip) = 9f945743b9047ce64f5d08850d6de4769b1b045a4a68aecb6e47140505af5cdf -SIZE (go/misc_crush/crush-v0.11.0/v0.11.0.zip) = 765491 +TIMESTAMP = 1760537032 +SHA256 (go/misc_crush/crush-v0.11.1/v0.11.1.mod) = 3726515ee279e2c17845581dc346de2360b8476b9ebdc8093c125b032bf14894 +SIZE (go/misc_crush/crush-v0.11.1/v0.11.1.mod) = 8056 +SHA256 (go/misc_crush/crush-v0.11.1/v0.11.1.zip) = 5655a9ed02ddfa438bebe64ea57cbabe5495206b11fd3ce4bd0b93a31c95f554 +SIZE (go/misc_crush/crush-v0.11.1/v0.11.1.zip) = 765493 diff --git a/misc/fastscapelib/Makefile b/misc/fastscapelib/Makefile index f12e771e44b3..acf18d4c7001 100644 --- a/misc/fastscapelib/Makefile +++ b/misc/fastscapelib/Makefile @@ -1,6 +1,6 @@ PORTNAME= fastscapelib DISTVERSIONPREFIX= v -DISTVERSION= 0.2.2 +DISTVERSION= 0.3.0 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org @@ -10,8 +10,10 @@ WWW= https://fastscapelib.readthedocs.io/en/latest/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= xtensor>0:math/xtensor -RUN_DEPENDS= xtensor>0:math/xtensor +BUILD_DEPENDS= healpix>0:science/healpix \ + xtensor>0:math/xtensor +RUN_DEPENDS= healpix>0:science/healpix \ + xtensor>0:math/xtensor USES= cmake:testing @@ -22,4 +24,6 @@ CMAKE_TESTING_ON= FS_BUILD_TESTS NO_ARCH= yes +# tests as of 0.3.0: 100% tests passed, 0 tests failed out of 162 + .include <bsd.port.mk> diff --git a/misc/fastscapelib/distinfo b/misc/fastscapelib/distinfo index 0f410933e158..b9a8b539f8e0 100644 --- a/misc/fastscapelib/distinfo +++ b/misc/fastscapelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1717650943 -SHA256 (fastscape-lem-fastscapelib-v0.2.2_GH0.tar.gz) = 21cac72a0586d1ceb1080eadbb60a7b7e81a4d6a7b56edbc696f92ff87fc6566 -SIZE (fastscape-lem-fastscapelib-v0.2.2_GH0.tar.gz) = 537207 +TIMESTAMP = 1760501532 +SHA256 (fastscape-lem-fastscapelib-v0.3.0_GH0.tar.gz) = bfd3e8549a9bdd3ae3f0ba0ce4b1d8767d2bb8d163fd6be5d4beb35a9a36bcd0 +SIZE (fastscape-lem-fastscapelib-v0.3.0_GH0.tar.gz) = 733594 diff --git a/misc/fastscapelib/pkg-plist b/misc/fastscapelib/pkg-plist index 96e75d975c40..4ea250a51ea2 100644 --- a/misc/fastscapelib/pkg-plist +++ b/misc/fastscapelib/pkg-plist @@ -4,20 +4,26 @@ include/fastscapelib/eroders/spl.hpp include/fastscapelib/flow/basin_graph.hpp include/fastscapelib/flow/flow_graph.hpp include/fastscapelib/flow/flow_graph_impl.hpp +include/fastscapelib/flow/flow_kernel.hpp include/fastscapelib/flow/flow_operator.hpp include/fastscapelib/flow/flow_router.hpp include/fastscapelib/flow/flow_snapshot.hpp include/fastscapelib/flow/sink_resolver.hpp include/fastscapelib/grid/base.hpp +include/fastscapelib/grid/healpix_grid.hpp include/fastscapelib/grid/profile_grid.hpp include/fastscapelib/grid/raster_grid.hpp include/fastscapelib/grid/structured_grid.hpp include/fastscapelib/grid/trimesh.hpp include/fastscapelib/utils/consts.hpp +include/fastscapelib/utils/containers.hpp +include/fastscapelib/utils/eigen_containers.hpp +include/fastscapelib/utils/impl/thread_pool_inl.hpp include/fastscapelib/utils/iterators.hpp +include/fastscapelib/utils/thread_pool.hpp include/fastscapelib/utils/union_find.hpp include/fastscapelib/utils/utils.hpp -include/fastscapelib/utils/xtensor_utils.hpp +include/fastscapelib/utils/xtensor_containers.hpp include/fastscapelib/version.hpp lib/cmake/fastscapelib/fastscapelibConfig.cmake lib/cmake/fastscapelib/fastscapelibConfigVersion.cmake diff --git a/misc/openhab-addons/Makefile b/misc/openhab-addons/Makefile index bdce1ce24bdb..f3829086b187 100644 --- a/misc/openhab-addons/Makefile +++ b/misc/openhab-addons/Makefile @@ -1,5 +1,5 @@ PORTNAME= openhab-addons -PORTVERSION= 4.3.7 +PORTVERSION= 4.3.8 CATEGORIES= misc java MASTER_SITES= https://openhab.jfrog.io/artifactory/libs-release-local/org/openhab/distro/openhab-addons/${PORTVERSION}/ DISTNAME= openhab-addons-${PORTVERSION} diff --git a/misc/openhab-addons/distinfo b/misc/openhab-addons/distinfo index d11ae6f3bcc1..2766b6a1bd91 100644 --- a/misc/openhab-addons/distinfo +++ b/misc/openhab-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755848785 -SHA256 (openhab-addons-4.3.7.kar) = f87b4df487a079e534b045163183f063040e99820c96b0e368dd80450cb5c822 -SIZE (openhab-addons-4.3.7.kar) = 452463749 +TIMESTAMP = 1760598868 +SHA256 (openhab-addons-4.3.8.kar) = 7341355c9ff24b0e1dd6214cd590952d6cdc34659b4e2a66240e20f913ebf0a0 +SIZE (openhab-addons-4.3.8.kar) = 453077645 diff --git a/misc/openhab/Makefile b/misc/openhab/Makefile index 5d79bd4c57f7..afcfa820b0fa 100644 --- a/misc/openhab/Makefile +++ b/misc/openhab/Makefile @@ -1,7 +1,6 @@ PORTNAME= openhab -PORTVERSION= 4.3.7 +PORTVERSION= 4.3.8 PORTREVISION= 0 -# For those waiting for OpenHAB 5: it has 3rd party components which do an OS check, FreeBSD is not supported CATEGORIES= misc java MASTER_SITES= https://openhab.jfrog.io/artifactory/libs-release-local/org/openhab/distro/openhab/${PORTVERSION}/ DISTNAME= openhab-${PORTVERSION} diff --git a/misc/openhab/distinfo b/misc/openhab/distinfo index dc732f02c737..84a573988869 100644 --- a/misc/openhab/distinfo +++ b/misc/openhab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755847983 -SHA256 (openhab-4.3.7.zip) = 181f004b0367f5219437466c1fe6833561110d01ce6be315a92c8e433c8c2dfb -SIZE (openhab-4.3.7.zip) = 111527134 +TIMESTAMP = 1760598044 +SHA256 (openhab-4.3.8.zip) = c2e29ac6f564739430bb787c0a8bd31d5632f5926e616470515de5c53c75917c +SIZE (openhab-4.3.8.zip) = 111537227 diff --git a/misc/py-fastscapelib/Makefile b/misc/py-fastscapelib/Makefile index 42412318de85..9bbc7d6f603c 100644 --- a/misc/py-fastscapelib/Makefile +++ b/misc/py-fastscapelib/Makefile @@ -1,6 +1,6 @@ PORTNAME= fastscapelib DISTVERSIONPREFIX= v -DISTVERSION= 0.2.2 +DISTVERSION= 0.3.0 CATEGORIES= misc PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,9 +12,6 @@ WWW= https://fastscapelib.readthedocs.io/en/latest/ \ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_13= compilation fails with clang-19, see https://github.com/fastscape-lem/fastscapelib/issues/168 -BROKEN_FreeBSD_15= compilation fails with clang-19, see https://github.com/fastscape-lem/fastscapelib/issues/168 - BUILD_DEPENDS= cmake:devel/cmake-core \ xtensor>0:math/xtensor \ xtensor-python>0:math/xtensor-python \ @@ -23,6 +20,7 @@ BUILD_DEPENDS= cmake:devel/cmake-core \ ${PYTHON_PKGNAMEPREFIX}pyproject-metadata>0:devel/py-pyproject-metadata@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}scikit-build>0:devel/py-scikit-build@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}scikit-build-core>0:devel/py-scikit-build-core@${PY_FLAVOR} +LIB_DEPENDS= libhealpix_cxx.so:science/healpix RUN_DEPENDS= ${PYNUMPY} USES= python @@ -33,4 +31,6 @@ GH_ACCOUNT= fastscape-lem TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} +# tests as of 0.3.0: 174 passed in 131.81s (0:02:11) + .include <bsd.port.mk> diff --git a/misc/py-fastscapelib/distinfo b/misc/py-fastscapelib/distinfo index 0acea30dc66f..18edab22ebca 100644 --- a/misc/py-fastscapelib/distinfo +++ b/misc/py-fastscapelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1717651075 -SHA256 (fastscape-lem-fastscapelib-v0.2.2_GH0.tar.gz) = 21cac72a0586d1ceb1080eadbb60a7b7e81a4d6a7b56edbc696f92ff87fc6566 -SIZE (fastscape-lem-fastscapelib-v0.2.2_GH0.tar.gz) = 537207 +TIMESTAMP = 1760416384 +SHA256 (fastscape-lem-fastscapelib-v0.3.0_GH0.tar.gz) = bfd3e8549a9bdd3ae3f0ba0ce4b1d8767d2bb8d163fd6be5d4beb35a9a36bcd0 +SIZE (fastscape-lem-fastscapelib-v0.3.0_GH0.tar.gz) = 733594 diff --git a/misc/py-fastscapelib/files/patch-pyproject.toml b/misc/py-fastscapelib/files/patch-pyproject.toml index 703b73ab414a..fb123612f4a7 100644 --- a/misc/py-fastscapelib/files/patch-pyproject.toml +++ b/misc/py-fastscapelib/files/patch-pyproject.toml @@ -1,10 +1,12 @@ ---- pyproject.toml.orig 2023-10-10 18:00:46 UTC +--- pyproject.toml.orig 2025-06-25 14:33:51 UTC +++ pyproject.toml -@@ -4,7 +4,7 @@ requires = [ - "pybind11", - # TODO: replace by "numpy>=1.25.0,<2" when dropping py3.8 support. - # https://github.com/scipy/oldest-supported-numpy/issues/76 -- "oldest-supported-numpy", +@@ -4,8 +4,8 @@ requires = [ + # pybind11 2.12 added support for numpy 2.0 + # pybind11 doesn't require numpy at build time, but xtensor-python does! + # packages built with numpy 2.x are compatible with numpy 1.xx +- "pybind11>=2.12,<3", +- "numpy>=2.0,<3", ++ "pybind11", + "numpy", ] build-backend = "scikit_build_core.build" diff --git a/misc/py-litellm-proxy-extras/Makefile b/misc/py-litellm-proxy-extras/Makefile index 8a592dbf09aa..d2e6c22d1e54 100644 --- a/misc/py-litellm-proxy-extras/Makefile +++ b/misc/py-litellm-proxy-extras/Makefile @@ -1,5 +1,5 @@ PORTNAME= litellm-proxy-extras -DISTVERSION= 0.2.25 +DISTVERSION= 0.2.27 CATEGORIES= misc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-litellm-proxy-extras/distinfo b/misc/py-litellm-proxy-extras/distinfo index 40206e668abf..a707c4c62d28 100644 --- a/misc/py-litellm-proxy-extras/distinfo +++ b/misc/py-litellm-proxy-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759721647 -SHA256 (litellm_proxy_extras-0.2.25.tar.gz) = 9cf363570a5dc3349bea6ad1fba00ce9aeb90232fc69adc32881e53bec2cbf8f -SIZE (litellm_proxy_extras-0.2.25.tar.gz) = 15884 +TIMESTAMP = 1760529151 +SHA256 (litellm_proxy_extras-0.2.27.tar.gz) = 1b874fd025486647bdae6aef4c8bd2842a98afa2fa748408ff9cd967afdf7f10 +SIZE (litellm_proxy_extras-0.2.27.tar.gz) = 16865 diff --git a/misc/py-litellm/Makefile b/misc/py-litellm/Makefile index 39123908a3e6..f38713c71031 100644 --- a/misc/py-litellm/Makefile +++ b/misc/py-litellm/Makefile @@ -1,5 +1,5 @@ PORTNAME= litellm -DISTVERSION= 1.77.7 +DISTVERSION= 1.78.0 CATEGORIES= misc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-litellm/distinfo b/misc/py-litellm/distinfo index 54f2d11c9224..9e24f888c5ee 100644 --- a/misc/py-litellm/distinfo +++ b/misc/py-litellm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759717562 -SHA256 (litellm-1.77.7.tar.gz) = e3398fb2575b98726e787c0a1481daed5938d58cafdcd96fbca80c312221af3e -SIZE (litellm-1.77.7.tar.gz) = 10401706 +TIMESTAMP = 1760514012 +SHA256 (litellm-1.78.0.tar.gz) = 020e40e0d6e16009bb3a6b156d4c1d98cb5c33704aa340fdf9ffd014bfd31f3b +SIZE (litellm-1.78.0.tar.gz) = 10684595 diff --git a/misc/radio_datetime_analyzer/Makefile b/misc/radio_datetime_analyzer/Makefile index bc493dca9959..451bcb28f657 100644 --- a/misc/radio_datetime_analyzer/Makefile +++ b/misc/radio_datetime_analyzer/Makefile @@ -1,6 +1,5 @@ PORTNAME= radio_datetime_analyzer -DISTVERSION= 1.1.0 -PORTREVISION= 3 +DISTVERSION= 1.2.0 CATEGORIES= misc MASTER_SITES= https://codeberg.org/rene0/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} # prevent USES=cargo from overriding default DISTFILES diff --git a/misc/radio_datetime_analyzer/Makefile.crates b/misc/radio_datetime_analyzer/Makefile.crates index e534c2bdf0d3..2baa44ae0212 100644 --- a/misc/radio_datetime_analyzer/Makefile.crates +++ b/misc/radio_datetime_analyzer/Makefile.crates @@ -1,4 +1,8 @@ -CARGO_CRATES= dcf77_utils-1.1.0 \ - getopt-1.1.7 \ - msf60_utils-1.1.0 \ - radio_datetime_utils-1.1.0 +CARGO_CRATES= byteorder-1.5.0 \ + dcf77_utils-1.2.0 \ + getopt-1.1.9 \ + hash32-0.3.1 \ + heapless-0.8.0 \ + msf60_utils-1.2.0 \ + radio_datetime_utils-1.2.0 \ + stable_deref_trait-1.2.1 diff --git a/misc/radio_datetime_analyzer/distinfo b/misc/radio_datetime_analyzer/distinfo index 86df18ab4467..c5fcadb6fd99 100644 --- a/misc/radio_datetime_analyzer/distinfo +++ b/misc/radio_datetime_analyzer/distinfo @@ -1,11 +1,19 @@ -TIMESTAMP = 1749073004 -SHA256 (radio_datetime_analyzer-1.1.0.tar.gz) = 590f6df204232c37cfde943f1e4718b076e913ec45c6192083adb5e22d93b00f -SIZE (radio_datetime_analyzer-1.1.0.tar.gz) = 10947 -SHA256 (rust/crates/dcf77_utils-1.1.0.crate) = f5b1ae3c5f0fbb87a9187ca0f1cb665f7444f481f77940131c4737c17bc845e8 -SIZE (rust/crates/dcf77_utils-1.1.0.crate) = 11723 -SHA256 (rust/crates/getopt-1.1.7.crate) = 2a9e40b04867f241a94b98f4649825925553807ae34f07b953a590270f45d9d4 -SIZE (rust/crates/getopt-1.1.7.crate) = 8037 -SHA256 (rust/crates/msf60_utils-1.1.0.crate) = 8aa32aa811b514329ceb1af4ff3d744bb96a5e18af8e188215deefcc1f13c6d6 -SIZE (rust/crates/msf60_utils-1.1.0.crate) = 14545 -SHA256 (rust/crates/radio_datetime_utils-1.1.0.crate) = bbc9a0dfa3cff91f691dbb878c8856d3096686786662858225f8102809a32701 -SIZE (rust/crates/radio_datetime_utils-1.1.0.crate) = 17044 +TIMESTAMP = 1760475760 +SHA256 (radio_datetime_analyzer-1.2.0.tar.gz) = e5f825acec996a14af7aaef32293dfda2f926809a0e7753a2863df34a667aaa4 +SIZE (radio_datetime_analyzer-1.2.0.tar.gz) = 35709 +SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b +SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 +SHA256 (rust/crates/dcf77_utils-1.2.0.crate) = e6cf7f6ce3af52b8251ecff57d519c67a5aadcd1c91f4db5651760d4e65427f3 +SIZE (rust/crates/dcf77_utils-1.2.0.crate) = 12154 +SHA256 (rust/crates/getopt-1.1.9.crate) = 66eb69f29cb9773ca399122b247020f929dde18de809a27b0250be02bbf9fa5e +SIZE (rust/crates/getopt-1.1.9.crate) = 7780 +SHA256 (rust/crates/hash32-0.3.1.crate) = 47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606 +SIZE (rust/crates/hash32-0.3.1.crate) = 10273 +SHA256 (rust/crates/heapless-0.8.0.crate) = 0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad +SIZE (rust/crates/heapless-0.8.0.crate) = 77802 +SHA256 (rust/crates/msf60_utils-1.2.0.crate) = 8f2c91e5fe80e6ffc85ebfb6ade504c19e4a68c2fef9c89eba81bba6129898b4 +SIZE (rust/crates/msf60_utils-1.2.0.crate) = 14690 +SHA256 (rust/crates/radio_datetime_utils-1.2.0.crate) = cb02ad60d277e3a56f109ef51bb61c28ee4222ed23521218414b8aee8f2756dc +SIZE (rust/crates/radio_datetime_utils-1.2.0.crate) = 21327 +SHA256 (rust/crates/stable_deref_trait-1.2.1.crate) = 6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596 +SIZE (rust/crates/stable_deref_trait-1.2.1.crate) = 8186 diff --git a/misc/radio_datetime_analyzer/pkg-descr b/misc/radio_datetime_analyzer/pkg-descr index 20ad76ac1ed8..5aa2ba373629 100644 --- a/misc/radio_datetime_analyzer/pkg-descr +++ b/misc/radio_datetime_analyzer/pkg-descr @@ -1,9 +1,16 @@ -Analyzer for log files of time stations. +Analyzer for log files of time stations + +The program takes a minimum of two parameters: -The program takes two parameters: - the station name of the file to analyze (as argument to the -s option) - the name of the file to analyze (as argument to the -f option) +The -h option provides a short help message. + +Currently supported stations are dcf77 and msf. DCF77 is the German time +station at 77.5 kHz, and MSF is the British time station at 60 kHz. Some +information these stations can be found at: -Currently supported stations are DCF77 and MSF. +- https://en.wikipedia.org/wiki/DCF77 +- https://en.wikipedia.org/wiki/Time_from_NPL_(MSF) See the enclosed README.md for more information. diff --git a/multimedia/mediamtx/Makefile b/multimedia/mediamtx/Makefile index a97b79d97e5c..386122dc390e 100644 --- a/multimedia/mediamtx/Makefile +++ b/multimedia/mediamtx/Makefile @@ -1,7 +1,6 @@ PORTNAME= mediamtx DISTVERSIONPREFIX= v -DISTVERSION= 1.15.1 -PORTREVISION= 2 +DISTVERSION= 1.15.2 CATEGORIES= multimedia net MASTER_SITES+= https://github.com/video-dev/hls.js/releases/download/v1.6.13/ DISTFILES+= release.zip diff --git a/multimedia/mediamtx/distinfo b/multimedia/mediamtx/distinfo index 848f5a64feed..fa684540372b 100644 --- a/multimedia/mediamtx/distinfo +++ b/multimedia/mediamtx/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1758842192 -SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.1/release.zip) = 0212e8ab83997218c56450a424ae754c63547a8cc88f5338cce438381623a414 -SIZE (go/multimedia_mediamtx/mediamtx-v1.15.1/release.zip) = 5577940 -SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.1/v1.15.1.mod) = 27a2c5ce507876628976b43e3d4198cf7b079af5bb6b742ac29c7961b35cbf5c -SIZE (go/multimedia_mediamtx/mediamtx-v1.15.1/v1.15.1.mod) = 4375 -SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.1/v1.15.1.zip) = ae10ba7fbe1bfa3f7c1986ac3fff8e0cb7c3d275f53c911e771881f15b36f318 -SIZE (go/multimedia_mediamtx/mediamtx-v1.15.1/v1.15.1.zip) = 572528 +TIMESTAMP = 1760398684 +SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.2/release.zip) = 0212e8ab83997218c56450a424ae754c63547a8cc88f5338cce438381623a414 +SIZE (go/multimedia_mediamtx/mediamtx-v1.15.2/release.zip) = 5577940 +SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.2/v1.15.2.mod) = 9c2df617f17dde47c595f93e7a78d933cc2d23682e0797f5e7cd61e97486f2ab +SIZE (go/multimedia_mediamtx/mediamtx-v1.15.2/v1.15.2.mod) = 4490 +SHA256 (go/multimedia_mediamtx/mediamtx-v1.15.2/v1.15.2.zip) = fdb6c612eaa72f9e8a77a2aff0715864fe32bc0a9d59bf80d266f01ac164e153 +SIZE (go/multimedia_mediamtx/mediamtx-v1.15.2/v1.15.2.zip) = 581917 diff --git a/net-im/linux-discord/Makefile b/net-im/linux-discord/Makefile index a48a53b3d626..3245f2ef1382 100644 --- a/net-im/linux-discord/Makefile +++ b/net-im/linux-discord/Makefile @@ -1,5 +1,5 @@ PORTNAME= discord -DISTVERSION= 0.0.111 +DISTVERSION= 0.0.112 PORTEPOCH= 1 CATEGORIES= net-im MASTER_SITES= https://dl.discordapp.net/apps/linux/${DISTVERSION}/ diff --git a/net-im/linux-discord/distinfo b/net-im/linux-discord/distinfo index 8a1af5aa9c51..adb894fc0108 100644 --- a/net-im/linux-discord/distinfo +++ b/net-im/linux-discord/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759217490 -SHA256 (discord-0.0.111.tar.gz) = a3853a8b6db7020b5bb7537dbf418efc8bf1ebc390717fcdde61d7517da0aee0 -SIZE (discord-0.0.111.tar.gz) = 105410604 +TIMESTAMP = 1760520577 +SHA256 (discord-0.0.112.tar.gz) = c8b0398f2cd4a217db17b818e28a7f214a4faa8b611a7dceba9b5e21e94b4fc2 +SIZE (discord-0.0.112.tar.gz) = 105409929 diff --git a/net/gerbera/files/patch-src_web_config__load.cc b/net/gerbera/files/patch-src_web_config__load.cc new file mode 100644 index 000000000000..34ff795ddafc --- /dev/null +++ b/net/gerbera/files/patch-src_web_config__load.cc @@ -0,0 +1,14 @@ +--- src/web/config_load.cc.orig 2025-08-15 13:41:10 UTC ++++ src/web/config_load.cc +@@ -150,7 +150,11 @@ void Web::ConfigLoad::setValue(Json::Value& item, cons + template <typename T> + void Web::ConfigLoad::setValue(Json::Value& item, const T& value) + { ++#if FMT_VERSION >= 120000 ++ static_assert(fmt::is_formattable<T, fmt::format_context>::value, "T must be formattable"); ++#else + static_assert(fmt::has_formatter<T, fmt::format_context>::value, "T must be formattable"); ++#endif + item[CONFIG_LOAD_VALUE] = fmt::to_string(value); + } + diff --git a/net/openldap25-server/Makefile b/net/openldap25-server/Makefile index 0deaa6d39afb..350269ff8694 100644 --- a/net/openldap25-server/Makefile +++ b/net/openldap25-server/Makefile @@ -116,6 +116,7 @@ OPTIONS_DEFINE+= ARGON2 OPTIONS_DEFINE+= LLOADD OPTIONS_EXCLUDE_FreeBSD_15= SMBPWD # Only works with Heimdal +OPTIONS_EXCLUDE_FreeBSD_16= SMBPWD # Only works with Heimdal OPTIONS_DEFAULT+= ${BKNDS_DEFAULTS} OPTIONS_DEFAULT+= ${OPTIONS_GROUP_OVLYS} diff --git a/net/openldap26-server/Makefile b/net/openldap26-server/Makefile index b05c13c76075..cc3ece50f521 100644 --- a/net/openldap26-server/Makefile +++ b/net/openldap26-server/Makefile @@ -117,6 +117,7 @@ OPTIONS_DEFINE+= ARGON2 OPTIONS_DEFINE+= LLOADD OPTIONS_EXCLUDE_FreeBSD_15= SMBPWD # Only works with Heimdal +OPTIONS_EXCLUDE_FreeBSD_16= SMBPWD # Only works with Heimdal OPTIONS_DEFAULT+= ${BKNDS_DEFAULTS} OPTIONS_DEFAULT+= ${OPTIONS_GROUP_OVLYS} diff --git a/net/py-zeep/Makefile b/net/py-zeep/Makefile index 6915e3ce8bb3..902e9abd0f4a 100644 --- a/net/py-zeep/Makefile +++ b/net/py-zeep/Makefile @@ -1,6 +1,5 @@ PORTNAME= zeep -DISTVERSION= 4.3.1 -PORTREVISION= 2 +DISTVERSION= 4.3.2 CATEGORIES= net python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-zeep/distinfo b/net/py-zeep/distinfo index 2ee02abb9965..bceee428dd7d 100644 --- a/net/py-zeep/distinfo +++ b/net/py-zeep/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1729330253 -SHA256 (zeep-4.3.1.tar.gz) = f45385e9e1b09d5550e0f51ab9fa7c6842713cab7194139372fd82a99c56a06e -SIZE (zeep-4.3.1.tar.gz) = 166468 +TIMESTAMP = 1760457477 +SHA256 (zeep-4.3.2.tar.gz) = 1a23a667ce9d73a0dbfdf15745bfa2b7ab0b6402135c0cd5067574838398e0e6 +SIZE (zeep-4.3.2.tar.gz) = 166687 diff --git a/ports-mgmt/poudriere-devel/Makefile b/ports-mgmt/poudriere-devel/Makefile index f705989bd412..c63849f9e8c4 100644 --- a/ports-mgmt/poudriere-devel/Makefile +++ b/ports-mgmt/poudriere-devel/Makefile @@ -1,6 +1,6 @@ PORTNAME= poudriere -DISTVERSION= 3.4.99.20251013 -PORTREVISION= 1 +DISTVERSION= 3.4.99.20251014 +PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ @@ -17,7 +17,7 @@ CONFLICTS_INSTALL= poudriere USE_GITHUB= yes GH_ACCOUNT= freebsd -GH_TAGNAME= 3.3.0-2186-gdb737522d +GH_TAGNAME= 3.3.0-2209-g282bb7247 GNU_CONFIGURE= yes ETCDIR= ${PREFIX}/etc/poudriere.d diff --git a/ports-mgmt/poudriere-devel/distinfo b/ports-mgmt/poudriere-devel/distinfo index 84a7927f6d13..b177df903f28 100644 --- a/ports-mgmt/poudriere-devel/distinfo +++ b/ports-mgmt/poudriere-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760367143 -SHA256 (freebsd-poudriere-3.4.99.20251013-3.3.0-2186-gdb737522d_GH0.tar.gz) = a5e2cee424da3c28670f5642e1adb94f16d1a19e088d6312d5a46d0b5e2af7c4 -SIZE (freebsd-poudriere-3.4.99.20251013-3.3.0-2186-gdb737522d_GH0.tar.gz) = 5791450 +TIMESTAMP = 1760503468 +SHA256 (freebsd-poudriere-3.4.99.20251014-3.3.0-2209-g282bb7247_GH0.tar.gz) = 6e818620356111d2530109a601cd5fd50e3b995380ac1553c6dd97827084ee3c +SIZE (freebsd-poudriere-3.4.99.20251014-3.3.0-2209-g282bb7247_GH0.tar.gz) = 5793201 diff --git a/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_common.sh b/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_common.sh deleted file mode 100644 index 09f5aa5c9b34..000000000000 --- a/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_common.sh +++ /dev/null @@ -1,11 +0,0 @@ ---- src/share/poudriere/common.sh.orig 2025-10-13 14:51:41 UTC -+++ src/share/poudriere/common.sh -@@ -993,7 +993,7 @@ jstart() { - jail -c persist "name=${name:?}" \ - "path=${mpath:?}" \ - "host.hostname=${BUILDER_HOSTNAME-${name}}" \ -- "${network}" ${JAIL_PARAMS-} -+ ${network} ${JAIL_PARAMS-} - # Allow networking in -n jail - jail -c persist "name=${name}-n" \ - "path=${mpath:?}" \ diff --git a/ports-mgmt/poudriere-devel/pkg-plist b/ports-mgmt/poudriere-devel/pkg-plist index 7b6c76761eae..f024cc384f39 100644 --- a/ports-mgmt/poudriere-devel/pkg-plist +++ b/ports-mgmt/poudriere-devel/pkg-plist @@ -10,7 +10,6 @@ libexec/poudriere/cpdup libexec/poudriere/dirempty libexec/poudriere/dirwatch libexec/poudriere/locked_mkdir -libexec/poudriere/lockf libexec/poudriere/nc libexec/poudriere/poudriered libexec/poudriere/ptsort diff --git a/print/brlaser/Makefile b/print/brlaser/Makefile index 9f2aa4fdbc5b..096de07ee89c 100644 --- a/print/brlaser/Makefile +++ b/print/brlaser/Makefile @@ -1,6 +1,6 @@ PORTNAME= brlaser DISTVERSIONPREFIX= v -DISTVERSION= 6.2.7 +DISTVERSION= 6.2.8 CATEGORIES= print MAINTAINER= madpilot@FreeBSD.org diff --git a/print/brlaser/distinfo b/print/brlaser/distinfo index bcb9c3c8d184..af9b34cc7190 100644 --- a/print/brlaser/distinfo +++ b/print/brlaser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1737547964 -SHA256 (Owl-Maintain-brlaser-v6.2.7_GH0.tar.gz) = e67c5726fc1fe53574c2e8b5f72634f1359d0f53586a555eb2489fafd7c81640 -SIZE (Owl-Maintain-brlaser-v6.2.7_GH0.tar.gz) = 27306 +TIMESTAMP = 1760469525 +SHA256 (Owl-Maintain-brlaser-v6.2.8_GH0.tar.gz) = 16dae855aa7fff0eef0c05398fab37678243d7d610fa5f9af0d3a2cc9bf08cb0 +SIZE (Owl-Maintain-brlaser-v6.2.8_GH0.tar.gz) = 29401 diff --git a/print/paps/Makefile b/print/paps/Makefile index 50d69803b789..2afeb28c7921 100644 --- a/print/paps/Makefile +++ b/print/paps/Makefile @@ -1,15 +1,16 @@ PORTNAME= paps -PORTVERSION= 0.8.0 -DISTVERSIONPREFIX= v +DISTVERSION= 0.8.0 PORTREVISION= 3 CATEGORIES= print +MASTER_SITES= https://github.com/dov/${PORTNAME}/releases/download/v${DISTVERSION}/ -PATCH_SITES= ${WWW}/commit/ -PATCHFILES+= e9270aaac5e0b8018a6fad9a562ee48e7b2c3113.patch:-p1 # https://github.com/dov/paps/pull/71 +PATCH_SITES= https://github.com/dov/paps/commit/ +PATCHFILES= e9270aaac5e0b8018a6fad9a562ee48e7b2c3113.patch:-p1 \ + a26a20d7ca3feb08476a8a19fd97c3ececcc1e2e.patch:-p1 MAINTAINER= ports@FreeBSD.org COMMENT= UTF-8 to PostScript converter using Pango -WWW= https://github.com/${GH_ACCOUNT}/${GH_PROJECT} +WWW= https://github.com/dov/paps LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING.LIB @@ -18,18 +19,13 @@ BROKEN_i386= compilation fails, see https://github.com/dov/paps/issues/60 LIB_DEPENDS= libfmt.so:devel/libfmt -USES= cmake:indirect compiler:c++17-lang meson gnome pkgconfig python:env shebangfix -USE_CXXSTD= c++17 -USE_GITHUB= yes -GH_ACCOUNT= dov -USE_GNOME= cairo pango - +USES= compiler:c++17-lang meson gnome pkgconfig python:env,run shebangfix SHEBANG_FILES= ${WRKSRC}/scripts/src-to-paps +USE_GNOME= cairo pango -PLIST_FILES= bin/paps share/man/man1/paps.1.gz - -post-install: - ${ECHO_CMD} "bin/src-to-paps" >> ${TMPPLIST} - ${ECHO_CMD} "share/paps/pango_markup.outlang" >> ${TMPPLIST} +PLIST_FILES= bin/paps \ + bin/src-to-paps \ + share/man/man1/paps.1.gz \ + share/paps/pango_markup.outlang .include <bsd.port.mk> diff --git a/print/paps/distinfo b/print/paps/distinfo index 45fc12eeb69f..fce676bd92d0 100644 --- a/print/paps/distinfo +++ b/print/paps/distinfo @@ -1,5 +1,7 @@ -TIMESTAMP = 1736611510 -SHA256 (dov-paps-v0.8.0_GH0.tar.gz) = 8fd8db04e6f8c5c164806d2c1b5fea6096daf583f83f06d1e4813ea61edc291f -SIZE (dov-paps-v0.8.0_GH0.tar.gz) = 75685 +TIMESTAMP = 1760402841 +SHA256 (paps-0.8.0.tar.gz) = bb5a826db364117a5ae79c833c4a000197f3b5b3eff10e31fb1513a583f96ff2 +SIZE (paps-0.8.0.tar.gz) = 224643 SHA256 (e9270aaac5e0b8018a6fad9a562ee48e7b2c3113.patch) = ed97ae7128f774b2f4d2f6ee31212ac53ba9c2c6d60379bf4486c61e3f347365 SIZE (e9270aaac5e0b8018a6fad9a562ee48e7b2c3113.patch) = 1846 +SHA256 (a26a20d7ca3feb08476a8a19fd97c3ececcc1e2e.patch) = c477a86e961adaf5f8b1c7e53aeb7f5a08c9c1a2ee64c5729dc2b4a141f0b344 +SIZE (a26a20d7ca3feb08476a8a19fd97c3ececcc1e2e.patch) = 1042 diff --git a/science/arbor/Makefile b/science/arbor/Makefile index d2d6e0cf6ef2..2251d579cd4b 100644 --- a/science/arbor/Makefile +++ b/science/arbor/Makefile @@ -12,8 +12,8 @@ WWW= https://arbor-sim.org/ \ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_15= compilation fails with clang-19, see https://github.com/arbor-sim/arbor/issues/2424 -BROKEN_armv7= compilation fails: unknown type name 'float64x2_t' +BROKEN= compilation fails with clang-19, see https://github.com/arbor-sim/arbor/issues/2424 +#BROKEN_armv7= compilation fails: unknown type name 'float64x2_t' BUILD_DEPENDS= bash:shells/bash \ libfmt>0:devel/libfmt \ diff --git a/science/healpix/Makefile b/science/healpix/Makefile index 92f6cbda719f..7505dc0033bc 100644 --- a/science/healpix/Makefile +++ b/science/healpix/Makefile @@ -1,14 +1,15 @@ PORTNAME= healpix DISTVERSION= 3.50 DISTVERSIONSUFFIX= _2018Dec10 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science MASTER_SITES= SF/${PORTNAME}/Healpix_${DISTVERSION}/ DISTNAME= Healpix_${DISTVERSIONFULL} MAINTAINER= yuri@FreeBSD.org COMMENT= Software for pixelization, visualization, etc of data on the sphere -WWW= https://healpix.jpl.nasa.gov/ +WWW= https://healpix.sourceforge.io/ + #https://healpix.jpl.nasa.gov/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING @@ -23,9 +24,12 @@ cxx_PLIST= ${.CURDIR}/pkg-plist-cxx c_PLIST= ${.CURDIR}/pkg-plist-c USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig +USE_LDCONFIG= yes + GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static -USE_LDCONFIG= yes + +LDFLAGS+= -lomp WRKSRC= ${WRKDIR}/Healpix_${DISTVERSION} AUTORECONF_WRKSRC= ${WRKSRC}/src/${FLAVOR:S/^c$/C/}/autotools diff --git a/science/highfive/Makefile b/science/highfive/Makefile index b35fd3ff30ae..2dcc0c740d0c 100644 --- a/science/highfive/Makefile +++ b/science/highfive/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libhdf5.so:science/hdf5 RUN_DEPENDS= ${LOCALBASE}/include/boost/multi_array.hpp:devel/boost-libs \ - ${LOCALBASE}/include/xtensor/xtensor.hpp:math/xtensor + ${LOCALBASE}/include/xtensor.hpp:math/xtensor TEST_DEPENDS= catch2>0:devel/catch2 USES= cmake eigen:3,run diff --git a/science/mdynamix/Makefile b/science/mdynamix/Makefile index 7227c210b3f0..fe71bb4d552c 100644 --- a/science/mdynamix/Makefile +++ b/science/mdynamix/Makefile @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR}/mdynamix ALL_TARGET= default mpi MAKE_ARGS= FFLAGS="${FFLAGS} -ffast-math" LDFLAGS="${LDFLAGS}" -BINARY_ALIAS= make=gmake gfortran=gfortran${GCC_DEFAULT} +BINARY_ALIAS= make=gmake gfortran=${FC} PLIST_FILES= bin/md bin/mdp @@ -28,7 +28,7 @@ do-install: .include <bsd.port.pre.mk> -.if ${GCC_DEFAULT} >= 10 +.if ${FORTRAN_DEFAULT} == gfortran && ${GCC_DEFAULT} >= 10 # workaround for Type mismatch between actual argument at (1) and actual argument at (2) (INTEGER(4)/REAL(4)). # in theory, this should set FCFLAGS, but the port does not conform FFLAGS+= -fallow-argument-mismatch diff --git a/science/pcmsolver/Makefile b/science/pcmsolver/Makefile index ff137c88f6ef..0b234b6f90d9 100644 --- a/science/pcmsolver/Makefile +++ b/science/pcmsolver/Makefile @@ -1,7 +1,7 @@ PORTNAME= pcmsolver DISTVERSIONPREFIX= v DISTVERSION= 1.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org @@ -11,9 +11,7 @@ WWW= https://github.com/PCMSolver/pcmsolver LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_15= compilation is broken with clang-19, see https://github.com/PCMSolver/pcmsolver/issues/208 - -USES= cmake compiler:c11 fortran python +USES= cmake compiler:c++14-lang fortran python:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/science/pcmsolver/files/patch-cmake_custom_compilers_CXXFlags.cmake b/science/pcmsolver/files/patch-cmake_custom_compilers_CXXFlags.cmake new file mode 100644 index 000000000000..a9bf3aef3f64 --- /dev/null +++ b/science/pcmsolver/files/patch-cmake_custom_compilers_CXXFlags.cmake @@ -0,0 +1,8 @@ +--- cmake/custom/compilers/CXXFlags.cmake.orig 2025-10-15 01:10:00 UTC ++++ cmake/custom/compilers/CXXFlags.cmake +@@ -1,4 +1,4 @@ +-set(CMAKE_CXX_STANDARD 11) ++set(CMAKE_CXX_STANDARD 14) + set(CMAKE_CXX_STANDARD_REQUIRED TRUE) + set(CMAKE_CXX_EXTENSIONS FALSE) + diff --git a/science/pcmsolver/files/patch-external_eigen3_include_eigen3_Eigen_src_Core_Transpositions.h b/science/pcmsolver/files/patch-external_eigen3_include_eigen3_Eigen_src_Core_Transpositions.h new file mode 100644 index 000000000000..ada24c1f6175 --- /dev/null +++ b/science/pcmsolver/files/patch-external_eigen3_include_eigen3_Eigen_src_Core_Transpositions.h @@ -0,0 +1,14 @@ +- fix build error with Eigen 3.3.2 + + +--- external/eigen3/include/eigen3/Eigen/src/Core/Transpositions.h.orig 2025-10-15 01:10:00 UTC ++++ external/eigen3/include/eigen3/Eigen/src/Core/Transpositions.h +@@ -384,7 +384,7 @@ class Transpose<TranspositionsBase<TranspositionsDeri + const Product<OtherDerived, Transpose, AliasFreeProduct> + operator*(const MatrixBase<OtherDerived>& matrix, const Transpose& trt) + { +- return Product<OtherDerived, Transpose, AliasFreeProduct>(matrix.derived(), trt.derived()); ++ return Product<OtherDerived, Transpose, AliasFreeProduct>(matrix.derived(), trt); + } + + /** \returns the \a matrix with the inverse transpositions applied to the rows. diff --git a/security/Makefile b/security/Makefile index c49e8676f481..e3840f2246ac 100644 --- a/security/Makefile +++ b/security/Makefile @@ -234,7 +234,6 @@ SUBDIR += hyperhotp SUBDIR += i2pd SUBDIR += iaikpkcs11wrapper - SUBDIR += iddawc SUBDIR += idea SUBDIR += identify SUBDIR += imds-filterd @@ -953,6 +952,7 @@ SUBDIR += py-google-auth SUBDIR += py-google-auth-httplib2 SUBDIR += py-google-auth-oauthlib + SUBDIR += py-google-cloud-kms SUBDIR += py-gpg SUBDIR += py-gpsoauth SUBDIR += py-greenbone-feed-sync diff --git a/security/aws-c-cal/Makefile b/security/aws-c-cal/Makefile index c20c47ed86bb..f018701e5d62 100644 --- a/security/aws-c-cal/Makefile +++ b/security/aws-c-cal/Makefile @@ -1,6 +1,6 @@ PORTNAME= aws-c-cal DISTVERSIONPREFIX= v -DISTVERSION= 0.9.3 +DISTVERSION= 0.9.4 CATEGORIES= security MAINTAINER= eduardo@FreeBSD.org diff --git a/security/aws-c-cal/distinfo b/security/aws-c-cal/distinfo index c3fa370d9411..e8b721263ad6 100644 --- a/security/aws-c-cal/distinfo +++ b/security/aws-c-cal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758220673 -SHA256 (awslabs-aws-c-cal-v0.9.3_GH0.tar.gz) = 7033e3efecbb1f6eddd0f549bb071b166e1aaca5f8fb4b215d0d0de5cb2e9496 -SIZE (awslabs-aws-c-cal-v0.9.3_GH0.tar.gz) = 1686833 +TIMESTAMP = 1760573923 +SHA256 (awslabs-aws-c-cal-v0.9.4_GH0.tar.gz) = 0c26d3092ecc3b23d41ac411a0c6c8d3f56f38bc1d396e0b40a008db6ae0f63f +SIZE (awslabs-aws-c-cal-v0.9.4_GH0.tar.gz) = 1689214 diff --git a/security/iddawc/Makefile b/security/iddawc/Makefile deleted file mode 100644 index 775eee3530cd..000000000000 --- a/security/iddawc/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -PORTNAME= iddawc -PORTVERSION= 1.1.8 -DISTVERSIONPREFIX= v -CATEGORIES= security - -MAINTAINER= ports@FreeBSD.org -COMMENT= OAuth2/OIDC Client and Relying Party library -WWW= https://babelouest.github.io/iddawc/ \ - https://github.com/babelouest/iddawc - -LICENSE= LGPL21 -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Upstream repo archived on Nov 11, 2024 -EXPIRATION_DATE=2025-10-13 - -BUILD_DEPENDS= jansson>=2.11:devel/jansson \ - orcania>=2.3.2:devel/orcania \ - rhonabwy>=1.1.10:security/rhonabwy \ - ulfius>=2.7.12:www/ulfius \ - yder>=1.4.14:devel/yder -LIB_DEPENDS= libcurl.so:ftp/curl \ - libgnutls.so:security/gnutls \ - libjansson.so:devel/jansson \ - libmicrohttpd.so:www/libmicrohttpd \ - liborcania.so:devel/orcania \ - librhonabwy.so:security/rhonabwy \ - libulfius.so:www/ulfius \ - libyder.so:devel/yder - -USES= cmake pathfix - -CMAKE_OFF= BUILD_IDDAWC_DOCUMENTATION BUILD_IDDAWC_TESTING BUILD_RPM DOWNLOAD_DEPENDENCIES -CMAKE_ON= BUILD_IDWCC BUILD_STATIC INSTALL_HEADER SEARCH_ORCANIA_I SEARCH_RHONABWY_I SEARCH_ULFIUS_I SEARCH_YDER_I - -PLIST_SUB= PORTVERSION=${PORTVERSION} - -USE_GITHUB= yes -GH_ACCOUNT= babelouest - -post-install: - ${INSTALL_DATA} ${INSTALL_WRKSRC}/libiddawc.a ${STAGEDIR}${PREFIX}/lib/libiddawc.a - -.include <bsd.port.mk> diff --git a/security/iddawc/distinfo b/security/iddawc/distinfo deleted file mode 100644 index 1b99a83fccd6..000000000000 --- a/security/iddawc/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1686496690 -SHA256 (babelouest-iddawc-v1.1.8_GH0.tar.gz) = 1e075ffd64b26ab042b571473d4be6d6fcfc11f348b4833c79af52d70573dc59 -SIZE (babelouest-iddawc-v1.1.8_GH0.tar.gz) = 1463208 diff --git a/security/iddawc/files/patch-src-iddawc.c b/security/iddawc/files/patch-src-iddawc.c deleted file mode 100644 index 8841b26e2c51..000000000000 --- a/security/iddawc/files/patch-src-iddawc.c +++ /dev/null @@ -1,29 +0,0 @@ ---- src/iddawc.c.orig 2022-12-17 21:23:54 UTC -+++ src/iddawc.c -@@ -4972,7 +4972,7 @@ int i_verify_id_token(struct _i_session * i_session) { - if (alg != GNUTLS_DIG_UNKNOWN) { - hash_data.data = (unsigned char*)i_session->access_token; - hash_data.size = (unsigned int)o_strlen(i_session->access_token); -- if (gnutls_fingerprint(alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { -+ if (gnutls_fingerprint((gnutls_digest_algorithm_t) alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { - if (o_base64url_encode(hash, hash_len/2, hash_encoded, &hash_encoded_len)) { - if (o_strncmp((const char *)hash_encoded, json_string_value(json_object_get(i_session->id_token_payload, "at_hash")), hash_encoded_len) != 0) { - y_log_message(Y_LOG_LEVEL_DEBUG, "i_verify_id_token at - at_hash invalid"); -@@ -5000,7 +5000,7 @@ int i_verify_id_token(struct _i_session * i_session) { - if (alg != GNUTLS_DIG_UNKNOWN) { - hash_data.data = (unsigned char*)i_session->code; - hash_data.size = (unsigned int)o_strlen(i_session->code); -- if (gnutls_fingerprint(alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { -+ if (gnutls_fingerprint((gnutls_digest_algorithm_t) alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { - if (o_base64url_encode(hash, hash_len/2, hash_encoded, &hash_encoded_len)) { - if (o_strncmp((const char *)hash_encoded, json_string_value(json_object_get(i_session->id_token_payload, "c_hash")), hash_encoded_len) != 0) { - y_log_message(Y_LOG_LEVEL_DEBUG, "i_verify_id_token - c_hash invalid"); -@@ -5028,7 +5028,7 @@ int i_verify_id_token(struct _i_session * i_session) { - if (alg != GNUTLS_DIG_UNKNOWN) { - hash_data.data = (unsigned char*)i_session->state; - hash_data.size = (unsigned int)o_strlen(i_session->state); -- if (gnutls_fingerprint(alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { -+ if (gnutls_fingerprint((gnutls_digest_algorithm_t) alg, &hash_data, hash, &hash_len) == GNUTLS_E_SUCCESS) { - if (o_base64url_encode(hash, hash_len/2, hash_encoded, &hash_encoded_len)) { - if (o_strncmp((const char *)hash_encoded, json_string_value(json_object_get(i_session->id_token_payload, "s_hash")), hash_encoded_len) != 0) { - y_log_message(Y_LOG_LEVEL_DEBUG, "i_verify_id_token - s_hash invalid"); diff --git a/security/iddawc/pkg-descr b/security/iddawc/pkg-descr deleted file mode 100644 index 01bcbdcd4420..000000000000 --- a/security/iddawc/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Iddawc is a C library used to implement OAuth2/OIDC clients according to the -OAuth2 RFC and the OpenID Connect Specs. - -It's based on Ulfius library for the HTTP requests and response management and -Rhonabwy library for the JOSE management. - -Iddawc supports the following features: -- Loading openid-configuration endpoints and parsing the results -- Making auth requests using the given parameters (client_id, client_secret, - redirect_uri, etc.) and parsing the result -- Making token requests using the given parameters (code, client_id, - client_secret, redirect_uri, etc.) and parsing the result -- Making userinfo, token introspection, token revocation requests -- Parse responses, validate id_token -- Registering new clients using the register endpoint if any -- Sending signed and or encrypted requests in the auth and token endpoints -- Client TLS Authentication available -- Making Pushed Auth Requests -- Making Rich Auth Requests -- Adding claims to requests -- Sending DPoP proofs -- JWT Secured Authorization Response Mode -- End session and single-logout functionalities diff --git a/security/iddawc/pkg-plist b/security/iddawc/pkg-plist deleted file mode 100644 index b9afe21892ee..000000000000 --- a/security/iddawc/pkg-plist +++ /dev/null @@ -1,37 +0,0 @@ -bin/idwcc -include/iddawc-cfg.h -include/iddawc.h -lib/libiddawc.a -lib/libiddawc.so -lib/libiddawc.so.1.1 -lib/libiddawc.so.%%PORTVERSION%% -libdata/pkgconfig/libiddawc.pc -share/idwcc/webapp/callback.html -share/idwcc/webapp/css/bootstrap.css -share/idwcc/webapp/css/bootstrap.css.map -share/idwcc/webapp/css/bootstrap.min.css -share/idwcc/webapp/css/bootstrap.min.css.map -share/idwcc/webapp/css/fork-awesome.css -share/idwcc/webapp/css/fork-awesome.min.css -share/idwcc/webapp/css/fork-awesome.min.css.map -share/idwcc/webapp/css/idwcc.css -share/idwcc/webapp/css/v5-compat.css -share/idwcc/webapp/css/v5-compat.min.css -share/idwcc/webapp/css/v5-compat.min.css.map -share/idwcc/webapp/fonts/forkawesome-webfont.eot -share/idwcc/webapp/fonts/forkawesome-webfont.svg -share/idwcc/webapp/fonts/forkawesome-webfont.ttf -share/idwcc/webapp/fonts/forkawesome-webfont.woff -share/idwcc/webapp/fonts/forkawesome-webfont.woff2 -share/idwcc/webapp/index.html -share/idwcc/webapp/js/bootstrap.js -share/idwcc/webapp/js/bootstrap.js.map -share/idwcc/webapp/js/bootstrap.min.js -share/idwcc/webapp/js/bootstrap.min.js.map -share/idwcc/webapp/js/iddwc.js -share/idwcc/webapp/js/jquery.js -share/idwcc/webapp/js/jquery.min.js -share/idwcc/webapp/js/popper.js -share/idwcc/webapp/js/popper.min.js -share/idwcc/webapp/js/qrcode.js -share/man/man1/idwcc.1.gz diff --git a/security/libressl-devel/Makefile b/security/libressl-devel/Makefile index b90c18b1308e..daa464c11003 100644 --- a/security/libressl-devel/Makefile +++ b/security/libressl-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= libressl -PORTVERSION= 4.1.1 +PORTVERSION= 4.2.0 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL PKGNAMESUFFIX= -devel @@ -50,12 +50,12 @@ LDFLAGS+= -pthread INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBCRYPTO_SHLIBMAJ=56 \ - LIBCRYPTO_SHLIBFULL=56.0.0 \ - LIBSSL_SHLIBMAJ=59 \ - LIBSSL_SHLIBFULL=59.0.1 \ - LIBTLS_SHLIBMAJ=32 \ - LIBTLS_SHLIBFULL=32.0.1 +PLIST_SUB+= LIBCRYPTO_SHLIBMAJ=57 \ + LIBCRYPTO_SHLIBFULL=57.0.1 \ + LIBSSL_SHLIBMAJ=60 \ + LIBSSL_SHLIBFULL=60.0.1 \ + LIBTLS_SHLIBMAJ=33 \ + LIBTLS_SHLIBFULL=33.0.1 post-patch-MAN3-off: ${REINPLACE_CMD} -e '/^install-man:/s/install-man3//' \ diff --git a/security/libressl-devel/distinfo b/security/libressl-devel/distinfo index 62e0fcbe19c7..6971a8021c4e 100644 --- a/security/libressl-devel/distinfo +++ b/security/libressl-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759303143 -SHA256 (libressl-4.1.1.tar.gz) = c7ff7a7d675d5f57730940e5ccff1dbe2dcd5b7405b5397e0f7ffd66a5ed5679 -SIZE (libressl-4.1.1.tar.gz) = 9202355 +TIMESTAMP = 1760545157 +SHA256 (libressl-4.2.0.tar.gz) = 0f7dba44d7cb8df8d53f2cfbf1955254bc128e0089595f1aba2facfaee8408b2 +SIZE (libressl-4.2.0.tar.gz) = 9147132 diff --git a/security/libressl-devel/pkg-plist b/security/libressl-devel/pkg-plist index c73e0cb9c35a..30505e613b0c 100644 --- a/security/libressl-devel/pkg-plist +++ b/security/libressl-devel/pkg-plist @@ -38,6 +38,7 @@ include/openssl/kdf.h include/openssl/lhash.h include/openssl/md4.h include/openssl/md5.h +include/openssl/mlkem.h include/openssl/modes.h include/openssl/obj_mac.h include/openssl/objects.h diff --git a/security/libressl-devel/version.mk b/security/libressl-devel/version.mk index a43395b52412..2fe40b3646a5 100644 --- a/security/libressl-devel/version.mk +++ b/security/libressl-devel/version.mk @@ -1 +1 @@ -OPENSSL_SHLIBVER?= 56 +OPENSSL_SHLIBVER?= 57 diff --git a/security/libressl/Makefile b/security/libressl/Makefile index 749ae4315dc1..21673f97c719 100644 --- a/security/libressl/Makefile +++ b/security/libressl/Makefile @@ -1,5 +1,5 @@ PORTNAME= libressl -PORTVERSION= 4.1.1 +PORTVERSION= 4.2.0 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL @@ -49,12 +49,12 @@ LDFLAGS+= -pthread INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBCRYPTO_SHLIBMAJ=56 \ - LIBCRYPTO_SHLIBFULL=56.0.0 \ - LIBSSL_SHLIBMAJ=59 \ - LIBSSL_SHLIBFULL=59.0.1 \ - LIBTLS_SHLIBMAJ=32 \ - LIBTLS_SHLIBFULL=32.0.1 +PLIST_SUB+= LIBCRYPTO_SHLIBMAJ=57 \ + LIBCRYPTO_SHLIBFULL=57.0.1 \ + LIBSSL_SHLIBMAJ=60 \ + LIBSSL_SHLIBFULL=60.0.1 \ + LIBTLS_SHLIBMAJ=33 \ + LIBTLS_SHLIBFULL=33.0.1 post-patch-MAN3-off: ${REINPLACE_CMD} -e '/^install-man:/s/install-man3//' \ diff --git a/security/libressl/distinfo b/security/libressl/distinfo index 62e0fcbe19c7..6971a8021c4e 100644 --- a/security/libressl/distinfo +++ b/security/libressl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759303143 -SHA256 (libressl-4.1.1.tar.gz) = c7ff7a7d675d5f57730940e5ccff1dbe2dcd5b7405b5397e0f7ffd66a5ed5679 -SIZE (libressl-4.1.1.tar.gz) = 9202355 +TIMESTAMP = 1760545157 +SHA256 (libressl-4.2.0.tar.gz) = 0f7dba44d7cb8df8d53f2cfbf1955254bc128e0089595f1aba2facfaee8408b2 +SIZE (libressl-4.2.0.tar.gz) = 9147132 diff --git a/security/libressl/pkg-plist b/security/libressl/pkg-plist index c73e0cb9c35a..30505e613b0c 100644 --- a/security/libressl/pkg-plist +++ b/security/libressl/pkg-plist @@ -38,6 +38,7 @@ include/openssl/kdf.h include/openssl/lhash.h include/openssl/md4.h include/openssl/md5.h +include/openssl/mlkem.h include/openssl/modes.h include/openssl/obj_mac.h include/openssl/objects.h diff --git a/security/libressl/version.mk b/security/libressl/version.mk index a43395b52412..2fe40b3646a5 100644 --- a/security/libressl/version.mk +++ b/security/libressl/version.mk @@ -1 +1 @@ -OPENSSL_SHLIBVER?= 56 +OPENSSL_SHLIBVER?= 57 diff --git a/security/nextcloud-end_to_end_encryption/Makefile b/security/nextcloud-end_to_end_encryption/Makefile index fb390e30f5e8..989cdea1c8ce 100644 --- a/security/nextcloud-end_to_end_encryption/Makefile +++ b/security/nextcloud-end_to_end_encryption/Makefile @@ -1,5 +1,5 @@ PORTNAME= end_to_end_encryption -PORTVERSION= 1.17.0 +PORTVERSION= 1.18.0 DISTVERSIONPREFIX= v CATEGORIES= security @@ -9,7 +9,7 @@ WWW= https://apps.nextcloud.com/apps/end_to_end_encryption LICENSE_FILE= ${WRKSRC}/LICENSE -NEXTCLOUD_RUN_DEPENDS= 31 +NEXTCLOUD_RUN_DEPENDS= 32 USES= nextcloud php:flavors diff --git a/security/nextcloud-end_to_end_encryption/distinfo b/security/nextcloud-end_to_end_encryption/distinfo index 7c3128388436..5a29084e41e2 100644 --- a/security/nextcloud-end_to_end_encryption/distinfo +++ b/security/nextcloud-end_to_end_encryption/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1740558340 -SHA256 (nextcloud/end_to_end_encryption-v1.17.0.tar.gz) = 5a88effd4cc34fdbfd6d5682f0aec6a9a4185531381a8446db3b4700b664b4b9 -SIZE (nextcloud/end_to_end_encryption-v1.17.0.tar.gz) = 1864255 +TIMESTAMP = 1760546414 +SHA256 (nextcloud/end_to_end_encryption-v1.18.0.tar.gz) = 3426b9b7e92c6c778184bd18a448c3e26e5d8f4c0040891ce98adea409f4f133 +SIZE (nextcloud/end_to_end_encryption-v1.18.0.tar.gz) = 1899150 diff --git a/security/py-google-cloud-kms/Makefile b/security/py-google-cloud-kms/Makefile new file mode 100644 index 000000000000..911d3a05b762 --- /dev/null +++ b/security/py-google-cloud-kms/Makefile @@ -0,0 +1,38 @@ +PORTNAME= google-cloud-kms +DISTVERSION= 3.6.0 +CATEGORIES= security python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME:S/-/_/g}-${DISTVERSION} + +MAINTAINER= tagattie@FreeBSD.org +COMMENT= Python client for Google Cloud Key Management Service +WWW= https://pypi.org/project/google-cloud-kms/ + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-api-core>=1.34.1<3.0.0:www/py-google-api-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-auth>=2.14.1<3.0.0:security/py-google-auth@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}proto-plus>=1.22.3<2.0.0:devel/py-proto-plus@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.20.2,1<7.0.0,1:devel/py-protobuf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}grpc-google-iam-v1>=0.14.0<1.0.0:devel/py-grpc-google-iam-v1@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>0:devel/py-pytest-asyncio@${PY_FLAVOR} + +USES= python + +USE_PYTHON= autoplist distutils pytest +PYTEST_IGNORED_TESTS= test_list_ekm_connections[grpc] \ + test_list_ekm_connections[rest] + +NO_ARCH= yes + +PORTDOCS= README.rst + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/security/py-google-cloud-kms/distinfo b/security/py-google-cloud-kms/distinfo new file mode 100644 index 000000000000..f935ac04aec4 --- /dev/null +++ b/security/py-google-cloud-kms/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760498630 +SHA256 (google_cloud_kms-3.6.0.tar.gz) = c0f7f2474e35e99e6a36651520a26fdba4bb8e73b7cd0d9bff8c8bd92737afcc +SIZE (google_cloud_kms-3.6.0.tar.gz) = 329923 diff --git a/security/py-google-cloud-kms/pkg-descr b/security/py-google-cloud-kms/pkg-descr new file mode 100644 index 000000000000..8eaf90a4f41f --- /dev/null +++ b/security/py-google-cloud-kms/pkg-descr @@ -0,0 +1,9 @@ +Google Cloud Key Management Service: a cloud-hosted key management +service that lets you manage cryptographic keys for your cloud +services the same way you do on-premises. You can generate, use, +rotate, and destroy AES256, RSA 2048, RSA 3072, RSA 4096, EC P256, and +EC P384 cryptographic keys. Cloud KMS is integrated with Cloud IAM and +Cloud Audit Logging so that you can manage permissions on individual +keys and monitor how these are used. Use Cloud KMS to protect secrets +and other sensitive data that you need to store in Google Cloud +Platform. diff --git a/security/tlsc/Makefile b/security/tlsc/Makefile index 1068f7b3e4c8..62a7008de6f7 100644 --- a/security/tlsc/Makefile +++ b/security/tlsc/Makefile @@ -11,6 +11,9 @@ WWW= https://github.com/Zirias/tlsc LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Unmaintained port +EXPIRATION_DATE=2025-12-31 + LIB_DEPENDS= libposercore.so:devel/poser USES= compiler:c11 gmake pkgconfig tar:xz diff --git a/security/unix-selfauth-helper/Makefile b/security/unix-selfauth-helper/Makefile index 61d843015cd6..7ca163de3985 100644 --- a/security/unix-selfauth-helper/Makefile +++ b/security/unix-selfauth-helper/Makefile @@ -10,6 +10,9 @@ WWW= https://github.com/Zirias/${PORTNAME} LICENSE= BSD2CLAUSE +DEPRECATED= Unmaintained port +EXPIRATION_DATE=2025-12-31 + USES= tar:xz MAKE_ARGS+= MANDIR=${PREFIX}/share/man/man diff --git a/security/zeek/Makefile b/security/zeek/Makefile index 378d33f5ae68..fbdd47952775 100644 --- a/security/zeek/Makefile +++ b/security/zeek/Makefile @@ -1,5 +1,5 @@ PORTNAME= zeek -DISTVERSION= 8.0.2 +DISTVERSION= 8.0.3 CATEGORIES= security MASTER_SITES= https://download.zeek.org/ diff --git a/security/zeek/distinfo b/security/zeek/distinfo index fe5b893c7586..8d3fd5d0c12e 100644 --- a/security/zeek/distinfo +++ b/security/zeek/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760391181 -SHA256 (zeek-8.0.2.tar.gz) = 140d2e570812a8281e2e228a479da499a8c34260d44b9ba237aab0077f96a45c -SIZE (zeek-8.0.2.tar.gz) = 99610790 +TIMESTAMP = 1760556081 +SHA256 (zeek-8.0.3.tar.gz) = c178a85e502835cef9584e9a5cb049b4a6abc00bd2bd3c07d4bc3466e5df6eee +SIZE (zeek-8.0.3.tar.gz) = 99613493 diff --git a/sysutils/Makefile b/sysutils/Makefile index 67a7d9cb0002..80113f6d9899 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -432,6 +432,8 @@ SUBDIR += ftwin SUBDIR += fvcool SUBDIR += fwup + SUBDIR += fwupd + SUBDIR += fwupd-efi SUBDIR += fx SUBDIR += g15daemon SUBDIR += gaffitter diff --git a/sysutils/elephant/Makefile b/sysutils/elephant/Makefile index 1c4c21894ba2..ebd602a9a4ae 100644 --- a/sysutils/elephant/Makefile +++ b/sysutils/elephant/Makefile @@ -1,7 +1,7 @@ PORTNAME= elephant DISTVERSIONPREFIX= v DISTVERSION= 2.1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= tagattie@FreeBSD.org @@ -64,6 +64,10 @@ WEBSEARCH_PLIST_FILES= etc/xdg/elephant/providers/websearch.so ENABLED_PROVIDERS= ${SELECTED_OPTIONS:NDOCS:tl} +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ + ${GO_WRKSRC}/vendor/github.com/adrg/xdg/paths_unix.go + post-build: .for provider in ${ENABLED_PROVIDERS} @${ECHO_MSG} "===> Building ${provider} from ./internal/providers/${provider}" diff --git a/sysutils/elephant/files/patch-vendor_github.com_adrg_xdg_paths__unix.go b/sysutils/elephant/files/patch-vendor_github.com_adrg_xdg_paths__unix.go new file mode 100644 index 000000000000..bee2e9cd1b8c --- /dev/null +++ b/sysutils/elephant/files/patch-vendor_github.com_adrg_xdg_paths__unix.go @@ -0,0 +1,11 @@ +--- vendor/github.com/adrg/xdg/paths_unix.go.orig 2025-10-15 14:39:48 UTC ++++ vendor/github.com/adrg/xdg/paths_unix.go +@@ -21,7 +21,7 @@ func initBaseDirs(home string) { + baseDirs.dataHome = pathutil.EnvPath(envDataHome, filepath.Join(home, ".local", "share")) + baseDirs.data = pathutil.EnvPathList(envDataDirs, "/usr/local/share", "/usr/share") + baseDirs.configHome = pathutil.EnvPath(envConfigHome, filepath.Join(home, ".config")) +- baseDirs.config = pathutil.EnvPathList(envConfigDirs, "/etc/xdg") ++ baseDirs.config = pathutil.EnvPathList(envConfigDirs, "%%LOCALBASE%%/etc/xdg", "/etc/xdg") + baseDirs.stateHome = pathutil.EnvPath(envStateHome, filepath.Join(home, ".local", "state")) + baseDirs.cacheHome = pathutil.EnvPath(envCacheHome, filepath.Join(home, ".cache")) + baseDirs.runtime = pathutil.EnvPath(envRuntimeDir, filepath.Join("/run/user", strconv.Itoa(os.Getuid()))) diff --git a/sysutils/fwupd-efi/Makefile b/sysutils/fwupd-efi/Makefile new file mode 100644 index 000000000000..df74e60c5f9c --- /dev/null +++ b/sysutils/fwupd-efi/Makefile @@ -0,0 +1,39 @@ +PORTNAME= fwupd-efi +DISTVERSION= 1.8 +CATEGORIES= sysutils + +MAINTAINER= decke@FreeBSD.org +COMMENT= EFI Application used by uefi-capsule plugin in fwupd +WWW= https://fwupd.org/ + +LICENSE= LGPL21 + +BUILD_DEPENDS= ${LOCALBASE}/lib/libgnuefi.a:devel/gnu-efi \ + ${PYTHON_PKGNAMEPREFIX}pefile>0:devel/py-pefile@${PY_FLAVOR} + +USES= meson pkgconfig python shebangfix +USE_GITHUB= yes +GH_ACCOUNT= fwupd + +USE_GCC= yes +SHEBANG_GLOB= *.py + +MESON_ARGS= -Defi-includedir=${LOCALBASE}/include/efi \ + -Defi-ldsdir=${LOCALBASE}/lib \ + -Dgenpeimg=disabled \ + -Dpython=${PYTHON_CMD} + +.include <bsd.port.pre.mk> + +.if ${ARCH} == amd64 +FW_ARCH="x64" +.elif ${ARCH} == i386 +FW_ARCH="ia32" +.else +FW_ARCH=${ARCH} +.endif + +PLIST_FILES= libdata/pkgconfig/fwupd-efi.pc \ + libexec/fwupd/efi/fwupd${FW_ARCH}.efi + +.include <bsd.port.post.mk> diff --git a/sysutils/fwupd-efi/distinfo b/sysutils/fwupd-efi/distinfo new file mode 100644 index 000000000000..307bb0349680 --- /dev/null +++ b/sysutils/fwupd-efi/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1760186942 +SHA256 (fwupd-fwupd-efi-1.8_GH0.tar.gz) = c9f1f9b9b967ea50eb0b478f0d7693d6673d4cd76c8e7eb80c55fc44ec928925 +SIZE (fwupd-fwupd-efi-1.8_GH0.tar.gz) = 46198 diff --git a/sysutils/fwupd-efi/files/patch-meson.build b/sysutils/fwupd-efi/files/patch-meson.build new file mode 100644 index 000000000000..a84f42b30ed0 --- /dev/null +++ b/sysutils/fwupd-efi/files/patch-meson.build @@ -0,0 +1,11 @@ +--- meson.build.orig 2025-10-03 09:14:22 UTC ++++ meson.build +@@ -10,7 +10,7 @@ cc_ld = find_program(cc.get_linker_id()) + + cc = meson.get_compiler('c') + cc_ld = find_program(cc.get_linker_id()) +-objcopy = find_program('objcopy') ++objcopy = find_program('/usr/local/bin/objcopy') + objcopy_version = run_command(objcopy, '--version', check: true).stdout().split('\n')[0].split(' ')[-1] + + gnuefi = dependency('gnu-efi', version: '>= 3.0.18') diff --git a/sysutils/fwupd-efi/pkg-descr b/sysutils/fwupd-efi/pkg-descr new file mode 100644 index 000000000000..7b7b3dcd77f8 --- /dev/null +++ b/sysutils/fwupd-efi/pkg-descr @@ -0,0 +1,4 @@ +EFI executable for fwupd + +This is part of fwupd and provides a UEFI binary for installing updates using +the UpdateCapsule runtime service. diff --git a/sysutils/fwupd/Makefile b/sysutils/fwupd/Makefile new file mode 100644 index 000000000000..4c2679134b5a --- /dev/null +++ b/sysutils/fwupd/Makefile @@ -0,0 +1,65 @@ +PORTNAME= fwupd +DISTVERSION= 2.0.16 +PORTREVISION= 1 +CATEGORIES= sysutils + +MAINTAINER= decke@FreeBSD.org +COMMENT= Update firmware automatically, safely, and reliably + +LICENSE= LGPL21 + +BROKEN_FreeBSD_13= requires at least FreeBSD 15 +BROKEN_FreeBSD_14= requires at least FreeBSD 15 + +BUILD_DEPENDS= blkid:filesystems/libblkid \ + flashrom>0:sysutils/flashrom \ + help2man:misc/help2man \ + ${LOCALBASE}/libdata/pkgconfig/fwupd-efi.pc:sysutils/fwupd-efi \ + open-sans>0:x11-fonts/open-sans \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pygobject>0:devel/py-pygobject@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pangocffi>0:x11-toolkits/py-pangocffi@${PY_FLAVOR} \ + valgrind>0:devel/valgrind +LIB_DEPENDS= libcbor.so:devel/libcbor \ + libcurl.so:ftp/curl \ + libdrm.so:graphics/libdrm \ + libefiboot.so:devel/efivar \ + libelf.so:devel/libelf \ + libgcab-1.0.so:archivers/gcab \ + libgnutls.so:security/gnutls \ + libgpg-error.so:security/libgpg-error \ + libgpgme.so:security/gpgme \ + libgusb.so:devel/libgusb \ + libjcat.so:textproc/libjcat \ + libjson-glib-1.0.so:devel/json-glib \ + libprotobuf-c.so:devel/protobuf-c \ + libxmlb.so:textproc/libxmlb +RUN_DEPENDS= blkid:filesystems/libblkid \ + flashrom>0:sysutils/flashrom \ + ${LOCALBASE}/libdata/pkgconfig/fwupd-efi.pc:sysutils/fwupd-efi \ + valgrind>0:devel/valgrind + +USES= cmake:indirect gettext gnome libarchive meson pkgconfig python shebangfix sqlite vala:build +USE_GITHUB= yes +USE_GNOME= glib20 introspection:build +USE_LDCONFIG= yes +WITH_DEBUG= yes +USE_RC_SUBR= fwupd + +OPTIONS_DEFINE= DOCS + +DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc \ + ${PYTHON_PKGNAMEPREFIX}gi-docgen>0:textproc/py-gi-docgen@${PY_FLAVOR} +DOCS_MESON_ENABLED= docs + +SHEBANG_GLOB= *.py + +MESON_ARGS+= -Dpolkit=disabled \ + -Dsystemd=disabled \ + -Dpassim=disabled \ + -Dtests=false \ + -Dumockdev_tests=disabled \ + -Dplugin_modem_manager=disabled \ + -Dpython=${PYTHON_CMD} + +.include <bsd.port.mk> diff --git a/sysutils/fwupd/distinfo b/sysutils/fwupd/distinfo new file mode 100644 index 000000000000..e098483fe6c6 --- /dev/null +++ b/sysutils/fwupd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1758629317 +SHA256 (fwupd-fwupd-2.0.16_GH0.tar.gz) = e63f7ce7d536cf38961c4f3a87835f76043128cb964ae193c4144d94f4d6f49b +SIZE (fwupd-fwupd-2.0.16_GH0.tar.gz) = 6489758 diff --git a/sysutils/fwupd/files/fwupd.in b/sysutils/fwupd/files/fwupd.in new file mode 100644 index 000000000000..47a295942ea5 --- /dev/null +++ b/sysutils/fwupd/files/fwupd.in @@ -0,0 +1,28 @@ +#!/bin/sh + +# PROVIDE: fwupd +# REQUIRE: LOGIN dbus +# KEYWORD: shutdown +# +# Add the following lines to /etc/rc.conf to enable fwupd daemon: +# +# fwupd_enable="YES" +# + +. /etc/rc.subr + +export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin + +name="fwupd" +rcvar=fwupd_enable + +load_rc_config ${name} + +: ${fwupd_enable:="NO"} + +command="/usr/sbin/daemon" +procname="/usr/local/libexec/fwupd/${name}" +pidfile="/var/run/${name}.pid" +command_args="-S -p ${pidfile} ${procname}" + +run_rc_command "$1" diff --git a/sysutils/fwupd/files/patch-libfwupdplugin_fu-freebsd-efivars.c b/sysutils/fwupd/files/patch-libfwupdplugin_fu-freebsd-efivars.c new file mode 100644 index 000000000000..b8a904985b6a --- /dev/null +++ b/sysutils/fwupd/files/patch-libfwupdplugin_fu-freebsd-efivars.c @@ -0,0 +1,47 @@ +--- libfwupdplugin/fu-freebsd-efivars.c.orig 2025-09-12 09:55:19 UTC ++++ libfwupdplugin/fu-freebsd-efivars.c +@@ -67,7 +67,7 @@ fu_freebsd_efivars_delete_with_glob(FuEfivars *efivars + + efi_str_to_guid(guid, &guid_to_delete); + +- while (efi_get_next_variable_name(&guidt, &name)) { ++ while (efi_get_next_variable_name(&guidt, &name) == 1) { + if (memcmp(&guid_to_delete, guidt, sizeof(guid_to_delete)) != 0) + continue; + if (!g_pattern_match_simple(name, name_glob)) +@@ -87,7 +87,7 @@ fu_freebsd_efivars_exists_guid(const gchar *guid) + efi_guid_t test; + + efi_str_to_guid(guid, &test); +- while (efi_get_next_variable_name(&guidt, &name)) { ++ while (efi_get_next_variable_name(&guidt, &name) == 1) { + if (memcmp(&test, guidt, sizeof(test)) == 0) { + return TRUE; + } +@@ -129,7 +129,7 @@ fu_freebsd_efivars_get_names(FuEfivars *efivars, const + efi_str_to_guid(guid, &test); + + /* find names with matching GUID */ +- while (efi_get_next_variable_name(&guidt, &name)) { ++ while (efi_get_next_variable_name(&guidt, &name) == 1) { + if (memcmp(&test, guidt, sizeof(test)) == 0) { + g_ptr_array_add(names, g_strdup(name)); + } +@@ -156,7 +156,7 @@ fu_freebsd_efivars_space_used(FuEfivars *efivars, GErr + efi_guid_t *guidt = NULL; + char *name = NULL; + +- while (efi_get_next_variable_name(&guidt, &name)) { ++ while (efi_get_next_variable_name(&guidt, &name) == 1) { + size_t size = 0; + if (efi_get_variable_size(*guidt, name, &size) < 0) { + g_set_error_literal(error, +@@ -184,7 +184,7 @@ fu_freebsd_efivars_set_data(FuEfivars *efivars, + efi_guid_t guidt; + efi_str_to_guid(guid, &guidt); + +- if (efi_set_variable(guidt, name, (guint8 *)data, sz, attr) != 0) { ++ if (efi_set_variable(guidt, name, (guint8 *)data, sz, attr, 0644) != 0) { + g_set_error(error, + FWUPD_ERROR, + FWUPD_ERROR_NOT_SUPPORTED, diff --git a/sysutils/fwupd/files/patch-libfwupdplugin_meson.build b/sysutils/fwupd/files/patch-libfwupdplugin_meson.build new file mode 100644 index 000000000000..24ea3ebc7149 --- /dev/null +++ b/sysutils/fwupd/files/patch-libfwupdplugin_meson.build @@ -0,0 +1,10 @@ +--- libfwupdplugin/meson.build.orig 2025-09-12 09:55:19 UTC ++++ libfwupdplugin/meson.build +@@ -387,6 +387,7 @@ fwupdplugin = library( + include_directories: [root_incdir, fwupd_incdir], + dependencies: [library_deps], + link_with: [fwupd], ++ install_rpath: '/usr/local/lib', + install_dir: libdir_pkg, + install: true, + ) diff --git a/sysutils/fwupd/files/patch-plugins_upower_meson.build b/sysutils/fwupd/files/patch-plugins_upower_meson.build new file mode 100644 index 000000000000..d8e40e362b32 --- /dev/null +++ b/sysutils/fwupd/files/patch-plugins_upower_meson.build @@ -0,0 +1,8 @@ +--- plugins/upower/meson.build.orig 2025-09-12 09:55:19 UTC ++++ plugins/upower/meson.build +@@ -1,4 +1,4 @@ +-host_machine.system() == 'linux' or subdir_done() ++host_machine.system() in ['linux', 'freebsd'] or subdir_done() + + plugins += {meson.current_source_dir().split('/')[-1]: true} + cargs = ['-DG_LOG_DOMAIN="FuPluginUpower"'] diff --git a/sysutils/fwupd/pkg-descr b/sysutils/fwupd/pkg-descr new file mode 100644 index 000000000000..b5f1bc8d0b81 --- /dev/null +++ b/sysutils/fwupd/pkg-descr @@ -0,0 +1,7 @@ +Make firmware updates automatic, safe, and reliable. + +fwupd is a simple daemon to allow session software to update device firmware on +your local machine. It is designed for desktops, but also usable on phones and +headless servers. You can either use a GUI software manager like GNOME Software +to view and apply updates, the command-line tool, or the system D-Bus interface +directly. diff --git a/sysutils/fwupd/pkg-message b/sysutils/fwupd/pkg-message new file mode 100644 index 000000000000..497a5ea45d27 --- /dev/null +++ b/sysutils/fwupd/pkg-message @@ -0,0 +1,23 @@ +[ +{ type: install + message: <<EOM + + Warning: fwupd is highly experimental and DANGEROUS + + The fwupd utility is currently highly experimental on FreeBSD + and may be unstable or unsafe to use. + Proceed with caution - flashing firmware carries a significant + risk of rendering your device unusable (“brickingâ€). + + Only attempt to flash firmware if you are prepared to accept + this risk. + + If you successfully flash a device — or encounter a failure — + please send a detailed report to decke@FreeBSD.org + + Include information about your hardware and the firmware you + attempted to flash. This feedback will help track which devices + work correctly and which do not. +EOM +} +] diff --git a/sysutils/fwupd/pkg-plist b/sysutils/fwupd/pkg-plist new file mode 100644 index 000000000000..d2fabb0137a6 --- /dev/null +++ b/sysutils/fwupd/pkg-plist @@ -0,0 +1,4081 @@ +bin/dbxtool +bin/fwupdmgr +bin/fwupdtool +%%ETCDIR%%/fwupd.conf +%%ETCDIR%%/remotes.d/lvfs-testing.conf +%%ETCDIR%%/remotes.d/lvfs.conf +%%ETCDIR%%/remotes.d/vendor-directory.conf +etc/pki/fwupd-metadata/GPG-KEY-Linux-Foundation-Metadata +etc/pki/fwupd-metadata/GPG-KEY-Linux-Vendor-Firmware-Service +etc/pki/fwupd-metadata/LVFS-CA.pem +etc/pki/fwupd/GPG-KEY-Linux-Foundation-Firmware +etc/pki/fwupd/GPG-KEY-Linux-Vendor-Firmware-Service +etc/pki/fwupd/LVFS-CA.pem +include/fwupd-3/fwupd.h +include/fwupd-3/libfwupd/fwupd-bios-setting.h +include/fwupd-3/libfwupd/fwupd-build.h +include/fwupd-3/libfwupd/fwupd-client-sync.h +include/fwupd-3/libfwupd/fwupd-client.h +include/fwupd-3/libfwupd/fwupd-codec.h +include/fwupd-3/libfwupd/fwupd-common.h +include/fwupd-3/libfwupd/fwupd-device.h +include/fwupd-3/libfwupd/fwupd-enums.h +include/fwupd-3/libfwupd/fwupd-error.h +include/fwupd-3/libfwupd/fwupd-plugin.h +include/fwupd-3/libfwupd/fwupd-release.h +include/fwupd-3/libfwupd/fwupd-remote.h +include/fwupd-3/libfwupd/fwupd-report.h +include/fwupd-3/libfwupd/fwupd-request.h +include/fwupd-3/libfwupd/fwupd-security-attr.h +include/fwupd-3/libfwupd/fwupd-version.h +lib/fwupd-2.0.16/libfu_plugin_flashrom.so +lib/fwupd-2.0.16/libfwupdengine.so +lib/fwupd-2.0.16/libfwupdplugin.so +lib/fwupd-2.0.16/libfwupdutil.so +lib/girepository-1.0/Fwupd-2.0.typelib +lib/libfwupd.so +lib/libfwupd.so.3 +lib/libfwupd.so.3.0.0 +libdata/pkgconfig/fwupd.pc +libexec/fwupd/fwupd +share/dbus-1/interfaces/org.freedesktop.fwupd.xml +share/dbus-1/system-services/org.freedesktop.fwupd.service +share/dbus-1/system.d/org.freedesktop.fwupd.conf +%%PORTDOCS%%%%DOCSDIR%%/hsi.html +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%DOCSDIR%%/libfwupd +%%PORTDOCS%%%%DOCSDIR%%/libfwupdplugin +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Black.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Black.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Bold.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Italic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Italic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Medium.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Regular.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Bold.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Bold.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-BoldItalic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Italic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Italic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Medium.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Medium.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-MediumItalic.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Regular.woff +%%PORTDOCS%%share/doc/libfwupd/RedHatText-Regular.woff2 +%%PORTDOCS%%share/doc/libfwupd/SourceCodePro-It.ttf.woff +%%PORTDOCS%%share/doc/libfwupd/SourceCodePro-Regular.ttf.woff +%%PORTDOCS%%share/doc/libfwupd/SourceCodePro-Semibold.ttf.woff +%%PORTDOCS%%share/doc/libfwupd/alias._guid_t.html +%%PORTDOCS%%share/doc/libfwupd/class.BiosSetting.html +%%PORTDOCS%%share/doc/libfwupd/class.Client.html +%%PORTDOCS%%share/doc/libfwupd/class.Device.html +%%PORTDOCS%%share/doc/libfwupd/class.Plugin.html +%%PORTDOCS%%share/doc/libfwupd/class.Release.html +%%PORTDOCS%%share/doc/libfwupd/class.Remote.html +%%PORTDOCS%%share/doc/libfwupd/class.Report.html +%%PORTDOCS%%share/doc/libfwupd/class.Request.html +%%PORTDOCS%%share/doc/libfwupd/class.SecurityAttr.html +%%PORTDOCS%%share/doc/libfwupd/classes_hierarchy.html +%%PORTDOCS%%share/doc/libfwupd/const.BATTERY_LEVEL_INVALID.html +%%PORTDOCS%%share/doc/libfwupd/const.BIOS_SETTING_DEBUG_CMD.html +%%PORTDOCS%%share/doc/libfwupd/const.BIOS_SETTING_PENDING_REBOOT.html +%%PORTDOCS%%share/doc/libfwupd/const.BIOS_SETTING_RESET_BIOS.html +%%PORTDOCS%%share/doc/libfwupd/const.BIOS_SETTING_SELF_TEST.html +%%PORTDOCS%%share/doc/libfwupd/const.DBUS_INTERFACE.html +%%PORTDOCS%%share/doc/libfwupd/const.DBUS_PATH.html +%%PORTDOCS%%share/doc/libfwupd/const.DBUS_SERVICE.html +%%PORTDOCS%%share/doc/libfwupd/const.DEVICE_ID_ANY.html +%%PORTDOCS%%share/doc/libfwupd/const.MAJOR_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.MICRO_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.MINOR_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_DO_NOT_POWER_OFF.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_INSERT_USB_CABLE.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_PRESS_UNLOCK.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_REMOVE_REPLUG.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_REMOVE_USB_CABLE.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_REPLUG_INSTALL.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_REPLUG_POWER.html +%%PORTDOCS%%share/doc/libfwupd/const.REQUEST_ID_RESTART_DAEMON.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_APPSTREAM_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BATTERY_LEVEL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BATTERY_THRESHOLD.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_CURRENT_VALUE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_LOWER_BOUND.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_POSSIBLE_VALUES.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_READ_ONLY.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_SCALAR_INCREMENT.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_TARGET_VALUE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_TYPE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_UPPER_BOUND.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_BRANCH.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_CATEGORIES.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_CHECKSUM.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_COMPOSITE_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_CREATED.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DESCRIPTION.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DETACH_CAPTION.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DETACH_IMAGE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DETAILS_URL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DEVICE_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DEVICE_NAME.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DISTRO_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DISTRO_VARIANT.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_DISTRO_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_FILENAME.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_FLAGS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_FLASHES_LEFT.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_GUID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_HOMEPAGE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_HSI_LEVEL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT_FALLBACK.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT_SUCCESS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_ICON.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_INSTALL_DURATION.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_INSTANCE_IDS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_ISSUES.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_KERNEL_CURRENT_VALUE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_KERNEL_TARGET_VALUE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_LICENSE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_LOCATIONS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_METADATA.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_MODIFIED.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_NAME.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_NAME_VARIANT_SUFFIX.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_PARENT_DEVICE_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_PERCENTAGE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_PLUGIN.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_PROBLEMS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_PROTOCOL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_RELEASE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_RELEASE_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_REMOTE_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_REPORTS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_REQUEST_FLAGS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_REQUEST_KIND.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_SBOM_URL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_SERIAL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_SIZE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_SOURCE_URL.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_STATUS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_SUMMARY.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_TAGS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_TRUST_FLAGS.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_UPDATE_ERROR.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_UPDATE_IMAGE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_UPDATE_MESSAGE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_UPDATE_STATE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_URGENCY.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_URI.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VENDOR.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VENDOR_ID.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_BOOTLOADER.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_BOOTLOADER_RAW.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_BUILD_DATE.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_FORMAT.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_LOWEST.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_LOWEST_RAW.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_OLD.html +%%PORTDOCS%%share/doc/libfwupd/const.RESULT_KEY_VERSION_RAW.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_ROLLBACK_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SMM_LOCKED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SPI_REPLAY_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SPI_WRITE_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_BIOS_CAPSULE_UPDATES.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_BIOS_ROLLBACK_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_CET_ACTIVE.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_CET_ENABLED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_ENCRYPTED_RAM.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_ATTESTATION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_PLUGINS.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_UPDATES.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_HOST_EMULATION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_ACM.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_ENABLED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_OTP.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_POLICY.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_VERIFIED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_GDS.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_IOMMU.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_LOCKDOWN.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_SWAP.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_TAINTED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_KEY_MANIFEST.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_MANUFACTURING_MODE.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_OVERRIDE_STRAP.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_DEBUG_ENABLED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_DEBUG_LOCKED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_FUSED.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_PREBOOT_DMA_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SMAP.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_BIOSWE.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_BLE.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_DESCRIPTOR.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_SMM_BWP.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SUPPORTED_CPU.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SUSPEND_TO_IDLE.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_SUSPEND_TO_RAM.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_EMPTY_PCR.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_RECONSTRUCTION_PCR0.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_VERSION_20.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_BOOTSERVICE_VARS.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_DB.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_PK.html +%%PORTDOCS%%share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_SECUREBOOT.html +%%PORTDOCS%%share/doc/libfwupd/ctor.BiosSetting.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Client.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Device.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Plugin.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Release.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Remote.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Report.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.Request.new.html +%%PORTDOCS%%share/doc/libfwupd/ctor.SecurityAttr.new.html +%%PORTDOCS%%share/doc/libfwupd/enum.BiosSettingKind.html +%%PORTDOCS%%share/doc/libfwupd/enum.ReleaseUrgency.html +%%PORTDOCS%%share/doc/libfwupd/enum.RemoteKind.html +%%PORTDOCS%%share/doc/libfwupd/enum.RequestKind.html +%%PORTDOCS%%share/doc/libfwupd/enum.SecurityAttrLevel.html +%%PORTDOCS%%share/doc/libfwupd/enum.SecurityAttrResult.html +%%PORTDOCS%%share/doc/libfwupd/enum.Status.html +%%PORTDOCS%%share/doc/libfwupd/enum.UpdateState.html +%%PORTDOCS%%share/doc/libfwupd/enum.VersionFormat.html +%%PORTDOCS%%share/doc/libfwupd/error.Error.html +%%PORTDOCS%%share/doc/libfwupd/flags.ClientDownloadFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.ClientUploadFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.CodecFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.DeviceFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.DeviceProblem.html +%%PORTDOCS%%share/doc/libfwupd/flags.FeatureFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.GuidFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.InstallFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.PluginFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.ReleaseFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.RemoteFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.ReportFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.RequestFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.SecurityAttrFlags.html +%%PORTDOCS%%share/doc/libfwupd/flags.SelfSignFlags.html +%%PORTDOCS%%share/doc/libfwupd/fonts.css +%%PORTDOCS%%share/doc/libfwupd/func.CHECK_VERSION.html +%%PORTDOCS%%share/doc/libfwupd/func.checksum_format_for_display.html +%%PORTDOCS%%share/doc/libfwupd/func.checksum_get_best.html +%%PORTDOCS%%share/doc/libfwupd/func.checksum_get_by_kind.html +%%PORTDOCS%%share/doc/libfwupd/func.checksum_guess_kind.html +%%PORTDOCS%%share/doc/libfwupd/func.checksum_type_to_string_display.html +%%PORTDOCS%%share/doc/libfwupd/func.error_convert.html +%%PORTDOCS%%share/doc/libfwupd/func.error_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.error_quark.html +%%PORTDOCS%%share/doc/libfwupd/func.error_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.feature_flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.feature_flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.guid_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.guid_hash_data.html +%%PORTDOCS%%share/doc/libfwupd/func.guid_hash_string.html +%%PORTDOCS%%share/doc/libfwupd/func.guid_is_valid.html +%%PORTDOCS%%share/doc/libfwupd/func.guid_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.install_flags_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.install_flags_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.status_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.status_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.strerror.html +%%PORTDOCS%%share/doc/libfwupd/func.update_state_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.update_state_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.version_format_from_string.html +%%PORTDOCS%%share/doc/libfwupd/func.version_format_to_string.html +%%PORTDOCS%%share/doc/libfwupd/func.version_string.html +%%PORTDOCS%%share/doc/libfwupd/fzy.js +%%PORTDOCS%%share/doc/libfwupd/go-up-symbolic.png +%%PORTDOCS%%share/doc/libfwupd/iface.Codec.html +%%PORTDOCS%%share/doc/libfwupd/index.html +%%PORTDOCS%%share/doc/libfwupd/index.json +%%PORTDOCS%%share/doc/libfwupd/libfwupd.devhelp2 +%%PORTDOCS%%share/doc/libfwupd/main.js +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.add_possible_value.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_description.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_id.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_lower_bound.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_name.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_path.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_possible_values.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_read_only.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_scalar_increment.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.get_upper_bound.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.has_possible_value.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.map_possible_value.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_description.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_id.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_lower_bound.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_name.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_path.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_read_only.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_scalar_increment.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.set_upper_bound.html +%%PORTDOCS%%share/doc/libfwupd/method.BiosSetting.write_value.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.activate.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.activate_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.activate_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.add_hint.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.build_report_devices.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.build_report_history.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.build_report_security.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.clear_results.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.clear_results_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.clear_results_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.connect.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.connect_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.connect_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.disconnect.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.download_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.download_bytes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.download_bytes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.download_file.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.download_set_retries.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_load.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_load_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_load_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_save.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_save_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.emulation_save_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.ensure_networking.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.fix_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.fix_host_security_attr_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.fix_host_security_attr_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_approved_firmware.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_approved_firmware_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_approved_firmware_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_battery_level.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_bios_settings.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_bios_settings_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_bios_settings_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_blocked_firmware.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_blocked_firmware_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_blocked_firmware_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_daemon_interactive.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_daemon_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details_bytes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details_bytes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_details_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_device_by_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_device_by_id_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_device_by_id_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices_by_guid.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices_by_guid_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices_by_guid_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_devices_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_downgrades.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_downgrades_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_downgrades_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_history.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_history_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_history_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_bkc.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_machine_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_product.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_attrs.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_attrs_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_attrs_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_events.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_events_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_events_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_security_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_host_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_main_context.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_only_trusted.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_percentage.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_plugins.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_plugins_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_plugins_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_releases.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_releases_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_releases_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remote_by_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remote_by_id_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remote_by_id_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remotes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remotes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_remotes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_report_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_report_metadata_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_report_metadata_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_results.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_results_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_results_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_status.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_tainted.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_upgrades.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_upgrades_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_upgrades_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.get_user_agent.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.inhibit.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.inhibit_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.inhibit_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_bytes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_bytes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_release.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_release_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.install_release_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_bios_setting.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_bios_setting_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_bios_setting_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_config.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_config_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_config_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_device.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_device_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_device_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_remote.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_remote_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.modify_remote_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.quit.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.quit_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.quit_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.refresh_remote.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.refresh_remote_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.refresh_remote_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.reset_config.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.reset_config_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.reset_config_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.search.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.search_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.search_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.self_sign.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.self_sign_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.self_sign_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_approved_firmware.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_approved_firmware_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_approved_firmware_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_blocked_firmware.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_blocked_firmware_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_blocked_firmware_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_daemon_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_feature_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_feature_flags_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_feature_flags_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_main_context.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_user_agent.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.set_user_agent_for_package.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.undo_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.undo_host_security_attr_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.undo_host_security_attr_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.uninhibit.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.uninhibit_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.uninhibit_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.unlock.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.unlock_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.unlock_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.update_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.update_metadata_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.update_metadata_bytes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.update_metadata_bytes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_bytes_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_bytes_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_report.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_report_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.upload_report_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify_update.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify_update_async.html +%%PORTDOCS%%share/doc/libfwupd/method.Client.verify_update_finish.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.add_string.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.from_json.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.from_json_string.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.from_variant.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.to_json.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.to_json_string.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.to_string.html +%%PORTDOCS%%share/doc/libfwupd/method.Codec.to_variant.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_checksum.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_child.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_guid.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_icon.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_instance_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_issue.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_problem.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_protocol.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_release.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_request_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.add_vendor_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.compare.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_battery_level.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_branch.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_checksums.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_children.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_composite_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_flashes_left.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_guid_default.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_guids.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_icons.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_install_duration.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_instance_ids.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_issues.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_modified.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_parent.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_parent_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_percentage.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_plugin.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_problems.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_protocols.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_release_default.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_releases.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_request_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_root.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_serial.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_status.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_summary.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_update_error.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_update_state.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_vendor_ids.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_bootloader.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_bootloader_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_build_date.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_format.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_lowest.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_lowest_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.get_version_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_checksum.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_guid.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_icon.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_instance_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_problem.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_protocol.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_request_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.has_vendor_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.incorporate.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.match_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.remove_child.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.remove_children.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.remove_problem.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.remove_request_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_battery_level.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_branch.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_composite_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_flashes_left.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_install_duration.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_modified.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_parent.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_parent_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_percentage.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_plugin.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_problems.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_request_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_serial.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_status.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_summary.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_update_error.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_update_state.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_bootloader.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_bootloader_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_build_date.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_format.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_lowest.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_lowest_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Device.set_version_raw.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.get_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Plugin.set_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_category.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_checksum.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_issue.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_location.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_metadata_item.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_report.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.add_tag.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_appstream_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_branch.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_categories.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_checksums.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_description.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_detach_caption.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_detach_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_details_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_filename.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_homepage.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_install_duration.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_issues.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_license.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_locations.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_metadata_item.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_name_variant_suffix.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_protocol.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_remote_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_reports.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_sbom_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_size.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_source_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_summary.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_tags.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_update_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_update_message.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_urgency.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.get_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.has_category.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.has_checksum.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.has_tag.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.match_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_appstream_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_branch.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_description.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_detach_caption.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_detach_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_details_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_filename.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_homepage.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_install_duration.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_license.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_name_variant_suffix.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_protocol.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_remote_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_sbom_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_size.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_source_url.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_summary.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_update_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_update_message.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_urgency.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Release.set_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.build_firmware_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.build_metadata_sig_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.build_metadata_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.build_report_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_age.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_agreement.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_checksum.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_checksum_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_filename_cache.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_filename_cache_sig.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_filename_source.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_firmware_base_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_metadata_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_metadata_uri_sig.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_order_after.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_order_before.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_password.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_priority.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_privacy_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_refresh_interval.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_remotes_dir.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_report_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_title.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.get_username.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.load_signature.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.load_signature_bytes.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.needs_refresh.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_agreement.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_checksum_sig.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_filename_cache.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_filename_source.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_firmware_base_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_metadata_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_mtime.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_order_after.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_order_before.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_password.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_priority.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_privacy_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_refresh_interval.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_remotes_dir.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_report_uri.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_title.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.set_username.html +%%PORTDOCS%%share/doc/libfwupd/method.Remote.setup.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.add_metadata_item.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_device_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_distro_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_distro_variant.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_distro_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_metadata_item.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_remote_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_vendor_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.get_version_old.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_device_name.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_distro_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_distro_variant.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_distro_version.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_remote_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_vendor.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_vendor_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Report.set_version_old.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.emit_invalidate.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_device_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.get_message.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_created.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_device_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_id.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_image.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_kind.html +%%PORTDOCS%%share/doc/libfwupd/method.Request.set_message.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.add_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.add_guid.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.add_guids.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.add_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.add_obsolete.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.copy.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_appstream_id.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_bios_setting_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_bios_setting_id.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_bios_setting_target_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_created.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_description.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_fwupd_version.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_guids.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_kernel_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_kernel_target_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_level.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_metadata.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_name.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_obsoletes.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_plugin.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_result.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_result_fallback.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_result_success.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_title.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.get_url.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.has_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.has_guid.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.has_obsolete.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.remove_flag.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_appstream_id.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_bios_setting_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_bios_setting_id.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_bios_setting_target_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_created.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_description.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_flags.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_fwupd_version.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_kernel_current_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_kernel_target_value.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_level.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_name.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_plugin.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_result.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_result_fallback.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_result_success.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_title.html +%%PORTDOCS%%share/doc/libfwupd/method.SecurityAttr.set_url.html +%%PORTDOCS%%share/doc/libfwupd/org.freedesktop.fwupd.svg +%%PORTDOCS%%share/doc/libfwupd/property.Client.battery-level.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.battery-threshold.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.daemon-version.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.host-bkc.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.host-machine-id.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.host-product.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.host-security-id.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.host-vendor.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.interactive.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.only-trusted.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.percentage.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.status.html +%%PORTDOCS%%share/doc/libfwupd/property.Client.tainted.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.battery-level.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.battery-threshold.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.id.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.parent.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.percentage.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.problems.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.request-flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.status.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.update-error.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.update-state.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.version-format.html +%%PORTDOCS%%share/doc/libfwupd/property.Device.version.html +%%PORTDOCS%%share/doc/libfwupd/property.Plugin.flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Plugin.name.html +%%PORTDOCS%%share/doc/libfwupd/property.Release.remote-id.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.approval-required.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.automatic-reports.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.automatic-security-reports.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.enabled.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Remote.id.html +%%PORTDOCS%%share/doc/libfwupd/property.Report.flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.device-id.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.flags.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.id.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.image.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.kind.html +%%PORTDOCS%%share/doc/libfwupd/property.Request.message.html +%%PORTDOCS%%share/doc/libfwupd/search.js +%%PORTDOCS%%share/doc/libfwupd/signal.Client.changed.html +%%PORTDOCS%%share/doc/libfwupd/signal.Client.device-added.html +%%PORTDOCS%%share/doc/libfwupd/signal.Client.device-changed.html +%%PORTDOCS%%share/doc/libfwupd/signal.Client.device-removed.html +%%PORTDOCS%%share/doc/libfwupd/signal.Client.device-request.html +%%PORTDOCS%%share/doc/libfwupd/signal.Client.status-changed.html +%%PORTDOCS%%share/doc/libfwupd/signal.Request.invalidate.html +%%PORTDOCS%%share/doc/libfwupd/solarized-dark.css +%%PORTDOCS%%share/doc/libfwupd/solarized-light.css +%%PORTDOCS%%share/doc/libfwupd/style.css +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.array_from_variant.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.array_to_json.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.array_to_variant.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.json_append.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.json_append_bool.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.json_append_int.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.json_append_map.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.json_append_strv.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append_bool.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append_hex.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append_int.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append_size.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Codec.string_append_time.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.array_ensure_parents.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.array_filter_flags.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.id_is_valid.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.problem_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Device.problem_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Plugin.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Plugin.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Release.array_filter_flags.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Release.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Release.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Release.urgency_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Release.urgency_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Remote.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Remote.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Remote.kind_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Remote.kind_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Report.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Report.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Request.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Request.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Request.kind_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.Request.kind_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.SecurityAttr.flag_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.SecurityAttr.flag_to_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.SecurityAttr.flag_to_suffix.html +%%PORTDOCS%%share/doc/libfwupd/type_func.SecurityAttr.result_from_string.html +%%PORTDOCS%%share/doc/libfwupd/type_func.SecurityAttr.result_to_string.html +%%PORTDOCS%%share/doc/libfwupd/urlmap_fwupd.js +%%PORTDOCS%%share/doc/libfwupd/vfunc.BiosSetting.write_value.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.changed.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.device_added.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.device_changed.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.device_removed.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.device_request.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Client.status_changed.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.add_json.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.add_string.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.add_variant.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.from_json.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.from_variant.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.from_variant_iter.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.to_string.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Codec.to_variant.html +%%PORTDOCS%%share/doc/libfwupd/vfunc.Request.invalidate.html +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Black.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Black.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-BlackItalic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-BlackItalic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Bold.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Bold.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-BoldItalic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-BoldItalic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Italic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Italic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Medium.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Medium.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-MediumItalic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-MediumItalic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Regular.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatDisplay-Regular.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Bold.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Bold.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-BoldItalic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-BoldItalic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Italic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Italic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Medium.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Medium.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-MediumItalic.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-MediumItalic.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Regular.woff +%%PORTDOCS%%share/doc/libfwupdplugin/RedHatText-Regular.woff2 +%%PORTDOCS%%share/doc/libfwupdplugin/SourceCodePro-It.ttf.woff +%%PORTDOCS%%share/doc/libfwupdplugin/SourceCodePro-Regular.ttf.woff +%%PORTDOCS%%share/doc/libfwupdplugin/SourceCodePro-Semibold.ttf.woff +%%PORTDOCS%%share/doc/libfwupdplugin/acpi-dmar-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/acpi-facp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/acpi-ivrs-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/acpi-phat-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/algoltek-usb-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/algoltek-usbcr-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.EndianType.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.IntelThunderboltNvmArcParams.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.IntelThunderboltNvmDigital.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.IntelThunderboltNvmDram.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.IntelThunderboltNvmDrom.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiArbhSvnGetInfoRequest.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiArbhSvnGetInfoResponse.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiArbhSvnInfoEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiReadFileExRequest.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiReadFileExResponse.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiReadFileRequest.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.MkhiReadFileResponse.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructAcpiTable.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCabData.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCabFile.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCabFolder.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCabHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCabHeaderReserve.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCfuOffer.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructCfuPayload.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDfuFtr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDfuseElement.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDfuseHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDfuseImage.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDpauxDpcd.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructDs20.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEdid.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEdidDescriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiDevicePath.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiFile.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiFile2.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiHardDriveDevicePath.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiLoadOption.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiLz77DecompressorHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSection.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSection2.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSectionCompression.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSectionFreeformSubtypeGuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSectionGuidDefined.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiSignatureList.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiTime.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiVariableAuthentication2.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiVolume.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiVolumeBlockMap.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiVolumeExtEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiVolumeExtHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructEfiWinCertificate.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructElfFileHeader64le.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructElfProgramHeader64le.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructElfSectionHeader64le.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructFdt.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructFdtProp.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructFdtReserveEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructFmap.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructFmapArea.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfdFcba.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfdFdbar.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiCpd.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiCpdEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiCpdManifest.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiCpdManifestExt.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiFpt.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructIfwiFptEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructMsDs20.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructOprom.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructOpromPci.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructPeCoffFileHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructPeCoffOptionalHeader64.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructPeCoffSection.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructPeCoffSymbol.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructPeDosHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructSbatLevelSectionHeader.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructShimHive.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructShimHiveItem.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructSmbiosEp32.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructSmbiosEp64.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructSmbiosStructure.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.StructUswid.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbBaseHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbBosHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbDescriptorHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbDeviceHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbDfuDescriptorHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbEndpointHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbHidDescriptorHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/alias.UsbInterfaceHdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/amd-gpu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/amd-kria-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/amd-pmc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/analogix-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/android-boot-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/architecture-plan.svg +%%PORTDOCS%%share/doc/libfwupdplugin/asus-hid-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ata-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/aver-hid-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/bcm57xx-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/best-known-configuration.html +%%PORTDOCS%%share/doc/libfwupdplugin/bios-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/bios-settings.html +%%PORTDOCS%%share/doc/libfwupdplugin/bnr-dp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/building.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.ArchiveIterateFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.ContextLookupIter.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.DeviceLockerFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.DeviceRetryFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.InputStreamChunkifyFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.IoctlFixupFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.QuirksIter.html +%%PORTDOCS%%share/doc/libfwupdplugin/callback.StrsplitFunc.html +%%PORTDOCS%%share/doc/libfwupdplugin/ccgx-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ccgx-dmc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/cfu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ch341a-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ch347-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.AcpiTable.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Archive.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.ArchiveFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Backend.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.BiosSettings.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.BlockDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.BlockPartition.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.BluezDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CabFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CabImage.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CfiDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CfuOffer.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CfuPayload.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Chunk.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.ChunkArray.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CompositeInputStream.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Config.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Context.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CoswidFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CsvEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.CsvFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Device.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DeviceEvent.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DeviceLocker.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DeviceProgress.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DfuFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DfuseFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DpauxDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.DrmDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Edid.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiDevicePath.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiDevicePathList.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiFile.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiFilesystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiHardDriveDevicePath.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiLoadOption.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiSection.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiSignature.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiSignatureList.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiVariableAuthentication2.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiVolume.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiX509Device.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.EfiX509Signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Efivars.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.ElfFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.FdtFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.FdtImage.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.FitFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.FmapFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.HeciDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.HidDescriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.HidDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.HidReport.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.HidrawDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Hwids.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.I2cDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IOChannel.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IfdBios.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IfdFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IfdImage.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IfwiCpdFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IfwiFptFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IhexFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IntelThunderboltFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.IntelThunderboltNvm.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Ioctl.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.KernelSearchPathLocker.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.LinearFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.MeiDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.MsgpackItem.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.OpromDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.OpromFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.PartialInputStream.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.PciDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.PefileFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Pkcs7.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Plugin.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Progress.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Quirks.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.SbatlevelSection.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.SecurityAttr.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.SecurityAttrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.SerioDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Smbios.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.SrecFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UdevDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UefiDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbBosDescriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbConfigDescriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbDeviceDs20.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbDeviceFwDs20.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbDeviceMsDs20.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbEndpoint.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbHidDescriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UsbInterface.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.UswidFirmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.V4lDevice.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.Volume.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.VolumeLocker.html +%%PORTDOCS%%share/doc/libfwupdplugin/class.X509Certificate.html +%%PORTDOCS%%share/doc/libfwupdplugin/classes_hierarchy.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.ARCHIVE_COMPRESSION_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.ARCHIVE_FORMAT_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_FIRMWARE_REVISION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_HARDWARE_REVISION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_MANUFACTURER_NAME.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_MODEL_NUMBER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_PNP_UID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SERIAL_NUMBER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SOFTWARE_REVISION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SYSTEM_ID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.CFI_DEVICE_CMD_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.CHUNK_ADDR_OFFSET_NONE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.CHUNK_PAGESZ_NONE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.CONTEXT_HWID_FLAG_LOAD_ALL.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.COSWID_ENTITY_ROLE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.COSWID_TAG_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.CPU_VENDOR_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_AC_ADAPTER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_APPLICATION_CERTIFICATE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_AUDIO_CARD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_AUTH_FINGERPRINT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_COMPUTER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_DOCK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_DOCK_USB.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_HARDDISK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_MULTIDISK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_SSD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_GPU.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_DIALPAD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_GAMING.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_KEYBOARD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_MOUSE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_TABLET.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_TOUCHPAD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_MEMORY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_MODEM.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_NETWORK_WIRED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_NETWORK_WIRELESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_PDA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_THUNDERBOLT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_USB_HUB.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_USB_RECEIVER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_VIDEO_CAMERA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_VIDEO_DISPLAY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_ICON_WEB_CAMERA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_CPU_MITIGATIONS_REQUIRED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_CPU_SINKCLOSE_MICROCODE_VER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_TBT_IS_SAFE_MODE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_CAPSULE_FLAGS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_DEVICE_KIND.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_FW_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ADD_COUNTERPART_GUIDS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ADD_INSTANCE_ID_REV.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ATTACH_EXTRA_RESET.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_AUTO_PARENT_CHILDREN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_AUTO_PAUSE_POLLING.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_COUNTERPART_VISIBLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DELAYED_REMOVAL.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DETACH_PREPARE_FIRMWARE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DISPLAY_REQUIRED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_EMULATED_REQUIRE_SETUP.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ENFORCE_REQUIRES.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ENSURE_SEMVER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_EXPLICIT_ORDER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_CPU.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_CPU_CHILD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_FIRMWARE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_FIRMWARE_CHILD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IGNORE_SYSTEM_POWER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INHERIT_ACTIVATION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INHIBIT_CHILDREN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INSTALL_LOOP_RESTART.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INSTALL_PARENT_FIRST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IS_FAKE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IS_OPEN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_ONLY_CHECKSUM.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_FLAGS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_ICON.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_NAME.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_NAME_CATEGORY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_REQUIRED_FREE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_SIGNED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VENDOR.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VERFMT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_INSTANCE_IDS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_REMOVE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_REMOVE_CHILDREN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_GENERIC_GUIDS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_LID_CLOSED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_PROBE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_SERIAL_NUMBER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ONLY_SUPPORTED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_PARENT_NAME_PREFIX.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REFCOUNTED_PROXY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REGISTERED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REPLUG_MATCH_GUID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_RETRY_OPEN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_SAVE_INTO_BACKUP_REMOTE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_SKIPS_RESTART.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_UNCONNECTED.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_UPDATE_PENDING.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PARENT_FOR_BATTERY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PARENT_FOR_OPEN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PROXY_FALLBACK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PROXY_FOR_OPEN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_RUNTIME_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_REMOVE_DELAY_RE_ENUMERATE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DEVICE_REMOVE_DELAY_USER_REPLUG.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_ATMEL_AVR.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFUSE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFU_1_0.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFU_1_1.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_UNKNOWN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DISPLAY_STATE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_BRANCH_DEVICE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_LINK_CONFIGURATION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_LINK_SINK_STATUS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_RECEIVER_CAPABILITY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_SINK_DEVICE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_SOURCE_DEVICE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_APPEND_WRITE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_AUTHENTICATED_WRITE_ACCESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_BOOTSERVICE_ACCESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_HARDWARE_ERROR_RECORD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_NON_VOLATILE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_RUNTIME_ACCESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_ATTR_TIME_BASED_AUTHENTICATED_WRITE_ACCESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_EFI_CAPSULE_REPORT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_EFI_GLOBAL.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_FWUPDATE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_SECURITY_DATABASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_SHIM.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFIVARS_GUID_UX_CAPSULE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_FILE_GUID_BIOS_GUARD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_FILE_GUID_FV_IMAGE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_FILE_GUID_MICROCODE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_HARD_DRIVE_DEVICE_PATH_SIGNATURE_TYPE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_KIND_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_METADATA_CMDLINE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_METADATA_PATH.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_LZ77_DECOMPRESSOR_VERSION_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ACPI1_TABLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ACPI2_TABLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ESRT_TABLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_LZMA_COMPRESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_SMBIOS_TABLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SECTION_GUID_TIANO_COMPRESS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_FRAMEWORK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_MICROSOFT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_OVMF.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_OVMF_LEGACY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_ZERO.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_SIGNATURE_KIND_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_APPLE_BOOT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS1.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS2.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS3.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_HP_FS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_EVSA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_EVSA2.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_NVAR.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_PFH1.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_PFH2.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIRMWARE_ALIGNMENT_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIRMWARE_ID_HEADER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIRMWARE_ID_PAYLOAD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIRMWARE_ID_SIGNATURE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIRMWARE_SEARCH_MAGIC_BUFSZ_MAX.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_ALGO.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_COMPATIBLE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA_OFFSET.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA_SIZE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_SKIP_OFFSET.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_STORE_OFFSET.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_TIMESTAMP.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_VALUE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ID_CONFIGURATIONS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FIT_FIRMWARE_ID_IMAGES.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.FMAP_FIRMWARE_STRLEN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_FWUPDATE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MCHI.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MCHI2.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MKHI.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HID_ITEM_KIND_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BASEBOARD_MANUFACTURER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BASEBOARD_PRODUCT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_MAJOR_RELEASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_MINOR_RELEASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_VENDOR.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_ENCLOSURE_KIND.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_FAMILY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_FIRMWARE_MAJOR_RELEASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_FIRMWARE_MINOR_RELEASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_MANUFACTURER.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_PRODUCT_NAME.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.HWIDS_KEY_PRODUCT_SKU.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.I2C_DEVICE_PRIVATE_FLAG_NO_HWID_GUIDS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_MANIFEST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_METADATA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_MODULEDATA_IDX.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_CKSM.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_FWIM.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_IMGI.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_INFO.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_SDTA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.INTEL_THUNDERBOLT_NVM_FAMILY_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.INTEL_THUNDERBOLT_NVM_SECTION_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.LID_STATE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.MSGPACK_ITEM_KIND_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.OPROM_COMPRESSION_TYPE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.OPROM_MACHINE_TYPE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.OPROM_SUBSYSTEM_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.POWER_STATE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_ACQUIESCE_DELAY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_BATTERY_THRESHOLD.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_BRANCH.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_BLOCK_SIZE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_BLOCK_ERASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_CHIP_ERASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_PAGE_PROG.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_DATA.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_ID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_ID_SZ.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_STATUS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_SECTOR_ERASE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_WRITE_EN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_WRITE_STATUS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_PAGE_SIZE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_SECTOR_SIZE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_CHILDREN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_COUNTERPART_GUID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_GTYPE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE_MAX.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE_MIN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_FLAGS.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_GTYPE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_GUID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_GUID_QUIRK.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_ICON.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_INHIBIT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_INSTALL_DURATION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_ISSUE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_NAME.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PARENT_GUID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PLUGIN.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PRIORITY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PROTOCOL.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PROXY_GTYPE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_PROXY_GUID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_REMOVE_DELAY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_SUMMARY.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_UPDATE_IMAGE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_UPDATE_MESSAGE.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_VENDOR.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_VENDOR_ID.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_VERSION.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.QUIRKS_VERSION_FORMAT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.SMBIOS_CHASSIS_KIND_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.SMBIOS_STRUCTURE_TYPE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.UDEV_DEVICE_ATTR_READ_TIMEOUT_DEFAULT.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.USB_DEVICE_MS_DS20_DESC_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.USB_DIRECTION_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.USB_RECIPIENT_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.USB_REQUEST_TYPE_LAST.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.VOLUME_KIND_BDP.html +%%PORTDOCS%%share/doc/libfwupdplugin/const.VOLUME_KIND_ESP.html +%%PORTDOCS%%share/doc/libfwupdplugin/corsair-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/cpu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/cros-ec-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.AcpiTable.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Archive.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Archive.new_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.ArchiveFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.BiosSettings.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CabFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CabImage.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CfiDevice.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CfuOffer.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CfuPayload.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Chunk.bytes_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Chunk.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.ChunkArray.new_from_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.ChunkArray.new_from_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.ChunkArray.new_virtual.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CompositeInputStream.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Config.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Context.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CoswidFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CsvEntry.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.CsvFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Device.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DeviceEvent.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DeviceLocker.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DeviceLocker.new_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DeviceProgress.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DfuFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.DfuseFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Edid.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiDevicePath.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiDevicePathList.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiFile.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiFilesystem.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiHardDriveDevicePath.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiHardDriveDevicePath.new_from_volume.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiLoadOption.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiSection.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiSignatureList.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiVolume.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.EfiX509Device.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Efivars.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.ElfFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.FdtFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.FdtImage.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Firmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Firmware.new_from_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Firmware.new_from_gtypes.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.FitFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.FmapFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.HidDescriptor.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.HidReport.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IOChannel.new_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IOChannel.unix_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IOChannel.virtual_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IfdBios.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IfdFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IfdImage.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IfwiCpdFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IfwiFptFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IhexFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IntelThunderboltFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.IntelThunderboltNvm.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.KernelSearchPathLocker.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.LinearFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_binary.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_binary_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_boolean.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_float.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_map.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_nil.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.MsgpackItem.new_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.OpromFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.PartialInputStream.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.PefileFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Pkcs7.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Plugin.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Plugin.new_from_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Progress.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Quirks.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.SbatlevelSection.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.SecurityAttr.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.SecurityAttrs.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Smbios.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.SrecFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UdevDevice.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UefiDevice.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbBosDescriptor.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbConfigDescriptor.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbDevice.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbDeviceFwDs20.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbDeviceMsDs20.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbEndpoint.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbHidDescriptor.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UsbInterface.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.UswidFirmware.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Volume.new_by_device.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.Volume.new_by_devnum.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.VolumeLocker.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/ctor.X509Certificate.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/dbxtool.html +%%PORTDOCS%%share/doc/libfwupdplugin/debug_attached.png +%%PORTDOCS%%share/doc/libfwupdplugin/debug_breakpoint.png +%%PORTDOCS%%share/doc/libfwupdplugin/debug_task.png +%%PORTDOCS%%share/doc/libfwupdplugin/debug_tool_selector.png +%%PORTDOCS%%share/doc/libfwupdplugin/dell-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/dell-dock-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/dell-kestrel-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/device-emulation.html +%%PORTDOCS%%share/doc/libfwupdplugin/devlink-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/dfu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ds20.html +%%PORTDOCS%%share/doc/libfwupdplugin/ebitdo-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/egis-moc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/elan-kbd-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/elanfp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/elantp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/emmc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.ArchiveCompression.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.ArchiveFormat.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CabCompression.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CabFileAttribute.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CfiDeviceCmd.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CfuOfferComponentId.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoffSubsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.ContextQuirkSource.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoswidEntityRole.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoswidHashAlg.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoswidLinkRel.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoswidTag.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CoswidVersionScheme.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CpuVendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.CrcKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.DisplayState.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EdidDescriptorTag.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiCompressionType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiDevicePathType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiFileAttrib.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiFileType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathPartitionFormat.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathSignatureType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathSubtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiLoadOptionAttrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiLoadOptionKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiLz77DecompressorVersion.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiSectionType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiSignatureKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.EfiVolumeExtEntryType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.ElfFileHeaderType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.ElfSectionHeaderType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.FdtToken.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.FirmareSrecRecordKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.FirmwareAlignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.HidItemKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.HidItemTag.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.HidrawBusType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.IfdRegion.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.IhexFirmwareRecordType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.IntegerBase.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.IntelThunderboltNvmFamily.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.IntelThunderboltNvmSection.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.LidState.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MkhiArbhSvnInfoEntryUsageId.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MkhiCommand.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MkhiGroupId.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MkhiStatus.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MsgpackCmd.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.MsgpackItemKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.OpromCompressionType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.OpromIndicatorFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.OpromMachineType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.OpromSubsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PathKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PciDeviceBaseCls.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PeCoffMachine.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PeCoffMagic.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PluginRule.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PluginVerifyFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.PowerState.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.SmbiosChassisKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.SmbiosStructureType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbClass.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbDescriptorKind.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbDeviceMsDs20Desc.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbDirection.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbLangid.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbRecipient.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UsbRequestType.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UswidHeaderFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.UswidPayloadCompression.html +%%PORTDOCS%%share/doc/libfwupdplugin/enum.V4lCap.html +%%PORTDOCS%%share/doc/libfwupdplugin/env.html +%%PORTDOCS%%share/doc/libfwupdplugin/ep963x-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/fastboot-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ArchiveFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.BackendSetupFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ConfigLoadFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ContextEspFileFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ContextFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ContextHwidFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.DeviceIncorporateFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.DeviceInstanceFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.DumpFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.FirmwareExportFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.FirmwareFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.FirmwareParseFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.HidDeviceFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.IOChannelFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.IfdAccess.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.IntelThunderboltNvmSectionFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.IoChannelOpenFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.IoctlFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.ProgressFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.QuirksLoadFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.SecurityAttrsFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.UsbDeviceClaimFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flags.UtfConvertFlags.html +%%PORTDOCS%%share/doc/libfwupdplugin/flashrom-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/focalfp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/fonts.css +%%PORTDOCS%%share/doc/libfwupdplugin/fpc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/framework-qmk-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/fresco-pd-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.BIT_CLEAR.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.BIT_SET.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_align_up.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_uint16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_uint24.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_uint32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_append_uint8.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.byte_array_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_align.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_get_contents.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_get_data_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_is_empty.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_new_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_pad.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_set_contents.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.bytes_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.cab_compression_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coff_subsystem_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.common_align_up.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.common_get_kernel_cmdline.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.common_get_memory_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.common_get_olson_timezone_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.common_guid_is_plausible.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_entity_role_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_entity_role_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_hash_alg_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_hash_alg_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_link_rel_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_link_rel_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_tag_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_tag_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_version_scheme_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.coswid_version_scheme_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.cpu_get_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.cpu_get_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.cpuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc16_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc32_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc8.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc8_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc_find.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.crc_misr16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_icon.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_issue.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_protocol.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_request_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_add_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_branch.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_checksums.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_composite_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_flashes_left.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_guid_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_guids.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_icons.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_install_duration.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_instance_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_issues.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_percentage.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_plugin.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_protocols.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_release_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_serial.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_status.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_summary.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_update_error.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_update_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_vendor_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_bootloader.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_bootloader_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_build_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_lowest.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_lowest_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_get_version_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_icon.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_protocol.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_request_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_has_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_branch.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_description.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_flashes_left.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_install_duration.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_percentage.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_plugin.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_serial.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_status.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_summary.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_update_error.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_version_bootloader_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.device_set_version_build_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.display_state_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.display_state_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.dump_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.dump_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.dump_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.efi_guid_to_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.efi_lz77_decompressor_version_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.efi_parse_sections.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.elf_section_header_type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.error_convert.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.hid_item_kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.hid_item_tag_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.hid_item_tag_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.hidraw_bus_type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.ifd_access_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.ifd_region_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_chunkify.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_crc16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_sum16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_sum32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_compute_sum8.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_find.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_from_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_u16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_u24.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_u32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_u64.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_read_u8.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.input_stream_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kenv_get_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_add_cmdline_arg.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_check_cmdline_mutable.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_check_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_get_cmdline.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_get_config.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_locked_down.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_parse_cmdline.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_parse_config.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.kernel_remove_cmdline_arg.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.lid_state_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memchk_read.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memchk_write.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memcmp_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memcpy_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memdup_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memmem_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint16_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint24.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint24_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint32_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint64_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memread_uint8_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memstrsafe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint16_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint24.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint32_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint64_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.memwrite_uint8_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_request_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_get_num_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_get_result.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_executing.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_min_allowed.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_usage_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_data_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_file_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_get_data_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_get_result.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_request_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_request_set_data_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_request_set_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_request_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_response_get_data_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_response_get_result.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_read_file_response_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.mkhi_status_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.output_stream_from_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.output_stream_write_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_find_program.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_from_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_get_files.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_get_symlink_target.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_glob.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_make_absolute.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_mkdir.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_mkdir_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.path_rmtree.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.plugin_add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.plugin_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.plugin_has_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.plugin_remove_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.power_state_is_ac.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.power_state_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.snap_is_in_snap.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strdup.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strjoin.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strpassmask.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsafe.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsafe_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsplit.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsplit_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsplit_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strsplit_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strstrip.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strtobool.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strtoll.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strtoull.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_table_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_get_signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_table_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_acpi_table_set_signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_get_comp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_get_uncomp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_set_comp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_data_set_uncomp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_fattr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_time.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_uoffset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_get_usize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_fattr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_time.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_uoffset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_file_set_usize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_get_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_get_ndatab.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_set_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_set_ndatab.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_folder_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_idx_cabinet.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_nr_files.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_nr_folders.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_off_cffile.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_block.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_folder.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_hdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_block.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_folder.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_hdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_idx_cabinet.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_nr_files.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_nr_folders.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_off_cffile.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cab_header_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_compat_variant_mask.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_component_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags3.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_product_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_segment_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_token.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_compat_variant_mask.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_component_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags3.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_product_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_segment_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_token.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_offer_set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_get_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_set_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_cfu_payload_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_crc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_get_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_crc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_set_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfu_ftr_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_get_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_set_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_element_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_get_image_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_get_targets.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_set_image_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_set_targets.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_hdr_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_get_alt_setting.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_get_chunks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_named.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_set_alt_setting.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_set_chunks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_named.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dfuse_image_validate.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_dev_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_fw_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_hw_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_ieee_oui.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_dpaux_dpcd_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_get_alt_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_get_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_get_platform_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_get_total_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_get_vendor_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_set_alt_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_set_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_set_platform_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_set_total_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ds20_set_vendor_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_get_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_get_subkind.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_get_tag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_set_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_set_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_set_subkind.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_descriptor_set_tag.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_data_blocks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_extension_block_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_manufacturer_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_product_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_revision_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_serial_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_week_of_manufacture.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_get_year_of_manufacture.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_data_blocks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_extension_block_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_manufacturer_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_product_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_revision_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_serial_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_week_of_manufacture.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_edid_set_year_of_manufacture.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_get_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_set_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_device_path_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file2_get_extended_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file2_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_data_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_hdr_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_data_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_hdr_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_file_validate.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_start.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_signature_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_start.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_signature_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_get_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_get_dp_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_set_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_load_option_set_dp_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_get_dst_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_get_src_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section2_get_extended_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section2_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_compression_get_compression_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_compression_get_uncompressed_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_compression_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_freeform_subtype_guid_get_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_freeform_subtype_guid_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_section_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_get_header_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_get_list_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_set_header_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_set_list_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_signature_list_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_day.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_daylight.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_hour.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_minute.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_month.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_nanosecond.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_second.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_timezone.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_time_get_year.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_get_auth_info.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_get_timestamp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_set_auth_info.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_set_timestamp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_get_num_blocks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_block_map_set_num_blocks.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_get_fv_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_ext_hdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_hdr_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_get_zero_vector.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_ext_hdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_hdr_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_set_zero_vector.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_volume_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_win_certificate_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_efi_win_certificate_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ehsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ei_abiversion.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ei_osabi.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_entry.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_machine.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phentsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phnum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shentsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shnum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shstrndx.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ehsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ei_abiversion.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ei_osabi.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_entry.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_machine.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phentsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phnum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shentsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shnum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shstrndx.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_file_header64le_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_align.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_filesz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_flags2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_memsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_paddr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_vaddr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_align.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_filesz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_flags2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_memsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_paddr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_vaddr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_addralign.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_entsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_info.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_link.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_addralign.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_entsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_info.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_link.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_boot_cpuid_phys.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_last_comp_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_off_dt_strings.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_off_dt_struct.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_off_mem_rsvmap.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_size_dt_strings.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_size_dt_struct.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_totalsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_get_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_get_nameoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_set_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_prop_set_nameoff.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_get_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_set_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_boot_cpuid_phys.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_last_comp_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_off_dt_strings.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_off_dt_struct.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_off_mem_rsvmap.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_size_dt_strings.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_size_dt_struct.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_totalsize.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fdt_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_area_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_base.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_nareas.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_ver_major.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_get_ver_minor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_base.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_nareas.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_ver_major.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_set_ver_minor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_fmap_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flcomp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flill.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flill1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flcomp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flill.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flill1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map0.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map0.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map1.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map2.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifd_fdbar_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_entry_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_num_of_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_partition_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_get_extension_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_get_extension_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_set_extension_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_set_extension_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_rsvd.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_svn.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_date.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_rsvd.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_svn.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_entry_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_num_of_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_partition_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_cpd_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_partition_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_partition_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_partition_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_partition_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_build.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_hotfix.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_major.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_minor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_num_of_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_ticks_to_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_tokens_to_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_uma_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_build.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_hotfix.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_major.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_minor.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_header_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_num_of_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_ticks_to_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_tokens_to_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_uma_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ifwi_fpt_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_ms_ds20_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_compression_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_efi_image_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_expansion_header_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_image_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_init_func_entry_point.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_machine_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_pci_header_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_get_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_class_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_code_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_conf_util_code_header_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_device_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_device_list_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_dmtf_clp_entry_point_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_image_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_image_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_indicator.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_max_runtime_image_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_structure_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_structure_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_get_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_class_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_code_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_conf_util_code_header_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_device_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_device_list_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_dmtf_clp_entry_point_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_image_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_image_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_indicator.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_max_runtime_image_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_structure_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_structure_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_pci_set_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_compression_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_efi_image_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_expansion_header_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_image_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_init_func_entry_point.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_machine_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_pci_header_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_set_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_oprom_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_characteristics.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_machine.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_number_of_sections.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_number_of_symbols.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_pointer_to_symbol_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_size_of_optional_header.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_characteristics.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_machine.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_number_of_sections.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_number_of_symbols.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_pointer_to_symbol_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_size_of_optional_header.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_addressofentrypoint.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_base_of_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_certificate_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_debug_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_file_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_image_base.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_loader_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_magic.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_major_linker_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_minor_linker_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_number_of_rva_and_sizes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_section_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_certificate_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_debug_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_headers.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_initialized_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_uninitialized_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_addressofentrypoint.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_base_of_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_certificate_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_debug_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_file_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_image_base.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_loader_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_magic.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_major_linker_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_minor_linker_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_number_of_rva_and_sizes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_section_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_certificate_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_debug_table.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_headers.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_initialized_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_uninitialized_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_characteristics.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_pointer_to_raw_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_size_of_raw_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_virtual_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_get_virtual_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_characteristics.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_pointer_to_raw_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_size_of_raw_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_virtual_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_coff_section_set_virtual_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cblp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cparhdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_crlc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_lfanew.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_lfarlc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_maxalloc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_minalloc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_get_sp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cblp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cparhdr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_crlc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_lfanew.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_lfarlc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_maxalloc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_minalloc.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_set_sp.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_pe_dos_header_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_get_latest.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_get_previous.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_set_latest.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_sbat_level_section_header_set_previous.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_get_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_get_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_get_items_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_get_items_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_get_key_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_get_value_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_set_key_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_item_set_value_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_set_crc32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_set_header_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_set_items_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_shim_hive_set_items_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_intermediate_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_intermediate_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_max_structure_sz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_number_smbios_structs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_bcd_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_major_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_minor_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_structure_table_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_get_structure_table_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_intermediate_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_intermediate_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_max_structure_sz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_number_smbios_structs.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_bcd_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_major_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_minor_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_structure_table_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep32_set_structure_table_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_reserved0.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_docrev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_major_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_minor_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_structure_table_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_get_structure_table_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_anchor_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_csum.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_reserved0.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_docrev.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_major_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_minor_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_structure_table_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_ep64_set_structure_table_len.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_get_handle.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_get_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_set_handle.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_smbios_structure_set_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_get_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_get_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_get_hdrsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_get_hdrver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_get_payloadsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_set_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_set_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_set_hdrsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_set_hdrver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_set_payloadsz.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.struct_uswid_validate_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.strwidth.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum16_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum16w.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum16w_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum32_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum32w.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum32w_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum8.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.sum8_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_base_hdr_get_descriptor_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_base_hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_base_hdr_parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_base_hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_get_descriptor_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_get_dev_capability_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_set_descriptor_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_set_dev_capability_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_bos_hdr_set_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_class_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_attributes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_configuration.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_configuration_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_max_power.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_num_interfaces.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_total_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_kind_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_descriptor_kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_attributes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_detach_timeout.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_dfu_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_transfer_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_parse_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.uswid_payload_compression_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.uswid_payload_compression_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.utf16_to_utf8_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.utf16_to_utf8_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.utf8_to_utf16_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.utf8_to_utf16_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.v4l_cap_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_ensure_semver.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint16.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint16_hex.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint24.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint32.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint32_hex.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_from_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_guess_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_parse_from_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.version_verify_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.xmlb_builder_insert_kb.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.xmlb_builder_insert_kv.html +%%PORTDOCS%%share/doc/libfwupdplugin/func.xmlb_builder_insert_kx.html +%%PORTDOCS%%share/doc/libfwupdplugin/fwupd-remotes.d.html +%%PORTDOCS%%share/doc/libfwupdplugin/fwupd.conf.html +%%PORTDOCS%%share/doc/libfwupdplugin/fwupdmgr.html +%%PORTDOCS%%share/doc/libfwupdplugin/fwupdtool.html +%%PORTDOCS%%share/doc/libfwupdplugin/fzy.js +%%PORTDOCS%%share/doc/libfwupdplugin/genesys-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/genesys-gl32xx-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/go-up-symbolic.png +%%PORTDOCS%%share/doc/libfwupdplugin/goodix-moc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/goodix-tp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/gpio-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/hpi-cfu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/hsi.html +%%PORTDOCS%%share/doc/libfwupdplugin/huddly-usb-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/hughski-colorhug-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/hwids.html +%%PORTDOCS%%share/doc/libfwupdplugin/ilitek-its-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/index.html +%%PORTDOCS%%share/doc/libfwupdplugin/index.json +%%PORTDOCS%%share/doc/libfwupdplugin/intel-amt-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/intel-cvs-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/intel-gsc-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/intel-mchi-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/intel-mkhi-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/intel-usb4-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/iommu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/jabra-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/jabra-file-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/jabra-gnp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/kinetic-dp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/legion-hid2-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/lenovo-thinklmi-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/libfwupdplugin.devhelp2 +%%PORTDOCS%%share/doc/libfwupdplugin/linux-display-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/linux-lockdown-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/linux-sleep-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/linux-swap-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/linux-tainted-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logind-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logitech-bulkcontroller-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logitech-hidpp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logitech-rallysystem-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logitech-scribe-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/logitech-tap-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/main.js +%%PORTDOCS%%share/doc/libfwupdplugin/mediatek-scaler-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.AcpiTable.get_oem_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.AcpiTable.get_oem_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.AcpiTable.get_oem_table_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.AcpiTable.get_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Archive.add_entry.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Archive.iterate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Archive.lookup_by_fn.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Archive.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ArchiveFirmware.get_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ArchiveFirmware.get_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ArchiveFirmware.get_image_fnmatch.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ArchiveFirmware.set_compression.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ArchiveFirmware.set_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.add_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.coldplug.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.create_device.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.create_device_for_donor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.device_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.device_removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.get_context.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.get_device_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.get_devices.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.get_enabled.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.invalidate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.lookup_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.registered.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.set_enabled.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Backend.setup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.add_attribute.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.get_all.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.get_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.get_pending_reboot.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.setup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BiosSettings.to_hash_kv.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_none.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockPartition.get_fs_label.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockPartition.get_fs_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockPartition.get_fs_uuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BlockPartition.get_mount_point.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.notify_acquire.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.notify_start.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.notify_stop.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.read_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.BluezDevice.write_acquire.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabFirmware.get_compressed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabFirmware.get_only_basename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabFirmware.set_compressed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabFirmware.set_only_basename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabImage.get_created.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabImage.get_win32_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabImage.set_created.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CabImage.set_win32_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.chip_select.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.chip_select_locker_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_block_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_cmd.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_flash_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_page_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_sector_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.send_command.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.set_block_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.set_flash_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.set_page_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.set_sector_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfiDevice.set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_bank.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_component_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_force_ignore_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_force_immediate_reset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_hw_variant.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_milestone.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_product_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_protocol_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_segment_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.get_token.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_bank.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_component_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_force_ignore_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_force_immediate_reset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_hw_variant.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_milestone.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_product_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_protocol_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_segment_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CfuOffer.set_token.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_data_out.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_data_sz.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.get_page.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.set_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.set_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.set_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.set_page.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Chunk.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ChunkArray.index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.ChunkArray.length.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CompositeInputStream.add_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CompositeInputStream.add_partial_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CompositeInputStream.add_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.get_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.get_value_bool.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.get_value_strv.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.get_value_u64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.load.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.reset_defaults.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.set_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Config.set_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_compile_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_esp_volume.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_firmware_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_quirk_key.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_runtime_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.add_udev_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.efivars_check_free_space.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_backends.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_battery_level.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_bios_setting.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_bios_setting_pending_reboot.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_bios_settings.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_chassis_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_compile_versions.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_config.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_default_esp.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_display_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_efivars.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_esp_files.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_esp_location.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_esp_volume_by_hard_drive_device_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_esp_volumes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_fdt.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_firmware_gtype_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_firmware_gtype_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_firmware_gtypes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_hwid_guids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_hwid_replace_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_hwid_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_hwids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_lid_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_plugin_names_for_udev_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_power_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_runtime_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_runtime_versions.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_smbios.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_smbios_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_smbios_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_smbios_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.get_udev_subsystems.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.has_backend.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.has_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.has_hwid_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.has_hwid_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.housekeeping.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.load_hwinfo.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.load_quirks.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.lookup_quirk_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.lookup_quirk_by_id_iter.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.reload_bios_settings.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.remove_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.security_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_battery_level.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_chassis_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_display_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_esp_location.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_lid_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Context.set_power_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CoswidFirmware.get_product.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvEntry.add_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvEntry.get_value_by_column_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvEntry.get_value_by_column_id_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvEntry.get_value_by_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvFirmware.add_column_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvFirmware.get_column_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvFirmware.get_write_column_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.CsvFirmware.set_write_column_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.activate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_child.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_event.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_id_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_strsafe.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_strup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_u16.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_u32.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_u4.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_instance_u8.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_json.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_parent_backend_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_parent_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_parent_physical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_possible_plugin.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_private_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_problem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_security_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.add_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.attach.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.attach_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.bind_driver.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.build_instance_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.build_instance_id_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.build_instance_id_strv.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.build_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.build_vendor_id_u16.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.check_fwupd_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.clear_events.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.close.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.convert_instance_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.detach.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.detach_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.dump_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.emit_request.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.ensure_from_component.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.ensure_from_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.ensure_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.from_json.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_acquiesce_delay.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_backend.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_backend_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_backend_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_backend_parent_with_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_battery_level.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_children.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_contents.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_contents_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_context.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_counterpart_guids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_created_usec.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_custom_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_equivalent_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_events.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_firmware_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_firmware_size_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_firmware_size_min.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_instance_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_logical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_metadata_boolean.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_metadata_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_modified_usec.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_parent_backend_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_parent_guids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_parent_physical_ids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_physical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_possible_plugins.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_priority.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_proxy.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_proxy_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_proxy_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_proxy_with_fallback.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_remove_delay.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_request_cnt.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_required_free.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_results.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_root.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_smbios_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_specialized_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_update_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_update_message.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_update_request_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.get_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_inhibit.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_instance_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_parent_backend_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_parent_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_parent_physical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_private_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_private_flag_quark.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.has_problem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.incorporate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.incorporate_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.inhibit.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.is_updatable.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.load_event.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.open.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.poll.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.poll_locker_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.prepare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.prepare_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.probe.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.probe_complete.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.probe_invalidate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.query_file_exists.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.read_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.register_private_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.reload.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_child.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_children.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_private_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.remove_problem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.replace.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.report_metadata_post.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.report_metadata_pre.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.rescan.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.retry.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.retry_add_recovery.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.retry_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.retry_set_delay.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.save_event.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.security_attr_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_acquiesce_delay.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_backend.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_backend_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_battery_level.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_battery_threshold.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_contents.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_contents_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_context.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_created_usec.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_custom_flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_equivalent_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_firmware_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_firmware_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_firmware_size_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_firmware_size_min.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_fwupd_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_logical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_metadata_boolean.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_metadata_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_modified_usec.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_physical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_poll_interval.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_priority.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_progress.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_proxy.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_proxy_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_proxy_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_quirk_kv.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_remove_delay.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_required_free.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_specialized_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_target.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_update_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_update_message.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_update_request_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_update_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version_bootloader.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version_lowest.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version_lowest_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_version_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.set_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.setup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.sleep.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.sleep_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.unbind_driver.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.uninhibit.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Device.write_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.check_error.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.copy_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.get_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.get_i64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.get_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.set_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.set_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.set_error.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.set_i64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceEvent.set_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DeviceLocker.close.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.get_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.get_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.get_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.set_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.set_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DfuFirmware.set_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_dev_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_hw_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_ieee_oui.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_dev_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_hw_rev.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_ieee_oui.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DpauxDevice.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_connector_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_crtc_height.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_crtc_width.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_crtc_x.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_crtc_y.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_edid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_enabled.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.DrmDevice.get_state.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.get_eisa_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.get_pnp_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.get_product_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.get_product_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.get_serial_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.set_eisa_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.set_pnp_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.set_product_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.set_product_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Edid.set_serial_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiDevicePath.get_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiDevicePath.set_subtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_signature.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_start.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiLoadOption.get_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiLoadOption.get_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiLoadOption.set_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiLoadOption.set_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiSignature.get_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiSignature.get_owner.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiSignatureList.get_newest.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiVariableAuthentication2.get_signers.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiX509Signature.get_issuer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiX509Signature.get_subject.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiX509Signature.get_subject_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.EfiX509Signature.get_subject_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.create_boot_entry_for_volume.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.delete.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.delete_with_glob.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.exists.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_current.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_entries.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_entry.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_next.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_boot_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_data_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_monitor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_names.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.get_secure_boot.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_boot_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_boot_entry.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_boot_next.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_boot_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.set_data_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.space_free.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.space_used.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Efivars.supported.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtFirmware.get_cpuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtFirmware.get_image_by_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtFirmware.set_cpuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attr_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attr_strlist.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attr_u32.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attr_u64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.get_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.set_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.set_attr_str.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.set_attr_strlist.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.set_attr_uint32.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FdtImage.set_attr_uint64.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.add_chunk.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.add_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.add_image_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.add_patch.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.build.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.build_from_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.build_from_xml.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.check_compatible.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.export.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.export_to_xml.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_bytes_with_patches.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_chunks.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_depth.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_gtype_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_id_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_id_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_idx_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_image_by_idx_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_images.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_images_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_size_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_version_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.get_version_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.has_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.parse_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.parse_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.remove_image.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.remove_image_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.remove_image_by_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_addr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_alignment.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_filename.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_images_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_size_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_version_format.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.set_version_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.tokenize.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.write_chunk.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Firmware.write_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FitFirmware.get_timestamp.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.FitFirmware.set_timestamp.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HeciDevice.arbh_svn_get_info.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HeciDevice.read_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HeciDevice.read_file_ex.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDescriptor.find_report.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.get_ep_addr_in.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.get_ep_addr_out.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.get_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.get_report.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.parse_descriptors.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.set_ep_addr_in.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.set_ep_addr_out.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.set_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidDevice.set_report.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.get_bus_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.get_feature.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.get_report.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.parse_descriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.set_feature.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.HidrawDevice.set_report.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.add_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.add_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_chid_keys.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_guids.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_keys.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_replace_keys.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_replace_values.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.get_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Hwids.has_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.I2cDevice.read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.I2cDevice.set_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.I2cDevice.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.read_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.read_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.read_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.seek.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.shutdown.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.unix_get_fd.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.write_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.write_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.write_raw.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IOChannel.write_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IfdFirmware.check_jedec_cmd.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IfdImage.get_access.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IfdImage.set_access.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IhexFirmware.get_records.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IhexFirmware.set_padding_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_device_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_flash_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_model_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.has_pd.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.is_host.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.IntelThunderboltNvm.is_native.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.add_const_buffer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.add_key_as_u16.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.add_key_as_u8.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.add_mutable_buffer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.execute.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Ioctl.set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.KernelSearchPathLocker.get_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.LinearFirmware.get_image_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.connect.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.get_fw_status.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.get_fw_ver.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.get_max_msg_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.get_protocol_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MeiDevice.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_binary.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_boolean.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_float.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_map.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.MsgpackItem.get_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.OpromFirmware.get_compression_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.OpromFirmware.get_machine_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.OpromFirmware.get_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PartialInputStream.get_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PartialInputStream.get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.get_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.get_subsystem_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.get_subsystem_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.set_revision.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.set_subsystem_pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.PciDevice.set_subsystem_vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_device_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_device_udev_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_firmware_gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_report_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_rule.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.add_udev_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.alloc_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.cache_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.cache_lookup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.cache_remove.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.device_add.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.device_register.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.device_remove.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_config_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_config_value_boolean.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_context.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_device_gtype_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_device_gtypes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_devices.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_priority.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_report_metadata.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.get_rules.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.is_open.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.name_compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.open.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.order_compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.reset_config_values.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_activate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_add_security_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_attach.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_backend_device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_backend_device_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_clear_results.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_coldplug.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_composite_cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_composite_prepare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_detach.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_device_created.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_device_register.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_device_removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_fix_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_get_results.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_init.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_modify_config.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_prepare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_ready.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_reboot_cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_reload.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_startup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_undo_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_unlock.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_verify.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.runner_write_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.security_attr_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_config_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_config_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_context.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_device_gtype_default.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_order.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.set_priority.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Plugin.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.add_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.add_step.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.finished.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_child.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_duration.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_percentage.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_profile.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_status.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.get_steps.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.has_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.remove_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.reset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_percentage.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_percentage_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_profile.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_status.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.set_steps.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.sleep.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.step_done.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Progress.traceback.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Quirks.add_possible_key.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Quirks.load.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Quirks.lookup_by_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Quirks.lookup_by_id_iter.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.append.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.append_internal.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.calculate_hsi.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.compare.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.depsolve.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.equal.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.get_all.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.get_by_appstream_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.is_valid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.remove_all.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SecurityAttrs.to_variant.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.get_integer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.get_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.setup.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.setup_from_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Smbios.setup_from_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SrecFirmware.get_records.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SrecFirmware.set_addr_max.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.SrecFirmware.set_addr_min.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.add_open_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.add_property.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.emit_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_bind_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_device_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_device_file_from_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_devpath.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_devtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_driver.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_io_channel.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_subsystem_depth.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_subsystem_devtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.get_sysfs_path.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.ioctl.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.ioctl_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.list_sysfs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.match_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.parse_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.pread.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.pwrite.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.read.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.read_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.read_property.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.read_sysfs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.read_sysfs_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.remove_open_flag.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.reopen.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.seek.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_bind_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_device_file.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_devtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_io_channel.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_physical_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.set_subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.write_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.write_sysfs.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.write_sysfs_byte_array.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UdevDevice.write_sysfs_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.get_efivar_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.get_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.get_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.set_efivar_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.set_guid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UefiDevice.set_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbBosDescriptor.get_capability.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbConfigDescriptor.get_configuration.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbConfigDescriptor.get_configuration_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.add_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.bulk_transfer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.claim_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.control_transfer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_bus.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_claim_retry_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_configuration_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_custom_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_dev.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_hid_descriptors.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_interfaces.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_manufacturer_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_product_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_release.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_serial_number_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_spec.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor_bytes.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor_bytes_full.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.interrupt_transfer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.release_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.reset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.set_claim_retry_count.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.set_configuration.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDevice.set_interface_alt.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDeviceDs20.apply_to_device.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbDeviceDs20.set_version_lowest.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbEndpoint.get_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbEndpoint.get_direction.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbEndpoint.get_maximum_packet_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbEndpoint.get_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbEndpoint.get_polling_interval.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbHidDescriptor.get_blob.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbHidDescriptor.get_descriptor_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbHidDescriptor.get_iface_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbHidDescriptor.set_blob.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbHidDescriptor.set_iface_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.add_endpoint.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_alternate.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_endpoints.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_protocol.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.UsbInterface.get_subclass.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.V4lDevice.get_caps.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.V4lDevice.get_index.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.check_free_space.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_block_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_block_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_id_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_mount_point.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_name.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_offset.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_partition_uuid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.get_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.is_encrypted.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.is_internal.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.is_mdraid.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.is_mounted.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.mount.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.Volume.unmount.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.VolumeLocker.close.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.X509Certificate.get_activation_time.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.X509Certificate.get_issuer.html +%%PORTDOCS%%share/doc/libfwupdplugin/method.X509Certificate.get_subject.html +%%PORTDOCS%%share/doc/libfwupdplugin/modem-manager-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/msr-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/mtd-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/nordic-hid-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/nvme-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/only-trusted.html +%%PORTDOCS%%share/doc/libfwupdplugin/org.freedesktop.fwupd.svg +%%PORTDOCS%%share/doc/libfwupdplugin/parade-lspcon-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/parade-usbhub-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/pci-bcr-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/pci-mei-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/pci-psp-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/pixart-rf-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/powerd-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Backend.can-invalidate.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Backend.context.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Backend.device-gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Backend.name.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.BluezDevice.object-manager.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.BluezDevice.proxy.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.CfiDevice.flash-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.battery-level.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.battery-threshold.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.display-state.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.lid-state.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Context.power-state.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.backend-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.backend.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.context.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.equivalent-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.logical-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.physical-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.pid.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.private-flags.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.proxy.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.required-free.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.update-image.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.update-message.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Device.vid.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.DpauxDevice.dpcd-ieee-oui.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Firmware.parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.HidDevice.interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.LinearFirmware.image-gtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Plugin.context.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UdevDevice.bind-id.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UdevDevice.device-file.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UdevDevice.devtype.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UdevDevice.driver.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UdevDevice.subsystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.UsbDevice.libusb-device.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Volume.mount-path.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Volume.proxy-block.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Volume.proxy-filesystem.html +%%PORTDOCS%%share/doc/libfwupdplugin/property.Volume.proxy-partition.html +%%PORTDOCS%%share/doc/libfwupdplugin/qc-firehose-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/qc-s5gen2-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/qsi-dock-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/realtek-mst-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/redfish-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/rp-pico-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/rts54hub-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/scsi-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/search.js +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Backend.device-added.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Backend.device-changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Backend.device-removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.BluezDevice.changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Config.changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Config.loaded.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Context.housekeeping.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Context.security-changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Device.child-added.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Device.child-removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Device.request.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Plugin.check-supported.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Plugin.device-added.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Plugin.device-register.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Plugin.device-removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Plugin.rules-changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Progress.percentage-changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.Progress.status-changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/signal.UdevDevice.changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/solarized-dark.css +%%PORTDOCS%%share/doc/libfwupdplugin/solarized-light.css +%%PORTDOCS%%share/doc/libfwupdplugin/steelseries-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/struct.ErrorConvertEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/struct.ErrorMapEntry.html +%%PORTDOCS%%share/doc/libfwupdplugin/struct.PluginData.html +%%PORTDOCS%%share/doc/libfwupdplugin/struct.PluginVfuncs.html +%%PORTDOCS%%share/doc/libfwupdplugin/style.css +%%PORTDOCS%%share/doc/libfwupdplugin/supermicro-license.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-cape-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-cxaudio-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-mst-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-prometheus-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-rmi-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/synaptics-vmm9-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/system76-launch-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/telink-dfu-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/test-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/test_task.png +%%PORTDOCS%%share/doc/libfwupdplugin/thelio-io-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/thunderbolt-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/ti-tps6598x-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/tpm-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/tutorial.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Archive.compression_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Archive.compression_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Archive.format_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Archive.format_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.CfiDevice.cmd_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.ChunkArray.mutable_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.ChunkArray.new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.ChunkArray.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Device.instance_flags_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiFile.type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.partition_format_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.partition_format_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.signature_type_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.signature_type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiLoadOption.kind_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiLoadOption.kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiSection.type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiSignature.kind_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiSignature.kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.EfiVolume.ext_entry_type_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.ErrorMapEntry.to_gerror.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.flags_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.strparse_uint16_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.strparse_uint24_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.strparse_uint32_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.strparse_uint4_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Firmware.strparse_uint8_safe.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IOChannel.open_flags_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.arc_params_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.arc_params_set_pd_pointer.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_arc_params.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_available_sections.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_device_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_drom.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flags_host.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flags_is_native.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flash_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_ucode.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.dram_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_new.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_set_model_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_set_vendor_id.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.family_from_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.family_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.section_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.MsgpackItem.kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Plugin.guess_name_from_fn.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.SecurityAttr.add_bios_target_value.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.SecurityAttr.check_fwupd_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Smbios.chassis_kind_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_protocol.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_sub_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_manufacturer_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_max_packet_size0.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_num_configurations.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_product.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_product_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_serial_number_idx.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_usb.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_vendor.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDevice.hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbDeviceMsDs20.desc_to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_attributes.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_descriptor_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_endpoint_address.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_interval.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_max_packet_size.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_class_descriptor_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_class_descriptor_type.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_country_code.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_hid.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_num_descriptors.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_alternate_setting.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_number.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_protocol.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_sub_class.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_length.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_num_endpoints.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.UsbInterface.hdr_parse_stream.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Volume.kind_convert_to_gpt.html +%%PORTDOCS%%share/doc/libfwupdplugin/type_func.Volume.new_by_kind.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-capsule-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-db-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-db.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-dbx-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-esrt-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-kek-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-mok-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-pk-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-recovery-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uefi-sbat-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/uf2-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/upower-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/urlmap_fwupdplugin.js +%%PORTDOCS%%share/doc/libfwupdplugin/usi-dock-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/vbe-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.coldplug.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.create_device.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.create_device_for_donor.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.get_device_parent.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.invalidate.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.registered.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.setup.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Backend.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.CfiDevice.chip_select.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.CfiDevice.read_jedec.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.CfiDevice.send_command.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Context.housekeeping.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Context.security_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.delete.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.delete_with_glob.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.exists.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.get_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.get_monitor.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.get_names.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.set_data.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.space_free.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.space_used.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Efivars.supported.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.build.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.check_compatible.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.convert_version.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.export.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.get_checksum.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.tokenize.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.validate.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Firmware.write.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._check_supported.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._device_register.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._device_removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._percentage_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._rules_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin._status_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.activate.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.add_security_attrs.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.attach.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.backend_device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.backend_device_changed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.backend_device_removed.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.clear_results.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.coldplug.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.composite_cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.composite_prepare.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.detach.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.device_added.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.device_created.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.device_registered.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.fix_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.get_results.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.modify_config.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.prepare.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.ready.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.reboot_cleanup.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.startup.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.to_string.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.undo_host_security_attr.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.unlock.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.verify.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.Plugin.write_firmware.html +%%PORTDOCS%%share/doc/libfwupdplugin/vfunc.UsbDeviceDs20.parse.html +%%PORTDOCS%%share/doc/libfwupdplugin/vli-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/wacom-raw-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/wacom-usb-README.html +%%PORTDOCS%%share/doc/libfwupdplugin/wistron-dock-README.html +share/fish/vendor_completions.d/fwupdmgr.fish +%%DATADIR%%/add_capsule_header.py +%%DATADIR%%/firmware_packager.py +%%DATADIR%%/install_dell_bios_exe.py +%%DATADIR%%/metainfo/org.freedesktop.fwupd.remotes.lvfs-testing.metainfo.xml +%%DATADIR%%/metainfo/org.freedesktop.fwupd.remotes.lvfs.metainfo.xml +%%DATADIR%%/quirks.d/builtin.quirk.gz +%%DATADIR%%/remotes.d/vendor/firmware/README.md +%%DATADIR%%/simple_client.py +%%DATADIR%%/uefi-capsule-ux.tar.xz +share/gir-1.0/Fwupd-2.0.gir +share/icons/hicolor/128x128/apps/org.freedesktop.fwupd.png +share/icons/hicolor/64x64/apps/org.freedesktop.fwupd.png +share/icons/hicolor/scalable/apps/org.freedesktop.fwupd.svg +share/locale/af/LC_MESSAGES/fwupd.mo +share/locale/ar/LC_MESSAGES/fwupd.mo +share/locale/ast/LC_MESSAGES/fwupd.mo +share/locale/ca/LC_MESSAGES/fwupd.mo +share/locale/cs/LC_MESSAGES/fwupd.mo +share/locale/da/LC_MESSAGES/fwupd.mo +share/locale/de/LC_MESSAGES/fwupd.mo +share/locale/en_GB/LC_MESSAGES/fwupd.mo +share/locale/eo/LC_MESSAGES/fwupd.mo +share/locale/es/LC_MESSAGES/fwupd.mo +share/locale/eu/LC_MESSAGES/fwupd.mo +share/locale/fi/LC_MESSAGES/fwupd.mo +share/locale/fr/LC_MESSAGES/fwupd.mo +share/locale/fur/LC_MESSAGES/fwupd.mo +share/locale/gl/LC_MESSAGES/fwupd.mo +share/locale/he/LC_MESSAGES/fwupd.mo +share/locale/hi/LC_MESSAGES/fwupd.mo +share/locale/hr/LC_MESSAGES/fwupd.mo +share/locale/hu/LC_MESSAGES/fwupd.mo +share/locale/id/LC_MESSAGES/fwupd.mo +share/locale/it/LC_MESSAGES/fwupd.mo +share/locale/ja/LC_MESSAGES/fwupd.mo +share/locale/ka/LC_MESSAGES/fwupd.mo +share/locale/kk/LC_MESSAGES/fwupd.mo +share/locale/ko/LC_MESSAGES/fwupd.mo +share/locale/ky/LC_MESSAGES/fwupd.mo +share/locale/lt/LC_MESSAGES/fwupd.mo +share/locale/nl/LC_MESSAGES/fwupd.mo +share/locale/oc/LC_MESSAGES/fwupd.mo +share/locale/pa/LC_MESSAGES/fwupd.mo +share/locale/pl/LC_MESSAGES/fwupd.mo +share/locale/pt/LC_MESSAGES/fwupd.mo +share/locale/pt_BR/LC_MESSAGES/fwupd.mo +share/locale/ro/LC_MESSAGES/fwupd.mo +share/locale/ru/LC_MESSAGES/fwupd.mo +share/locale/si/LC_MESSAGES/fwupd.mo +share/locale/sk/LC_MESSAGES/fwupd.mo +share/locale/sl/LC_MESSAGES/fwupd.mo +share/locale/sr/LC_MESSAGES/fwupd.mo +share/locale/sv/LC_MESSAGES/fwupd.mo +share/locale/tr/LC_MESSAGES/fwupd.mo +share/locale/uk/LC_MESSAGES/fwupd.mo +share/locale/zh_CN/LC_MESSAGES/fwupd.mo +share/locale/zh_TW/LC_MESSAGES/fwupd.mo +share/man/man1/dbxtool.1.gz +share/man/man1/fwupdmgr.1.gz +share/man/man1/fwupdtool.1.gz +share/man/man5/fwupd-remotes.d.5.gz +share/man/man5/fwupd.conf.5.gz +share/metainfo/org.freedesktop.fwupd.metainfo.xml +share/vala/vapi/fwupd.deps +share/vala/vapi/fwupd.vapi diff --git a/sysutils/httm/Makefile b/sysutils/httm/Makefile index f680749dfe47..f69c8f95cca4 100644 --- a/sysutils/httm/Makefile +++ b/sysutils/httm/Makefile @@ -1,6 +1,5 @@ PORTNAME= httm -DISTVERSION= 0.48.0 -PORTREVISION= 3 +DISTVERSION= 0.48.1 CATEGORIES= sysutils MAINTAINER= bofh@FreeBSD.org @@ -19,4 +18,15 @@ GH_ACCOUNT= kimono-koans PLIST_FILES= bin/httm +OPTIONS_DEFINE= SCRIPTS +OPTIONS_DEFAULT=SCRIPTS + +SCRIPTS_DESC= Install example scripts + +SCRIPTS_RUN_DEPENDS= bash:shells/bash +SCRIPTS_PLIST_FILES= bin/bowie + +post-install-SCRIPTS-on: + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/bowie.bash ${STAGEDIR}${PREFIX}/bin/bowie + .include <bsd.port.mk> diff --git a/sysutils/httm/distinfo b/sysutils/httm/distinfo index 367b7f9054b1..9dffd03e057a 100644 --- a/sysutils/httm/distinfo +++ b/sysutils/httm/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1749129005 +TIMESTAMP = 1760454115 SHA256 (rust/crates/ahash-0.3.8.crate) = e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217 SIZE (rust/crates/ahash-0.3.8.crate) = 28650 SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 @@ -327,5 +327,5 @@ SHA256 (rust/crates/yaml-rust-0.3.5.crate) = e66366e18dc58b46801afbf2ca7661a9f59 SIZE (rust/crates/yaml-rust-0.3.5.crate) = 42087 SHA256 (console-rs-indicatif-458e4dc391c1b001937e502bd450a0bfc8b4d9f6_GH0.tar.gz) = bb81cf3db2ec4a925ff6005caf34fe107be8ae347bf10d2fa07beab276d4d1bc SIZE (console-rs-indicatif-458e4dc391c1b001937e502bd450a0bfc8b4d9f6_GH0.tar.gz) = 1400364 -SHA256 (kimono-koans-httm-0.48.0_GH0.tar.gz) = 29bf964ce4776910c0ea8118122e6a6ac862f2147503445a66ef59ba5ec661dd -SIZE (kimono-koans-httm-0.48.0_GH0.tar.gz) = 138469 +SHA256 (kimono-koans-httm-0.48.1_GH0.tar.gz) = 314f11b400fb87f50d47dc341448d71f44e62d2117a7ccb2f2b948e6983f45dc +SIZE (kimono-koans-httm-0.48.1_GH0.tar.gz) = 138542 diff --git a/sysutils/rsyslog8/Makefile b/sysutils/rsyslog8/Makefile index 2c04586393fc..fe3b15dbcacb 100644 --- a/sysutils/rsyslog8/Makefile +++ b/sysutils/rsyslog8/Makefile @@ -1,5 +1,5 @@ PORTNAME= rsyslog -PORTVERSION= 8.2508.0 +PORTVERSION= 8.2510.0 CATEGORIES= sysutils MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/ diff --git a/sysutils/rsyslog8/distinfo b/sysutils/rsyslog8/distinfo index 7939be646afb..e916bc089d1c 100644 --- a/sysutils/rsyslog8/distinfo +++ b/sysutils/rsyslog8/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1757077726 -SHA256 (rsyslog-8.2508.0.tar.gz) = c89b1e74d36d0ca4a95b74a1abe36ed0b1faac8b7c8be471a8415cfa776206fd -SIZE (rsyslog-8.2508.0.tar.gz) = 4344195 -SHA256 (72b8bcc05318f0a72ec828d1a5329fa98c021eb8.patch) = f3cb29a469e28678086a81906fe823045563f9132c0a6f97bf887eba7fd1d31d -SIZE (72b8bcc05318f0a72ec828d1a5329fa98c021eb8.patch) = 2585 +TIMESTAMP = 1760553860 +SHA256 (rsyslog-8.2510.0.tar.gz) = a70a9834186859539a6a4d1c7b3f68c23897e805829b764a45e92cb0cc95e66a +SIZE (rsyslog-8.2510.0.tar.gz) = 5748617 diff --git a/sysutils/rsyslog8/files/patch-runtime_netns__socket.c b/sysutils/rsyslog8/files/patch-runtime_netns__socket.c new file mode 100644 index 000000000000..cb6822bb8ee6 --- /dev/null +++ b/sysutils/rsyslog8/files/patch-runtime_netns__socket.c @@ -0,0 +1,10 @@ +--- runtime/netns_socket.c.orig 2025-10-15 19:14:52 UTC ++++ runtime/netns_socket.c +@@ -24,6 +24,7 @@ + #include <string.h> + #include <sys/socket.h> + #include <sys/types.h> ++#include <unistd.h> + + #include "rsyslog.h" + #include "debug.h" diff --git a/sysutils/rsyslog8/pkg-plist b/sysutils/rsyslog8/pkg-plist index 211630a62783..0c3d2c1c230f 100644 --- a/sysutils/rsyslog8/pkg-plist +++ b/sysutils/rsyslog8/pkg-plist @@ -19,6 +19,7 @@ lib/rsyslog/lmtcpclt.so lib/rsyslog/lmtcpsrv.so lib/rsyslog/lmzlibw.so lib/rsyslog/mmexternal.so +lib/rsyslog/mmleefparse.so lib/rsyslog/ommail.so lib/rsyslog/omprog.so lib/rsyslog/omstdout.so diff --git a/sysutils/ttyd/Makefile b/sysutils/ttyd/Makefile index 31d6e41b6ece..0586e9ffe284 100644 --- a/sysutils/ttyd/Makefile +++ b/sysutils/ttyd/Makefile @@ -1,6 +1,6 @@ PORTNAME= ttyd DISTVERSION= 1.7.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= nc@FreeBSD.org diff --git a/sysutils/ttyd/files/ttyd.in b/sysutils/ttyd/files/ttyd.in index 56b8188deeda..15c108eca492 100755 --- a/sysutils/ttyd/files/ttyd.in +++ b/sysutils/ttyd/files/ttyd.in @@ -19,8 +19,8 @@ load_rc_config $name : ${ttyd_enable:="NO"} : ${ttyd_acct:="nobody"} -: ${ttyd_exec:="/bin/sh"} -: ${ttyd_args:="--interface lo0 --port 7681"} +: ${ttyd_exec:="/usr/bin/login"} +: ${ttyd_args:="--interface lo0 --port 7681 -W"} procname="/usr/local/bin/${name}" diff --git a/textproc/fzf/Makefile b/textproc/fzf/Makefile index 49c25817d082..d1e8656c3131 100644 --- a/textproc/fzf/Makefile +++ b/textproc/fzf/Makefile @@ -1,7 +1,6 @@ PORTNAME= fzf DISTVERSIONPREFIX= v -DISTVERSION= 0.65.2 -PORTREVISION= 3 +DISTVERSION= 0.66.0 CATEGORIES= textproc MASTER_SITES= https://raw.githubusercontent.com/${GH_ACCOUNT}/${GH_PROJECT}/${DISTVERSIONFULL}/:gomod DISTFILES= go.mod:gomod @@ -22,7 +21,7 @@ GH_PROJECT= fzf GO_MODULE= github.com/junegunn/fzf GO_BUILDFLAGS= -ldflags="-X main.version=${DISTVERSION} -X main.revision=${COMMIT_ID} -s -w" -COMMIT_ID= e5cd7f0 +COMMIT_ID= 8cdfb23 PLIST_FILES= bin/fzf share/man/man1/fzf.1.gz diff --git a/textproc/fzf/distinfo b/textproc/fzf/distinfo index 531bcdd3f232..24a7675ec22d 100644 --- a/textproc/fzf/distinfo +++ b/textproc/fzf/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1756803631 -SHA256 (go/textproc_fzf/junegunn-fzf-v0.65.2_GH0/go.mod) = 6cc838db5cb7817cbb9522b55c9715ab6f543a0eaf3b5178cd9db42bd60640ae -SIZE (go/textproc_fzf/junegunn-fzf-v0.65.2_GH0/go.mod) = 527 -SHA256 (go/textproc_fzf/junegunn-fzf-v0.65.2_GH0/junegunn-fzf-v0.65.2_GH0.tar.gz) = 53b7e0077833f96ae04fd1e312ed65b2d5c427422b652dd3ce6c2d1702f8ce56 -SIZE (go/textproc_fzf/junegunn-fzf-v0.65.2_GH0/junegunn-fzf-v0.65.2_GH0.tar.gz) = 347841 +TIMESTAMP = 1760457719 +SHA256 (go/textproc_fzf/junegunn-fzf-v0.66.0_GH0/go.mod) = 5d8e34ecd5e4a6934c2421090bbd11d7bd0c03c751d912a2bfb06f5860068aff +SIZE (go/textproc_fzf/junegunn-fzf-v0.66.0_GH0/go.mod) = 529 +SHA256 (go/textproc_fzf/junegunn-fzf-v0.66.0_GH0/junegunn-fzf-v0.66.0_GH0.tar.gz) = 576659beee244b4ecccf45f1c576340143d8ce6d97fa053e6cbdd3f75c66b351 +SIZE (go/textproc_fzf/junegunn-fzf-v0.66.0_GH0/junegunn-fzf-v0.66.0_GH0.tar.gz) = 361069 diff --git a/textproc/yamlfmt/Makefile b/textproc/yamlfmt/Makefile index 7d6e13beb68c..7f1947df2940 100644 --- a/textproc/yamlfmt/Makefile +++ b/textproc/yamlfmt/Makefile @@ -1,7 +1,6 @@ PORTNAME= yamlfmt DISTVERSIONPREFIX= v -DISTVERSION= 0.17.2 -PORTREVISION= 5 +DISTVERSION= 0.18.0 CATEGORIES= textproc MAINTAINER= meta@FreeBSD.org diff --git a/textproc/yamlfmt/distinfo b/textproc/yamlfmt/distinfo index c1ab8ca1157a..53bc083ea094 100644 --- a/textproc/yamlfmt/distinfo +++ b/textproc/yamlfmt/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1750750674 -SHA256 (go/textproc_yamlfmt/yamlfmt-v0.17.2/v0.17.2.mod) = da0bfaa1174b546a2f38c9e6e55a76f7d3e478b713bbbac3fb7f86d8f5e922c3 -SIZE (go/textproc_yamlfmt/yamlfmt-v0.17.2/v0.17.2.mod) = 390 -SHA256 (go/textproc_yamlfmt/yamlfmt-v0.17.2/v0.17.2.zip) = df0858a273e5b4a933229fe28f39e9cc20a2dfb5136824c480cc5f7722efa51c -SIZE (go/textproc_yamlfmt/yamlfmt-v0.17.2/v0.17.2.zip) = 245967 +TIMESTAMP = 1760526288 +SHA256 (go/textproc_yamlfmt/yamlfmt-v0.18.0/v0.18.0.mod) = da0bfaa1174b546a2f38c9e6e55a76f7d3e478b713bbbac3fb7f86d8f5e922c3 +SIZE (go/textproc_yamlfmt/yamlfmt-v0.18.0/v0.18.0.mod) = 390 +SHA256 (go/textproc_yamlfmt/yamlfmt-v0.18.0/v0.18.0.zip) = 633b0abc86f4c334218e05bfa7a0576dae1ce75d38f738ec278887ba89b14ce0 +SIZE (go/textproc_yamlfmt/yamlfmt-v0.18.0/v0.18.0.zip) = 246044 diff --git a/www/angie-module-auth-spnego/Makefile b/www/angie-module-auth-spnego/Makefile index 65f9b25a66b5..ff16edb9069a 100644 --- a/www/angie-module-auth-spnego/Makefile +++ b/www/angie-module-auth-spnego/Makefile @@ -1,12 +1,17 @@ PORTNAME= angie-module-auth-spnego +PORTREVISION= 1 GH_TUPLE= stnoonan:spnego-http-auth-nginx-module:v1.1.3:module COMMENT= Angie auth-spnego dynamic module -USES= gssapi +USES= gssapi:mit MASTERDIR= ${.CURDIR}/../../www/angie +pre-configure: + @${REINPLACE_CMD} -e 's|lgssapi\"|lgssapi_krb5"|' \ + ${WRKSRC_module}/config + do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}${MODDIR} diff --git a/www/librewolf/Makefile b/www/librewolf/Makefile index 92432d6f751e..8c510b5ac902 100644 --- a/www/librewolf/Makefile +++ b/www/librewolf/Makefile @@ -1,5 +1,5 @@ PORTNAME= librewolf -DISTVERSION= 143.0.4 +DISTVERSION= 144.0 LWPATCH= -1 DISTVERSIONSUFFIX= ${LWPATCH}.source CATEGORIES= www wayland @@ -13,7 +13,7 @@ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= nspr>=4.32:devel/nspr \ - nss>=3.115.1:security/nss \ + nss>=3.116:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ diff --git a/www/librewolf/distinfo b/www/librewolf/distinfo index e1fd1a0bc553..2bdf585e2f8f 100644 --- a/www/librewolf/distinfo +++ b/www/librewolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759655628 -SHA256 (librewolf-143.0.4-1.source.tar.gz) = c40d149016c578d39f7a9f25f28cf31960c6009ca81782675145c5c976b63360 -SIZE (librewolf-143.0.4-1.source.tar.gz) = 1023308761 +TIMESTAMP = 1760530679 +SHA256 (librewolf-144.0-1.source.tar.gz) = 7dbf8ebee436fd3efc5895b5151af0e23063ef1d3a47ff3da6d55dfcc1b047c6 +SIZE (librewolf-144.0-1.source.tar.gz) = 1029294199 diff --git a/www/librewolf/files/patch-libwebrtc-generated b/www/librewolf/files/patch-libwebrtc-generated index 5621fe23cf21..36653d2767b8 100644 --- a/www/librewolf/files/patch-libwebrtc-generated +++ b/www/librewolf/files/patch-libwebrtc-generated @@ -1,7 +1,7 @@ -commit b9b52a94471b7d6930b5c295c16ccf1512e6c86b +commit 0eb76f55073b3e60ff23c617561d9ec3fe7d3587 Author: Christoph Moench-Tegeder <cmt@FreeBSD.org> - regenerate FreeBSD libwebrtc patch for gecko 143 + regenerate FreeBSD libwebrtc patch for gecko 144 diff --git third_party/libwebrtc/api/adaptation/resource_adaptation_api_gn/moz.build third_party/libwebrtc/api/adaptation/resource_adaptation_api_gn/moz.build index 536af3b634ce..8dd2dcdb638b 100644 @@ -5522,7 +5522,7 @@ index 2925c9a25583..0dc3b552177f 100644 Library("audio_encoder_multiopus_gn") diff --git third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build -index e7cd0bcd8f5d..ccf44f091517 100644 +index 9c1242829070..ccf44f091517 100644 --- third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build +++ third_party/libwebrtc/api/audio_codecs/opus/audio_encoder_opus_config_gn/moz.build @@ -13,14 +13,23 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -5549,7 +5549,7 @@ index e7cd0bcd8f5d..ccf44f091517 100644 FINAL_LIBRARY = "xul" -@@ -52,83 +61,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -52,98 +61,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -5568,6 +5568,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["__STDC_CONSTANT_MACROS"] = True - DEFINES["__STDC_FORMAT_MACROS"] = True - +- OS_LIBS += [ +- "log" +- ] +- -if CONFIG["OS_TARGET"] == "Darwin": - - DEFINES["WEBRTC_MAC"] = True @@ -5590,6 +5594,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["__STDC_CONSTANT_MACROS"] = True - DEFINES["__STDC_FORMAT_MACROS"] = True - +- OS_LIBS += [ +- "rt" +- ] +- -if CONFIG["OS_TARGET"] == "OpenBSD": - - DEFINES["USE_GLIB"] = "1" @@ -5630,11 +5638,18 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - DEFINES["_WINDOWS"] = True - DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True - DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] + DEFINES["_DEBUG"] = True if CONFIG["TARGET_CPU"] == "aarch64": -@@ -136,82 +69,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -151,82 +69,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" @@ -5692,10 +5707,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - -if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": - -- CXXFLAGS += [ -- "-msse2" -- ] -- + CXXFLAGS += [ + "-msse2" + ] + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": - - DEFINES["_GNU_SOURCE"] = True @@ -5706,10 +5721,10 @@ index e7cd0bcd8f5d..ccf44f091517 100644 - -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": - - CXXFLAGS += [ - "-msse2" - ] - +- CXXFLAGS += [ +- "-msse2" +- ] +- - DEFINES["_GNU_SOURCE"] = True + DEFINES["WEBRTC_ENABLE_AVX2"] = True @@ -10986,7 +11001,7 @@ index 6d6d33ace75b..01573acc86d3 100644 - Library("network_state_predictor_api_gn") diff --git third_party/libwebrtc/api/priority_gn/moz.build third_party/libwebrtc/api/priority_gn/moz.build -index 76aeb17bde7f..5e74263cf88f 100644 +index d219a201e21e..e294583198c9 100644 --- third_party/libwebrtc/api/priority_gn/moz.build +++ third_party/libwebrtc/api/priority_gn/moz.build @@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -11012,7 +11027,7 @@ index 76aeb17bde7f..5e74263cf88f 100644 FINAL_LIBRARY = "xul" -@@ -43,87 +52,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -11101,12 +11116,16 @@ index 76aeb17bde7f..5e74263cf88f 100644 if CONFIG["TARGET_CPU"] == "aarch64": -@@ -131,25 +60,10 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" -if CONFIG["TARGET_CPU"] == "arm": - +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- - DEFINES["WEBRTC_ARCH_ARM"] = True - DEFINES["WEBRTC_ARCH_ARM_V7"] = True - DEFINES["WEBRTC_HAS_NEON"] = True @@ -11127,10 +11146,12 @@ index 76aeb17bde7f..5e74263cf88f 100644 if CONFIG["TARGET_CPU"] == "x86": -@@ -159,40 +73,4 @@ if CONFIG["TARGET_CPU"] == "x86_64": - - DEFINES["WEBRTC_ENABLE_AVX2"] = True - +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- -if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": - - DEFINES["_DEBUG"] = True @@ -11151,6 +11172,12 @@ index 76aeb17bde7f..5e74263cf88f 100644 - - DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" - +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": - - DEFINES["_GNU_SOURCE"] = True @@ -11161,12 +11188,19 @@ index 76aeb17bde7f..5e74263cf88f 100644 - -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": - -- DEFINES["_GNU_SOURCE"] = True +- CXXFLAGS += [ +- "-msse2" +- ] - +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + -if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": -- ++if CONFIG["TARGET_CPU"] == "x86_64": + - DEFINES["_GNU_SOURCE"] = True -- ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + Library("priority_gn") diff --git third_party/libwebrtc/api/ref_count_gn/moz.build third_party/libwebrtc/api/ref_count_gn/moz.build index 4d11702ac95b..098a60790f04 100644 @@ -54040,6 +54074,219 @@ index f01e58d04ef2..7777cb881169 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("ns_gn") +diff --git third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build +index 899fcaea523b..a51a44f0c956 100644 +--- third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build ++++ third_party/libwebrtc/modules/audio_processing/post_filter_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,98 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "rt" +- ] +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -146,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("post_filter_gn") diff --git third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build index cff5be834af7..21c086b8c9b0 100644 --- third_party/libwebrtc/modules/audio_processing/rms_level_gn/moz.build @@ -70163,10 +70410,10 @@ index f57a0a7e568b..9a78b83fbd8c 100644 Library("webrtc_vp9_helpers_gn") diff --git third_party/libwebrtc/moz.build third_party/libwebrtc/moz.build -index 84cfd37b7351..a14de2b579ed 100644 +index addff5313714..c70b3c2a5742 100644 --- third_party/libwebrtc/moz.build +++ third_party/libwebrtc/moz.build -@@ -289,6 +289,8 @@ DIRS += [ +@@ -290,6 +290,8 @@ DIRS += [ "/third_party/libwebrtc/modules/congestion_controller/goog_cc/send_side_bwe_gn", "/third_party/libwebrtc/modules/congestion_controller/rtp/control_handler_gn", "/third_party/libwebrtc/modules/congestion_controller/rtp/transport_feedback_gn", @@ -70175,7 +70422,7 @@ index 84cfd37b7351..a14de2b579ed 100644 "/third_party/libwebrtc/modules/module_api_gn", "/third_party/libwebrtc/modules/module_api_public_gn", "/third_party/libwebrtc/modules/module_fec_api_gn", -@@ -512,137 +514,30 @@ DIRS += [ +@@ -516,137 +518,30 @@ DIRS += [ "/third_party/libwebrtc/webrtc_gn" ] @@ -70317,7 +70564,7 @@ index 84cfd37b7351..a14de2b579ed 100644 DIRS += [ "/third_party/libwebrtc/common_audio/common_audio_avx2_gn", -@@ -650,13 +545,11 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +@@ -654,13 +549,11 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": "/third_party/libwebrtc/modules/audio_processing/aec3/aec3_avx2_gn", "/third_party/libwebrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2_gn", "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_differ_sse2_gn", @@ -70332,7 +70579,7 @@ index 84cfd37b7351..a14de2b579ed 100644 DIRS += [ "/third_party/libwebrtc/common_audio/common_audio_avx2_gn", -@@ -664,73 +557,6 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": +@@ -668,73 +561,6 @@ if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": "/third_party/libwebrtc/modules/audio_processing/aec3/aec3_avx2_gn", "/third_party/libwebrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2_gn", "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_differ_sse2_gn", @@ -80395,6 +80642,215 @@ index 290fa237597c..95fee876429c 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("copy_on_write_buffer_gn") +diff --git third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build +index 1029f0836bfe..6a114014c1f4 100644 +--- third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build ++++ third_party/libwebrtc/rtc_base/cpu_info_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,94 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -142,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("cpu_info_gn") diff --git third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build index d19a77f5a18b..95b1a36564bc 100644 --- third_party/libwebrtc/rtc_base/criticalsection_gn/moz.build @@ -80597,6 +81053,208 @@ index d19a77f5a18b..95b1a36564bc 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("criticalsection_gn") +diff --git third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build +index ee63503765bb..288cd082cad6 100644 +--- third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build ++++ third_party/libwebrtc/rtc_base/denormal_disabler_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("denormal_disabler_gn") diff --git third_party/libwebrtc/rtc_base/divide_round_gn/moz.build third_party/libwebrtc/rtc_base/divide_round_gn/moz.build index 6d17c8740b6c..4081536caf3a 100644 --- third_party/libwebrtc/rtc_base/divide_round_gn/moz.build @@ -89301,6 +89959,219 @@ index 0687c3138dae..8d218bfe7cff 100644 + DEFINES["WEBRTC_ENABLE_AVX2"] = True Library("rtc_numerics_gn") +diff --git third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build +index f1b154f22252..55a35cb2bd5f 100644 +--- third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build ++++ third_party/libwebrtc/rtc_base/rtp_to_ntp_estimator_gn/moz.build +@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" + DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" + DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True + DEFINES["RTC_ENABLE_VP9"] = True ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" + DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True ++DEFINES["WEBRTC_BSD"] = True + DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" + DEFINES["WEBRTC_LIBRARY_IMPL"] = True + DEFINES["WEBRTC_MOZILLA_BUILD"] = True + DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" ++DEFINES["WEBRTC_POSIX"] = True + DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -47,98 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["WEBRTC_ANDROID"] = True +- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "log" +- ] +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["WEBRTC_MAC"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["WEBRTC_LINUX"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +- OS_LIBS += [ +- "rt" +- ] +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["WEBRTC_BSD"] = True +- DEFINES["WEBRTC_POSIX"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["RTC_ENABLE_WIN_WGC"] = True +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WEBRTC_WIN"] = True +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True +- +- OS_LIBS += [ +- "crypt32", +- "iphlpapi", +- "secur32", +- "winmm" +- ] ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + +@@ -146,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": + DEFINES["WEBRTC_HAS_NEON"] = True + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "arm": +- +- CXXFLAGS += [ +- "-mfpu=neon" +- ] +- +- DEFINES["WEBRTC_ARCH_ARM"] = True +- DEFINES["WEBRTC_ARCH_ARM_V7"] = True +- DEFINES["WEBRTC_HAS_NEON"] = True +- +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- + if CONFIG["TARGET_CPU"] == "mips32": + + DEFINES["MIPS32_LE"] = True + DEFINES["MIPS_FPU_LE"] = True +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True + + if CONFIG["TARGET_CPU"] == "x86": + +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["WEBRTC_ENABLE_AVX2"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": +- + CXXFLAGS += [ + "-msse2" + ] + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- CXXFLAGS += [ +- "-msse2" +- ] +- +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": ++if CONFIG["TARGET_CPU"] == "x86_64": + +- DEFINES["_GNU_SOURCE"] = True ++ DEFINES["WEBRTC_ENABLE_AVX2"] = True + + Library("rtp_to_ntp_estimator_gn") diff --git third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build index c93abdb78469..bf32218de21a 100644 --- third_party/libwebrtc/rtc_base/safe_compare_gn/moz.build @@ -96869,208 +97740,6 @@ index 74abd1c954a5..000000000000 - DEFINES["WEBRTC_ENABLE_AVX2"] = True - -Library("videoframebuffer_objc_gn") -diff --git third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -index f830168572e6..2f90855b915f 100644 ---- third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -+++ third_party/libwebrtc/system_wrappers/denormal_disabler_gn/moz.build -@@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" - DEFINES["PROTOBUF_ENABLE_DEBUG_LOGGING_MAY_LEAK_PII"] = "0" - DEFINES["RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY"] = True - DEFINES["RTC_ENABLE_VP9"] = True -+DEFINES["USE_GLIB"] = "1" -+DEFINES["USE_OZONE"] = "1" - DEFINES["WEBRTC_ALLOW_DEPRECATED_NAMESPACES"] = True -+DEFINES["WEBRTC_BSD"] = True - DEFINES["WEBRTC_ENABLE_PROTOBUF"] = "0" - DEFINES["WEBRTC_LIBRARY_IMPL"] = True - DEFINES["WEBRTC_MOZILLA_BUILD"] = True - DEFINES["WEBRTC_NON_STATIC_TRACE_EVENT_HANDLERS"] = "0" -+DEFINES["WEBRTC_POSIX"] = True - DEFINES["WEBRTC_STRICT_FIELD_TRIALS"] = "0" -+DEFINES["_FILE_OFFSET_BITS"] = "64" -+DEFINES["_LARGEFILE64_SOURCE"] = True -+DEFINES["_LARGEFILE_SOURCE"] = True - DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" -+DEFINES["__STDC_CONSTANT_MACROS"] = True -+DEFINES["__STDC_FORMAT_MACROS"] = True - - FINAL_LIBRARY = "xul" - -@@ -47,87 +56,7 @@ if not CONFIG["MOZ_DEBUG"]: - if CONFIG["MOZ_DEBUG"] == "1": - - DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" -- --if CONFIG["OS_TARGET"] == "Android": -- -- DEFINES["ANDROID"] = True -- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" -- DEFINES["HAVE_SYS_UIO_H"] = True -- DEFINES["WEBRTC_ANDROID"] = True -- DEFINES["WEBRTC_ANDROID_OPENSLES"] = True -- DEFINES["WEBRTC_LINUX"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_GNU_SOURCE"] = True -- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- -- OS_LIBS += [ -- "log" -- ] -- --if CONFIG["OS_TARGET"] == "Darwin": -- -- DEFINES["WEBRTC_MAC"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "Linux": -- -- DEFINES["USE_AURA"] = "1" -- DEFINES["USE_GLIB"] = "1" -- DEFINES["USE_OZONE"] = "1" -- DEFINES["USE_UDEV"] = True -- DEFINES["WEBRTC_LINUX"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_FILE_OFFSET_BITS"] = "64" -- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" -- DEFINES["_LARGEFILE64_SOURCE"] = True -- DEFINES["_LARGEFILE_SOURCE"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "OpenBSD": -- -- DEFINES["USE_GLIB"] = "1" -- DEFINES["USE_OZONE"] = "1" -- DEFINES["WEBRTC_BSD"] = True -- DEFINES["WEBRTC_POSIX"] = True -- DEFINES["_FILE_OFFSET_BITS"] = "64" -- DEFINES["_LARGEFILE64_SOURCE"] = True -- DEFINES["_LARGEFILE_SOURCE"] = True -- DEFINES["__STDC_CONSTANT_MACROS"] = True -- DEFINES["__STDC_FORMAT_MACROS"] = True -- --if CONFIG["OS_TARGET"] == "WINNT": -- -- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True -- DEFINES["NOMINMAX"] = True -- DEFINES["NTDDI_VERSION"] = "0x0A000000" -- DEFINES["PSAPI_VERSION"] = "2" -- DEFINES["RTC_ENABLE_WIN_WGC"] = True -- DEFINES["UNICODE"] = True -- DEFINES["USE_AURA"] = "1" -- DEFINES["WEBRTC_WIN"] = True -- DEFINES["WIN32"] = True -- DEFINES["WIN32_LEAN_AND_MEAN"] = True -- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" -- DEFINES["WINVER"] = "0x0A00" -- DEFINES["_ATL_NO_OPENGL"] = True -- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True -- DEFINES["_CRT_RAND_S"] = True -- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True -- DEFINES["_ENABLE_EXTENDED_ALIGNED_STORAGE"] = True -- DEFINES["_HAS_EXCEPTIONS"] = "0" -- DEFINES["_HAS_NODISCARD"] = True -- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True -- DEFINES["_SECURE_ATL"] = True -- DEFINES["_UNICODE"] = True -- DEFINES["_WIN32_WINNT"] = "0x0A00" -- DEFINES["_WINDOWS"] = True -- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True -- DEFINES["__STD_C"] = True -+ DEFINES["_DEBUG"] = True - - if CONFIG["TARGET_CPU"] == "aarch64": - -@@ -135,82 +64,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": - DEFINES["WEBRTC_HAS_NEON"] = True - DEFINES["__ARM_NEON__"] = "1" - --if CONFIG["TARGET_CPU"] == "arm": -- -- CXXFLAGS += [ -- "-mfpu=neon" -- ] -- -- DEFINES["WEBRTC_ARCH_ARM"] = True -- DEFINES["WEBRTC_ARCH_ARM_V7"] = True -- DEFINES["WEBRTC_HAS_NEON"] = True -- --if CONFIG["TARGET_CPU"] == "loongarch64": -- -- DEFINES["_GNU_SOURCE"] = True -- - if CONFIG["TARGET_CPU"] == "mips32": - - DEFINES["MIPS32_LE"] = True - DEFINES["MIPS_FPU_LE"] = True -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["TARGET_CPU"] == "mips64": -- -- DEFINES["_GNU_SOURCE"] = True - - if CONFIG["TARGET_CPU"] == "x86": - -- DEFINES["WEBRTC_ENABLE_AVX2"] = True -- --if CONFIG["TARGET_CPU"] == "x86_64": -- -- DEFINES["WEBRTC_ENABLE_AVX2"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": -- -- DEFINES["_DEBUG"] = True -- --if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": -- -- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" -- --if CONFIG["OS_TARGET"] == "Android" and CONFIG["TARGET_CPU"] == "x86": -- - CXXFLAGS += [ - "-msse2" - ] - --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": -- -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": -- -- DEFINES["_GNU_SOURCE"] = True -- --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": -- -- CXXFLAGS += [ -- "-msse2" -- ] -- -- DEFINES["_GNU_SOURCE"] = True -+ DEFINES["WEBRTC_ENABLE_AVX2"] = True - --if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": -+if CONFIG["TARGET_CPU"] == "x86_64": - -- DEFINES["_GNU_SOURCE"] = True -+ DEFINES["WEBRTC_ENABLE_AVX2"] = True - - Library("denormal_disabler_gn") diff --git third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build index 42b21364766f..efc6c5ca191e 100644 --- third_party/libwebrtc/system_wrappers/field_trial_gn/moz.build @@ -97483,7 +98152,7 @@ index 36c9baa62823..b243d3d58410 100644 Library("metrics_gn") diff --git third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build -index 9587725536ca..538b68bd36cb 100644 +index ac00b2932e82..467d3c380ea3 100644 --- third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build +++ third_party/libwebrtc/system_wrappers/system_wrappers_gn/moz.build @@ -13,13 +13,22 @@ DEFINES["ABSL_ALLOCATOR_NOTHROW"] = "1" @@ -97509,7 +98178,7 @@ index 9587725536ca..538b68bd36cb 100644 FINAL_LIBRARY = "xul" -@@ -51,108 +60,7 @@ if not CONFIG["MOZ_DEBUG"]: +@@ -48,108 +57,7 @@ if not CONFIG["MOZ_DEBUG"]: if CONFIG["MOZ_DEBUG"] == "1": DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" @@ -97619,7 +98288,7 @@ index 9587725536ca..538b68bd36cb 100644 if CONFIG["TARGET_CPU"] == "aarch64": -@@ -160,82 +68,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": +@@ -157,82 +65,21 @@ if CONFIG["TARGET_CPU"] == "aarch64": DEFINES["WEBRTC_HAS_NEON"] = True DEFINES["__ARM_NEON__"] = "1" @@ -99192,6 +99861,148 @@ index bed86c31bdb2..776ccac7a804 100644 - DEFINES["_GNU_SOURCE"] = True - Library("yuv_gn") +diff --git third_party/libwebrtc/third_party/opus/opus_gn/moz.build third_party/libwebrtc/third_party/opus/opus_gn/moz.build +index 2540ef87e331..66d74b90d631 100644 +--- third_party/libwebrtc/third_party/opus/opus_gn/moz.build ++++ third_party/libwebrtc/third_party/opus/opus_gn/moz.build +@@ -9,7 +9,14 @@ + COMPILE_FLAGS["OS_INCLUDES"] = [] + AllowCompilerWarnings() + ++DEFINES["USE_GLIB"] = "1" ++DEFINES["USE_OZONE"] = "1" ++DEFINES["_FILE_OFFSET_BITS"] = "64" ++DEFINES["_LARGEFILE64_SOURCE"] = True ++DEFINES["_LARGEFILE_SOURCE"] = True + DEFINES["_LIBCPP_HARDENING_MODE"] = "_LIBCPP_HARDENING_MODE_NONE" ++DEFINES["__STDC_CONSTANT_MACROS"] = True ++DEFINES["__STDC_FORMAT_MACROS"] = True + + FINAL_LIBRARY = "xul" + +@@ -32,121 +39,10 @@ if not CONFIG["MOZ_DEBUG"]: + if CONFIG["MOZ_DEBUG"] == "1": + + DEFINES["DYNAMIC_ANNOTATIONS_ENABLED"] = "1" +- +-if CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["ANDROID"] = True +- DEFINES["ANDROID_NDK_VERSION_ROLL"] = "r27_1" +- DEFINES["HAVE_SYS_UIO_H"] = True +- DEFINES["_GNU_SOURCE"] = True +- DEFINES["__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["USE_AURA"] = "1" +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["USE_UDEV"] = True +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_GLIBCXX_ASSERTIONS"] = "1" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["USE_GLIB"] = "1" +- DEFINES["USE_OZONE"] = "1" +- DEFINES["_FILE_OFFSET_BITS"] = "64" +- DEFINES["_LARGEFILE64_SOURCE"] = True +- DEFINES["_LARGEFILE_SOURCE"] = True +- DEFINES["__STDC_CONSTANT_MACROS"] = True +- DEFINES["__STDC_FORMAT_MACROS"] = True +- +-if CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True +- DEFINES["NOMINMAX"] = True +- DEFINES["NTDDI_VERSION"] = "0x0A000000" +- DEFINES["PSAPI_VERSION"] = "2" +- DEFINES["UNICODE"] = True +- DEFINES["USE_AURA"] = "1" +- DEFINES["WIN32"] = True +- DEFINES["WIN32_LEAN_AND_MEAN"] = True +- DEFINES["WINAPI_FAMILY"] = "WINAPI_FAMILY_DESKTOP_APP" +- DEFINES["WINVER"] = "0x0A00" +- DEFINES["_ATL_NO_OPENGL"] = True +- DEFINES["_CRT_NONSTDC_NO_WARNINGS"] = True +- DEFINES["_CRT_RAND_S"] = True +- DEFINES["_CRT_SECURE_NO_DEPRECATE"] = True +- DEFINES["_HAS_EXCEPTIONS"] = "0" +- DEFINES["_HAS_NODISCARD"] = True +- DEFINES["_SCL_SECURE_NO_DEPRECATE"] = True +- DEFINES["_SECURE_ATL"] = True +- DEFINES["_UNICODE"] = True +- DEFINES["_WIN32_WINNT"] = "0x0A00" +- DEFINES["_WINDOWS"] = True +- DEFINES["_WINSOCK_DEPRECATED_NO_WARNINGS"] = True +- DEFINES["__STD_C"] = True ++ DEFINES["_DEBUG"] = True + + if CONFIG["TARGET_CPU"] == "aarch64": + + DEFINES["__ARM_NEON__"] = "1" + +-if CONFIG["TARGET_CPU"] == "loongarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips32": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["TARGET_CPU"] == "mips64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Android": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Darwin": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "Linux": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "OpenBSD": +- +- DEFINES["_DEBUG"] = True +- +-if CONFIG["MOZ_DEBUG"] == "1" and CONFIG["OS_TARGET"] == "WINNT": +- +- DEFINES["_HAS_ITERATOR_DEBUGGING"] = "0" +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "aarch64": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "arm": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86": +- +- DEFINES["_GNU_SOURCE"] = True +- +-if CONFIG["OS_TARGET"] == "Linux" and CONFIG["TARGET_CPU"] == "x86_64": +- +- DEFINES["_GNU_SOURCE"] = True +- + Library("opus_gn") diff --git third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build index ad14c77a3fe2..fe9a03bdf63c 100644 --- third_party/libwebrtc/third_party/pffft/pffft_gn/moz.build diff --git a/www/librewolf/files/patch-memory_mozalloc_throw__gcc.h b/www/librewolf/files/patch-memory_mozalloc_throw__gcc.h deleted file mode 100644 index 81a511179852..000000000000 --- a/www/librewolf/files/patch-memory_mozalloc_throw__gcc.h +++ /dev/null @@ -1,69 +0,0 @@ ---- memory/mozalloc/throw_gcc.h.orig 2022-02-02 17:33:38 UTC -+++ memory/mozalloc/throw_gcc.h -@@ -74,50 +74,66 @@ __throw_bad_function_call(void) { - mozalloc_abort("fatal: STL threw bad_function_call"); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_logic_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_domain_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_invalid_argument(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_length_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_out_of_range( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_runtime_error( - const char* msg) { - mozalloc_abort(msg); - } - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_range_error( - const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_overflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - -+#if !defined(_LIBCPP_VERSION) - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void - __throw_underflow_error(const char* msg) { - mozalloc_abort(msg); - } -+#endif // _LIBCPP_VERSION - - MOZ_THROW_NORETURN MOZ_THROW_EXPORT MOZ_THROW_INLINE void __throw_ios_failure( - const char* msg) { diff --git a/www/librewolf/files/patch-python_sites_mach.txt b/www/librewolf/files/patch-python_sites_mach.txt index dc2caf9bdfc6..706f285b0731 100644 --- a/www/librewolf/files/patch-python_sites_mach.txt +++ b/www/librewolf/files/patch-python_sites_mach.txt @@ -15,4 +15,4 @@ index 6e3db1c848f7..10ba12c2f13b 100644 # support down to the oldest locally-installed version (5.4.2). -pypi-optional:psutil>=5.4.2,<=5.9.4:telemetry will be missing some data +pypi-optional:psutil>=5.4.2,<=7.0.0:telemetry will be missing some data - pypi-optional:zstandard>=0.11.1,<=0.23.0:zstd archives will not be possible to extract + pypi-optional:zstandard>=0.11.1,<=0.24.0:zstd archives will not be possible to extract diff --git a/www/linux-freetube/Makefile b/www/linux-freetube/Makefile index 86e34fbd1332..8d2f2ac79571 100644 --- a/www/linux-freetube/Makefile +++ b/www/linux-freetube/Makefile @@ -1,6 +1,6 @@ PORTNAME= freetube DISTVERSIONPREFIX= v -DISTVERSION= 0.23.9-beta +DISTVERSION= 0.23.12-beta PORTREVISION= 0 CATEGORIES= www MASTER_SITES= https://github.com/FreeTubeApp/FreeTube/releases/download/${DISTVERSIONFULL}/ \ diff --git a/www/linux-freetube/distinfo b/www/linux-freetube/distinfo index 7a30825bf706..763acf6ca4da 100644 --- a/www/linux-freetube/distinfo +++ b/www/linux-freetube/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1758180236 -SHA256 (freetube-0.23.9-beta-linux-x64-portable.zip) = 113ec430bf2f1176f83fda129b331d6639816a3f6cfc59d3faa586791a12ee58 -SIZE (freetube-0.23.9-beta-linux-x64-portable.zip) = 104150779 +TIMESTAMP = 1760609060 +SHA256 (freetube-0.23.12-beta-linux-x64-portable.zip) = a1b0a67ab0d8f01df37e9effd3bd88763fbdd7dbceffc376c345f03b3cfe3cd1 +SIZE (freetube-0.23.12-beta-linux-x64-portable.zip) = 104159469 SHA256 (linux-freetube-icons-0.1.3.zip) = d76906cce52ac5cc730113a6d8598009467480d70a11e7ad81cbe9655bbd941e SIZE (linux-freetube-icons-0.1.3.zip) = 10580 diff --git a/www/nextcloud-appointments/Makefile b/www/nextcloud-appointments/Makefile index 41af6f4b14a3..f965c723deee 100644 --- a/www/nextcloud-appointments/Makefile +++ b/www/nextcloud-appointments/Makefile @@ -1,5 +1,5 @@ PORTNAME= appointments -PORTVERSION= 2.6.0 +PORTVERSION= 2.6.1 CATEGORIES= www MASTER_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/raw/${DISTVERSIONPREFIX}${DISTVERSION}/build/artifacts/appstore/ DISTVERSIONPREFIX= v diff --git a/www/nextcloud-appointments/distinfo b/www/nextcloud-appointments/distinfo index 6e26f66d5e38..448eb656c0d7 100644 --- a/www/nextcloud-appointments/distinfo +++ b/www/nextcloud-appointments/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759904980 -SHA256 (nextcloud/appointments-2.6.0/appointments.tar.gz) = 36f554bf96cd85b8f5cd41ab7ece2b5aa5c57cefbbaa460825935653d7991a44 -SIZE (nextcloud/appointments-2.6.0/appointments.tar.gz) = 2302606 +TIMESTAMP = 1760546227 +SHA256 (nextcloud/appointments-2.6.1/appointments.tar.gz) = 075403d7b0518c9403281fbca3d9a32e21b57c2294bd9612d1e1ea75cb50e5b4 +SIZE (nextcloud/appointments-2.6.1/appointments.tar.gz) = 2303824 diff --git a/www/nextcloud-calendar/Makefile b/www/nextcloud-calendar/Makefile index 30e1428cbbbe..06a78ea99f44 100644 --- a/www/nextcloud-calendar/Makefile +++ b/www/nextcloud-calendar/Makefile @@ -1,5 +1,5 @@ PORTNAME= calendar -PORTVERSION= 6.0.1 +PORTVERSION= 6.0.2 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/nextcloud-calendar/distinfo b/www/nextcloud-calendar/distinfo index 427e975aca9c..7de6d1e7c582 100644 --- a/www/nextcloud-calendar/distinfo +++ b/www/nextcloud-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760035361 -SHA256 (nextcloud/calendar-v6.0.1.tar.gz) = cf53bd2794794128ac82971eed2b9dcce6244afb27ff38db5c258ddd3a31a68e -SIZE (nextcloud/calendar-v6.0.1.tar.gz) = 20095727 +TIMESTAMP = 1760546269 +SHA256 (nextcloud/calendar-v6.0.2.tar.gz) = b7de175e7d0a29edf6eb65dbd244aee4c5352b2987acedb67a93a19f66c094ec +SIZE (nextcloud/calendar-v6.0.2.tar.gz) = 20098114 diff --git a/www/nextcloud-contacts/Makefile b/www/nextcloud-contacts/Makefile index 96306f8963bc..845e3e87ff7e 100644 --- a/www/nextcloud-contacts/Makefile +++ b/www/nextcloud-contacts/Makefile @@ -1,5 +1,5 @@ PORTNAME= contacts -PORTVERSION= 8.0.3 +PORTVERSION= 8.0.4 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/nextcloud-contacts/distinfo b/www/nextcloud-contacts/distinfo index f3ebc2e11468..71151f279bd0 100644 --- a/www/nextcloud-contacts/distinfo +++ b/www/nextcloud-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759905052 -SHA256 (nextcloud/contacts-v8.0.3.tar.gz) = e67819d911c9c72d19305b63d4f6e789f32e013f36f146217e2ee87ddbb433d6 -SIZE (nextcloud/contacts-v8.0.3.tar.gz) = 4591413 +TIMESTAMP = 1760546302 +SHA256 (nextcloud/contacts-v8.0.4.tar.gz) = 19322c2f9a18e8a6fc19aefd54bed6183e75966c54bc4d9c1cddfc6a7bf27fac +SIZE (nextcloud/contacts-v8.0.4.tar.gz) = 4604720 diff --git a/www/nextcloud-groupfolders/Makefile b/www/nextcloud-groupfolders/Makefile index f0c82c9d0837..fc82e5ea0923 100644 --- a/www/nextcloud-groupfolders/Makefile +++ b/www/nextcloud-groupfolders/Makefile @@ -1,5 +1,5 @@ PORTNAME= groupfolders -PORTVERSION= 20.1.1 +PORTVERSION= 20.1.2 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/nextcloud-groupfolders/distinfo b/www/nextcloud-groupfolders/distinfo index 386e5d9bad55..7e3aa25cb283 100644 --- a/www/nextcloud-groupfolders/distinfo +++ b/www/nextcloud-groupfolders/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759345089 -SHA256 (nextcloud/groupfolders-v20.1.1.tar.gz) = bfd10c2dc0f681597204aac388e44afd519e36f23868a097a27ba7471c2a9ee4 -SIZE (nextcloud/groupfolders-v20.1.1.tar.gz) = 5683323 +TIMESTAMP = 1760546349 +SHA256 (nextcloud/groupfolders-v20.1.2.tar.gz) = 6861366f0ab9a616474e163112ba95ffcc181809ad5554f5ff8466a3ccdc2146 +SIZE (nextcloud/groupfolders-v20.1.2.tar.gz) = 5691424 diff --git a/www/pecl-http/Makefile b/www/pecl-http/Makefile index 45edef5f251d..7a2e6ff69090 100644 --- a/www/pecl-http/Makefile +++ b/www/pecl-http/Makefile @@ -1,5 +1,5 @@ PORTNAME= http -PORTVERSION= 4.2.6 +DISTVERSION= 4.3.0 CATEGORIES= www DISTNAME= pecl_${PORTNAME}-${PORTVERSION} diff --git a/www/pecl-http/distinfo b/www/pecl-http/distinfo index fe63de1d1342..84d2684479eb 100644 --- a/www/pecl-http/distinfo +++ b/www/pecl-http/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760257345 -SHA256 (PECL/pecl_http-4.2.6.tgz) = cd33230050b3f7c5ddb6f4383ce2a81f0bcdb934432029eec72ebf0f942b876d -SIZE (PECL/pecl_http-4.2.6.tgz) = 225503 +TIMESTAMP = 1760458634 +SHA256 (PECL/pecl_http-4.3.0.tgz) = 6fe3cf9f50688e5ab202a1bcce2f18dab52d7a37b4717255b45188cc2b2cbe73 +SIZE (PECL/pecl_http-4.3.0.tgz) = 224502 diff --git a/www/py-dj51-django-allauth/Makefile b/www/py-dj51-django-allauth/Makefile index b887f81fd400..782199cae7ab 100644 --- a/www/py-dj51-django-allauth/Makefile +++ b/www/py-dj51-django-allauth/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-allauth -PORTVERSION= 65.11.2 +PORTVERSION= 65.12.0 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj51- diff --git a/www/py-dj51-django-allauth/distinfo b/www/py-dj51-django-allauth/distinfo index 73060acef13a..8f646f982cce 100644 --- a/www/py-dj51-django-allauth/distinfo +++ b/www/py-dj51-django-allauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759151466 -SHA256 (django_allauth-65.11.2.tar.gz) = 7b7e771d3384d0e247d0d6aef31b0cb589f92305b7e975e70056a513525906e7 -SIZE (django_allauth-65.11.2.tar.gz) = 1916225 +TIMESTAMP = 1760518354 +SHA256 (django_allauth-65.12.0.tar.gz) = a76ec55935354a1455753601a0a814a4ded368242e8969323480a2810b349183 +SIZE (django_allauth-65.12.0.tar.gz) = 1967199 diff --git a/www/py-dj51-django-auditlog/Makefile b/www/py-dj51-django-auditlog/Makefile index 81b2bafc3976..e4f546f6fa85 100644 --- a/www/py-dj51-django-auditlog/Makefile +++ b/www/py-dj51-django-auditlog/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-auditlog -PORTVERSION= 3.2.1 +PORTVERSION= 3.3.0 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj51- diff --git a/www/py-dj51-django-auditlog/distinfo b/www/py-dj51-django-auditlog/distinfo index ad1b92f16250..51a2f662e932 100644 --- a/www/py-dj51-django-auditlog/distinfo +++ b/www/py-dj51-django-auditlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759151042 -SHA256 (django_auditlog-3.2.1.tar.gz) = 63a4c9f7793e94eed804bc31a04d9b0b58244b1d280e2ed273c8b406bff1f779 -SIZE (django_auditlog-3.2.1.tar.gz) = 72926 +TIMESTAMP = 1760518447 +SHA256 (django_auditlog-3.3.0.tar.gz) = 01331a0e7bb1a8ff7573311b486c88f3d0c431c388f5a1e4a9b6b26911dd79b8 +SIZE (django_auditlog-3.3.0.tar.gz) = 85941 diff --git a/www/py-dj52-django-allauth/Makefile b/www/py-dj52-django-allauth/Makefile index 3e76e3de81ff..aa1c79463b2d 100644 --- a/www/py-dj52-django-allauth/Makefile +++ b/www/py-dj52-django-allauth/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-allauth -PORTVERSION= 65.11.2 +PORTVERSION= 65.12.0 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj52- diff --git a/www/py-dj52-django-allauth/distinfo b/www/py-dj52-django-allauth/distinfo index 73060acef13a..a2c9b3f31d42 100644 --- a/www/py-dj52-django-allauth/distinfo +++ b/www/py-dj52-django-allauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759151466 -SHA256 (django_allauth-65.11.2.tar.gz) = 7b7e771d3384d0e247d0d6aef31b0cb589f92305b7e975e70056a513525906e7 -SIZE (django_allauth-65.11.2.tar.gz) = 1916225 +TIMESTAMP = 1760518396 +SHA256 (django_allauth-65.12.0.tar.gz) = a76ec55935354a1455753601a0a814a4ded368242e8969323480a2810b349183 +SIZE (django_allauth-65.12.0.tar.gz) = 1967199 diff --git a/www/py-dj52-django-auditlog/Makefile b/www/py-dj52-django-auditlog/Makefile index 882438d8f435..9068f48423ae 100644 --- a/www/py-dj52-django-auditlog/Makefile +++ b/www/py-dj52-django-auditlog/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-auditlog -PORTVERSION= 3.2.1 +PORTVERSION= 3.3.0 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj52- diff --git a/www/py-dj52-django-auditlog/distinfo b/www/py-dj52-django-auditlog/distinfo index ad1b92f16250..6b110d8bde48 100644 --- a/www/py-dj52-django-auditlog/distinfo +++ b/www/py-dj52-django-auditlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759151042 -SHA256 (django_auditlog-3.2.1.tar.gz) = 63a4c9f7793e94eed804bc31a04d9b0b58244b1d280e2ed273c8b406bff1f779 -SIZE (django_auditlog-3.2.1.tar.gz) = 72926 +TIMESTAMP = 1760521835 +SHA256 (django_auditlog-3.3.0.tar.gz) = 01331a0e7bb1a8ff7573311b486c88f3d0c431c388f5a1e4a9b6b26911dd79b8 +SIZE (django_auditlog-3.3.0.tar.gz) = 85941 diff --git a/www/py-granian/Makefile b/www/py-granian/Makefile index c804d6282ac6..ffe2d81e907b 100644 --- a/www/py-granian/Makefile +++ b/www/py-granian/Makefile @@ -1,6 +1,5 @@ PORTNAME= granian -PORTVERSION= 2.5.4 -PORTREVISION= 1 +PORTVERSION= 2.5.5 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-granian/distinfo b/www/py-granian/distinfo index 736bab6019a1..f228c24ef9cd 100644 --- a/www/py-granian/distinfo +++ b/www/py-granian/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1759151368 -SHA256 (granian-2.5.4.tar.gz) = 85989a08052f1bbb174fd73759e1ae505e50b4c0690af366ca6ba844203dd463 -SIZE (granian-2.5.4.tar.gz) = 112016 +TIMESTAMP = 1760518635 +SHA256 (granian-2.5.5.tar.gz) = da785fae71cb45e92ce3fbb8633dc48b12f6a5055a7358226d78176967a5d2c9 +SIZE (granian-2.5.5.tar.gz) = 112143 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa diff --git a/www/py-requests_ntlm/Makefile b/www/py-requests_ntlm/Makefile index 9ceacf7a5429..71305b8c4c4f 100644 --- a/www/py-requests_ntlm/Makefile +++ b/www/py-requests_ntlm/Makefile @@ -1,6 +1,6 @@ PORTNAME= requests_ntlm DISTVERSION= 1.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,11 +12,19 @@ WWW= https://github.com/requests/requests-ntlm LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ntlm-auth>=1.0.2:security/py-ntlm-auth@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}isort>=5.13.2:devel/py-isort@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyspnego>0:security/py-pyspnego@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>2.0.0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}types-requests>0:devel/py-types-requests@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}black>=24.4.2:devel/py-black@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}flask>0:www/py-flask@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist cryptography distutils +USE_PYTHON= distutils autoplist cryptography pytest + NO_ARCH= yes +# tests as of 1.3.0: 9 failed, 10 passed in 9.55s + .include <bsd.port.mk> diff --git a/www/py-requests_ntlm/pkg-descr b/www/py-requests_ntlm/pkg-descr index d1ba31cdc73b..cde4fb974d8d 100644 --- a/www/py-requests_ntlm/pkg-descr +++ b/www/py-requests_ntlm/pkg-descr @@ -1,4 +1,4 @@ -This package allows for HTTP NTLM authentication using the requests library. - -NTLM is a suite of authentication and session security protocols used in -various Microsoft network protocol implementations. +The requests-ntlm library adds support for NTLM authentication to the popular +requests HTTP library for Python. This enables applications to seamlessly +authenticate with web services that require Microsoft's NTLM protocol, which +is common in corporate environments. diff --git a/x11-fm/Makefile b/x11-fm/Makefile index 9ec899307185..090c851cca2f 100644 --- a/x11-fm/Makefile +++ b/x11-fm/Makefile @@ -7,7 +7,6 @@ SUBDIR += dolphin SUBDIR += doublecmd SUBDIR += filerunner - SUBDIR += fsv2 SUBDIR += gentoo SUBDIR += gprename SUBDIR += konqueror diff --git a/x11-fm/fsv2/Makefile b/x11-fm/fsv2/Makefile deleted file mode 100644 index 4fb4dc4d83fe..000000000000 --- a/x11-fm/fsv2/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -PORTNAME= fsv2 -PORTVERSION= 1.1.0 -PORTREVISION= 5 -CATEGORIES= x11-fm -MASTER_SITES= http://cyber.dabamos.de/pub/distfiles/ - -MAINTAINER= kidon@posteo.de -COMMENT= 3D filesystem visualizer -WWW= http://fedorchenko.net/fsv2.php - -LICENSE= LGPL3 -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= does not configure: No fonts installed on the system -EXPIRATION_DATE=2025-10-13 - -LIB_DEPENDS= libgtkgl-2.0.so:x11-toolkits/gtkglarea2 \ - libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 \ - libftgl.so:graphics/ftgl - -USES= compiler:c++11-lang tar:bzip2 libtool gettext-runtime gl gnome \ - pkgconfig -USE_GL= gl glu -USE_GNOME= gtkmm24 atkmm glibmm pangomm cairomm libsigc++20 gtk20 atk \ - cairo gdkpixbuf -USE_LDCONFIG= yes - -GNU_CONFIGURE= yes - -INSTALL_TARGET= install-strip - -OPTIONS_DEFINE= DOCS NLS -OPTIONS_SUB= yes - -NLS_USES= gettext -NLS_CONFIGURE_ENABLE= nls - -.include <bsd.port.pre.mk> - -post-patch: -.if ${COMPILER_TYPE} == clang - @${REINPLACE_CMD} -e 's|auto_ptr|unique_ptr|' \ - ${WRKSRC}/uilib/ColorCellRenderer.cpp -.endif - -.include <bsd.port.post.mk> diff --git a/x11-fm/fsv2/distinfo b/x11-fm/fsv2/distinfo deleted file mode 100644 index 6ff48d35e984..000000000000 --- a/x11-fm/fsv2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1533135182 -SHA256 (fsv2-1.1.0.tar.bz2) = 017e5c91bc2605501702b00600f4abf21b3f9e06949befbcb2c31e6d37744a61 -SIZE (fsv2-1.1.0.tar.bz2) = 602267 diff --git a/x11-fm/fsv2/files/patch-src_common.h b/x11-fm/fsv2/files/patch-src_common.h deleted file mode 100644 index 1684ee6efbee..000000000000 --- a/x11-fm/fsv2/files/patch-src_common.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/common.h.orig 2011-03-09 18:02:34 UTC -+++ src/common.h -@@ -54,6 +54,7 @@ - # define dcgettext(Domain,Message,Type) (Message) - # define bindtextdomain(Domain,Directory) (Domain) - # define _(String) (String) -+# define __(String) (String) - # define N_(String) (String) - #endif - diff --git a/x11-fm/fsv2/pkg-descr b/x11-fm/fsv2/pkg-descr deleted file mode 100644 index 8ae5397d1036..000000000000 --- a/x11-fm/fsv2/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -fsv2 is a file system visualizer in cyberspace. It lays out files and -directories in three dimensions, geometrically representing the file system -hierarchy to allow visual overview and analysis. diff --git a/x11-fm/fsv2/pkg-plist b/x11-fm/fsv2/pkg-plist deleted file mode 100644 index cc66d891dcf7..000000000000 --- a/x11-fm/fsv2/pkg-plist +++ /dev/null @@ -1,23 +0,0 @@ -bin/fsv2 -include/fsv2/ColorCellEditable.h -include/fsv2/ColorCellRenderer.h -lib/libfsvui.a -lib/libfsvui.so -lib/libfsvui.so.0 -lib/libfsvui.so.0.0.0 -share/applications/fsv2.desktop -%%NLS%%share/locale/ru/LC_MESSAGES/fsv2.mo -%%PORTDOCS%%%%DOCSDIR%%/about.html -%%PORTDOCS%%%%DOCSDIR%%/dirtree.png -%%PORTDOCS%%%%DOCSDIR%%/filelist.png -%%PORTDOCS%%%%DOCSDIR%%/fsv.html -%%PORTDOCS%%%%DOCSDIR%%/mapv.png -%%PORTDOCS%%%%DOCSDIR%%/menus.html -%%PORTDOCS%%%%DOCSDIR%%/mouse.html -%%PORTDOCS%%%%DOCSDIR%%/startup.html -%%PORTDOCS%%%%DOCSDIR%%/t1.html -%%PORTDOCS%%%%DOCSDIR%%/tb.png -%%PORTDOCS%%%%DOCSDIR%%/treev.png -%%PORTDOCS%%%%DOCSDIR%%/viewport.png -%%PORTDOCS%%%%DOCSDIR%%/window.html -%%PORTDOCS%%%%DOCSDIR%%/window.png diff --git a/x11-themes/zorin-gtk-themes/Makefile b/x11-themes/zorin-gtk-themes/Makefile index 5dd400834cc4..1daf2adc9ecd 100644 --- a/x11-themes/zorin-gtk-themes/Makefile +++ b/x11-themes/zorin-gtk-themes/Makefile @@ -1,5 +1,5 @@ PORTNAME= zorin-gtk-themes -DISTVERSION= 4.2.1 +DISTVERSION= 4.2.2 CATEGORIES= x11-themes MAINTAINER= Alexander88207@protonmail.com @@ -18,6 +18,7 @@ NO_BUILD= yes do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/themes - ${CP} -R ${WRKSRC}/Zorin* ${STAGEDIR}${PREFIX}/share/themes + (cd ${WRKSRC} && \ + ${COPYTREE_SHARE} "Zorin*" ${STAGEDIR}${PREFIX}/share/themes) .include <bsd.port.mk> diff --git a/x11-themes/zorin-gtk-themes/distinfo b/x11-themes/zorin-gtk-themes/distinfo index dbf593734ce4..18f3c7dcd30d 100644 --- a/x11-themes/zorin-gtk-themes/distinfo +++ b/x11-themes/zorin-gtk-themes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1729941457 -SHA256 (ZorinOS-zorin-desktop-themes-4.2.1_GH0.tar.gz) = f46fd29fb3ebd86c47ed991039f1513755f244d004d1a553f77b1e08eb1d984b -SIZE (ZorinOS-zorin-desktop-themes-4.2.1_GH0.tar.gz) = 6736244 +TIMESTAMP = 1760352429 +SHA256 (ZorinOS-zorin-desktop-themes-4.2.2_GH0.tar.gz) = 2c8a92aaa1b3c81ffd56b369259707ad3d42f71d63ddfb64c99880584c4b56a9 +SIZE (ZorinOS-zorin-desktop-themes-4.2.2_GH0.tar.gz) = 6738073 diff --git a/x11/xmoji/Makefile b/x11/xmoji/Makefile index 17d10b15407a..718f247285de 100644 --- a/x11/xmoji/Makefile +++ b/x11/xmoji/Makefile @@ -10,6 +10,9 @@ WWW= https://github.com/Zirias/xmoji LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt +DEPRECATED= Unmaintained port +EXPIRATION_DATE=2025-12-31 + LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ |