diff options
137 files changed, 6494 insertions, 5127 deletions
@@ -5,7 +5,26 @@ 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. -20251005: +20251016: + AFFECTS: users of devel/nexus2-oss + AUTHOR: michaelo@FreeBSD.org + + With the upgrade to javaservicewrapper-3.6.3 Nexus won't start unless you + remove all properties ending with '.stripquotes' in your + %%ETCDIR%%/wrapper.conf. + +20251016: + AFFECTS: users of sysutils/javaservicewrapper + AUTHOR: michaelo@FreeBSD.org + + With the upgrade to version 3.6.0+ support for all properties ending with + '.stripquotes' in your wrapper.conf has been dropped and your application + won't start again. + + Read the release notes for more details: + https://wrapper.tanukisoftware.com/doc/english/release-notes.html#3.6.0 + +20251015: AFFECTS: users of security/libressl AUTHOR: brnrd@FreeBSD.org diff --git a/audio/cardinal/Makefile b/audio/cardinal/Makefile index afb8670f373c..25cf42cffe30 100644 --- a/audio/cardinal/Makefile +++ b/audio/cardinal/Makefile @@ -1,8 +1,7 @@ # CAVEAT cross-compilation (ex. CPUTYPE=znver3) fails, upstream needs to fix this: https://github.com/DISTRHO/Cardinal/issues/646 PORTNAME= cardinal -DISTVERSION= 24.09 -PORTREVISION= 1 +DISTVERSION= 25.06 CATEGORIES= audio MASTER_SITES= https://github.com/DISTRHO/Cardinal/releases/download/${DISTVERSION}/ @@ -14,8 +13,6 @@ WWW= https://cardinal.kx.studio/ \ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_FreeBSD_13= compilation fails, error: static assertion failed due to requirement 'is_arithmetic<rack::simd::Vector<float, 4>>::value', see https://github.com/DISTRHO/Cardinal/issues/726 -BROKEN_FreeBSD_15= compilation fails, error: static assertion failed due to requirement 'is_arithmetic<rack::simd::Vector<float, 4>>::value', see https://github.com/DISTRHO/Cardinal/issues/726 BROKEN_armv7= compilation fails due to the variable name conflict with base header, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=279134 BUILD_DEPENDS= ${LOCALBASE}/include/FuzzySearchDatabase.hpp:textproc/fuzzysearchdatabase \ diff --git a/audio/cardinal/distinfo b/audio/cardinal/distinfo index f6f1f4bfb3a3..c2dd09d14a19 100644 --- a/audio/cardinal/distinfo +++ b/audio/cardinal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1727482060 -SHA256 (cardinal-24.09.tar.xz) = d0dcbe623e77634b6a2f87827b3196c394863f75a09cf1b38082622afb75a038 -SIZE (cardinal-24.09.tar.xz) = 475941020 +TIMESTAMP = 1760177506 +SHA256 (cardinal-25.06.tar.xz) = 52b45b5d9be42d95b671d6a333ecafcc64d2b6a934091d4c63f016062c27d446 +SIZE (cardinal-25.06.tar.xz) = 517038140 diff --git a/audio/cardinal/files/patch-dpf_Makefile.base.mk b/audio/cardinal/files/patch-dpf_Makefile.base.mk deleted file mode 100644 index b8394c0e0b20..000000000000 --- a/audio/cardinal/files/patch-dpf_Makefile.base.mk +++ /dev/null @@ -1,14 +0,0 @@ - -- workaround for https://github.com/DISTRHO/Cardinal/issues/641 - ---- dpf/Makefile.base.mk.orig 2024-04-08 16:00:03 UTC -+++ dpf/Makefile.base.mk -@@ -373,7 +373,7 @@ endif - # --------------------------------------------------------------------------------------------------------------------- - # Check for optional libraries - --HAVE_LIBLO = $(shell $(PKG_CONFIG) --exists liblo && echo true) -+HAVE_LIBLO = $(shell $(PKG_CONFIG) --exists liblo && echo $(WITH_LIBLO)) - - ifneq ($(SKIP_NATIVE_AUDIO_FALLBACK),true) - ifneq ($(SKIP_RTAUDIO_FALLBACK),true) diff --git a/audio/cardinal/files/patch-plugins_MindMeldModular_src_MixMaster_AuxExpander.cpp b/audio/cardinal/files/patch-plugins_MindMeldModular_src_MixMaster_AuxExpander.cpp new file mode 100644 index 000000000000..05247b99561d --- /dev/null +++ b/audio/cardinal/files/patch-plugins_MindMeldModular_src_MixMaster_AuxExpander.cpp @@ -0,0 +1,40 @@ +- fix build error: +- /usr/include/c++/v1/__type_traits/promote.h:32:3: error: static assertion failed due to requirement 'is_arithmetic<rack::simd::Vector<float, 4>>::value' +- static_assert((is_arithmetic<_Args>::value && ...)); +- ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- /usr/include/c++/v1/complex:1110:47: note: in instantiation of template class 'std::__promote<rack::simd::Vector<float, 4>, int>' requested here +- inline _LIBCPP_HIDE_FROM_ABI complex<typename __promote<_Tp, _Up>::type> pow(const complex<_Tp>& __x, const _Up& __y) { +- ^ +- MindMeldModular/src/MixMaster/AuxExpander.cpp:612:19: note: while substituting deduced template arguments into function template 'pow' [with _Tp = rack::simd::Vector<float, 4>, _Up = int, $2 = (no value)] +- globalSends = simd::pow<simd::float_4>(globalSends, GlobalConst::globalAuxSendScalingExponent); +- ^ + +--- plugins/MindMeldModular/src/MixMaster/AuxExpander.cpp.orig 2025-06-22 11:38:40 UTC ++++ plugins/MindMeldModular/src/MixMaster/AuxExpander.cpp +@@ -609,7 +609,7 @@ struct AuxExpander : Module { + globalSends = clamp(globalSends, 0.0f, maxAGGlobSendFader); + globalSendsWithCV = globalSends;// can put here since unused when cv disconnected + } +- globalSends = simd::pow<simd::float_4>(globalSends, GlobalConst::globalAuxSendScalingExponent); ++ globalSends = simd::pow(globalSends, GlobalConst::globalAuxSendScalingExponent); + + // Indiv mute sends (20 or 10 instances) + for (int gi = 0; gi < (N_TRK + N_GRP); gi++) { +@@ -648,7 +648,7 @@ struct AuxExpander : Module { + } + trackSendVcaGains[trk][auxi] = val; + } +- trackSendVcaGains[trk] = simd::pow<simd::float_4>(trackSendVcaGains[trk], GlobalConst::individualAuxSendScalingExponent); ++ trackSendVcaGains[trk] = simd::pow(trackSendVcaGains[trk], (float)GlobalConst::individualAuxSendScalingExponent); + trackSendVcaGains[trk] *= globalSends * simd::float_4(sendMuteSlewers[trk >> 2].out[trk & 0x3]); + } + // vca the aux send knobs with the track's sound +@@ -677,7 +677,7 @@ struct AuxExpander : Module { + groupSendVcaGains[grp][auxi] = 0.0f; + } + } +- groupSendVcaGains[grp] = simd::pow<simd::float_4>(groupSendVcaGains[grp], GlobalConst::individualAuxSendScalingExponent); ++ groupSendVcaGains[grp] = simd::pow(groupSendVcaGains[grp], (float)GlobalConst::individualAuxSendScalingExponent); + groupSendVcaGains[grp] *= globalSends * simd::float_4(sendMuteSlewers[N_TRK >> 2].out[grp]); + } + // vca the aux send knobs with the group's sound diff --git a/audio/cardinal/files/patch-src_Rack_src_system.cpp b/audio/cardinal/files/patch-src_Rack_src_system.cpp index 26cc3b7a8a38..64f2ccf4b856 100644 --- a/audio/cardinal/files/patch-src_Rack_src_system.cpp +++ b/audio/cardinal/files/patch-src_Rack_src_system.cpp @@ -1,8 +1,8 @@ - CLOCK_MONOTONIC_RAW is not available on FreeBSD ---- src/Rack/src/system.cpp.orig 2022-02-06 00:32:17 UTC +--- src/Rack/src/system.cpp.orig 2025-06-22 11:39:38 UTC +++ src/Rack/src/system.cpp -@@ -742,7 +742,11 @@ static void initTime() { +@@ -770,7 +770,11 @@ static void initTime() { #endif #if defined ARCH_LIN struct timespec ts; @@ -14,9 +14,9 @@ startTime = int64_t(ts.tv_sec) * 1000000000LL + ts.tv_nsec; #endif #if defined ARCH_MAC -@@ -763,7 +767,11 @@ double getTime() { - #endif - #if defined ARCH_LIN +@@ -790,7 +794,11 @@ double getTime() { + return (counter.QuadPart - startCounter) * counterTime; + #elif defined ARCH_LIN struct timespec ts; +#ifdef __FreeBSD__ + clock_gettime(CLOCK_MONOTONIC_PRECISE, &ts); @@ -25,4 +25,4 @@ +#endif int64_t time = int64_t(ts.tv_sec) * 1000000000LL + ts.tv_nsec; return (time - startTime) / 1e9; - #endif + #elif defined ARCH_MAC diff --git a/audio/cardinal/pkg-plist b/audio/cardinal/pkg-plist index 54cd76c6a979..d3ff70672d33 100644 --- a/audio/cardinal/pkg-plist +++ b/audio/cardinal/pkg-plist @@ -610,11 +610,16 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Befaco/res/components/SwitchTallVert_fg.svg %%DATADIR%%/Befaco/res/components/SwitchWideHoriz_bg.svg %%DATADIR%%/Befaco/res/components/SwitchWideHoriz_fg.svg +%%DATADIR%%/Befaco/res/components/VCVBezelBig.svg %%DATADIR%%/Befaco/res/fonts/Segment7Standard.otf %%DATADIR%%/Befaco/res/fonts/miso.otf %%DATADIR%%/Befaco/res/panels/ABC.svg %%DATADIR%%/Befaco/res/panels/ADSR.svg +%%DATADIR%%/Befaco/res/panels/Atte.svg +%%DATADIR%%/Befaco/res/panels/AxBC.svg +%%DATADIR%%/Befaco/res/panels/Bandit.svg %%DATADIR%%/Befaco/res/panels/Burst.svg +%%DATADIR%%/Befaco/res/panels/Bypass.svg %%DATADIR%%/Befaco/res/panels/ChoppingKinky.svg %%DATADIR%%/Befaco/res/panels/DualAtenuverter.svg %%DATADIR%%/Befaco/res/panels/EvenVCO.svg @@ -623,8 +628,10 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Befaco/res/panels/Mex.svg %%DATADIR%%/Befaco/res/panels/MidiThing.svg %%DATADIR%%/Befaco/res/panels/Mixer.svg +%%DATADIR%%/Befaco/res/panels/Mixer2.svg %%DATADIR%%/Befaco/res/panels/Morphader.svg %%DATADIR%%/Befaco/res/panels/MotionMTR.svg +%%DATADIR%%/Befaco/res/panels/MuDi.svg %%DATADIR%%/Befaco/res/panels/Muxlicer.svg %%DATADIR%%/Befaco/res/panels/NoisePlethora.svg %%DATADIR%%/Befaco/res/panels/Octaves.svg @@ -633,6 +640,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Befaco/res/panels/Rampage.svg %%DATADIR%%/Befaco/res/panels/STMix.svg %%DATADIR%%/Befaco/res/panels/SamplingModulator.svg +%%DATADIR%%/Befaco/res/panels/Slew.svg %%DATADIR%%/Befaco/res/panels/SlewLimiter.svg %%DATADIR%%/Befaco/res/panels/SpringReverb.svg %%DATADIR%%/Befaco/res/panels/StereoStrip.svg @@ -724,7 +732,11 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Bidoo/res/ComponentLibrary/btnorange.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnred.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/btnwhite.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/clockshiftBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/clockshiftBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/design.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/divBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/divBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/leddimmedblue.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ledgreen.svg @@ -734,6 +746,16 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Bidoo/res/ComponentLibrary/miniLEDButton.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/octave_0.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/octave_1.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/probBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/probBtn_1.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/pulsewidthBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/pulsewidthBtn_1.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/speedBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/speedBtn_1.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/stepBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/stepBtn_1.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/timeshiftBtn_0.svg +%%DATADIR%%/Bidoo/res/ComponentLibrary/timeshiftBtn_1.svg %%DATADIR%%/Bidoo/res/ComponentLibrary/ziNCBlueKnobBidoo.svg %%DATADIR%%/Bidoo/res/DFUZE.svg %%DATADIR%%/Bidoo/res/DIKTAT.svg @@ -765,6 +787,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Bidoo/res/PILOT.svg %%DATADIR%%/Bidoo/res/POUPRE.svg %%DATADIR%%/Bidoo/res/RABBIT.svg +%%DATADIR%%/Bidoo/res/RATEAU.svg %%DATADIR%%/Bidoo/res/REI.svg %%DATADIR%%/Bidoo/res/SIGMA.svg %%DATADIR%%/Bidoo/res/SPORE.svg @@ -1271,6 +1294,8 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/CVfunk/presets/Syncro/03_Multiples.vcvm %%DATADIR%%/CVfunk/presets/Syncro/04_Divs.vcvm %%DATADIR%%/CVfunk/presets/Syncro/05_Polyrhythms.vcvm +%%DATADIR%%/CVfunk/res/Arrange-dark.svg +%%DATADIR%%/CVfunk/res/Arrange.svg %%DATADIR%%/CVfunk/res/Collatz-dark.svg %%DATADIR%%/CVfunk/res/Collatz.svg %%DATADIR%%/CVfunk/res/Decima-dark.svg @@ -1293,18 +1318,24 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/CVfunk/res/Ouros.svg %%DATADIR%%/CVfunk/res/PentaSequencer-dark.svg %%DATADIR%%/CVfunk/res/PentaSequencer.svg +%%DATADIR%%/CVfunk/res/PreeeeeeeeeeessedDuck-dark.svg +%%DATADIR%%/CVfunk/res/PreeeeeeeeeeessedDuck.svg %%DATADIR%%/CVfunk/res/PressedDuck-dark.svg %%DATADIR%%/CVfunk/res/PressedDuck.svg %%DATADIR%%/CVfunk/res/Ranges-dark.svg %%DATADIR%%/CVfunk/res/Ranges.svg %%DATADIR%%/CVfunk/res/Signals-dark.svg %%DATADIR%%/CVfunk/res/Signals.svg +%%DATADIR%%/CVfunk/res/StepWave-dark.svg +%%DATADIR%%/CVfunk/res/StepWave.svg %%DATADIR%%/CVfunk/res/Steps-dark.svg %%DATADIR%%/CVfunk/res/Steps.svg %%DATADIR%%/CVfunk/res/Strings-dark.svg %%DATADIR%%/CVfunk/res/Strings.svg %%DATADIR%%/CVfunk/res/Syncro-dark.svg %%DATADIR%%/CVfunk/res/Syncro.svg +%%DATADIR%%/CVfunk/res/TriDelay-dark.svg +%%DATADIR%%/CVfunk/res/TriDelay.svg %%DATADIR%%/CVfunk/res/fonts/DejaVuSansMono.ttf %%DATADIR%%/Cardinal/res/AIDA-X.svg %%DATADIR%%/Cardinal/res/AudioFile.svg @@ -1854,125 +1885,6 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/DHE-Modules/svg/xylfo/thumb-switch-3-1.svg %%DATADIR%%/DHE-Modules/svg/xylfo/thumb-switch-3-2.svg %%DATADIR%%/DHE-Modules/svg/xylfo/thumb-switch-3-3.svg -%%DATADIR%%/DrumKit/res/BD9.svg -%%DATADIR%%/DrumKit/res/Baronial.svg -%%DATADIR%%/DrumKit/res/CR78.svg -%%DATADIR%%/DrumKit/res/ClosedHH.svg -%%DATADIR%%/DrumKit/res/DMX.svg -%%DATADIR%%/DrumKit/res/Gnome.svg -%%DATADIR%%/DrumKit/res/Marionette.svg -%%DATADIR%%/DrumKit/res/OpenHH.svg -%%DATADIR%%/DrumKit/res/SBD.svg -%%DATADIR%%/DrumKit/res/Sequencer.svg -%%DATADIR%%/DrumKit/res/Snare.svg -%%DATADIR%%/DrumKit/res/Tomi.svg -%%DATADIR%%/DrumKit/res/component/Knob.svg -%%DATADIR%%/DrumKit/res/component/NovaMono.ttf -%%DATADIR%%/DrumKit/res/component/Port.svg -%%DATADIR%%/DrumKit/res/component/led-down-off.svg -%%DATADIR%%/DrumKit/res/component/led-down-on.svg -%%DATADIR%%/DrumKit/res/component/led-up-off.svg -%%DATADIR%%/DrumKit/res/component/led-up-on.svg -%%DATADIR%%/DrumKit/res/component/pad-off.svg -%%DATADIR%%/DrumKit/res/component/pad-on.svg -%%DATADIR%%/DrumKit/res/component/switch_0.svg -%%DATADIR%%/DrumKit/res/component/switch_1.svg -%%DATADIR%%/DrumKit/res/samples/bd9/01.raw -%%DATADIR%%/DrumKit/res/samples/bd9/02.raw -%%DATADIR%%/DrumKit/res/samples/bd9/03.raw -%%DATADIR%%/DrumKit/res/samples/bd9/04.raw -%%DATADIR%%/DrumKit/res/samples/bd9/05.raw -%%DATADIR%%/DrumKit/res/samples/bd9/06.raw -%%DATADIR%%/DrumKit/res/samples/bd9/07.raw -%%DATADIR%%/DrumKit/res/samples/bd9/08.raw -%%DATADIR%%/DrumKit/res/samples/bd9/09.raw -%%DATADIR%%/DrumKit/res/samples/bd9/10.raw -%%DATADIR%%/DrumKit/res/samples/bd9/11.raw -%%DATADIR%%/DrumKit/res/samples/bd9/12.raw -%%DATADIR%%/DrumKit/res/samples/bd9/13.raw -%%DATADIR%%/DrumKit/res/samples/bd9/14.raw -%%DATADIR%%/DrumKit/res/samples/bd9/15.raw -%%DATADIR%%/DrumKit/res/samples/bd9/16.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/01.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/02.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/03.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/04.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/05.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/06.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/07.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/08.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/09.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/10.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/11.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/12.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/13.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/14.raw -%%DATADIR%%/DrumKit/res/samples/closedhh/15.raw -%%DATADIR%%/DrumKit/res/samples/cr78/01.raw -%%DATADIR%%/DrumKit/res/samples/cr78/02.raw -%%DATADIR%%/DrumKit/res/samples/cr78/03.raw -%%DATADIR%%/DrumKit/res/samples/cr78/04.raw -%%DATADIR%%/DrumKit/res/samples/cr78/05.raw -%%DATADIR%%/DrumKit/res/samples/cr78/06.raw -%%DATADIR%%/DrumKit/res/samples/cr78/07.raw -%%DATADIR%%/DrumKit/res/samples/dmx/01.raw -%%DATADIR%%/DrumKit/res/samples/dmx/02.raw -%%DATADIR%%/DrumKit/res/samples/dmx/03.raw -%%DATADIR%%/DrumKit/res/samples/dmx/04.raw -%%DATADIR%%/DrumKit/res/samples/dmx/05.raw -%%DATADIR%%/DrumKit/res/samples/dmx/06.raw -%%DATADIR%%/DrumKit/res/samples/dmx/07.raw -%%DATADIR%%/DrumKit/res/samples/dmx/08.raw -%%DATADIR%%/DrumKit/res/samples/dmx/09.raw -%%DATADIR%%/DrumKit/res/samples/dmx/10.raw -%%DATADIR%%/DrumKit/res/samples/dmx/11.raw -%%DATADIR%%/DrumKit/res/samples/dmx/12.raw -%%DATADIR%%/DrumKit/res/samples/kick/01.raw -%%DATADIR%%/DrumKit/res/samples/kick/02.raw -%%DATADIR%%/DrumKit/res/samples/openhh/01.raw -%%DATADIR%%/DrumKit/res/samples/openhh/02.raw -%%DATADIR%%/DrumKit/res/samples/openhh/03.raw -%%DATADIR%%/DrumKit/res/samples/openhh/04.raw -%%DATADIR%%/DrumKit/res/samples/openhh/05.raw -%%DATADIR%%/DrumKit/res/samples/openhh/06.raw -%%DATADIR%%/DrumKit/res/samples/openhh/07.raw -%%DATADIR%%/DrumKit/res/samples/openhh/08.raw -%%DATADIR%%/DrumKit/res/samples/openhh/09.raw -%%DATADIR%%/DrumKit/res/samples/openhh/10.raw -%%DATADIR%%/DrumKit/res/samples/openhh/11.raw -%%DATADIR%%/DrumKit/res/samples/openhh/12.raw -%%DATADIR%%/DrumKit/res/samples/openhh/13.raw -%%DATADIR%%/DrumKit/res/samples/openhh/14.raw -%%DATADIR%%/DrumKit/res/samples/snare/01.raw -%%DATADIR%%/DrumKit/res/samples/snare/02.raw -%%DATADIR%%/DrumKit/res/samples/snare/03.raw -%%DATADIR%%/DrumKit/res/samples/snare/04.raw -%%DATADIR%%/DrumKit/res/samples/snare/05.raw -%%DATADIR%%/DrumKit/res/samples/snare/06.raw -%%DATADIR%%/DrumKit/res/samples/snare/07.raw -%%DATADIR%%/DrumKit/res/samples/snare/08.raw -%%DATADIR%%/DrumKit/res/samples/snare/09.raw -%%DATADIR%%/DrumKit/res/samples/snare/10.raw -%%DATADIR%%/DrumKit/res/samples/snare/11.raw -%%DATADIR%%/DrumKit/res/samples/snare/12.raw -%%DATADIR%%/DrumKit/res/samples/snare/13.raw -%%DATADIR%%/DrumKit/res/samples/snare/14.raw -%%DATADIR%%/DrumKit/res/samples/snare/15.raw -%%DATADIR%%/DrumKit/res/samples/snare/16.raw -%%DATADIR%%/DrumKit/res/samples/tomi/01.raw -%%DATADIR%%/DrumKit/res/samples/tomi/02.raw -%%DATADIR%%/DrumKit/res/samples/tomi/03.raw -%%DATADIR%%/DrumKit/res/samples/tomi/04.raw -%%DATADIR%%/DrumKit/res/samples/tomi/05.raw -%%DATADIR%%/DrumKit/res/samples/tomi/06.raw -%%DATADIR%%/DrumKit/res/samples/tomi/07.raw -%%DATADIR%%/DrumKit/res/samples/tomi/08.raw -%%DATADIR%%/DrumKit/res/samples/tomi/09.raw -%%DATADIR%%/DrumKit/res/samples/tomi/10.raw -%%DATADIR%%/DrumKit/res/samples/tomi/11.raw -%%DATADIR%%/DrumKit/res/samples/tomi/12.raw -%%DATADIR%%/DrumKit/res/samples/tomi/13.raw -%%DATADIR%%/DrumKit/res/samples/tomi/14.raw %%DATADIR%%/ESeries/res/E340.svg %%DATADIR%%/EnigmaCurry/res/10hp.svg %%DATADIR%%/EnigmaCurry/res/3hp.svg @@ -2317,6 +2229,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/HetrickCV/res/2To4.svg %%DATADIR%%/HetrickCV/res/ASR.svg %%DATADIR%%/HetrickCV/res/AnalogToDigital.svg +%%DATADIR%%/HetrickCV/res/BinaryCounter.svg %%DATADIR%%/HetrickCV/res/BinaryGate.svg %%DATADIR%%/HetrickCV/res/BinaryNoise.svg %%DATADIR%%/HetrickCV/res/Bitshift.svg @@ -2363,6 +2276,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/HetrickCV/res/PhasorBurstGen.svg %%DATADIR%%/HetrickCV/res/PhasorDivMult.svg %%DATADIR%%/HetrickCV/res/PhasorEuclidean.svg +%%DATADIR%%/HetrickCV/res/PhasorFreezer.svg %%DATADIR%%/HetrickCV/res/PhasorGates.svg %%DATADIR%%/HetrickCV/res/PhasorGates32.svg %%DATADIR%%/HetrickCV/res/PhasorGates64.svg @@ -2372,6 +2286,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/HetrickCV/res/PhasorHumanizer.svg %%DATADIR%%/HetrickCV/res/PhasorMixer.svg %%DATADIR%%/HetrickCV/res/PhasorOctature.svg +%%DATADIR%%/HetrickCV/res/PhasorProbability.svg %%DATADIR%%/HetrickCV/res/PhasorQuadrature.svg %%DATADIR%%/HetrickCV/res/PhasorRandom.svg %%DATADIR%%/HetrickCV/res/PhasorRanger.svg @@ -2379,6 +2294,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/HetrickCV/res/PhasorRhythmGroup.svg %%DATADIR%%/HetrickCV/res/PhasorShape.svg %%DATADIR%%/HetrickCV/res/PhasorShift.svg +%%DATADIR%%/HetrickCV/res/PhasorSplitter.svg %%DATADIR%%/HetrickCV/res/PhasorStutter.svg %%DATADIR%%/HetrickCV/res/PhasorSubstepShape.svg %%DATADIR%%/HetrickCV/res/PhasorSwing.svg @@ -2443,7 +2359,9 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/ImpromptuModular/res/panels/Variations.svg %%DATADIR%%/ImpromptuModular/res/panels/WriteSeq32.svg %%DATADIR%%/ImpromptuModular/res/panels/WriteSeq64.svg +%%DATADIR%%/JW-Modules/res/AbcdSeq.svg %%DATADIR%%/JW-Modules/res/Add5.svg +%%DATADIR%%/JW-Modules/res/Arrange.svg %%DATADIR%%/JW-Modules/res/BlankPanel1hp.svg %%DATADIR%%/JW-Modules/res/BlankPanelLarge.svg %%DATADIR%%/JW-Modules/res/BlankPanelMedium.svg @@ -2460,6 +2378,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/JW-Modules/res/DownButton.svg %%DATADIR%%/JW-Modules/res/DownButtonDown.svg %%DATADIR%%/JW-Modules/res/EightSeq.svg +%%DATADIR%%/JW-Modules/res/FullScope.svg %%DATADIR%%/JW-Modules/res/GridSeq.svg %%DATADIR%%/JW-Modules/res/Hairball.svg %%DATADIR%%/JW-Modules/res/LeftButton.svg @@ -2472,6 +2391,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/JW-Modules/res/PT.svg %%DATADIR%%/JW-Modules/res/Patterns.svg %%DATADIR%%/JW-Modules/res/Pres1t.svg +%%DATADIR%%/JW-Modules/res/Quantizer.svg %%DATADIR%%/JW-Modules/res/RepButton.svg %%DATADIR%%/JW-Modules/res/RepButtonDown.svg %%DATADIR%%/JW-Modules/res/RightButton.svg @@ -2480,6 +2400,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/JW-Modules/res/RndButtonDown.svg %%DATADIR%%/JW-Modules/res/Screw_J.svg %%DATADIR%%/JW-Modules/res/Screw_W.svg +%%DATADIR%%/JW-Modules/res/SimpleClock.svg %%DATADIR%%/JW-Modules/res/SmallButtonDown.svg %%DATADIR%%/JW-Modules/res/SmallButtonUp.svg %%DATADIR%%/JW-Modules/res/SmallWhiteKnob.svg @@ -2489,6 +2410,8 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/JW-Modules/res/Switch_Horizontal_1.svg %%DATADIR%%/JW-Modules/res/Switch_Vertical_0.svg %%DATADIR%%/JW-Modules/res/Switch_Vertical_1.svg +%%DATADIR%%/JW-Modules/res/ThingThing.svg +%%DATADIR%%/JW-Modules/res/Timer.svg %%DATADIR%%/JW-Modules/res/TinyButtonDown.svg %%DATADIR%%/JW-Modules/res/TinyButtonUp.svg %%DATADIR%%/JW-Modules/res/TinyPJ301M.svg @@ -2499,12 +2422,88 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/JW-Modules/res/TinyPJ301M_yellow.svg %%DATADIR%%/JW-Modules/res/TinyWhiteGrayKnob.svg %%DATADIR%%/JW-Modules/res/TinyWhiteKnob.svg +%%DATADIR%%/JW-Modules/res/Tree.svg %%DATADIR%%/JW-Modules/res/Trigs.svg %%DATADIR%%/JW-Modules/res/UpButton.svg %%DATADIR%%/JW-Modules/res/UpButtonDown.svg %%DATADIR%%/JW-Modules/res/WavHeadPanel.svg %%DATADIR%%/JW-Modules/res/WavHeadSmall.svg %%DATADIR%%/JW-Modules/res/XYPad.svg +%%DATADIR%%/JW-Modules/res/dark/AbcdSeq.svg +%%DATADIR%%/JW-Modules/res/dark/Add5.svg +%%DATADIR%%/JW-Modules/res/dark/Arrange.svg +%%DATADIR%%/JW-Modules/res/dark/BlankPanel1hp.svg +%%DATADIR%%/JW-Modules/res/dark/BlankPanelLarge.svg +%%DATADIR%%/JW-Modules/res/dark/BlankPanelMedium.svg +%%DATADIR%%/JW-Modules/res/dark/BlankPanelSmall.svg +%%DATADIR%%/JW-Modules/res/dark/BouncyBalls.svg +%%DATADIR%%/JW-Modules/res/dark/Bowl-food.svg +%%DATADIR%%/JW-Modules/res/dark/Bowl-no-food.svg +%%DATADIR%%/JW-Modules/res/dark/CDM.svg +%%DATADIR%%/JW-Modules/res/dark/Cat.svg +%%DATADIR%%/JW-Modules/res/dark/CoolBreeze.svg +%%DATADIR%%/JW-Modules/res/dark/D1v1de.svg +%%DATADIR%%/JW-Modules/res/dark/DivSeq-blue.svg +%%DATADIR%%/JW-Modules/res/dark/DivSeq.svg +%%DATADIR%%/JW-Modules/res/dark/DownButton.svg +%%DATADIR%%/JW-Modules/res/dark/DownButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/EightSeq-blue.svg +%%DATADIR%%/JW-Modules/res/dark/EightSeq.svg +%%DATADIR%%/JW-Modules/res/dark/GridSeq-blue.svg +%%DATADIR%%/JW-Modules/res/dark/GridSeq.svg +%%DATADIR%%/JW-Modules/res/dark/Hairball.svg +%%DATADIR%%/JW-Modules/res/dark/LeftButton.svg +%%DATADIR%%/JW-Modules/res/dark/LeftButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/MinMax.svg +%%DATADIR%%/JW-Modules/res/dark/NoteSeq.svg +%%DATADIR%%/JW-Modules/res/dark/NoteSeq16-colored.svg +%%DATADIR%%/JW-Modules/res/dark/NoteSeq16.svg +%%DATADIR%%/JW-Modules/res/dark/NoteSeqFu.svg +%%DATADIR%%/JW-Modules/res/dark/OnePattern.svg +%%DATADIR%%/JW-Modules/res/dark/PT.svg +%%DATADIR%%/JW-Modules/res/dark/Patterns-colored.svg +%%DATADIR%%/JW-Modules/res/dark/Patterns.svg +%%DATADIR%%/JW-Modules/res/dark/Pres1t.svg +%%DATADIR%%/JW-Modules/res/dark/Quantizer.svg +%%DATADIR%%/JW-Modules/res/dark/RepButton.svg +%%DATADIR%%/JW-Modules/res/dark/RepButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/RightButton.svg +%%DATADIR%%/JW-Modules/res/dark/RightButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/RndButton.svg +%%DATADIR%%/JW-Modules/res/dark/RndButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/Screw_J.svg +%%DATADIR%%/JW-Modules/res/dark/Screw_W.svg +%%DATADIR%%/JW-Modules/res/dark/SimpleClock.svg +%%DATADIR%%/JW-Modules/res/dark/SmallButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/SmallButtonUp.svg +%%DATADIR%%/JW-Modules/res/dark/SmallWhiteKnob.svg +%%DATADIR%%/JW-Modules/res/dark/SnowFlake.svg +%%DATADIR%%/JW-Modules/res/dark/Str1ker.svg +%%DATADIR%%/JW-Modules/res/dark/Switch_Horizontal_0.svg +%%DATADIR%%/JW-Modules/res/dark/Switch_Horizontal_1.svg +%%DATADIR%%/JW-Modules/res/dark/Switch_Vertical_0.svg +%%DATADIR%%/JW-Modules/res/dark/Switch_Vertical_1.svg +%%DATADIR%%/JW-Modules/res/dark/Timer.svg +%%DATADIR%%/JW-Modules/res/dark/TinyButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/TinyButtonUp.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M_blue.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M_orange.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M_purple.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M_white.svg +%%DATADIR%%/JW-Modules/res/dark/TinyPJ301M_yellow.svg +%%DATADIR%%/JW-Modules/res/dark/TinyWhiteGrayKnob.svg +%%DATADIR%%/JW-Modules/res/dark/TinyWhiteKnob.svg +%%DATADIR%%/JW-Modules/res/dark/Trigs-colored.svg +%%DATADIR%%/JW-Modules/res/dark/Trigs.svg +%%DATADIR%%/JW-Modules/res/dark/UpButton.svg +%%DATADIR%%/JW-Modules/res/dark/UpButtonDown.svg +%%DATADIR%%/JW-Modules/res/dark/WavHeadPanel.svg +%%DATADIR%%/JW-Modules/res/dark/WavHeadSmall.svg +%%DATADIR%%/JW-Modules/res/dark/XYPad.svg +%%DATADIR%%/JW-Modules/res/fader.svg +%%DATADIR%%/JW-Modules/res/faderbg.svg +%%DATADIR%%/JW-Modules/res/fonts/ShareTechMono-Regular.ttf %%DATADIR%%/LifeFormModular/res/AdditiveVibration.svg %%DATADIR%%/LifeFormModular/res/BurstIntegrator.svg %%DATADIR%%/LifeFormModular/res/ComplexOsc.svg @@ -2574,11 +2573,13 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/LyraeModules/presets/Vega/60bpm.vcvm %%DATADIR%%/LyraeModules/res/BD383238.svg %%DATADIR%%/LyraeModules/res/BD383238gen.svg +%%DATADIR%%/LyraeModules/res/Beta.svg %%DATADIR%%/LyraeModules/res/Bolt.svg %%DATADIR%%/LyraeModules/res/Gamma.svg %%DATADIR%%/LyraeModules/res/HexKnob.svg %%DATADIR%%/LyraeModules/res/Jack.svg %%DATADIR%%/LyraeModules/res/MedHexKnob.svg +%%DATADIR%%/LyraeModules/res/Sheliak.svg %%DATADIR%%/LyraeModules/res/SmallHexKnob.svg %%DATADIR%%/LyraeModules/res/SmallHexKnobInverted.svg %%DATADIR%%/LyraeModules/res/Sulafat.svg @@ -2791,6 +2792,59 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/MSM/res/Switch/VioMSwitchVert_1.svg %%DATADIR%%/MSM/res/Switch/VioMSwitch_0.svg %%DATADIR%%/MSM/res/Switch/VioMSwitch_1.svg +%%DATADIR%%/MUS-X/presets/Synth/Band Pass Sweep.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Bass.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Birds at the beach.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Brass Pad.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Dynamic envelopes, mod wheel morph.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Everything.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Evolving Pad.vcvm +%%DATADIR%%/MUS-X/presets/Synth/FM Bells.vcvm +%%DATADIR%%/MUS-X/presets/Synth/FM E-Piano.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Flanger.vcvm +%%DATADIR%%/MUS-X/presets/Synth/INIT Best Quality.vcvm +%%DATADIR%%/MUS-X/presets/Synth/INIT Low CPU.vcvm +%%DATADIR%%/MUS-X/presets/Synth/INIT Serial Filters.vcvm +%%DATADIR%%/MUS-X/presets/Synth/INIT.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Karplus Harpsichord.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Karplus Violin.vcvm +%%DATADIR%%/MUS-X/presets/Synth/LFO as envelope.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Laser.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Leslie Transistor Organ.vcvm +%%DATADIR%%/MUS-X/presets/Synth/LoFi.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Mini Lead.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Pad.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Sine like.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Stereo Pad.vcvm +%%DATADIR%%/MUS-X/presets/Synth/Sync.vcvm +%%DATADIR%%/MUS-X/presets/Synth/The HX.vcvm +%%DATADIR%%/MUS-X/presets/Synth/template.vcvm +%%DATADIR%%/MUS-X/res/ADSR-dark.svg +%%DATADIR%%/MUS-X/res/ADSR.svg +%%DATADIR%%/MUS-X/res/Delay-dark.svg +%%DATADIR%%/MUS-X/res/Delay.svg +%%DATADIR%%/MUS-X/res/Drift-dark.svg +%%DATADIR%%/MUS-X/res/Drift.svg +%%DATADIR%%/MUS-X/res/Filter-dark.svg +%%DATADIR%%/MUS-X/res/Filter.svg +%%DATADIR%%/MUS-X/res/LFO-dark.svg +%%DATADIR%%/MUS-X/res/LFO.svg +%%DATADIR%%/MUS-X/res/Last-dark.svg +%%DATADIR%%/MUS-X/res/Last.svg +%%DATADIR%%/MUS-X/res/ModMatrix-dark.svg +%%DATADIR%%/MUS-X/res/ModMatrix.svg +%%DATADIR%%/MUS-X/res/OnePole-dark.svg +%%DATADIR%%/MUS-X/res/OnePole.svg +%%DATADIR%%/MUS-X/res/OnePoleLP-dark.svg +%%DATADIR%%/MUS-X/res/OnePoleLP.svg +%%DATADIR%%/MUS-X/res/Oscillators-dark.svg +%%DATADIR%%/MUS-X/res/Oscillators.svg +%%DATADIR%%/MUS-X/res/SplitStack-dark.svg +%%DATADIR%%/MUS-X/res/SplitStack.svg +%%DATADIR%%/MUS-X/res/Synth-dark.svg +%%DATADIR%%/MUS-X/res/Synth.svg +%%DATADIR%%/MUS-X/res/Tuner-dark.svg +%%DATADIR%%/MUS-X/res/Tuner.svg %%DATADIR%%/Meander/res/Bravura.otf %%DATADIR%%/Meander/res/DejaVu-LICENSE.txt %%DATADIR%%/Meander/res/DejaVuSansMono.ttf @@ -2801,6 +2855,16 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Meander/res/Meander-light.svg %%DATADIR%%/Meander/res/Meander.png %%DATADIR%%/Meander/res/Meander.svg +%%DATADIR%%/Meander/res/ModeScaleProgressions-dark.png +%%DATADIR%%/Meander/res/ModeScaleProgressions-dark.svg +%%DATADIR%%/Meander/res/ModeScaleProgressions-light.png +%%DATADIR%%/Meander/res/ModeScaleProgressions-light.svg +%%DATADIR%%/Meander/res/ModeScaleProgressions.png +%%DATADIR%%/Meander/res/ModeScaleQuant-dark.png +%%DATADIR%%/Meander/res/ModeScaleQuant-dark.svg +%%DATADIR%%/Meander/res/ModeScaleQuant-light.png +%%DATADIR%%/Meander/res/ModeScaleQuant-light.svg +%%DATADIR%%/Meander/res/ModeScaleQuant.png %%DATADIR%%/Meander/res/OFL.txt %%DATADIR%%/Meander/res/Progression-Edit-Panel-Help.png %%DATADIR%%/Meander/res/TinyPJ301M.svg @@ -4046,7 +4110,6 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/PluginManifests/ChowDSP.json %%DATADIR%%/PluginManifests/Computerscare.json %%DATADIR%%/PluginManifests/DHE-Modules.json -%%DATADIR%%/PluginManifests/DrumKit.json %%DATADIR%%/PluginManifests/ESeries.json %%DATADIR%%/PluginManifests/EnigmaCurry.json %%DATADIR%%/PluginManifests/ExpertSleepers-Encoders.json @@ -4067,6 +4130,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/PluginManifests/LyraeModules.json %%DATADIR%%/PluginManifests/ML_modules.json %%DATADIR%%/PluginManifests/MSM.json +%%DATADIR%%/PluginManifests/MUS-X.json %%DATADIR%%/PluginManifests/Meander.json %%DATADIR%%/PluginManifests/MindMeldModular.json %%DATADIR%%/PluginManifests/MockbaModular.json @@ -4081,13 +4145,16 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/PluginManifests/Sapphire.json %%DATADIR%%/PluginManifests/StarlingVia.json %%DATADIR%%/PluginManifests/ValleyAudio.json +%%DATADIR%%/PluginManifests/WSTD-Drums.json %%DATADIR%%/PluginManifests/WhatTheRack.json %%DATADIR%%/PluginManifests/ZZC.json %%DATADIR%%/PluginManifests/ZamAudio.json %%DATADIR%%/PluginManifests/ZetaCarinaeModules.json +%%DATADIR%%/PluginManifests/admiral.json %%DATADIR%%/PluginManifests/alefsbits.json %%DATADIR%%/PluginManifests/cf.json %%DATADIR%%/PluginManifests/dBiz.json +%%DATADIR%%/PluginManifests/eightfold.json %%DATADIR%%/PluginManifests/forsitan-modulare.json %%DATADIR%%/PluginManifests/h4n4-modules.json %%DATADIR%%/PluginManifests/ihtsyn.json @@ -4157,14 +4224,53 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/RebelTech/res/panels/Stoicheia_drk.svg %%DATADIR%%/RebelTech/res/panels/Tonic.svg %%DATADIR%%/RebelTech/res/panels/Tonic_drk.svg +%%DATADIR%%/Sapphire/res/chaops.svg +%%DATADIR%%/Sapphire/res/clock_button_0.svg +%%DATADIR%%/Sapphire/res/clock_button_1.svg +%%DATADIR%%/Sapphire/res/echo.svg +%%DATADIR%%/Sapphire/res/echo_clock.svg +%%DATADIR%%/Sapphire/res/echo_clock_sel.svg +%%DATADIR%%/Sapphire/res/echo_dck.svg +%%DATADIR%%/Sapphire/res/echo_dck_sel.svg +%%DATADIR%%/Sapphire/res/echo_env.svg +%%DATADIR%%/Sapphire/res/echo_env_sel.svg +%%DATADIR%%/Sapphire/res/echo_flp.svg +%%DATADIR%%/Sapphire/res/echo_flp_sel.svg +%%DATADIR%%/Sapphire/res/echo_rev.svg +%%DATADIR%%/Sapphire/res/echo_rev_sel.svg +%%DATADIR%%/Sapphire/res/echo_voct.svg +%%DATADIR%%/Sapphire/res/echo_voct_sel.svg +%%DATADIR%%/Sapphire/res/echoout.svg +%%DATADIR%%/Sapphire/res/echotap.svg +%%DATADIR%%/Sapphire/res/echotap_dck.svg +%%DATADIR%%/Sapphire/res/echotap_dck_sel.svg +%%DATADIR%%/Sapphire/res/echotap_env.svg +%%DATADIR%%/Sapphire/res/echotap_env_sel.svg +%%DATADIR%%/Sapphire/res/echotap_flp.svg +%%DATADIR%%/Sapphire/res/echotap_flp_sel.svg +%%DATADIR%%/Sapphire/res/echotap_rev.svg +%%DATADIR%%/Sapphire/res/echotap_rev_sel.svg %%DATADIR%%/Sapphire/res/elastika.svg +%%DATADIR%%/Sapphire/res/elastika_in_l2.svg +%%DATADIR%%/Sapphire/res/elastika_in_lr.svg +%%DATADIR%%/Sapphire/res/elastika_in_r2.svg +%%DATADIR%%/Sapphire/res/elastika_out_2.svg +%%DATADIR%%/Sapphire/res/elastika_out_lr.svg +%%DATADIR%%/Sapphire/res/env.svg +%%DATADIR%%/Sapphire/res/extender_button.svg %%DATADIR%%/Sapphire/res/frolic.svg %%DATADIR%%/Sapphire/res/galaxy.svg %%DATADIR%%/Sapphire/res/glee.svg +%%DATADIR%%/Sapphire/res/gravy.svg %%DATADIR%%/Sapphire/res/hiss.svg +%%DATADIR%%/Sapphire/res/interval_button_0.svg +%%DATADIR%%/Sapphire/res/interval_button_1.svg +%%DATADIR%%/Sapphire/res/lark.svg %%DATADIR%%/Sapphire/res/moots.svg %%DATADIR%%/Sapphire/res/moots_label_gate.svg %%DATADIR%%/Sapphire/res/moots_label_trigger.svg +%%DATADIR%%/Sapphire/res/mute_button_0.svg +%%DATADIR%%/Sapphire/res/mute_button_1.svg %%DATADIR%%/Sapphire/res/nucleus.svg %%DATADIR%%/Sapphire/res/nucleus_label_audio.svg %%DATADIR%%/Sapphire/res/nucleus_label_control.svg @@ -4174,8 +4280,15 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/Sapphire/res/polynucleus_label_control.svg %%DATADIR%%/Sapphire/res/pop.svg %%DATADIR%%/Sapphire/res/port.svg +%%DATADIR%%/Sapphire/res/remove_button.svg %%DATADIR%%/Sapphire/res/rotini.svg %%DATADIR%%/Sapphire/res/sam.svg +%%DATADIR%%/Sapphire/res/sauce.svg +%%DATADIR%%/Sapphire/res/stereo_in_l2.svg +%%DATADIR%%/Sapphire/res/stereo_in_lr.svg +%%DATADIR%%/Sapphire/res/stereo_in_r2.svg +%%DATADIR%%/Sapphire/res/stereo_out_2.svg +%%DATADIR%%/Sapphire/res/stereo_out_lr.svg %%DATADIR%%/Sapphire/res/tin.svg %%DATADIR%%/Sapphire/res/tout.svg %%DATADIR%%/Sapphire/res/tricorder.svg @@ -4356,6 +4469,125 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSYellowSmall-fg.svg %%DATADIR%%/ValleyAudio/res/v2/Small/Rogan1PSYellowSmall.svg %%DATADIR%%/ValleyAudio/res/valleySliderBackground.svg +%%DATADIR%%/WSTD-Drums/res/BD9.svg +%%DATADIR%%/WSTD-Drums/res/Baronial.svg +%%DATADIR%%/WSTD-Drums/res/CR78.svg +%%DATADIR%%/WSTD-Drums/res/ClosedHH.svg +%%DATADIR%%/WSTD-Drums/res/DMX.svg +%%DATADIR%%/WSTD-Drums/res/Gnome.svg +%%DATADIR%%/WSTD-Drums/res/Marionette.svg +%%DATADIR%%/WSTD-Drums/res/OpenHH.svg +%%DATADIR%%/WSTD-Drums/res/SBD.svg +%%DATADIR%%/WSTD-Drums/res/Sequencer.svg +%%DATADIR%%/WSTD-Drums/res/Snare.svg +%%DATADIR%%/WSTD-Drums/res/Tomi.svg +%%DATADIR%%/WSTD-Drums/res/component/Knob.svg +%%DATADIR%%/WSTD-Drums/res/component/NovaMono.ttf +%%DATADIR%%/WSTD-Drums/res/component/Port.svg +%%DATADIR%%/WSTD-Drums/res/component/led-down-off.svg +%%DATADIR%%/WSTD-Drums/res/component/led-down-on.svg +%%DATADIR%%/WSTD-Drums/res/component/led-up-off.svg +%%DATADIR%%/WSTD-Drums/res/component/led-up-on.svg +%%DATADIR%%/WSTD-Drums/res/component/pad-off.svg +%%DATADIR%%/WSTD-Drums/res/component/pad-on.svg +%%DATADIR%%/WSTD-Drums/res/component/switch_0.svg +%%DATADIR%%/WSTD-Drums/res/component/switch_1.svg +%%DATADIR%%/WSTD-Drums/res/samples/bd9/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/13.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/14.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/15.raw +%%DATADIR%%/WSTD-Drums/res/samples/bd9/16.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/13.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/14.raw +%%DATADIR%%/WSTD-Drums/res/samples/closedhh/15.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/cr78/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/dmx/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/kick/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/kick/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/13.raw +%%DATADIR%%/WSTD-Drums/res/samples/openhh/14.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/13.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/14.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/15.raw +%%DATADIR%%/WSTD-Drums/res/samples/snare/16.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/01.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/02.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/03.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/04.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/05.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/06.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/07.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/08.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/09.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/10.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/11.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/12.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/13.raw +%%DATADIR%%/WSTD-Drums/res/samples/tomi/14.raw %%DATADIR%%/WhatTheRack/res/BoomButton/question_bw.svg %%DATADIR%%/WhatTheRack/res/BoomButton/question_color.svg %%DATADIR%%/WhatTheRack/res/WhatTheJack.svg @@ -4444,6 +4676,13 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/ZetaCarinaeModules/res/RosenchancePlate.svg %%DATADIR%%/ZetaCarinaeModules/res/RosslerRustlerPlate.svg %%DATADIR%%/ZetaCarinaeModules/res/WarblerPlate.svg +%%DATADIR%%/admiral/res/ComponentLibrary/HorizontalBefacoSwitch_0.svg +%%DATADIR%%/admiral/res/ComponentLibrary/HorizontalBefacoSwitch_1.svg +%%DATADIR%%/admiral/res/ComponentLibrary/HorizontalBefacoSwitch_2.svg +%%DATADIR%%/admiral/res/Divisions.svg +%%DATADIR%%/admiral/res/Shifts.svg +%%DATADIR%%/admiral/res/Tables.svg +%%DATADIR%%/admiral/res/Watches.svg %%DATADIR%%/alefsbits/res/blank6hp.svg %%DATADIR%%/alefsbits/res/fibb.svg %%DATADIR%%/alefsbits/res/logic.svg @@ -4667,6 +4906,27 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/dBiz/res/component/VerboXS-bg.svg %%DATADIR%%/dBiz/res/component/VerboXS-cap.svg %%DATADIR%%/dBiz/res/component/VerboXS.svg +%%DATADIR%%/eightfold/res/SDComparator.svg +%%DATADIR%%/eightfold/res/SDFormation.svg +%%DATADIR%%/eightfold/res/SDLines.svg +%%DATADIR%%/eightfold/res/SDOrcasHeartV2.svg +%%DATADIR%%/eightfold/res/SDTransgate.svg +%%DATADIR%%/eightfold/res/shared/SDMediumKnob.svg +%%DATADIR%%/eightfold/res/shared/SDMonoPort.svg +%%DATADIR%%/eightfold/res/shared/SDPolyPort.svg +%%DATADIR%%/eightfold/res/shared/SDScaleButton_off.svg +%%DATADIR%%/eightfold/res/shared/SDScaleButton_on.svg +%%DATADIR%%/eightfold/res/shared/SDScaleKnob.svg +%%DATADIR%%/eightfold/res/shared/SDScalePort.svg +%%DATADIR%%/eightfold/res/shared/SDSmallKnob.svg +%%DATADIR%%/eightfold/res/shared/SDSmallScaleButton_off.svg +%%DATADIR%%/eightfold/res/shared/SDSmallScaleButton_on.svg +%%DATADIR%%/eightfold/res/shared/SDSmallestKnob.svg +%%DATADIR%%/eightfold/res/shared/SDThreeSwitch1.svg +%%DATADIR%%/eightfold/res/shared/SDThreeSwitch2.svg +%%DATADIR%%/eightfold/res/shared/SDThreeSwitch3.svg +%%DATADIR%%/eightfold/res/shared/SDTwoSwitch1.svg +%%DATADIR%%/eightfold/res/shared/SDTwoSwitch2.svg %%DATADIR%%/fonts/DSEG7ClassicMini-Bold.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-BoldItalic.ttf %%DATADIR%%/fonts/DSEG7ClassicMini-Italic.ttf @@ -4700,6 +4960,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/ihtsyn/res/nyTapperUp12.svg %%DATADIR%%/ihtsyn/res/nyTapperUp16.svg %%DATADIR%%/kocmoc/res/DDLY.svg +%%DATADIR%%/kocmoc/res/DIOD.svg %%DATADIR%%/kocmoc/res/LADR.svg %%DATADIR%%/kocmoc/res/MUL.svg %%DATADIR%%/kocmoc/res/OP.svg @@ -4707,6 +4968,8 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/kocmoc/res/SKF.svg %%DATADIR%%/kocmoc/res/SVF.svg %%DATADIR%%/kocmoc/res/TRG.svg +%%DATADIR%%/kocmoc/res/uLADR.svg +%%DATADIR%%/kocmoc/res/uSVF.svg %%DATADIR%%/mscHack/res/ARP700.svg %%DATADIR%%/mscHack/res/ASAF8.svg %%DATADIR%%/mscHack/res/Alienz.svg @@ -4770,47 +5033,49 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/myth-modules/res/Mavka.svg %%DATADIR%%/myth-modules/res/Molphar.svg %%DATADIR%%/myth-modules/res/Template.svg +%%DATADIR%%/nonlinearcircuits/res/1050MixSeq.afdesign +%%DATADIR%%/nonlinearcircuits/res/1050MixSeq.svg +%%DATADIR%%/nonlinearcircuits/res/32to1.afdesign +%%DATADIR%%/nonlinearcircuits/res/32to1.svg +%%DATADIR%%/nonlinearcircuits/res/4seq.afdesign +%%DATADIR%%/nonlinearcircuits/res/4seq.svg +%%DATADIR%%/nonlinearcircuits/res/8BitCipher.afdesign +%%DATADIR%%/nonlinearcircuits/res/8BitCipher.svg %%DATADIR%%/nonlinearcircuits/res/Audiowide-Regular.ttf %%DATADIR%%/nonlinearcircuits/res/BOOLs.afdesign %%DATADIR%%/nonlinearcircuits/res/BOOLs.svg -%%DATADIR%%/nonlinearcircuits/res/BOOLs2.svg +%%DATADIR%%/nonlinearcircuits/res/BOOLsOld.svg +%%DATADIR%%/nonlinearcircuits/res/DivideConquer.afdesign +%%DATADIR%%/nonlinearcircuits/res/DivideConquer.svg +%%DATADIR%%/nonlinearcircuits/res/DivideConquerNoCircles.afdesign +%%DATADIR%%/nonlinearcircuits/res/DivineCMOS.afdesign +%%DATADIR%%/nonlinearcircuits/res/DivineCMOS.svg +%%DATADIR%%/nonlinearcircuits/res/DoubleNeuron.svg %%DATADIR%%/nonlinearcircuits/res/DoubleNeuronBright.svg %%DATADIR%%/nonlinearcircuits/res/DoubleNeuronDark.svg -%%DATADIR%%/nonlinearcircuits/res/DoubleNeuronRef.svg +%%DATADIR%%/nonlinearcircuits/res/GENiE.afdesign +%%DATADIR%%/nonlinearcircuits/res/GENiE.svg %%DATADIR%%/nonlinearcircuits/res/LetsSplosh.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - 1050 MIXER SEQUENCER.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - 1050 MIXER SEQUENCER.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - 32to1.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - 32to1.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - 4seq.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - 4seq.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - 8 BIT CIPHER.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - 8 BIT CIPHER.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUER.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUER.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - DIVIDE & CONQUERNoCircles.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - DIVINE CMOS.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - DIVINE CMOS.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - GENiE.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - GENiE.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - NEURON.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - NEURON.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - NUMBERWANG.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - NUMBERWANG.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - ROUTER.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - ROUTER.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - SEGUE.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - SEGUE.svg -%%DATADIR%%/nonlinearcircuits/res/NLC - STATUES.afdesign -%%DATADIR%%/nonlinearcircuits/res/NLC - STATUES.svg +%%DATADIR%%/nonlinearcircuits/res/Neuron.afdesign +%%DATADIR%%/nonlinearcircuits/res/Neuron.svg +%%DATADIR%%/nonlinearcircuits/res/Numberwang.afdesign +%%DATADIR%%/nonlinearcircuits/res/Numberwang.svg +%%DATADIR%%/nonlinearcircuits/res/Router.afdesign +%%DATADIR%%/nonlinearcircuits/res/Router.svg +%%DATADIR%%/nonlinearcircuits/res/Segue.afdesign +%%DATADIR%%/nonlinearcircuits/res/Segue.svg %%DATADIR%%/nonlinearcircuits/res/SlothApathy.svg %%DATADIR%%/nonlinearcircuits/res/SlothInertia.svg %%DATADIR%%/nonlinearcircuits/res/SlothTorpor.svg +%%DATADIR%%/nonlinearcircuits/res/Splish.afdesign +%%DATADIR%%/nonlinearcircuits/res/Splish.svg +%%DATADIR%%/nonlinearcircuits/res/SquidAxon.svg +%%DATADIR%%/nonlinearcircuits/res/Statues.afdesign +%%DATADIR%%/nonlinearcircuits/res/Statues.svg %%DATADIR%%/nonlinearcircuits/res/TripleSloth.svg %%DATADIR%%/nonlinearcircuits/res/squid-axon-original-panel.svg %%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel.afdesign %%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel.svg -%%DATADIR%%/nonlinearcircuits/res/squid-axon-papernoise-panel2.svg %%DATADIR%%/patches/examples/DRMR_-_BassGrowl.vcv %%DATADIR%%/patches/examples/DRMR_-_Etherpad.vcv %%DATADIR%%/patches/examples/DRMR_-_Gabberswing.vcv @@ -4819,6 +5084,7 @@ lib/vst/Cardinal.vst/CardinalSynth.so %%DATADIR%%/patches/examples/SpotlightKid_-_Classic-Polysynth.vcv %%DATADIR%%/patches/examples/VT_-_Jupiter_Ascent.vcv %%DATADIR%%/patches/examples/falkTX_-_Divide-no-Conquer.vcv +%%DATADIR%%/patches/examples/falkTX_-_Mini-Arp-Seq.vcv %%DATADIR%%/patches/examples/falkTX_-_Random-Progress-Pluck-Rev.vcv %%DATADIR%%/patches/examples/falkTX_-_Salomonis-MonoRegen.vcv %%DATADIR%%/patches/mini/falkTX_-_Moogy.vcv diff --git a/audio/ganv/Makefile b/audio/ganv/Makefile index d306d35b91e3..a19b223c2324 100644 --- a/audio/ganv/Makefile +++ b/audio/ganv/Makefile @@ -1,6 +1,6 @@ PORTNAME= ganv DISTVERSION= 1.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= https://download.drobilla.net/ diff --git a/audio/zrythm/Makefile b/audio/zrythm/Makefile index da96df2c503c..da3c4cc8d3fe 100644 --- a/audio/zrythm/Makefile +++ b/audio/zrythm/Makefile @@ -1,7 +1,7 @@ PORTNAME= zrythm DISTVERSIONPREFIX= v DISTVERSION= 1.0.0-alpha.26.0.13 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org 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/devel/R-cran-progressr/Makefile b/devel/R-cran-progressr/Makefile index da49f2d7956c..ec3716f1f691 100644 --- a/devel/R-cran-progressr/Makefile +++ b/devel/R-cran-progressr/Makefile @@ -1,5 +1,5 @@ PORTNAME= progressr -DISTVERSION= 0.16.0 +DISTVERSION= 0.17.0 CATEGORIES= devel DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/devel/R-cran-progressr/distinfo b/devel/R-cran-progressr/distinfo index beecaa06dde3..6d8cdbddecb6 100644 --- a/devel/R-cran-progressr/distinfo +++ b/devel/R-cran-progressr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758386238 -SHA256 (progressr_0.16.0.tar.gz) = 310eaeb29b409c0bedfb526e48cdbca0db65797285ac3a2c24ed2d910de7ba60 -SIZE (progressr_0.16.0.tar.gz) = 216481 +TIMESTAMP = 1760648951 +SHA256 (progressr_0.17.0.tar.gz) = 971a91d13a07e7f06c2a99074028660e14468c9f6f2eb56965a226b6cf9235e1 +SIZE (progressr_0.17.0.tar.gz) = 223911 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/cdk/Makefile b/devel/cdk/Makefile index 6ccde31dfe8a..0c3bbdafef92 100644 --- a/devel/cdk/Makefile +++ b/devel/cdk/Makefile @@ -1,5 +1,5 @@ PORTNAME= cdk -DISTVERSION= 5.0-20251001 +DISTVERSION= 5.0-20251014 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= https://invisible-island.net/archives/${PORTNAME}/ \ @@ -27,8 +27,8 @@ PORTEXAMPLES= cli demos examples OPTIONS_DEFINE= DOCS EXAMPLES post-patch: - @${REINPLACE_CMD} -e 's|gcc|$$(CC)| ; \ - /^CDKREADME/s| COPYING||' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/^CDKREADME/s| COPYING||' \ + ${WRKSRC}/Makefile.in post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcdk*.so diff --git a/devel/cdk/distinfo b/devel/cdk/distinfo index ade0e7425aee..6d8fb26c7139 100644 --- a/devel/cdk/distinfo +++ b/devel/cdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759952799 -SHA256 (cdk-5.0-20251001.tgz) = 18b196e601a65533d0dff32626fbb887514d8688e783d7f6098b4b4ebc64d853 -SIZE (cdk-5.0-20251001.tgz) = 550774 +TIMESTAMP = 1760650956 +SHA256 (cdk-5.0-20251014.tgz) = 0ed46949c680a5f42e342cc48a2ce60bcfc2cc8b9eebb176877b5a91f829435c +SIZE (cdk-5.0-20251014.tgz) = 551916 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/kdevelop/Makefile b/devel/kdevelop/Makefile index ae4cf97e9ef1..d8a627526577 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -17,7 +17,8 @@ BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ LIB_DEPENDS= libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libkomparediff2.so:textproc/libkomparediff2 -RUN_DEPENDS= gmake:devel/gmake +RUN_DEPENDS= gmake:devel/gmake \ + lldb-mi:devel/lldb-mi USES= cmake compiler:c++17-lang desktop-file-utils gettext-tools gl \ kde:6 llvm:build,run,noexport pkgconfig qt:6 shared-mime-info \ diff --git a/devel/libr3/Makefile b/devel/libr3/Makefile index eb62cca1b073..b8edc0bba066 100644 --- a/devel/libr3/Makefile +++ b/devel/libr3/Makefile @@ -1,6 +1,6 @@ PORTNAME= libr3 PORTVERSION= 1.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= gasol.wu@gmail.com diff --git a/devel/nexus2-oss/Makefile b/devel/nexus2-oss/Makefile index cfc7930010d4..911529f867f9 100644 --- a/devel/nexus2-oss/Makefile +++ b/devel/nexus2-oss/Makefile @@ -1,5 +1,6 @@ PORTNAME= nexus2 PORTVERSION= 2.15.1 +PORTREVISION= 1 DISTVERSIONSUFFIX= 02 CATEGORIES= devel www java MASTER_SITES= https://download.sonatype.com/nexus/oss/ diff --git a/devel/nexus2-oss/files/patch-conf_wrapper.conf b/devel/nexus2-oss/files/patch-conf_wrapper.conf index 5175add7a8e8..3493ce233214 100644 --- a/devel/nexus2-oss/files/patch-conf_wrapper.conf +++ b/devel/nexus2-oss/files/patch-conf_wrapper.conf @@ -1,6 +1,6 @@ --- conf/wrapper.conf 2022-03-23 19:24:46.000000000 +0100 +++ conf/wrapper.conf 2022-04-06 21:10:27.448234000 +0200 -@@ -8,38 +8,34 @@ +@@ -8,38 +8,33 @@ # keywords. # Set the JSW working directory (used as base for resolving relative paths) @@ -40,7 +40,6 @@ -#wrapper.java.additional.9=-XX:+HeapDumpOnOutOfMemoryError +wrapper.java.additional.3=-Djava.util.prefs.userRoot=%%WORKDIR%% +wrapper.java.additional.4=-Dcom.sun.jndi.ldap.connect.pool.protocol="plain ssl" -+wrapper.java.additional.4.stripquotes=TRUE +wrapper.java.additional.5=-Djdk.tls.ephemeralDHKeySize=2048 -wrapper.app.parameter.1=./conf/jetty.xml diff --git a/devel/nexus2-oss/files/pkg-message.in b/devel/nexus2-oss/files/pkg-message.in index 57ee0ab302aa..612378f0211e 100644 --- a/devel/nexus2-oss/files/pkg-message.in +++ b/devel/nexus2-oss/files/pkg-message.in @@ -32,6 +32,15 @@ Further documentation can be found at: https://help.sonatype.com/repomanager2 EOM }, +{ + type: upgrade + maximum_version: "2.15.1_1" + message: <<EOM +With the upgrade to javaservicewrapper-3.6.3 Nexus won't start unless you +remove all properties ending with '.stripquotes' in your +%%ETCDIR%%/wrapper.conf. +EOM +}, { type: remove message: <<EOM Consider deleting %%ETCDIR%%, %%RUNDIR%%, %%LOGDIR%% and %%WORKDIR%% manually!" diff --git a/devel/pyenv/Makefile b/devel/pyenv/Makefile index d881793d0912..4324c1d2e3ab 100644 --- a/devel/pyenv/Makefile +++ b/devel/pyenv/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyenv DISTVERSIONPREFIX= v -DISTVERSION= 2.6.10 +DISTVERSION= 2.6.11 CATEGORIES= devel python MAINTAINER= olgeni@FreeBSD.org diff --git a/devel/pyenv/distinfo b/devel/pyenv/distinfo index 253c3289a72e..0e015ff905fb 100644 --- a/devel/pyenv/distinfo +++ b/devel/pyenv/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760173805 -SHA256 (pyenv-pyenv-v2.6.10_GH0.tar.gz) = 3a45027e61a348b6a621cbdd28e1aa76aa09addbcda83f7c776aea206b3f4994 -SIZE (pyenv-pyenv-v2.6.10_GH0.tar.gz) = 1360131 +TIMESTAMP = 1760592439 +SHA256 (pyenv-pyenv-v2.6.11_GH0.tar.gz) = cfd4c1a21a0095a4adb53da5c374b98295c355c2532527c06ce83a103b7ddad8 +SIZE (pyenv-pyenv-v2.6.11_GH0.tar.gz) = 1360562 diff --git a/devel/pyenv/pkg-plist b/devel/pyenv/pkg-plist index f6b10a6e0cb7..4165cce482e1 100644 --- a/devel/pyenv/pkg-plist +++ b/devel/pyenv/pkg-plist @@ -275,12 +275,16 @@ libexec/pyenv-plugins/python-build/share/python-build/3.13.7 libexec/pyenv-plugins/python-build/share/python-build/3.13.7t libexec/pyenv-plugins/python-build/share/python-build/3.13.8 libexec/pyenv-plugins/python-build/share/python-build/3.13.8t +libexec/pyenv-plugins/python-build/share/python-build/3.13.9 +libexec/pyenv-plugins/python-build/share/python-build/3.13.9t libexec/pyenv-plugins/python-build/share/python-build/3.14t-dev libexec/pyenv-plugins/python-build/share/python-build/3.14-dev libexec/pyenv-plugins/python-build/share/python-build/3.14.0 libexec/pyenv-plugins/python-build/share/python-build/3.14.0t libexec/pyenv-plugins/python-build/share/python-build/3.15t-dev libexec/pyenv-plugins/python-build/share/python-build/3.15-dev +libexec/pyenv-plugins/python-build/share/python-build/3.15.0a1 +libexec/pyenv-plugins/python-build/share/python-build/3.15.0a1t libexec/pyenv-plugins/python-build/share/python-build/activepython-2.7.14 libexec/pyenv-plugins/python-build/share/python-build/activepython-3.5.4 libexec/pyenv-plugins/python-build/share/python-build/activepython-3.6.0 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/trackballs/Makefile b/games/trackballs/Makefile index 3c927262bc5f..238b9fefd6ba 100644 --- a/games/trackballs/Makefile +++ b/games/trackballs/Makefile @@ -1,7 +1,6 @@ PORTNAME= trackballs -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.5 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= games MAINTAINER= martymac@FreeBSD.org @@ -11,11 +10,14 @@ WWW= https://trackballs.github.io/ LICENSE= GPLv2+ ETHYMONICS LICENSE_COMB= multi +# XXX Trackballs crashes if lang/guile2 is built with THREADS support USES= cmake desktop-file-utils gettext-runtime gl gnome \ guile:2.2,conflicts pkgconfig sdl USE_GL= gl USE_SDL= image2 mixer2 sdl2 ttf2 +LIB_DEPENDS= libgc.so:devel/boehm-gc + LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING LICENSE_FILE_ETHYMONICS= ${WRKSRC}/share/music/README LICENSE_NAME_ETHYMONICS= Ethymonics Free Music License diff --git a/games/trackballs/distinfo b/games/trackballs/distinfo index cdc9ac8b40ab..366a90780903 100644 --- a/games/trackballs/distinfo +++ b/games/trackballs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1672868933 -SHA256 (trackballs-trackballs-v1.3.4_GH0.tar.gz) = 1276da61bca0d926048071ddf08ad91dc77bdb435b31f688f77137c978e57b2e -SIZE (trackballs-trackballs-v1.3.4_GH0.tar.gz) = 32719091 +TIMESTAMP = 1757445073 +SHA256 (trackballs-trackballs-v1.3.5_GH0.tar.gz) = 431587933e8f01d92a976933fe415aa0b000e5e7ec053b53efac0d8004311acc +SIZE (trackballs-trackballs-v1.3.5_GH0.tar.gz) = 32719056 diff --git a/games/trackballs/files/patch-src-glHelp.h b/games/trackballs/files/patch-src-glHelp.h deleted file mode 100644 index 69080089246e..000000000000 --- a/games/trackballs/files/patch-src-glHelp.h +++ /dev/null @@ -1,12 +0,0 @@ ---- src/glHelp.h.orig 2022-12-23 18:52:49 UTC -+++ src/glHelp.h -@@ -27,7 +27,8 @@ - - #include "general.h" - --typedef struct _TTF_Font TTF_Font; -+#include <SDL2/SDL_ttf.h> -+ - typedef struct SDL_Surface SDL_Surface; - class Map; - class Game; diff --git a/graphics/ImageMagick6/Makefile b/graphics/ImageMagick6/Makefile index 492e56d0d38d..0cfc88e77cc1 100644 --- a/graphics/ImageMagick6/Makefile +++ b/graphics/ImageMagick6/Makefile @@ -1,6 +1,6 @@ PORTNAME= ImageMagick DISTVERSION= 6.9.13-23 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= graphics perl5 MASTER_SITES= https://ftp.acc.umu.se/mirror/imagemagick.org/ftp/releases/ \ diff --git a/graphics/ImageMagick7/Makefile b/graphics/ImageMagick7/Makefile index fb81c00d0923..895fb84ff200 100644 --- a/graphics/ImageMagick7/Makefile +++ b/graphics/ImageMagick7/Makefile @@ -1,6 +1,6 @@ PORTNAME= ImageMagick DISTVERSION= 7.1.1-45 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics perl5 MASTER_SITES= https://ftp.acc.umu.se/mirror/imagemagick.org/ftp/releases/ \ https://mirror.dogado.de/imagemagick/releases/ \ 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/graphviz/Makefile b/graphics/graphviz/Makefile index fc7f96a308a9..6d7903450e6c 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -1,6 +1,6 @@ PORTNAME= graphviz -PORTVERSION= 12.2.1 -PORTREVISION= 2 +PORTVERSION= 14.0.1 +PORTREVISION= 0 CATEGORIES= graphics tk MASTER_SITES= https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/${PORTVERSION}/ @@ -50,6 +50,7 @@ FIX_TCL_SCRIPT= tclpkg/gdtclft/demo/entities.tcl \ tclpkg/tcldot/demo/gcat.tcl FIX_TK_SCRIPT= tclpkg/tcldot/demo/doted.tcl \ tclpkg/tclpathplan/demo/pathplan.tcl +PLIST_SUB= SH_VERSION_SHORT="8" SH_VERSION_FULL="8.0.1" OPTIONS_DEFINE= XPM DIGCOLA IPSEPCOLA ICONV NLS ANN GTS \ PANGOCAIRO POPPLER GDK GHOSTSCRIPT DEVIL \ @@ -69,7 +70,7 @@ GDK_DESC= gdk plugin support (requires PANGOCAIRO) GHOSTSCRIPT_DESC=ghostscript plugin (requires PANGOCAIRO) DEVIL_DESC= devil plugin SMYRNA_DESC= SMYRNA graph viewer (GTK2) -GVEDIT_DESC= GVEDIT graph viewer (Qt6) +GVEDIT_DESC= GVEDIT graph viewer (QT6) PERL_DESC= Perl bindings (swig) PHP_DESC= PHP bindings (swig) PYTHON_DESC= Python bindings (swig) diff --git a/graphics/graphviz/distinfo b/graphics/graphviz/distinfo index d2b99446ff7f..262c4743a53b 100644 --- a/graphics/graphviz/distinfo +++ b/graphics/graphviz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734282718 -SHA256 (graphviz-12.2.1.tar.gz) = 242bc18942eebda6db4039f108f387ec97856fc91ba47f21e89341c34b554df8 -SIZE (graphviz-12.2.1.tar.gz) = 26813453 +TIMESTAMP = 1760174742 +SHA256 (graphviz-14.0.1.tar.gz) = 647e7d6aa60158347d3537aef16415a07b71be86c80df84a49dcafd398f54e76 +SIZE (graphviz-14.0.1.tar.gz) = 26818359 diff --git a/graphics/graphviz/pkg-plist b/graphics/graphviz/pkg-plist index 1fa14c56408e..e4384e31fafc 100644 --- a/graphics/graphviz/pkg-plist +++ b/graphics/graphviz/pkg-plist @@ -80,56 +80,56 @@ include/graphviz/xdot.h %%GUILE%%lib/graphviz/guile/libgv_guile.so lib/graphviz/libgvplugin_core.la lib/graphviz/libgvplugin_core.so -lib/graphviz/libgvplugin_core.so.6 -lib/graphviz/libgvplugin_core.so.6.0.0 +lib/graphviz/libgvplugin_core.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_core.so.%%SH_VERSION_FULL%% %%DEVIL%%lib/graphviz/libgvplugin_devil.la %%DEVIL%%lib/graphviz/libgvplugin_devil.so -%%DEVIL%%lib/graphviz/libgvplugin_devil.so.6 -%%DEVIL%%lib/graphviz/libgvplugin_devil.so.6.0.0 +%%DEVIL%%lib/graphviz/libgvplugin_devil.so.%%SH_VERSION_SHORT%% +%%DEVIL%%lib/graphviz/libgvplugin_devil.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_dot_layout.la lib/graphviz/libgvplugin_dot_layout.so -lib/graphviz/libgvplugin_dot_layout.so.6 -lib/graphviz/libgvplugin_dot_layout.so.6.0.0 +lib/graphviz/libgvplugin_dot_layout.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_dot_layout.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_gd.la lib/graphviz/libgvplugin_gd.so -lib/graphviz/libgvplugin_gd.so.6 -lib/graphviz/libgvplugin_gd.so.6.0.0 +lib/graphviz/libgvplugin_gd.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_gd.so.%%SH_VERSION_FULL%% %%GDK%%lib/graphviz/libgvplugin_gdk.la %%GDK%%lib/graphviz/libgvplugin_gdk.so -%%GDK%%lib/graphviz/libgvplugin_gdk.so.6 -%%GDK%%lib/graphviz/libgvplugin_gdk.so.6.0.0 +%%GDK%%lib/graphviz/libgvplugin_gdk.so.%%SH_VERSION_SHORT%% +%%GDK%%lib/graphviz/libgvplugin_gdk.so.%%SH_VERSION_FULL%% %%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.la %%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.so -%%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.so.6 -%%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.so.6.0.0 +%%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.so.%%SH_VERSION_SHORT%% +%%GHOSTSCRIPT%%lib/graphviz/libgvplugin_gs.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_kitty.la lib/graphviz/libgvplugin_kitty.so -lib/graphviz/libgvplugin_kitty.so.6 -lib/graphviz/libgvplugin_kitty.so.6.0.0 +lib/graphviz/libgvplugin_kitty.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_kitty.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_neato_layout.la lib/graphviz/libgvplugin_neato_layout.so -lib/graphviz/libgvplugin_neato_layout.so.6 -lib/graphviz/libgvplugin_neato_layout.so.6.0.0 +lib/graphviz/libgvplugin_neato_layout.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_neato_layout.so.%%SH_VERSION_FULL%% %%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.la %%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.so -%%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.so.6 -%%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.so.6.0.0 +%%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.so.%%SH_VERSION_SHORT%% +%%PANGOCAIRO%%lib/graphviz/libgvplugin_pango.so.%%SH_VERSION_FULL%% %%POPPLER%%lib/graphviz/libgvplugin_poppler.la %%POPPLER%%lib/graphviz/libgvplugin_poppler.so -%%POPPLER%%lib/graphviz/libgvplugin_poppler.so.6 -%%POPPLER%%lib/graphviz/libgvplugin_poppler.so.6.0.0 +%%POPPLER%%lib/graphviz/libgvplugin_poppler.so.%%SH_VERSION_SHORT%% +%%POPPLER%%lib/graphviz/libgvplugin_poppler.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_vt.la lib/graphviz/libgvplugin_vt.so -lib/graphviz/libgvplugin_vt.so.6 -lib/graphviz/libgvplugin_vt.so.6.0.0 +lib/graphviz/libgvplugin_vt.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_vt.so.%%SH_VERSION_FULL%% lib/graphviz/libgvplugin_webp.la lib/graphviz/libgvplugin_webp.so -lib/graphviz/libgvplugin_webp.so.6 -lib/graphviz/libgvplugin_webp.so.6.0.0 +lib/graphviz/libgvplugin_webp.so.%%SH_VERSION_SHORT%% +lib/graphviz/libgvplugin_webp.so.%%SH_VERSION_FULL%% %%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.la %%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.so -%%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.so.6 -%%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.so.6.0.0 +%%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.so.%%SH_VERSION_SHORT%% +%%PANGOCAIRO%%%%XPM%%lib/graphviz/libgvplugin_xlib.so.%%SH_VERSION_FULL%% %%LUA%%lib/graphviz/lua/gv.so %%LUA%%lib/graphviz/lua/libgv_lua.la %%LUA%%lib/graphviz/lua/libgv_lua.so @@ -160,24 +160,24 @@ lib/graphviz/libgvplugin_webp.so.6.0.0 %%TCL%%lib/graphviz/tcl/pkgIndex.tcl lib/libcdt.la lib/libcdt.so -lib/libcdt.so.5 -lib/libcdt.so.5.0.0 +lib/libcdt.so.6 +lib/libcdt.so.6.0.0 lib/libcgraph.la lib/libcgraph.so -lib/libcgraph.so.6 -lib/libcgraph.so.6.0.0 +lib/libcgraph.so.%%SH_VERSION_SHORT%% +lib/libcgraph.so.%%SH_VERSION_FULL%% lib/libgvc.la lib/libgvc.so -lib/libgvc.so.6 -lib/libgvc.so.6.0.0 +lib/libgvc.so.7 +lib/libgvc.so.7.0.1 lib/libgvpr.la lib/libgvpr.so lib/libgvpr.so.2 -lib/libgvpr.so.2.0.0 +lib/libgvpr.so.2.0.1 lib/libpathplan.la lib/libpathplan.so lib/libpathplan.so.4 -lib/libpathplan.so.4.0.0 +lib/libpathplan.so.4.0.1 lib/libxdot.la lib/libxdot.so lib/libxdot.so.4 @@ -201,7 +201,7 @@ lib/libxdot.so.4.0.0 %%TCL%%lib/tcl%%TCL_VER%%/graphviz/libtclplan.so %%TCL%%lib/tcl%%TCL_VER%%/graphviz/pkgIndex.tcl @postexec %D/bin/dot -c -@postunexec rm -f %D/lib/graphviz/config6 +@postunexec rm -f %D/lib/graphviz/config%%SH_VERSION_SHORT%% libdata/pkgconfig/libcdt.pc libdata/pkgconfig/libcgraph.pc libdata/pkgconfig/libgvc.pc diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index c541c99da7a1..0fbbf650db47 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -1,5 +1,6 @@ PORTNAME= kgraphviewer DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org 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/nip2/Makefile b/graphics/nip2/Makefile index 05cc0ee67ddf..0b4f571c9032 100644 --- a/graphics/nip2/Makefile +++ b/graphics/nip2/Makefile @@ -1,6 +1,6 @@ PORTNAME= nip2 PORTVERSION= 8.7.1 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= graphics MASTER_SITES= https://github.com/libvips/${PORTNAME}/releases/download/v${PORTVERSION}/ diff --git a/graphics/oyranos/Makefile b/graphics/oyranos/Makefile index 699efa6b02b6..1af03557c38f 100644 --- a/graphics/oyranos/Makefile +++ b/graphics/oyranos/Makefile @@ -1,6 +1,6 @@ PORTNAME= oyranos PORTVERSION= 0.9.6 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org diff --git a/graphics/p5-Image-ExifTool-devel/Makefile b/graphics/p5-Image-ExifTool-devel/Makefile index ffcba1f0e159..30b74ad07dfb 100644 --- a/graphics/p5-Image-ExifTool-devel/Makefile +++ b/graphics/p5-Image-ExifTool-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= Image-ExifTool -DISTVERSION= 13.38 +DISTVERSION= 13.39 CATEGORIES= graphics perl5 MASTER_SITES= https://exiftool.org/ \ SF/exiftool diff --git a/graphics/p5-Image-ExifTool-devel/distinfo b/graphics/p5-Image-ExifTool-devel/distinfo index cd8d008acd7c..e17b36cf93a1 100644 --- a/graphics/p5-Image-ExifTool-devel/distinfo +++ b/graphics/p5-Image-ExifTool-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759347329 -SHA256 (Image-ExifTool-13.38.tar.gz) = 0256672ab507662fe42d1ae851ae1b55930a3c8eb69e9d6883c33559e90f5f01 -SIZE (Image-ExifTool-13.38.tar.gz) = 7572486 +TIMESTAMP = 1760586421 +SHA256 (Image-ExifTool-13.39.tar.gz) = 11fbd0657ae43896c4057bad780830b3fe98006d1ab084fa5d43c4b1eee192cd +SIZE (Image-ExifTool-13.39.tar.gz) = 7576475 diff --git a/graphics/py-pygraphviz/Makefile b/graphics/py-pygraphviz/Makefile index ffcc65be7ad9..0fb772d2b566 100644 --- a/graphics/py-pygraphviz/Makefile +++ b/graphics/py-pygraphviz/Makefile @@ -1,6 +1,6 @@ PORTNAME= pygraphviz PORTVERSION= 1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/lang/dotnet-host/Makefile b/lang/dotnet-host/Makefile index 62f14ab6c283..54511b0855a4 100644 --- a/lang/dotnet-host/Makefile +++ b/lang/dotnet-host/Makefile @@ -1,6 +1,6 @@ PORTNAME= dotnet-host DISTVERSIONPREFIX= v -DISTVERSION= 9.0.9 +DISTVERSION= 9.0.10 CATEGORIES= lang devel MAINTAINER= arrowd@FreeBSD.org diff --git a/lang/dotnet-host/distinfo b/lang/dotnet-host/distinfo index bd5165cadabe..dc5ebaafb2c4 100644 --- a/lang/dotnet-host/distinfo +++ b/lang/dotnet-host/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758868894 -SHA256 (dotnet-runtime-v9.0.9_GH0.tar.gz) = 356adff6177e050b5f6e55de5e50e937932395c0123009ca4fc9fd9a1d998822 -SIZE (dotnet-runtime-v9.0.9_GH0.tar.gz) = 89550486 +TIMESTAMP = 1760622829 +SHA256 (dotnet-runtime-v9.0.10_GH0.tar.gz) = 7ae9c42f880be8ee8ab89a687a1f257bbecd3172dd1430796dc0eab36a8ff8bd +SIZE (dotnet-runtime-v9.0.10_GH0.tar.gz) = 89551610 diff --git a/lang/dotnet/Makefile b/lang/dotnet/Makefile index b746ef87cbee..0e848dee2bd6 100644 --- a/lang/dotnet/Makefile +++ b/lang/dotnet/Makefile @@ -1,5 +1,5 @@ PORTNAME= dotnet -DISTVERSION?= ${DOTNETVERSION}.9 +DISTVERSION?= ${DOTNETVERSION}.10 PORTREVISION?= 0 CATEGORIES= lang devel MASTER_SITES= https://github.com/dotnet/dotnet/releases/download/${GH_TAGNAME}/release.json?dummy=/:dotnetmanifest \ @@ -48,9 +48,9 @@ BOOTSTRAP_SOURCEBUILT_ARTIFACTS_DISTNAME= Private.SourceBuilt.Artifacts.${BOOTST BOOTSTRAP_SDK_DISTNAME= dotnet-sdk-${BOOTSTRAP_SDKVERSION}-freebsd-${DOTNET_ARCH} DOTNETVERSION?= 9.0 -SDKVERSION?= ${DOTNETVERSION}.110 -SDKVERSIONSUFFIX?= -servicing.25420.3 -SDKSERVICESUFFIX= -servicing.25421.1 +SDKVERSION?= ${DOTNETVERSION}.111 +SDKVERSIONSUFFIX?= -servicing.25475.17 +SDKSERVICESUFFIX= -servicing.25476.1 MANIFESTSUFFIX= ${DOTNETVERSION}.100 DOTNET_ARCH= ${ARCH:S|amd64|x64|:C|aarch64|arm64|} SDK_DISTNAME?= dotnet-sdk-${SDKVERSION}-${SDK_RID} diff --git a/lang/dotnet/distinfo b/lang/dotnet/distinfo index d58f6bbca1ab..4dee2b718a69 100644 --- a/lang/dotnet/distinfo +++ b/lang/dotnet/distinfo @@ -1,13 +1,13 @@ -TIMESTAMP = 1758978575 -SHA256 (dotnet/release.json-9.0.9) = 13bc9291f6adc341325cf21258f892528d5ce988de6da6b46a4c2b56845002a1 -SIZE (dotnet/release.json-9.0.9) = 275 SHA256 (dotnet/Private.SourceBuilt.Artifacts.9.0.110-servicing.25421.1.freebsd.13-arm64.tar.gz) = 4599ae777acd3a58919ceeeaa07b74668e1a53661c3ebf24b99f877e3c5ebe0e SIZE (dotnet/Private.SourceBuilt.Artifacts.9.0.110-servicing.25421.1.freebsd.13-arm64.tar.gz) = 828079589 SHA256 (dotnet/dotnet-sdk-9.0.110-freebsd-arm64.tar.gz) = 05f3c223c70fa3096a97350cf485eaffdee1ddb2796a71984cbf4760009f40dc SIZE (dotnet/dotnet-sdk-9.0.110-freebsd-arm64.tar.gz) = 505604643 SHA256 (dotnet/Private.SourceBuilt.Artifacts.9.0.110-servicing.25421.1.freebsd.13-x64.tar.gz) = 91239d2dc1197211d7cb8b1d30cfb783035dfc574a593093d56bab885c887a75 SIZE (dotnet/Private.SourceBuilt.Artifacts.9.0.110-servicing.25421.1.freebsd.13-x64.tar.gz) = 837969817 +TIMESTAMP = 1760626696 +SHA256 (dotnet/release.json-9.0.10) = 429d63f3d9d6d10921b6e0784f3343fe7a0676b888e726b1e4a20ff2ae9bbbf5 +SIZE (dotnet/release.json-9.0.10) = 278 SHA256 (dotnet/dotnet-sdk-9.0.110-freebsd-x64.tar.gz) = eb8d675d1a0edc27f4a8b12455dbb13545809b95d80a23536dfea4c94e7a23d2 SIZE (dotnet/dotnet-sdk-9.0.110-freebsd-x64.tar.gz) = 514661886 -SHA256 (dotnet/dotnet-dotnet-9.0.9-v9.0.110_GH0.tar.gz) = 310170a6572f97c6d1437024eb47b1bac5e0a169776631df061754263dcf62d6 -SIZE (dotnet/dotnet-dotnet-9.0.9-v9.0.110_GH0.tar.gz) = 495148389 +SHA256 (dotnet/dotnet-dotnet-9.0.10-v9.0.111_GH0.tar.gz) = a18cbf9a48e58a516c1da3c58f0e46f66dcf1c5e7ef028e87101b1dc246e536a +SIZE (dotnet/dotnet-dotnet-9.0.10-v9.0.111_GH0.tar.gz) = 495176418 diff --git a/lang/dotnet/pkg-plist b/lang/dotnet/pkg-plist index 2daa4eb58191..1c88eb7ce33d 100644 --- a/lang/dotnet/pkg-plist +++ b/lang/dotnet/pkg-plist @@ -12,7 +12,7 @@ %%DATADIR%%/library-packs/runtime.%%SDK_RID%%.Microsoft.NETCore.DotNetAppHost.%%FULL_DOTNETVERSION%%.nupkg %%DATADIR%%/library-packs/runtime.%%SDK_RID%%.Microsoft.NETCore.ILAsm.%%FULL_DOTNETVERSION%%.nupkg %%DATADIR%%/library-packs/runtime.%%SDK_RID%%.Microsoft.NETCore.ILDAsm.%%FULL_DOTNETVERSION%%.nupkg -@comment %%DATADIR%%/library-packs/runtime.%%SDK_RID%%.Microsoft.NETCore.TestHost.%%FULL_DOTNETVERSION%%-servicing.25419.16.nupkg +@comment %%DATADIR%%/library-packs/runtime.%%SDK_RID%%.Microsoft.NETCore.TestHost.%%FULL_DOTNETVERSION%%-servicing.25475.15.nupkg %%DATADIR%%/metadata/workloads/%%MANIFESTSUFFIX%%/userlocal %%DATADIR%%/packs/Microsoft.AspNetCore.App.Ref/%%FULL_DOTNETVERSION%%/analyzers/dotnet/cs/Microsoft.AspNetCore.App.Analyzers.dll %%DATADIR%%/packs/Microsoft.AspNetCore.App.Ref/%%FULL_DOTNETVERSION%%/analyzers/dotnet/cs/Microsoft.AspNetCore.App.CodeFixes.dll @@ -1636,6 +1636,7 @@ %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/Newtonsoft.Json.dll +%%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/System.Collections.Immutable.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/System.CommandLine.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/cs/System.CommandLine.resources.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-format/BuildHost-netcore/de/System.CommandLine.resources.dll @@ -1913,6 +1914,7 @@ %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/Newtonsoft.Json.dll +%%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/System.Collections.Immutable.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/System.CommandLine.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/cs/System.CommandLine.resources.dll %%DATADIR%%/sdk/%%SDKVERSION%%/DotnetTools/dotnet-watch/%%SDKVERSION%%%%SDKSERVICESUFFIX%%/tools/net%%DOTNETVERSION%%/any/BuildHost-netcore/de/System.CommandLine.resources.dll @@ -2433,6 +2435,8 @@ %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/Microsoft.CodeAnalysis.CSharp.dll %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/Microsoft.CodeAnalysis.VisualBasic.dll %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/Microsoft.CodeAnalysis.dll +%%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/System.Collections.Immutable.dll +%%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/System.Reflection.Metadata.dll %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/VBCSCompiler.deps.json %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/VBCSCompiler.dll %%DATADIR%%/sdk/%%SDKVERSION%%/Roslyn/bincore/VBCSCompiler.runtimeconfig.json @@ -4568,5 +4572,5 @@ %%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.common.itemtemplates.%%SDKVERSION%%.nupkg %%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.common.projecttemplates.%%DOTNETVERSION%%.%%SDKVERSION%%.nupkg %%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.test.projecttemplates.%%DOTNETVERSION%%.1.1.0-rtm.25262.1.nupkg -%%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.web.itemtemplates.%%FULL_DOTNETVERSION%%.0.9.nupkg -%%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.web.projecttemplates.%%FULL_DOTNETVERSION%%.0.9.nupkg +%%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.web.itemtemplates.%%DOTNETVERSION%%.9.0.10.nupkg +%%DATADIR%%/templates/%%FULL_DOTNETVERSION%%/microsoft.dotnet.web.projecttemplates.%%DOTNETVERSION%%.9.0.10.nupkg 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/rizin-cutter/Makefile b/lang/rizin-cutter/Makefile index 270ecb614965..dad7cc23d627 100644 --- a/lang/rizin-cutter/Makefile +++ b/lang/rizin-cutter/Makefile @@ -1,5 +1,6 @@ PORTNAME= cutter PORTVERSION= 2.4.1 +PORTREVISION= 1 DISTVERSIONPREFIX=v CATEGORIES= lang devel PKGNAMEPREFIX= rizin- diff --git a/mail/nextcloud-mail/Makefile b/mail/nextcloud-mail/Makefile index 4975487e426b..fd31ee5df560 100644 --- a/mail/nextcloud-mail/Makefile +++ b/mail/nextcloud-mail/Makefile @@ -1,5 +1,5 @@ PORTNAME= mail -PORTVERSION= 5.5.9 +PORTVERSION= 5.5.10 DISTVERSIONPREFIX= v CATEGORIES= mail diff --git a/mail/nextcloud-mail/distinfo b/mail/nextcloud-mail/distinfo index bccfcf02a377..2b55265f5dc8 100644 --- a/mail/nextcloud-mail/distinfo +++ b/mail/nextcloud-mail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760546183 -SHA256 (nextcloud/mail-v5.5.9.tar.gz) = 477b062099b96cfb85ae482e5d71838da4d50765d982a09e4f9f67d3955cc4dc -SIZE (nextcloud/mail-v5.5.9.tar.gz) = 29063037 +TIMESTAMP = 1760615416 +SHA256 (nextcloud/mail-v5.5.10.tar.gz) = 06f8033c28e07391e5f77b9ea1b12b7ee4448668dda1006a3a55d8a5524cf6ea +SIZE (nextcloud/mail-v5.5.10.tar.gz) = 29066869 diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index febacfa08152..a8a5a59b9f30 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -1,5 +1,5 @@ PORTNAME= thunderbird -DISTVERSION= 144.0 +DISTVERSION= 144.0.1 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build1/source diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index 6004329f82fe..00bcef6b28be 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760128626 -SHA256 (thunderbird-144.0.source.tar.xz) = 33315b6c6f20a718809e717bd22edc03418581b2f162dc8ab2bbdccdc770556e -SIZE (thunderbird-144.0.source.tar.xz) = 762262852 +TIMESTAMP = 1760631198 +SHA256 (thunderbird-144.0.1.source.tar.xz) = 62dd606308ee0c3298e052c05a8fce321df3a1012628511c7aacdf7ef6b7e965 +SIZE (thunderbird-144.0.1.source.tar.xz) = 774861288 diff --git a/math/ggobi/Makefile b/math/ggobi/Makefile index c850ac393f25..cd8b13022d31 100644 --- a/math/ggobi/Makefile +++ b/math/ggobi/Makefile @@ -1,6 +1,6 @@ PORTNAME= ggobi DISTVERSION= 2.1.12 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math graphics MAINTAINER= rhurlin@FreeBSD.org diff --git a/misc/gemini-cli/Makefile b/misc/gemini-cli/Makefile index 511011671965..00dbae85290a 100644 --- a/misc/gemini-cli/Makefile +++ b/misc/gemini-cli/Makefile @@ -1,6 +1,5 @@ PORTNAME= gemini-cli -DISTVERSION= 0.8.2 -PORTREVISION= 1 +DISTVERSION= 0.9.0 CATEGORIES= misc # machine-learning MAINTAINER= yuri@FreeBSD.org diff --git a/misc/gemini-cli/distinfo b/misc/gemini-cli/distinfo index 109cfb92e3af..5f14c9fb0dab 100644 --- a/misc/gemini-cli/distinfo +++ b/misc/gemini-cli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760288629 -SHA256 (gemini-cli-0.8.2.tar.gz) = eb48232ae8d216a253b19a4073ed02c16becc7d4edabd0af16c89fa79a45c815 -SIZE (gemini-cli-0.8.2.tar.gz) = 34531078 +TIMESTAMP = 1760629866 +SHA256 (gemini-cli-0.9.0.tar.gz) = 90973029f270b6e534baf46c382bf14ac1746b004b88ffb218bae0eac15647d1 +SIZE (gemini-cli-0.9.0.tar.gz) = 32614382 diff --git a/misc/gemini-cli/files/package-lock.json b/misc/gemini-cli/files/package-lock.json index 7aea331e96ba..969b1803da7c 100644 --- a/misc/gemini-cli/files/package-lock.json +++ b/misc/gemini-cli/files/package-lock.json @@ -8,15 +8,15 @@ "name": "gemini-cli-installer", "version": "1.0.0", "dependencies": { - "@google/gemini-cli": "^0.8.2" + "@google/gemini-cli": "^0.9.0" } }, "node_modules/@google/gemini-cli": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@google/gemini-cli/-/gemini-cli-0.8.2.tgz", - "integrity": "sha512-c8E2jTUq1N7+KxjJfatqV3tObxiOL6NakP8cQ/PMn6+QIqmkDi4S15dx5SF5efLxbmJD/lMR36ecrNHK2pa99w==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@google/gemini-cli/-/gemini-cli-0.9.0.tgz", + "integrity": "sha512-voLzMnHs093VvZgBA8HREN6ViZ8gdROPnmPuj1EFSxjGZRKOzlifzCTNsmBd/dSrbxIyZD3aOpTkaUQbGxX6ig==", "dependencies": { - "@google/gemini-cli-core": "0.8.2", + "@google/gemini-cli-core": "0.9.0", "@google/genai": "1.16.0", "@iarna/toml": "^2.2.5", "@modelcontextprotocol/sdk": "^1.15.1", @@ -34,6 +34,7 @@ "ink-gradient": "^3.0.0", "ink-spinner": "^5.0.0", "lowlight": "^3.3.0", + "mnemonist": "^0.40.3", "open": "^10.1.2", "react": "^19.1.0", "read-package-up": "^11.0.0", @@ -239,9 +240,9 @@ } }, "node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/@google/gemini-cli-core/-/gemini-cli-core-0.8.2.tgz", - "integrity": "sha512-BQpwJr+hv3u7UTBo+rkbHQXr7HP115b1xgz+P6acAbfgFgZoMP0uMm58EPBe05vpdHngrzpJ3ckL2AxHSweo/Q==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@google/gemini-cli-core/-/gemini-cli-core-0.9.0.tgz", + "integrity": "sha512-K3zGD8m8j240s3YcFAeJM6oaLhAI5hYBdOgdycO2P2uriJTKezjeAG+FYzaK2AdOBrIVyStLT2dyy6G6ePebSQ==", "dependencies": { "@google-cloud/logging": "^11.2.1", "@google-cloud/opentelemetry-cloud-monitoring-exporter": "^0.21.0", @@ -1389,9 +1390,9 @@ "license": "MIT" }, "node_modules/@google/gemini-cli/node_modules/@types/node": { - "version": "24.7.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.2.tgz", - "integrity": "sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA==", + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.8.0.tgz", + "integrity": "sha512-5x08bUtU8hfboMTrJ7mEO4CpepS9yBwAqcL52y86SWNmbPX8LVbNs3EP4cNrIZgdjk2NAlP2ahNihozpoZIxSg==", "license": "MIT", "dependencies": { "undici-types": "~7.14.0" @@ -2641,9 +2642,9 @@ "license": "MIT" }, "node_modules/@google/gemini-cli/node_modules/emoji-regex": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.5.0.tgz", - "integrity": "sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==", + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", "license": "MIT" }, "node_modules/@google/gemini-cli/node_modules/encodeurl": { @@ -4236,9 +4237,9 @@ } }, "node_modules/@google/gemini-cli/node_modules/ky": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/ky/-/ky-1.11.0.tgz", - "integrity": "sha512-NEyo0ICpS0cqSuyoJFMCnHOZJILqXsKhIZlHJGDYaH8OB5IFrGzuBpEwyoMZG6gUKMPrazH30Ax5XKaujvD8ag==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/ky/-/ky-1.12.0.tgz", + "integrity": "sha512-YRLmSUHCwOJRBMArtqMRLOmO7fewn3yOoui6aB8ERkRVXupa0UiaQaKbIXteMt4jUElhbdqTMsLFHs8APxxUoQ==", "license": "MIT", "engines": { "node": ">=18" diff --git a/misc/gemini-cli/pkg-plist b/misc/gemini-cli/pkg-plist index b83555a901ff..c5a41fbfad64 100644 --- a/misc/gemini-cli/pkg-plist +++ b/misc/gemini-cli/pkg-plist @@ -2,7 +2,6 @@ bin/gemini lib/node_modules/@google/gemini-cli/LICENSE lib/node_modules/@google/gemini-cli/README.md lib/node_modules/@google/gemini-cli/dist/.last_build -lib/node_modules/@google/gemini-cli/dist/google-gemini-cli-0.8.1.tgz lib/node_modules/@google/gemini-cli/dist/index.d.ts lib/node_modules/@google/gemini-cli/dist/index.js lib/node_modules/@google/gemini-cli/dist/index.js.map @@ -316,6 +315,9 @@ lib/node_modules/@google/gemini-cli/dist/src/ui/commands/permissionsCommand.test lib/node_modules/@google/gemini-cli/dist/src/ui/commands/privacyCommand.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/commands/privacyCommand.js lib/node_modules/@google/gemini-cli/dist/src/ui/commands/privacyCommand.js.map +lib/node_modules/@google/gemini-cli/dist/src/ui/commands/profileCommand.d.ts +lib/node_modules/@google/gemini-cli/dist/src/ui/commands/profileCommand.js +lib/node_modules/@google/gemini-cli/dist/src/ui/commands/profileCommand.js.map lib/node_modules/@google/gemini-cli/dist/src/ui/commands/quitCommand.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/commands/quitCommand.js lib/node_modules/@google/gemini-cli/dist/src/ui/commands/quitCommand.js.map @@ -367,6 +369,9 @@ lib/node_modules/@google/gemini-cli/dist/src/ui/components/AsciiArt.js.map lib/node_modules/@google/gemini-cli/dist/src/ui/components/AutoAcceptIndicator.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/AutoAcceptIndicator.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/AutoAcceptIndicator.js.map +lib/node_modules/@google/gemini-cli/dist/src/ui/components/CliSpinner.d.ts +lib/node_modules/@google/gemini-cli/dist/src/ui/components/CliSpinner.js +lib/node_modules/@google/gemini-cli/dist/src/ui/components/CliSpinner.js.map lib/node_modules/@google/gemini-cli/dist/src/ui/components/Composer.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/Composer.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/Composer.js.map @@ -394,6 +399,9 @@ lib/node_modules/@google/gemini-cli/dist/src/ui/components/ContextUsageDisplay.j lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.js.map +lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.test.d.ts +lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.test.js +lib/node_modules/@google/gemini-cli/dist/src/ui/components/DebugProfiler.test.js.map lib/node_modules/@google/gemini-cli/dist/src/ui/components/DetailedMessagesDisplay.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/DetailedMessagesDisplay.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/DetailedMessagesDisplay.js.map @@ -640,6 +648,12 @@ lib/node_modules/@google/gemini-cli/dist/src/ui/components/shared/text-buffer.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/shared/vim-buffer-actions.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/shared/vim-buffer-actions.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/shared/vim-buffer-actions.js.map +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.d.ts +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.js +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.js.map +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.test.d.ts +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.test.js +lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ChatList.test.js.map lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ExtensionsList.d.ts lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ExtensionsList.js lib/node_modules/@google/gemini-cli/dist/src/ui/components/views/ExtensionsList.js.map @@ -1144,9 +1158,6 @@ lib/node_modules/@google/gemini-cli/dist/src/utils/installationInfo.js.map lib/node_modules/@google/gemini-cli/dist/src/utils/installationInfo.test.d.ts lib/node_modules/@google/gemini-cli/dist/src/utils/installationInfo.test.js lib/node_modules/@google/gemini-cli/dist/src/utils/installationInfo.test.js.map -lib/node_modules/@google/gemini-cli/dist/src/utils/math.d.ts -lib/node_modules/@google/gemini-cli/dist/src/utils/math.js -lib/node_modules/@google/gemini-cli/dist/src/utils/math.js.map lib/node_modules/@google/gemini-cli/dist/src/utils/package.d.ts lib/node_modules/@google/gemini-cli/dist/src/utils/package.js lib/node_modules/@google/gemini-cli/dist/src/utils/package.js.map @@ -1180,6 +1191,18 @@ lib/node_modules/@google/gemini-cli/dist/src/utils/sandbox-macos-restrictive-pro lib/node_modules/@google/gemini-cli/dist/src/utils/sandbox.d.ts lib/node_modules/@google/gemini-cli/dist/src/utils/sandbox.js lib/node_modules/@google/gemini-cli/dist/src/utils/sandbox.js.map +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.d.ts +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.integration.test.d.ts +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.integration.test.js +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.integration.test.js.map +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.js +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.js.map +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.test.d.ts +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.test.js +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionCleanup.test.js.map +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionUtils.d.ts +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionUtils.js +lib/node_modules/@google/gemini-cli/dist/src/utils/sessionUtils.js.map lib/node_modules/@google/gemini-cli/dist/src/utils/settingsUtils.d.ts lib/node_modules/@google/gemini-cli/dist/src/utils/settingsUtils.js lib/node_modules/@google/gemini-cli/dist/src/utils/settingsUtils.js.map @@ -1444,7 +1467,6 @@ lib/node_modules/@google/gemini-cli/node_modules/@google-cloud/promisify/package lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/LICENSE lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/README.md lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/.last_build -lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/google-gemini-cli-core-0.8.1.tgz lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/index.d.ts lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/index.js lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/index.js.map @@ -2060,6 +2082,9 @@ lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/sr lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-error.d.ts lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-error.js lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-error.js.map +lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-names.d.ts +lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-names.js +lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-names.js.map lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-registry.d.ts lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-registry.js lib/node_modules/@google/gemini-cli/node_modules/@google/gemini-cli-core/dist/src/tools/tool-registry.js.map @@ -18299,6 +18324,9 @@ lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/options.j lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/timeout.d.ts lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/timeout.js lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/timeout.js.map +lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/type-guards.d.ts +lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/type-guards.js +lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/type-guards.js.map lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/types.d.ts lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/types.js lib/node_modules/@google/gemini-cli/node_modules/ky/distribution/utils/types.js.map diff --git a/misc/nn-insight/Makefile b/misc/nn-insight/Makefile index 8fb751c13be5..d04119bb660a 100644 --- a/misc/nn-insight/Makefile +++ b/misc/nn-insight/Makefile @@ -1,6 +1,6 @@ PORTNAME= nn-insight DISTVERSION= 1.0.7 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= misc # machine-learning MAINTAINER= yuri@FreeBSD.org 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/multimedia/qmmp-plugin-pack-qt6/Makefile b/multimedia/qmmp-plugin-pack-qt6/Makefile index 6d38910185a1..32de83222fc1 100644 --- a/multimedia/qmmp-plugin-pack-qt6/Makefile +++ b/multimedia/qmmp-plugin-pack-qt6/Makefile @@ -1,5 +1,5 @@ PORTNAME= qmmp-plugin-pack -PORTVERSION= 2.2.2 +PORTVERSION= 2.3.0 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/${PORTNAME}/${PORTVERSION:R}/ \ SF/qmmp-dev/${PORTNAME}/${PORTVERSION:R}/ @@ -13,7 +13,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqmmpui.so:multimedia/qmmp-qt6 -BUILD_DEPENDS= qmmp-qt6>=2.2:multimedia/qmmp-qt6 +BUILD_DEPENDS= qmmp-qt6>=2.3:multimedia/qmmp-qt6 CONFLICTS= ${PORTNAME}-qt5 PORTSCOUT= limit:^1\..* @@ -32,6 +32,9 @@ OPTIONS_DEFAULT_i386= FFAPASM GOOMASM OPTIONS_DEFINE_amd64= FFAPASM GOOMASM OPTIONS_DEFAULT_amd64= FFAPASM GOOMASM +CMAKE_OFF= USE_MMS \ + USE_MPLAYER + FFAP_DESC= Support APE sound file FFAP_LIB_DEPENDS= libtag.so:audio/taglib FAAP_USES= iconv diff --git a/multimedia/qmmp-plugin-pack-qt6/distinfo b/multimedia/qmmp-plugin-pack-qt6/distinfo index 26994ca374f6..4583613cbd8c 100644 --- a/multimedia/qmmp-plugin-pack-qt6/distinfo +++ b/multimedia/qmmp-plugin-pack-qt6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743346156 -SHA256 (qmmp-plugin-pack-2.2.2.tar.bz2) = 0e85c8290b49aceddb7a52f9452d9c0c008539b6fba4ab2296b59a67d0b0846b -SIZE (qmmp-plugin-pack-2.2.2.tar.bz2) = 248813 +TIMESTAMP = 1760618273 +SHA256 (qmmp-plugin-pack-2.3.0.tar.bz2) = a23c202f90faaf6aebb97a9c02ee21fb3c8164b07755514349ccb3e1acb81ab5 +SIZE (qmmp-plugin-pack-2.3.0.tar.bz2) = 263387 diff --git a/multimedia/qmmp-qt6/Makefile b/multimedia/qmmp-qt6/Makefile index 6de38c8297dc..4f504a6c32d0 100644 --- a/multimedia/qmmp-qt6/Makefile +++ b/multimedia/qmmp-qt6/Makefile @@ -1,5 +1,5 @@ PORTNAME= qmmp -PORTVERSION= 2.2.8 +PORTVERSION= 2.3.0 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/${PORTNAME}/${DISTVERSION:R}/ \ SF/qmmp-dev/${PORTNAME}/${DISTVERSION:R}/ diff --git a/multimedia/qmmp-qt6/distinfo b/multimedia/qmmp-qt6/distinfo index de7ee1d22b48..1b9e4c4afaea 100644 --- a/multimedia/qmmp-qt6/distinfo +++ b/multimedia/qmmp-qt6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755979402 -SHA256 (qmmp-2.2.8.tar.bz2) = 730a97a063a498eb37da9e2f8198dfe570693e6a6c7f2b210d581bd87dbb938a -SIZE (qmmp-2.2.8.tar.bz2) = 1434188 +TIMESTAMP = 1760618255 +SHA256 (qmmp-2.3.0.tar.bz2) = 01c3e30367c885178cd115594d20f694a47a352fd7e65fcf5722e12ac8333063 +SIZE (qmmp-2.3.0.tar.bz2) = 1422288 diff --git a/net-p2p/libtorrent/Makefile b/net-p2p/libtorrent/Makefile index 0a2da6201cd6..a9ebfdc614c6 100644 --- a/net-p2p/libtorrent/Makefile +++ b/net-p2p/libtorrent/Makefile @@ -1,5 +1,5 @@ PORTNAME= libtorrent -DISTVERSION= 0.16.0 +DISTVERSION= 0.16.1 CATEGORIES= net-p2p MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v${DISTVERSION}/ diff --git a/net-p2p/libtorrent/distinfo b/net-p2p/libtorrent/distinfo index 7bebc5e606c8..2ced4eacf28e 100644 --- a/net-p2p/libtorrent/distinfo +++ b/net-p2p/libtorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757101252 -SHA256 (libtorrent-0.16.0.tar.gz) = 623a75e85a23f7471c9531ea67a01bb652165c6b2b6a829a7f1c6117eac938ec -SIZE (libtorrent-0.16.0.tar.gz) = 885568 +TIMESTAMP = 1760641418 +SHA256 (libtorrent-0.16.1.tar.gz) = 1521e77c70fedd28638646766b5e32c7a0b612a7a2cedf75de89c7009ec8e4fe +SIZE (libtorrent-0.16.1.tar.gz) = 888505 diff --git a/net-p2p/libtorrent/pkg-plist b/net-p2p/libtorrent/pkg-plist index 826b7588ff53..273689f2255a 100644 --- a/net-p2p/libtorrent/pkg-plist +++ b/net-p2p/libtorrent/pkg-plist @@ -26,15 +26,16 @@ include/torrent/event.h include/torrent/exceptions.h include/torrent/hash_string.h include/torrent/net/address_info.h +include/torrent/net/connection_state.h include/torrent/net/fd.h include/torrent/net/http_get.h include/torrent/net/http_stack.h +include/torrent/net/network_config.h include/torrent/net/resolver.h include/torrent/net/socket_address.h include/torrent/net/socket_address_key.h include/torrent/net/socket_event.h include/torrent/net/types.h -include/torrent/net/utils.h include/torrent/object.h include/torrent/object_raw_bencode.h include/torrent/object_static_map.h @@ -67,9 +68,10 @@ include/torrent/utils/ranges.h include/torrent/utils/resume.h include/torrent/utils/scheduler.h include/torrent/utils/signal_bitfield.h +include/torrent/utils/string_manip.h include/torrent/utils/thread.h include/torrent/utils/uri_parser.h lib/libtorrent.so -lib/libtorrent.so.30 -lib/libtorrent.so.30.0.0 +lib/libtorrent.so.31 +lib/libtorrent.so.31.0.0 libdata/pkgconfig/libtorrent.pc diff --git a/net-p2p/rtorrent/Makefile b/net-p2p/rtorrent/Makefile index 0d2db49d588b..6d42ed40f1ad 100644 --- a/net-p2p/rtorrent/Makefile +++ b/net-p2p/rtorrent/Makefile @@ -1,5 +1,5 @@ PORTNAME= rtorrent -DISTVERSION= 0.16.0 +DISTVERSION= 0.16.1 CATEGORIES= net-p2p MASTER_SITES= https://github.com/rakshasa/rtorrent/releases/download/v${DISTVERSION}/ diff --git a/net-p2p/rtorrent/distinfo b/net-p2p/rtorrent/distinfo index 9d4974b6f14a..bda3b65a2a1c 100644 --- a/net-p2p/rtorrent/distinfo +++ b/net-p2p/rtorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757102139 -SHA256 (rtorrent-0.16.0.tar.gz) = fe8f8793f3bae8de157f567d9d89629dfd6fc21bc18d7db4537c4014a23dc1d9 -SIZE (rtorrent-0.16.0.tar.gz) = 854573 +TIMESTAMP = 1760641917 +SHA256 (rtorrent-0.16.1.tar.gz) = b2cdf8898b62f3763b29df94e4ad47d52cea2aa33b76581097a18894dd116073 +SIZE (rtorrent-0.16.1.tar.gz) = 851083 diff --git a/net/k6/Makefile b/net/k6/Makefile index 37417257d2f7..ad976be3a416 100644 --- a/net/k6/Makefile +++ b/net/k6/Makefile @@ -1,6 +1,6 @@ PORTNAME= k6 DISTVERSIONPREFIX= v -DISTVERSION= 1.2.3 +DISTVERSION= 1.3.0 CATEGORIES= net MAINTAINER= dutra@FreeBSD.org @@ -15,7 +15,7 @@ USES= go:1.23,modules NOT_FOR_ARCHS= armv6 armv7 i386 _BUILD_DATE= $$(date -u +"%FT%T%z") -_BUILD_HASH= e4a5a88 +_BUILD_HASH= 5870e99 GO_MODULE= github.com/grafana/${PORTNAME} GO_BUILDFLAGS= -ldflags "\ diff --git a/net/k6/distinfo b/net/k6/distinfo index 2a05dd134e13..e83319489794 100644 --- a/net/k6/distinfo +++ b/net/k6/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757541625 -SHA256 (go/net_k6/k6-v1.2.3/v1.2.3.mod) = 50935e629f9184ccc89cca5576744e7ac1cd5ad144fe6f3aa2f064b5715c81a7 -SIZE (go/net_k6/k6-v1.2.3/v1.2.3.mod) = 4835 -SHA256 (go/net_k6/k6-v1.2.3/v1.2.3.zip) = 7a151262814943519f4d1d659645f550cfce3b280dc056503708bdb07f0e0303 -SIZE (go/net_k6/k6-v1.2.3/v1.2.3.zip) = 2553294 +TIMESTAMP = 1760557943 +SHA256 (go/net_k6/k6-v1.3.0/v1.3.0.mod) = dac3dc7a07dad8f7767c3a583327e514373e48b13b183fab0961c79c038fca94 +SIZE (go/net_k6/k6-v1.3.0/v1.3.0.mod) = 4835 +SHA256 (go/net_k6/k6-v1.3.0/v1.3.0.zip) = 91695773bf588d66288b43ee54b29476bea9d2f81f7172dfd2684bee385a0814 +SIZE (go/net_k6/k6-v1.3.0/v1.3.0.zip) = 2578168 diff --git a/net/wireshark/files/patch-epan_dissectors_packet-kerberos.c b/net/wireshark/files/patch-epan_dissectors_packet-kerberos.c new file mode 100644 index 000000000000..13c7bfbd0ac6 --- /dev/null +++ b/net/wireshark/files/patch-epan_dissectors_packet-kerberos.c @@ -0,0 +1,11 @@ +--- epan/dissectors/packet-kerberos.c.orig 2025-10-16 15:54:37 UTC ++++ epan/dissectors/packet-kerberos.c +@@ -3401,7 +3401,7 @@ read_keytab_file(const char *filename) + + /* generate origin string, describing where this key came from */ + for(i=0;i<key.principal->name.name_string.len;i++){ +- wmem_strbuf_append_printf(str_principal, "%s%s",(i?"/":""),key.principal->name.name_string.val[i])); ++ wmem_strbuf_append_printf(str_principal, "%s%s",(i?"/":""),key.principal->name.name_string.val[i]); + } + wmem_strbuf_append_printf(str_principal, "@%s",key.principal->realm); + new_key->key_origin = (char*)wmem_strbuf_get_str(str_principal); diff --git a/science/paraview/Makefile b/science/paraview/Makefile index e657e04d7f84..a67c85503fb3 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -1,6 +1,6 @@ PORTNAME= paraview DISTVERSION= ${PARAVIEW_VER}.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science graphics MASTER_SITES= http://www.paraview.org/files/v${PARAVIEW_VER}/ DISTNAME= ParaView-v${PORTVERSION} diff --git a/science/simgrid/Makefile b/science/simgrid/Makefile index 5c1bb1e17497..daac01dd213e 100644 --- a/science/simgrid/Makefile +++ b/science/simgrid/Makefile @@ -1,7 +1,7 @@ PORTNAME= SimGrid DISTVERSIONPREFIX= v DISTVERSION= 3.35 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org diff --git a/science/ttk/Makefile b/science/ttk/Makefile index 1b1d123f5933..fa46ea465c0b 100644 --- a/science/ttk/Makefile +++ b/science/ttk/Makefile @@ -1,6 +1,6 @@ PORTNAME= ttk DISTVERSION= 1.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org 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/py-ropgadget/Makefile b/security/py-ropgadget/Makefile index e50dc8d424fc..b0e7412db90b 100644 --- a/security/py-ropgadget/Makefile +++ b/security/py-ropgadget/Makefile @@ -1,13 +1,13 @@ PORTNAME= ropgadget -PORTVERSION= 7.6 -PORTREVISION= 1 +PORTVERSION= 7.7 CATEGORIES= security python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ehaupt@FreeBSD.org COMMENT= Tool to search gadgets to facilitate ROP exploitation -WWW= https://pypi.org/project/ropgadget/ +WWW= https://pypi.org/project/ropgadget/ \ + https://github.com/JonathanSalwan/ROPgadget LICENSE= BSD3CLAUSE diff --git a/security/py-ropgadget/distinfo b/security/py-ropgadget/distinfo index 754e25afc7e8..ab707c4247d9 100644 --- a/security/py-ropgadget/distinfo +++ b/security/py-ropgadget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1738402494 -SHA256 (ropgadget-7.6.tar.gz) = 8883c54e4627073a2ce7cd8adbaf7ef72478442c0a5da1308c3c2e37641174c3 -SIZE (ropgadget-7.6.tar.gz) = 25848 +TIMESTAMP = 1760594765 +SHA256 (ropgadget-7.7.tar.gz) = 8aa7db0ce48ae6b09707fecc40bdd88ee5f76afd64249885ef3c9feab5bd9cfb +SIZE (ropgadget-7.7.tar.gz) = 26077 diff --git a/shells/bash/Makefile b/shells/bash/Makefile index 6563d2230266..f320b9b85148 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -1,7 +1,7 @@ PORTNAME= bash PATCHLEVEL= 3 PORTVERSION= 5.3.${PATCHLEVEL:S/^0//g} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= shells MASTER_SITES= GNU DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -83,6 +83,7 @@ post-patch: ${TOUCH} ${WRKSRC}/parse.y ${RM} ${WRKSRC}/y.tab.c @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \ + -e "s|\(/etc/profile\)|${PREFIX}\1|g" \ ${WRKSRC}/doc/bash.1 .if ${PORT_OPTIONS:MSYSLOG} @${REINPLACE_CMD} \ diff --git a/sysutils/appjail-devel/Makefile b/sysutils/appjail-devel/Makefile index ad915b85016e..132158d82707 100644 --- a/sysutils/appjail-devel/Makefile +++ b/sysutils/appjail-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= appjail -DISTVERSION= 4.3.1.20250926 +DISTVERSION= 4.4.0.20251016 PORTEPOCH= 1 CATEGORIES= sysutils PKGNAMESUFFIX= -devel @@ -16,7 +16,7 @@ CONFLICTS= appjail USE_GITHUB= yes GH_ACCOUNT= DtxdF GH_PROJECT= AppJail -GH_TAGNAME= 741be10199828e1af3859b651ec21c9fd5b698c5 +GH_TAGNAME= b9bbada7f7122378d985604b108394c6af39af78 MAKE_ARGS= APPJAIL_VERSION=${DISTVERSION}+${GH_TAGNAME} ALL_TARGET= utils-strip diff --git a/sysutils/appjail-devel/distinfo b/sysutils/appjail-devel/distinfo index 0aeeba0aa320..a42955653432 100644 --- a/sysutils/appjail-devel/distinfo +++ b/sysutils/appjail-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758922178 -SHA256 (DtxdF-AppJail-4.3.1.20250926-741be10199828e1af3859b651ec21c9fd5b698c5_GH0.tar.gz) = 146bc1b17b6b8522fae1a97c8c4c930cf54812ac698353c255e59df1e023532e -SIZE (DtxdF-AppJail-4.3.1.20250926-741be10199828e1af3859b651ec21c9fd5b698c5_GH0.tar.gz) = 1022570 +TIMESTAMP = 1760645025 +SHA256 (DtxdF-AppJail-4.4.0.20251016-b9bbada7f7122378d985604b108394c6af39af78_GH0.tar.gz) = 733411b055cf4c7be5a75d4f0af0229651e2dfe65678dad7ada8f76bb025f3da +SIZE (DtxdF-AppJail-4.4.0.20251016-b9bbada7f7122378d985604b108394c6af39af78_GH0.tar.gz) = 1022935 diff --git a/sysutils/appjail/Makefile b/sysutils/appjail/Makefile index f8982684df9b..7110bc363520 100644 --- a/sysutils/appjail/Makefile +++ b/sysutils/appjail/Makefile @@ -1,6 +1,6 @@ PORTNAME= appjail DISTVERSIONPREFIX= v -DISTVERSION= 4.3.1 +DISTVERSION= 4.4.0 CATEGORIES= sysutils MAINTAINER= dtxdf@FreeBSD.org diff --git a/sysutils/appjail/distinfo b/sysutils/appjail/distinfo index 95387cafbcbc..5601f58fa21a 100644 --- a/sysutils/appjail/distinfo +++ b/sysutils/appjail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758922104 -SHA256 (DtxdF-AppJail-v4.3.1_GH0.tar.gz) = 6322694bf5f6816726d9972729cde4ff5cff64d2892e8966e7839d6a418909b0 -SIZE (DtxdF-AppJail-v4.3.1_GH0.tar.gz) = 1022236 +TIMESTAMP = 1760644881 +SHA256 (DtxdF-AppJail-v4.4.0_GH0.tar.gz) = 5f62c496478be59d9d53643beec69b20a4cf7f6bef664ad82627e36ad2a1d9b0 +SIZE (DtxdF-AppJail-v4.4.0_GH0.tar.gz) = 1022600 diff --git a/sysutils/fwupd-efi/Makefile b/sysutils/fwupd-efi/Makefile index df74e60c5f9c..2dcbb12f1e69 100644 --- a/sysutils/fwupd-efi/Makefile +++ b/sysutils/fwupd-efi/Makefile @@ -1,5 +1,6 @@ PORTNAME= fwupd-efi DISTVERSION= 1.8 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= decke@FreeBSD.org @@ -36,4 +37,9 @@ FW_ARCH=${ARCH} PLIST_FILES= libdata/pkgconfig/fwupd-efi.pc \ libexec/fwupd/efi/fwupd${FW_ARCH}.efi +post-patch: + # use objcopy from binutils because GNU specific flags are used + @${REINPLACE_CMD} "s|find_program('objcopy')|find_program('${LOCALBASE}/bin/objcopy')|g" \ + ${WRKSRC}/meson.build + .include <bsd.port.post.mk> diff --git a/sysutils/fwupd-efi/files/patch-meson.build b/sysutils/fwupd-efi/files/patch-meson.build deleted file mode 100644 index a84f42b30ed0..000000000000 --- a/sysutils/fwupd-efi/files/patch-meson.build +++ /dev/null @@ -1,11 +0,0 @@ ---- 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/Makefile b/sysutils/fwupd/Makefile index 0144f7bf336c..dcc775d522c9 100644 --- a/sysutils/fwupd/Makefile +++ b/sysutils/fwupd/Makefile @@ -1,5 +1,6 @@ PORTNAME= fwupd DISTVERSION= 2.0.16 +PORTREVISION= 2 CATEGORIES= sysutils MAINTAINER= decke@FreeBSD.org @@ -12,13 +13,12 @@ BROKEN_FreeBSD_14= requires at least FreeBSD 15 BUILD_DEPENDS= blkid:filesystems/libblkid \ flashrom>0:sysutils/flashrom \ - gtkdoc-scan:textproc/gtk-doc \ 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} \ - ${PYTHON_PKGNAMEPREFIX}gi-docgen>0:textproc/py-gi-docgen@${PY_FLAVOR} \ valgrind>0:devel/valgrind LIB_DEPENDS= libcbor.so:devel/libcbor \ libcurl.so:ftp/curl \ @@ -35,6 +35,7 @@ LIB_DEPENDS= libcbor.so:devel/libcbor \ libprotobuf-c.so:devel/protobuf-c \ libxmlb.so:textproc/libxmlb RUN_DEPENDS= blkid:filesystems/libblkid \ + dbus-daemon:devel/dbus \ flashrom>0:sysutils/flashrom \ ${LOCALBASE}/libdata/pkgconfig/fwupd-efi.pc:sysutils/fwupd-efi \ valgrind>0:devel/valgrind @@ -46,9 +47,15 @@ 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 \ +MESON_ARGS+= -Dpolkit=disabled \ -Dsystemd=disabled \ -Dpassim=disabled \ -Dtests=false \ diff --git a/sysutils/fwupd/pkg-plist b/sysutils/fwupd/pkg-plist index 72b9ebc26d63..d2fabb0137a6 100644 --- a/sysutils/fwupd/pkg-plist +++ b/sysutils/fwupd/pkg-plist @@ -41,3978 +41,3978 @@ 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 -%%DOCSDIR%%/hsi.html -%%DOCSDIR%%/index.html -%%DOCSDIR%%/libfwupd -%%DOCSDIR%%/libfwupdplugin -share/doc/libfwupd/RedHatDisplay-Black.woff -share/doc/libfwupd/RedHatDisplay-Black.woff2 -share/doc/libfwupd/RedHatDisplay-BlackItalic.woff -share/doc/libfwupd/RedHatDisplay-BlackItalic.woff2 -share/doc/libfwupd/RedHatDisplay-Bold.woff -share/doc/libfwupd/RedHatDisplay-Bold.woff2 -share/doc/libfwupd/RedHatDisplay-BoldItalic.woff -share/doc/libfwupd/RedHatDisplay-BoldItalic.woff2 -share/doc/libfwupd/RedHatDisplay-Italic.woff -share/doc/libfwupd/RedHatDisplay-Italic.woff2 -share/doc/libfwupd/RedHatDisplay-Medium.woff -share/doc/libfwupd/RedHatDisplay-Medium.woff2 -share/doc/libfwupd/RedHatDisplay-MediumItalic.woff -share/doc/libfwupd/RedHatDisplay-MediumItalic.woff2 -share/doc/libfwupd/RedHatDisplay-Regular.woff -share/doc/libfwupd/RedHatDisplay-Regular.woff2 -share/doc/libfwupd/RedHatText-Bold.woff -share/doc/libfwupd/RedHatText-Bold.woff2 -share/doc/libfwupd/RedHatText-BoldItalic.woff -share/doc/libfwupd/RedHatText-BoldItalic.woff2 -share/doc/libfwupd/RedHatText-Italic.woff -share/doc/libfwupd/RedHatText-Italic.woff2 -share/doc/libfwupd/RedHatText-Medium.woff -share/doc/libfwupd/RedHatText-Medium.woff2 -share/doc/libfwupd/RedHatText-MediumItalic.woff -share/doc/libfwupd/RedHatText-MediumItalic.woff2 -share/doc/libfwupd/RedHatText-Regular.woff -share/doc/libfwupd/RedHatText-Regular.woff2 -share/doc/libfwupd/SourceCodePro-It.ttf.woff -share/doc/libfwupd/SourceCodePro-Regular.ttf.woff -share/doc/libfwupd/SourceCodePro-Semibold.ttf.woff -share/doc/libfwupd/alias._guid_t.html -share/doc/libfwupd/class.BiosSetting.html -share/doc/libfwupd/class.Client.html -share/doc/libfwupd/class.Device.html -share/doc/libfwupd/class.Plugin.html -share/doc/libfwupd/class.Release.html -share/doc/libfwupd/class.Remote.html -share/doc/libfwupd/class.Report.html -share/doc/libfwupd/class.Request.html -share/doc/libfwupd/class.SecurityAttr.html -share/doc/libfwupd/classes_hierarchy.html -share/doc/libfwupd/const.BATTERY_LEVEL_INVALID.html -share/doc/libfwupd/const.BIOS_SETTING_DEBUG_CMD.html -share/doc/libfwupd/const.BIOS_SETTING_PENDING_REBOOT.html -share/doc/libfwupd/const.BIOS_SETTING_RESET_BIOS.html -share/doc/libfwupd/const.BIOS_SETTING_SELF_TEST.html -share/doc/libfwupd/const.DBUS_INTERFACE.html -share/doc/libfwupd/const.DBUS_PATH.html -share/doc/libfwupd/const.DBUS_SERVICE.html -share/doc/libfwupd/const.DEVICE_ID_ANY.html -share/doc/libfwupd/const.MAJOR_VERSION.html -share/doc/libfwupd/const.MICRO_VERSION.html -share/doc/libfwupd/const.MINOR_VERSION.html -share/doc/libfwupd/const.REQUEST_ID_DO_NOT_POWER_OFF.html -share/doc/libfwupd/const.REQUEST_ID_INSERT_USB_CABLE.html -share/doc/libfwupd/const.REQUEST_ID_PRESS_UNLOCK.html -share/doc/libfwupd/const.REQUEST_ID_REMOVE_REPLUG.html -share/doc/libfwupd/const.REQUEST_ID_REMOVE_USB_CABLE.html -share/doc/libfwupd/const.REQUEST_ID_REPLUG_INSTALL.html -share/doc/libfwupd/const.REQUEST_ID_REPLUG_POWER.html -share/doc/libfwupd/const.REQUEST_ID_RESTART_DAEMON.html -share/doc/libfwupd/const.RESULT_KEY_APPSTREAM_ID.html -share/doc/libfwupd/const.RESULT_KEY_BATTERY_LEVEL.html -share/doc/libfwupd/const.RESULT_KEY_BATTERY_THRESHOLD.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_CURRENT_VALUE.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_ID.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_LOWER_BOUND.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_POSSIBLE_VALUES.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_READ_ONLY.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_SCALAR_INCREMENT.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_TARGET_VALUE.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_TYPE.html -share/doc/libfwupd/const.RESULT_KEY_BIOS_SETTING_UPPER_BOUND.html -share/doc/libfwupd/const.RESULT_KEY_BRANCH.html -share/doc/libfwupd/const.RESULT_KEY_CATEGORIES.html -share/doc/libfwupd/const.RESULT_KEY_CHECKSUM.html -share/doc/libfwupd/const.RESULT_KEY_COMPOSITE_ID.html -share/doc/libfwupd/const.RESULT_KEY_CREATED.html -share/doc/libfwupd/const.RESULT_KEY_DESCRIPTION.html -share/doc/libfwupd/const.RESULT_KEY_DETACH_CAPTION.html -share/doc/libfwupd/const.RESULT_KEY_DETACH_IMAGE.html -share/doc/libfwupd/const.RESULT_KEY_DETAILS_URL.html -share/doc/libfwupd/const.RESULT_KEY_DEVICE_ID.html -share/doc/libfwupd/const.RESULT_KEY_DEVICE_NAME.html -share/doc/libfwupd/const.RESULT_KEY_DISTRO_ID.html -share/doc/libfwupd/const.RESULT_KEY_DISTRO_VARIANT.html -share/doc/libfwupd/const.RESULT_KEY_DISTRO_VERSION.html -share/doc/libfwupd/const.RESULT_KEY_FILENAME.html -share/doc/libfwupd/const.RESULT_KEY_FLAGS.html -share/doc/libfwupd/const.RESULT_KEY_FLASHES_LEFT.html -share/doc/libfwupd/const.RESULT_KEY_GUID.html -share/doc/libfwupd/const.RESULT_KEY_HOMEPAGE.html -share/doc/libfwupd/const.RESULT_KEY_HSI_LEVEL.html -share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT.html -share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT_FALLBACK.html -share/doc/libfwupd/const.RESULT_KEY_HSI_RESULT_SUCCESS.html -share/doc/libfwupd/const.RESULT_KEY_ICON.html -share/doc/libfwupd/const.RESULT_KEY_INSTALL_DURATION.html -share/doc/libfwupd/const.RESULT_KEY_INSTANCE_IDS.html -share/doc/libfwupd/const.RESULT_KEY_ISSUES.html -share/doc/libfwupd/const.RESULT_KEY_KERNEL_CURRENT_VALUE.html -share/doc/libfwupd/const.RESULT_KEY_KERNEL_TARGET_VALUE.html -share/doc/libfwupd/const.RESULT_KEY_LICENSE.html -share/doc/libfwupd/const.RESULT_KEY_LOCATIONS.html -share/doc/libfwupd/const.RESULT_KEY_METADATA.html -share/doc/libfwupd/const.RESULT_KEY_MODIFIED.html -share/doc/libfwupd/const.RESULT_KEY_NAME.html -share/doc/libfwupd/const.RESULT_KEY_NAME_VARIANT_SUFFIX.html -share/doc/libfwupd/const.RESULT_KEY_PARENT_DEVICE_ID.html -share/doc/libfwupd/const.RESULT_KEY_PERCENTAGE.html -share/doc/libfwupd/const.RESULT_KEY_PLUGIN.html -share/doc/libfwupd/const.RESULT_KEY_PROBLEMS.html -share/doc/libfwupd/const.RESULT_KEY_PROTOCOL.html -share/doc/libfwupd/const.RESULT_KEY_RELEASE.html -share/doc/libfwupd/const.RESULT_KEY_RELEASE_ID.html -share/doc/libfwupd/const.RESULT_KEY_REMOTE_ID.html -share/doc/libfwupd/const.RESULT_KEY_REPORTS.html -share/doc/libfwupd/const.RESULT_KEY_REQUEST_FLAGS.html -share/doc/libfwupd/const.RESULT_KEY_REQUEST_KIND.html -share/doc/libfwupd/const.RESULT_KEY_SBOM_URL.html -share/doc/libfwupd/const.RESULT_KEY_SERIAL.html -share/doc/libfwupd/const.RESULT_KEY_SIZE.html -share/doc/libfwupd/const.RESULT_KEY_SOURCE_URL.html -share/doc/libfwupd/const.RESULT_KEY_STATUS.html -share/doc/libfwupd/const.RESULT_KEY_SUMMARY.html -share/doc/libfwupd/const.RESULT_KEY_TAGS.html -share/doc/libfwupd/const.RESULT_KEY_TRUST_FLAGS.html -share/doc/libfwupd/const.RESULT_KEY_UPDATE_ERROR.html -share/doc/libfwupd/const.RESULT_KEY_UPDATE_IMAGE.html -share/doc/libfwupd/const.RESULT_KEY_UPDATE_MESSAGE.html -share/doc/libfwupd/const.RESULT_KEY_UPDATE_STATE.html -share/doc/libfwupd/const.RESULT_KEY_URGENCY.html -share/doc/libfwupd/const.RESULT_KEY_URI.html -share/doc/libfwupd/const.RESULT_KEY_VENDOR.html -share/doc/libfwupd/const.RESULT_KEY_VENDOR_ID.html -share/doc/libfwupd/const.RESULT_KEY_VERSION.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_BOOTLOADER.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_BOOTLOADER_RAW.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_BUILD_DATE.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_FORMAT.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_LOWEST.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_LOWEST_RAW.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_OLD.html -share/doc/libfwupd/const.RESULT_KEY_VERSION_RAW.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_ROLLBACK_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SMM_LOCKED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SPI_REPLAY_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_AMD_SPI_WRITE_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_BIOS_CAPSULE_UPDATES.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_BIOS_ROLLBACK_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_CET_ACTIVE.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_CET_ENABLED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_ENCRYPTED_RAM.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_ATTESTATION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_PLUGINS.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_FWUPD_UPDATES.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_HOST_EMULATION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_ACM.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_ENABLED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_OTP.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_POLICY.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_BOOTGUARD_VERIFIED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_INTEL_GDS.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_IOMMU.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_LOCKDOWN.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_SWAP.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_KERNEL_TAINTED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_KEY_MANIFEST.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_MANUFACTURING_MODE.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_OVERRIDE_STRAP.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_MEI_VERSION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_DEBUG_ENABLED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_DEBUG_LOCKED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_PLATFORM_FUSED.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_PREBOOT_DMA_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SMAP.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_BIOSWE.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_BLE.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_DESCRIPTOR.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SPI_SMM_BWP.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SUPPORTED_CPU.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SUSPEND_TO_IDLE.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_SUSPEND_TO_RAM.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_EMPTY_PCR.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_RECONSTRUCTION_PCR0.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_TPM_VERSION_20.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_BOOTSERVICE_VARS.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_DB.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_PK.html -share/doc/libfwupd/const.SECURITY_ATTR_ID_UEFI_SECUREBOOT.html -share/doc/libfwupd/ctor.BiosSetting.new.html -share/doc/libfwupd/ctor.Client.new.html -share/doc/libfwupd/ctor.Device.new.html -share/doc/libfwupd/ctor.Plugin.new.html -share/doc/libfwupd/ctor.Release.new.html -share/doc/libfwupd/ctor.Remote.new.html -share/doc/libfwupd/ctor.Report.new.html -share/doc/libfwupd/ctor.Request.new.html -share/doc/libfwupd/ctor.SecurityAttr.new.html -share/doc/libfwupd/enum.BiosSettingKind.html -share/doc/libfwupd/enum.ReleaseUrgency.html -share/doc/libfwupd/enum.RemoteKind.html -share/doc/libfwupd/enum.RequestKind.html -share/doc/libfwupd/enum.SecurityAttrLevel.html -share/doc/libfwupd/enum.SecurityAttrResult.html -share/doc/libfwupd/enum.Status.html -share/doc/libfwupd/enum.UpdateState.html -share/doc/libfwupd/enum.VersionFormat.html -share/doc/libfwupd/error.Error.html -share/doc/libfwupd/flags.ClientDownloadFlags.html -share/doc/libfwupd/flags.ClientUploadFlags.html -share/doc/libfwupd/flags.CodecFlags.html -share/doc/libfwupd/flags.DeviceFlags.html -share/doc/libfwupd/flags.DeviceProblem.html -share/doc/libfwupd/flags.FeatureFlags.html -share/doc/libfwupd/flags.GuidFlags.html -share/doc/libfwupd/flags.InstallFlags.html -share/doc/libfwupd/flags.PluginFlags.html -share/doc/libfwupd/flags.ReleaseFlags.html -share/doc/libfwupd/flags.RemoteFlags.html -share/doc/libfwupd/flags.ReportFlags.html -share/doc/libfwupd/flags.RequestFlags.html -share/doc/libfwupd/flags.SecurityAttrFlags.html -share/doc/libfwupd/flags.SelfSignFlags.html -share/doc/libfwupd/fonts.css -share/doc/libfwupd/func.CHECK_VERSION.html -share/doc/libfwupd/func.checksum_format_for_display.html -share/doc/libfwupd/func.checksum_get_best.html -share/doc/libfwupd/func.checksum_get_by_kind.html -share/doc/libfwupd/func.checksum_guess_kind.html -share/doc/libfwupd/func.checksum_type_to_string_display.html -share/doc/libfwupd/func.error_convert.html -share/doc/libfwupd/func.error_from_string.html -share/doc/libfwupd/func.error_quark.html -share/doc/libfwupd/func.error_to_string.html -share/doc/libfwupd/func.feature_flag_from_string.html -share/doc/libfwupd/func.feature_flag_to_string.html -share/doc/libfwupd/func.guid_from_string.html -share/doc/libfwupd/func.guid_hash_data.html -share/doc/libfwupd/func.guid_hash_string.html -share/doc/libfwupd/func.guid_is_valid.html -share/doc/libfwupd/func.guid_to_string.html -share/doc/libfwupd/func.install_flags_from_string.html -share/doc/libfwupd/func.install_flags_to_string.html -share/doc/libfwupd/func.status_from_string.html -share/doc/libfwupd/func.status_to_string.html -share/doc/libfwupd/func.strerror.html -share/doc/libfwupd/func.update_state_from_string.html -share/doc/libfwupd/func.update_state_to_string.html -share/doc/libfwupd/func.version_format_from_string.html -share/doc/libfwupd/func.version_format_to_string.html -share/doc/libfwupd/func.version_string.html -share/doc/libfwupd/fzy.js -share/doc/libfwupd/go-up-symbolic.png -share/doc/libfwupd/iface.Codec.html -share/doc/libfwupd/index.html -share/doc/libfwupd/index.json -share/doc/libfwupd/libfwupd.devhelp2 -share/doc/libfwupd/main.js -share/doc/libfwupd/method.BiosSetting.add_possible_value.html -share/doc/libfwupd/method.BiosSetting.get_current_value.html -share/doc/libfwupd/method.BiosSetting.get_description.html -share/doc/libfwupd/method.BiosSetting.get_id.html -share/doc/libfwupd/method.BiosSetting.get_kind.html -share/doc/libfwupd/method.BiosSetting.get_lower_bound.html -share/doc/libfwupd/method.BiosSetting.get_name.html -share/doc/libfwupd/method.BiosSetting.get_path.html -share/doc/libfwupd/method.BiosSetting.get_possible_values.html -share/doc/libfwupd/method.BiosSetting.get_read_only.html -share/doc/libfwupd/method.BiosSetting.get_scalar_increment.html -share/doc/libfwupd/method.BiosSetting.get_upper_bound.html -share/doc/libfwupd/method.BiosSetting.has_possible_value.html -share/doc/libfwupd/method.BiosSetting.map_possible_value.html -share/doc/libfwupd/method.BiosSetting.set_current_value.html -share/doc/libfwupd/method.BiosSetting.set_description.html -share/doc/libfwupd/method.BiosSetting.set_id.html -share/doc/libfwupd/method.BiosSetting.set_kind.html -share/doc/libfwupd/method.BiosSetting.set_lower_bound.html -share/doc/libfwupd/method.BiosSetting.set_name.html -share/doc/libfwupd/method.BiosSetting.set_path.html -share/doc/libfwupd/method.BiosSetting.set_read_only.html -share/doc/libfwupd/method.BiosSetting.set_scalar_increment.html -share/doc/libfwupd/method.BiosSetting.set_upper_bound.html -share/doc/libfwupd/method.BiosSetting.write_value.html -share/doc/libfwupd/method.Client.activate.html -share/doc/libfwupd/method.Client.activate_async.html -share/doc/libfwupd/method.Client.activate_finish.html -share/doc/libfwupd/method.Client.add_hint.html -share/doc/libfwupd/method.Client.build_report_devices.html -share/doc/libfwupd/method.Client.build_report_history.html -share/doc/libfwupd/method.Client.build_report_security.html -share/doc/libfwupd/method.Client.clear_results.html -share/doc/libfwupd/method.Client.clear_results_async.html -share/doc/libfwupd/method.Client.clear_results_finish.html -share/doc/libfwupd/method.Client.connect.html -share/doc/libfwupd/method.Client.connect_async.html -share/doc/libfwupd/method.Client.connect_finish.html -share/doc/libfwupd/method.Client.disconnect.html -share/doc/libfwupd/method.Client.download_bytes.html -share/doc/libfwupd/method.Client.download_bytes_async.html -share/doc/libfwupd/method.Client.download_bytes_finish.html -share/doc/libfwupd/method.Client.download_file.html -share/doc/libfwupd/method.Client.download_set_retries.html -share/doc/libfwupd/method.Client.emulation_load.html -share/doc/libfwupd/method.Client.emulation_load_async.html -share/doc/libfwupd/method.Client.emulation_load_finish.html -share/doc/libfwupd/method.Client.emulation_save.html -share/doc/libfwupd/method.Client.emulation_save_async.html -share/doc/libfwupd/method.Client.emulation_save_finish.html -share/doc/libfwupd/method.Client.ensure_networking.html -share/doc/libfwupd/method.Client.fix_host_security_attr.html -share/doc/libfwupd/method.Client.fix_host_security_attr_async.html -share/doc/libfwupd/method.Client.fix_host_security_attr_finish.html -share/doc/libfwupd/method.Client.get_approved_firmware.html -share/doc/libfwupd/method.Client.get_approved_firmware_async.html -share/doc/libfwupd/method.Client.get_approved_firmware_finish.html -share/doc/libfwupd/method.Client.get_battery_level.html -share/doc/libfwupd/method.Client.get_battery_threshold.html -share/doc/libfwupd/method.Client.get_bios_settings.html -share/doc/libfwupd/method.Client.get_bios_settings_async.html -share/doc/libfwupd/method.Client.get_bios_settings_finish.html -share/doc/libfwupd/method.Client.get_blocked_firmware.html -share/doc/libfwupd/method.Client.get_blocked_firmware_async.html -share/doc/libfwupd/method.Client.get_blocked_firmware_finish.html -share/doc/libfwupd/method.Client.get_daemon_interactive.html -share/doc/libfwupd/method.Client.get_daemon_version.html -share/doc/libfwupd/method.Client.get_details.html -share/doc/libfwupd/method.Client.get_details_async.html -share/doc/libfwupd/method.Client.get_details_bytes.html -share/doc/libfwupd/method.Client.get_details_bytes_async.html -share/doc/libfwupd/method.Client.get_details_bytes_finish.html -share/doc/libfwupd/method.Client.get_details_finish.html -share/doc/libfwupd/method.Client.get_device_by_id.html -share/doc/libfwupd/method.Client.get_device_by_id_async.html -share/doc/libfwupd/method.Client.get_device_by_id_finish.html -share/doc/libfwupd/method.Client.get_devices.html -share/doc/libfwupd/method.Client.get_devices_async.html -share/doc/libfwupd/method.Client.get_devices_by_guid.html -share/doc/libfwupd/method.Client.get_devices_by_guid_async.html -share/doc/libfwupd/method.Client.get_devices_by_guid_finish.html -share/doc/libfwupd/method.Client.get_devices_finish.html -share/doc/libfwupd/method.Client.get_downgrades.html -share/doc/libfwupd/method.Client.get_downgrades_async.html -share/doc/libfwupd/method.Client.get_downgrades_finish.html -share/doc/libfwupd/method.Client.get_history.html -share/doc/libfwupd/method.Client.get_history_async.html -share/doc/libfwupd/method.Client.get_history_finish.html -share/doc/libfwupd/method.Client.get_host_bkc.html -share/doc/libfwupd/method.Client.get_host_machine_id.html -share/doc/libfwupd/method.Client.get_host_product.html -share/doc/libfwupd/method.Client.get_host_security_attrs.html -share/doc/libfwupd/method.Client.get_host_security_attrs_async.html -share/doc/libfwupd/method.Client.get_host_security_attrs_finish.html -share/doc/libfwupd/method.Client.get_host_security_events.html -share/doc/libfwupd/method.Client.get_host_security_events_async.html -share/doc/libfwupd/method.Client.get_host_security_events_finish.html -share/doc/libfwupd/method.Client.get_host_security_id.html -share/doc/libfwupd/method.Client.get_host_vendor.html -share/doc/libfwupd/method.Client.get_main_context.html -share/doc/libfwupd/method.Client.get_only_trusted.html -share/doc/libfwupd/method.Client.get_percentage.html -share/doc/libfwupd/method.Client.get_plugins.html -share/doc/libfwupd/method.Client.get_plugins_async.html -share/doc/libfwupd/method.Client.get_plugins_finish.html -share/doc/libfwupd/method.Client.get_releases.html -share/doc/libfwupd/method.Client.get_releases_async.html -share/doc/libfwupd/method.Client.get_releases_finish.html -share/doc/libfwupd/method.Client.get_remote_by_id.html -share/doc/libfwupd/method.Client.get_remote_by_id_async.html -share/doc/libfwupd/method.Client.get_remote_by_id_finish.html -share/doc/libfwupd/method.Client.get_remotes.html -share/doc/libfwupd/method.Client.get_remotes_async.html -share/doc/libfwupd/method.Client.get_remotes_finish.html -share/doc/libfwupd/method.Client.get_report_metadata.html -share/doc/libfwupd/method.Client.get_report_metadata_async.html -share/doc/libfwupd/method.Client.get_report_metadata_finish.html -share/doc/libfwupd/method.Client.get_results.html -share/doc/libfwupd/method.Client.get_results_async.html -share/doc/libfwupd/method.Client.get_results_finish.html -share/doc/libfwupd/method.Client.get_status.html -share/doc/libfwupd/method.Client.get_tainted.html -share/doc/libfwupd/method.Client.get_upgrades.html -share/doc/libfwupd/method.Client.get_upgrades_async.html -share/doc/libfwupd/method.Client.get_upgrades_finish.html -share/doc/libfwupd/method.Client.get_user_agent.html -share/doc/libfwupd/method.Client.inhibit.html -share/doc/libfwupd/method.Client.inhibit_async.html -share/doc/libfwupd/method.Client.inhibit_finish.html -share/doc/libfwupd/method.Client.install.html -share/doc/libfwupd/method.Client.install_async.html -share/doc/libfwupd/method.Client.install_bytes.html -share/doc/libfwupd/method.Client.install_bytes_async.html -share/doc/libfwupd/method.Client.install_bytes_finish.html -share/doc/libfwupd/method.Client.install_finish.html -share/doc/libfwupd/method.Client.install_release.html -share/doc/libfwupd/method.Client.install_release_async.html -share/doc/libfwupd/method.Client.install_release_finish.html -share/doc/libfwupd/method.Client.modify_bios_setting.html -share/doc/libfwupd/method.Client.modify_bios_setting_async.html -share/doc/libfwupd/method.Client.modify_bios_setting_finish.html -share/doc/libfwupd/method.Client.modify_config.html -share/doc/libfwupd/method.Client.modify_config_async.html -share/doc/libfwupd/method.Client.modify_config_finish.html -share/doc/libfwupd/method.Client.modify_device.html -share/doc/libfwupd/method.Client.modify_device_async.html -share/doc/libfwupd/method.Client.modify_device_finish.html -share/doc/libfwupd/method.Client.modify_remote.html -share/doc/libfwupd/method.Client.modify_remote_async.html -share/doc/libfwupd/method.Client.modify_remote_finish.html -share/doc/libfwupd/method.Client.quit.html -share/doc/libfwupd/method.Client.quit_async.html -share/doc/libfwupd/method.Client.quit_finish.html -share/doc/libfwupd/method.Client.refresh_remote.html -share/doc/libfwupd/method.Client.refresh_remote_async.html -share/doc/libfwupd/method.Client.refresh_remote_finish.html -share/doc/libfwupd/method.Client.reset_config.html -share/doc/libfwupd/method.Client.reset_config_async.html -share/doc/libfwupd/method.Client.reset_config_finish.html -share/doc/libfwupd/method.Client.search.html -share/doc/libfwupd/method.Client.search_async.html -share/doc/libfwupd/method.Client.search_finish.html -share/doc/libfwupd/method.Client.self_sign.html -share/doc/libfwupd/method.Client.self_sign_async.html -share/doc/libfwupd/method.Client.self_sign_finish.html -share/doc/libfwupd/method.Client.set_approved_firmware.html -share/doc/libfwupd/method.Client.set_approved_firmware_async.html -share/doc/libfwupd/method.Client.set_approved_firmware_finish.html -share/doc/libfwupd/method.Client.set_blocked_firmware.html -share/doc/libfwupd/method.Client.set_blocked_firmware_async.html -share/doc/libfwupd/method.Client.set_blocked_firmware_finish.html -share/doc/libfwupd/method.Client.set_daemon_version.html -share/doc/libfwupd/method.Client.set_feature_flags.html -share/doc/libfwupd/method.Client.set_feature_flags_async.html -share/doc/libfwupd/method.Client.set_feature_flags_finish.html -share/doc/libfwupd/method.Client.set_main_context.html -share/doc/libfwupd/method.Client.set_user_agent.html -share/doc/libfwupd/method.Client.set_user_agent_for_package.html -share/doc/libfwupd/method.Client.undo_host_security_attr.html -share/doc/libfwupd/method.Client.undo_host_security_attr_async.html -share/doc/libfwupd/method.Client.undo_host_security_attr_finish.html -share/doc/libfwupd/method.Client.uninhibit.html -share/doc/libfwupd/method.Client.uninhibit_async.html -share/doc/libfwupd/method.Client.uninhibit_finish.html -share/doc/libfwupd/method.Client.unlock.html -share/doc/libfwupd/method.Client.unlock_async.html -share/doc/libfwupd/method.Client.unlock_finish.html -share/doc/libfwupd/method.Client.update_metadata.html -share/doc/libfwupd/method.Client.update_metadata_bytes.html -share/doc/libfwupd/method.Client.update_metadata_bytes_async.html -share/doc/libfwupd/method.Client.update_metadata_bytes_finish.html -share/doc/libfwupd/method.Client.upload_bytes.html -share/doc/libfwupd/method.Client.upload_bytes_async.html -share/doc/libfwupd/method.Client.upload_bytes_finish.html -share/doc/libfwupd/method.Client.upload_report.html -share/doc/libfwupd/method.Client.upload_report_async.html -share/doc/libfwupd/method.Client.upload_report_finish.html -share/doc/libfwupd/method.Client.verify.html -share/doc/libfwupd/method.Client.verify_async.html -share/doc/libfwupd/method.Client.verify_finish.html -share/doc/libfwupd/method.Client.verify_update.html -share/doc/libfwupd/method.Client.verify_update_async.html -share/doc/libfwupd/method.Client.verify_update_finish.html -share/doc/libfwupd/method.Codec.add_string.html -share/doc/libfwupd/method.Codec.from_json.html -share/doc/libfwupd/method.Codec.from_json_string.html -share/doc/libfwupd/method.Codec.from_variant.html -share/doc/libfwupd/method.Codec.to_json.html -share/doc/libfwupd/method.Codec.to_json_string.html -share/doc/libfwupd/method.Codec.to_string.html -share/doc/libfwupd/method.Codec.to_variant.html -share/doc/libfwupd/method.Device.add_checksum.html -share/doc/libfwupd/method.Device.add_child.html -share/doc/libfwupd/method.Device.add_flag.html -share/doc/libfwupd/method.Device.add_guid.html -share/doc/libfwupd/method.Device.add_icon.html -share/doc/libfwupd/method.Device.add_instance_id.html -share/doc/libfwupd/method.Device.add_issue.html -share/doc/libfwupd/method.Device.add_problem.html -share/doc/libfwupd/method.Device.add_protocol.html -share/doc/libfwupd/method.Device.add_release.html -share/doc/libfwupd/method.Device.add_request_flag.html -share/doc/libfwupd/method.Device.add_vendor_id.html -share/doc/libfwupd/method.Device.compare.html -share/doc/libfwupd/method.Device.get_battery_level.html -share/doc/libfwupd/method.Device.get_battery_threshold.html -share/doc/libfwupd/method.Device.get_branch.html -share/doc/libfwupd/method.Device.get_checksums.html -share/doc/libfwupd/method.Device.get_children.html -share/doc/libfwupd/method.Device.get_composite_id.html -share/doc/libfwupd/method.Device.get_created.html -share/doc/libfwupd/method.Device.get_flags.html -share/doc/libfwupd/method.Device.get_flashes_left.html -share/doc/libfwupd/method.Device.get_guid_default.html -share/doc/libfwupd/method.Device.get_guids.html -share/doc/libfwupd/method.Device.get_icons.html -share/doc/libfwupd/method.Device.get_id.html -share/doc/libfwupd/method.Device.get_install_duration.html -share/doc/libfwupd/method.Device.get_instance_ids.html -share/doc/libfwupd/method.Device.get_issues.html -share/doc/libfwupd/method.Device.get_modified.html -share/doc/libfwupd/method.Device.get_name.html -share/doc/libfwupd/method.Device.get_parent.html -share/doc/libfwupd/method.Device.get_parent_id.html -share/doc/libfwupd/method.Device.get_percentage.html -share/doc/libfwupd/method.Device.get_plugin.html -share/doc/libfwupd/method.Device.get_problems.html -share/doc/libfwupd/method.Device.get_protocols.html -share/doc/libfwupd/method.Device.get_release_default.html -share/doc/libfwupd/method.Device.get_releases.html -share/doc/libfwupd/method.Device.get_request_flags.html -share/doc/libfwupd/method.Device.get_root.html -share/doc/libfwupd/method.Device.get_serial.html -share/doc/libfwupd/method.Device.get_status.html -share/doc/libfwupd/method.Device.get_summary.html -share/doc/libfwupd/method.Device.get_update_error.html -share/doc/libfwupd/method.Device.get_update_state.html -share/doc/libfwupd/method.Device.get_vendor.html -share/doc/libfwupd/method.Device.get_vendor_ids.html -share/doc/libfwupd/method.Device.get_version.html -share/doc/libfwupd/method.Device.get_version_bootloader.html -share/doc/libfwupd/method.Device.get_version_bootloader_raw.html -share/doc/libfwupd/method.Device.get_version_build_date.html -share/doc/libfwupd/method.Device.get_version_format.html -share/doc/libfwupd/method.Device.get_version_lowest.html -share/doc/libfwupd/method.Device.get_version_lowest_raw.html -share/doc/libfwupd/method.Device.get_version_raw.html -share/doc/libfwupd/method.Device.has_checksum.html -share/doc/libfwupd/method.Device.has_flag.html -share/doc/libfwupd/method.Device.has_guid.html -share/doc/libfwupd/method.Device.has_icon.html -share/doc/libfwupd/method.Device.has_instance_id.html -share/doc/libfwupd/method.Device.has_problem.html -share/doc/libfwupd/method.Device.has_protocol.html -share/doc/libfwupd/method.Device.has_request_flag.html -share/doc/libfwupd/method.Device.has_vendor_id.html -share/doc/libfwupd/method.Device.incorporate.html -share/doc/libfwupd/method.Device.match_flags.html -share/doc/libfwupd/method.Device.remove_child.html -share/doc/libfwupd/method.Device.remove_children.html -share/doc/libfwupd/method.Device.remove_flag.html -share/doc/libfwupd/method.Device.remove_problem.html -share/doc/libfwupd/method.Device.remove_request_flag.html -share/doc/libfwupd/method.Device.set_battery_level.html -share/doc/libfwupd/method.Device.set_battery_threshold.html -share/doc/libfwupd/method.Device.set_branch.html -share/doc/libfwupd/method.Device.set_composite_id.html -share/doc/libfwupd/method.Device.set_created.html -share/doc/libfwupd/method.Device.set_flags.html -share/doc/libfwupd/method.Device.set_flashes_left.html -share/doc/libfwupd/method.Device.set_id.html -share/doc/libfwupd/method.Device.set_install_duration.html -share/doc/libfwupd/method.Device.set_modified.html -share/doc/libfwupd/method.Device.set_name.html -share/doc/libfwupd/method.Device.set_parent.html -share/doc/libfwupd/method.Device.set_parent_id.html -share/doc/libfwupd/method.Device.set_percentage.html -share/doc/libfwupd/method.Device.set_plugin.html -share/doc/libfwupd/method.Device.set_problems.html -share/doc/libfwupd/method.Device.set_request_flags.html -share/doc/libfwupd/method.Device.set_serial.html -share/doc/libfwupd/method.Device.set_status.html -share/doc/libfwupd/method.Device.set_summary.html -share/doc/libfwupd/method.Device.set_update_error.html -share/doc/libfwupd/method.Device.set_update_state.html -share/doc/libfwupd/method.Device.set_vendor.html -share/doc/libfwupd/method.Device.set_version.html -share/doc/libfwupd/method.Device.set_version_bootloader.html -share/doc/libfwupd/method.Device.set_version_bootloader_raw.html -share/doc/libfwupd/method.Device.set_version_build_date.html -share/doc/libfwupd/method.Device.set_version_format.html -share/doc/libfwupd/method.Device.set_version_lowest.html -share/doc/libfwupd/method.Device.set_version_lowest_raw.html -share/doc/libfwupd/method.Device.set_version_raw.html -share/doc/libfwupd/method.Plugin.add_flag.html -share/doc/libfwupd/method.Plugin.get_flags.html -share/doc/libfwupd/method.Plugin.get_name.html -share/doc/libfwupd/method.Plugin.has_flag.html -share/doc/libfwupd/method.Plugin.remove_flag.html -share/doc/libfwupd/method.Plugin.set_flags.html -share/doc/libfwupd/method.Plugin.set_name.html -share/doc/libfwupd/method.Release.add_category.html -share/doc/libfwupd/method.Release.add_checksum.html -share/doc/libfwupd/method.Release.add_flag.html -share/doc/libfwupd/method.Release.add_issue.html -share/doc/libfwupd/method.Release.add_location.html -share/doc/libfwupd/method.Release.add_metadata.html -share/doc/libfwupd/method.Release.add_metadata_item.html -share/doc/libfwupd/method.Release.add_report.html -share/doc/libfwupd/method.Release.add_tag.html -share/doc/libfwupd/method.Release.get_appstream_id.html -share/doc/libfwupd/method.Release.get_branch.html -share/doc/libfwupd/method.Release.get_categories.html -share/doc/libfwupd/method.Release.get_checksums.html -share/doc/libfwupd/method.Release.get_created.html -share/doc/libfwupd/method.Release.get_description.html -share/doc/libfwupd/method.Release.get_detach_caption.html -share/doc/libfwupd/method.Release.get_detach_image.html -share/doc/libfwupd/method.Release.get_details_url.html -share/doc/libfwupd/method.Release.get_filename.html -share/doc/libfwupd/method.Release.get_flags.html -share/doc/libfwupd/method.Release.get_homepage.html -share/doc/libfwupd/method.Release.get_id.html -share/doc/libfwupd/method.Release.get_install_duration.html -share/doc/libfwupd/method.Release.get_issues.html -share/doc/libfwupd/method.Release.get_license.html -share/doc/libfwupd/method.Release.get_locations.html -share/doc/libfwupd/method.Release.get_metadata.html -share/doc/libfwupd/method.Release.get_metadata_item.html -share/doc/libfwupd/method.Release.get_name.html -share/doc/libfwupd/method.Release.get_name_variant_suffix.html -share/doc/libfwupd/method.Release.get_protocol.html -share/doc/libfwupd/method.Release.get_remote_id.html -share/doc/libfwupd/method.Release.get_reports.html -share/doc/libfwupd/method.Release.get_sbom_url.html -share/doc/libfwupd/method.Release.get_size.html -share/doc/libfwupd/method.Release.get_source_url.html -share/doc/libfwupd/method.Release.get_summary.html -share/doc/libfwupd/method.Release.get_tags.html -share/doc/libfwupd/method.Release.get_update_image.html -share/doc/libfwupd/method.Release.get_update_message.html -share/doc/libfwupd/method.Release.get_urgency.html -share/doc/libfwupd/method.Release.get_vendor.html -share/doc/libfwupd/method.Release.get_version.html -share/doc/libfwupd/method.Release.has_category.html -share/doc/libfwupd/method.Release.has_checksum.html -share/doc/libfwupd/method.Release.has_flag.html -share/doc/libfwupd/method.Release.has_tag.html -share/doc/libfwupd/method.Release.match_flags.html -share/doc/libfwupd/method.Release.remove_flag.html -share/doc/libfwupd/method.Release.set_appstream_id.html -share/doc/libfwupd/method.Release.set_branch.html -share/doc/libfwupd/method.Release.set_created.html -share/doc/libfwupd/method.Release.set_description.html -share/doc/libfwupd/method.Release.set_detach_caption.html -share/doc/libfwupd/method.Release.set_detach_image.html -share/doc/libfwupd/method.Release.set_details_url.html -share/doc/libfwupd/method.Release.set_filename.html -share/doc/libfwupd/method.Release.set_flags.html -share/doc/libfwupd/method.Release.set_homepage.html -share/doc/libfwupd/method.Release.set_id.html -share/doc/libfwupd/method.Release.set_install_duration.html -share/doc/libfwupd/method.Release.set_license.html -share/doc/libfwupd/method.Release.set_name.html -share/doc/libfwupd/method.Release.set_name_variant_suffix.html -share/doc/libfwupd/method.Release.set_protocol.html -share/doc/libfwupd/method.Release.set_remote_id.html -share/doc/libfwupd/method.Release.set_sbom_url.html -share/doc/libfwupd/method.Release.set_size.html -share/doc/libfwupd/method.Release.set_source_url.html -share/doc/libfwupd/method.Release.set_summary.html -share/doc/libfwupd/method.Release.set_update_image.html -share/doc/libfwupd/method.Release.set_update_message.html -share/doc/libfwupd/method.Release.set_urgency.html -share/doc/libfwupd/method.Release.set_vendor.html -share/doc/libfwupd/method.Release.set_version.html -share/doc/libfwupd/method.Remote.add_flag.html -share/doc/libfwupd/method.Remote.build_firmware_uri.html -share/doc/libfwupd/method.Remote.build_metadata_sig_uri.html -share/doc/libfwupd/method.Remote.build_metadata_uri.html -share/doc/libfwupd/method.Remote.build_report_uri.html -share/doc/libfwupd/method.Remote.get_age.html -share/doc/libfwupd/method.Remote.get_agreement.html -share/doc/libfwupd/method.Remote.get_checksum.html -share/doc/libfwupd/method.Remote.get_checksum_metadata.html -share/doc/libfwupd/method.Remote.get_filename_cache.html -share/doc/libfwupd/method.Remote.get_filename_cache_sig.html -share/doc/libfwupd/method.Remote.get_filename_source.html -share/doc/libfwupd/method.Remote.get_firmware_base_uri.html -share/doc/libfwupd/method.Remote.get_flags.html -share/doc/libfwupd/method.Remote.get_id.html -share/doc/libfwupd/method.Remote.get_kind.html -share/doc/libfwupd/method.Remote.get_metadata_uri.html -share/doc/libfwupd/method.Remote.get_metadata_uri_sig.html -share/doc/libfwupd/method.Remote.get_order_after.html -share/doc/libfwupd/method.Remote.get_order_before.html -share/doc/libfwupd/method.Remote.get_password.html -share/doc/libfwupd/method.Remote.get_priority.html -share/doc/libfwupd/method.Remote.get_privacy_uri.html -share/doc/libfwupd/method.Remote.get_refresh_interval.html -share/doc/libfwupd/method.Remote.get_remotes_dir.html -share/doc/libfwupd/method.Remote.get_report_uri.html -share/doc/libfwupd/method.Remote.get_title.html -share/doc/libfwupd/method.Remote.get_username.html -share/doc/libfwupd/method.Remote.has_flag.html -share/doc/libfwupd/method.Remote.load_signature.html -share/doc/libfwupd/method.Remote.load_signature_bytes.html -share/doc/libfwupd/method.Remote.needs_refresh.html -share/doc/libfwupd/method.Remote.remove_flag.html -share/doc/libfwupd/method.Remote.set_agreement.html -share/doc/libfwupd/method.Remote.set_checksum_sig.html -share/doc/libfwupd/method.Remote.set_filename_cache.html -share/doc/libfwupd/method.Remote.set_filename_source.html -share/doc/libfwupd/method.Remote.set_firmware_base_uri.html -share/doc/libfwupd/method.Remote.set_flags.html -share/doc/libfwupd/method.Remote.set_id.html -share/doc/libfwupd/method.Remote.set_kind.html -share/doc/libfwupd/method.Remote.set_metadata_uri.html -share/doc/libfwupd/method.Remote.set_mtime.html -share/doc/libfwupd/method.Remote.set_order_after.html -share/doc/libfwupd/method.Remote.set_order_before.html -share/doc/libfwupd/method.Remote.set_password.html -share/doc/libfwupd/method.Remote.set_priority.html -share/doc/libfwupd/method.Remote.set_privacy_uri.html -share/doc/libfwupd/method.Remote.set_refresh_interval.html -share/doc/libfwupd/method.Remote.set_remotes_dir.html -share/doc/libfwupd/method.Remote.set_report_uri.html -share/doc/libfwupd/method.Remote.set_title.html -share/doc/libfwupd/method.Remote.set_username.html -share/doc/libfwupd/method.Remote.setup.html -share/doc/libfwupd/method.Report.add_flag.html -share/doc/libfwupd/method.Report.add_metadata_item.html -share/doc/libfwupd/method.Report.get_created.html -share/doc/libfwupd/method.Report.get_device_name.html -share/doc/libfwupd/method.Report.get_distro_id.html -share/doc/libfwupd/method.Report.get_distro_variant.html -share/doc/libfwupd/method.Report.get_distro_version.html -share/doc/libfwupd/method.Report.get_flags.html -share/doc/libfwupd/method.Report.get_metadata.html -share/doc/libfwupd/method.Report.get_metadata_item.html -share/doc/libfwupd/method.Report.get_remote_id.html -share/doc/libfwupd/method.Report.get_vendor.html -share/doc/libfwupd/method.Report.get_vendor_id.html -share/doc/libfwupd/method.Report.get_version_old.html -share/doc/libfwupd/method.Report.has_flag.html -share/doc/libfwupd/method.Report.remove_flag.html -share/doc/libfwupd/method.Report.set_created.html -share/doc/libfwupd/method.Report.set_device_name.html -share/doc/libfwupd/method.Report.set_distro_id.html -share/doc/libfwupd/method.Report.set_distro_variant.html -share/doc/libfwupd/method.Report.set_distro_version.html -share/doc/libfwupd/method.Report.set_flags.html -share/doc/libfwupd/method.Report.set_remote_id.html -share/doc/libfwupd/method.Report.set_vendor.html -share/doc/libfwupd/method.Report.set_vendor_id.html -share/doc/libfwupd/method.Report.set_version_old.html -share/doc/libfwupd/method.Request.add_flag.html -share/doc/libfwupd/method.Request.emit_invalidate.html -share/doc/libfwupd/method.Request.get_created.html -share/doc/libfwupd/method.Request.get_device_id.html -share/doc/libfwupd/method.Request.get_flags.html -share/doc/libfwupd/method.Request.get_id.html -share/doc/libfwupd/method.Request.get_image.html -share/doc/libfwupd/method.Request.get_kind.html -share/doc/libfwupd/method.Request.get_message.html -share/doc/libfwupd/method.Request.has_flag.html -share/doc/libfwupd/method.Request.remove_flag.html -share/doc/libfwupd/method.Request.set_created.html -share/doc/libfwupd/method.Request.set_device_id.html -share/doc/libfwupd/method.Request.set_flags.html -share/doc/libfwupd/method.Request.set_id.html -share/doc/libfwupd/method.Request.set_image.html -share/doc/libfwupd/method.Request.set_kind.html -share/doc/libfwupd/method.Request.set_message.html -share/doc/libfwupd/method.SecurityAttr.add_flag.html -share/doc/libfwupd/method.SecurityAttr.add_guid.html -share/doc/libfwupd/method.SecurityAttr.add_guids.html -share/doc/libfwupd/method.SecurityAttr.add_metadata.html -share/doc/libfwupd/method.SecurityAttr.add_obsolete.html -share/doc/libfwupd/method.SecurityAttr.copy.html -share/doc/libfwupd/method.SecurityAttr.get_appstream_id.html -share/doc/libfwupd/method.SecurityAttr.get_bios_setting_current_value.html -share/doc/libfwupd/method.SecurityAttr.get_bios_setting_id.html -share/doc/libfwupd/method.SecurityAttr.get_bios_setting_target_value.html -share/doc/libfwupd/method.SecurityAttr.get_created.html -share/doc/libfwupd/method.SecurityAttr.get_description.html -share/doc/libfwupd/method.SecurityAttr.get_flags.html -share/doc/libfwupd/method.SecurityAttr.get_fwupd_version.html -share/doc/libfwupd/method.SecurityAttr.get_guids.html -share/doc/libfwupd/method.SecurityAttr.get_kernel_current_value.html -share/doc/libfwupd/method.SecurityAttr.get_kernel_target_value.html -share/doc/libfwupd/method.SecurityAttr.get_level.html -share/doc/libfwupd/method.SecurityAttr.get_metadata.html -share/doc/libfwupd/method.SecurityAttr.get_name.html -share/doc/libfwupd/method.SecurityAttr.get_obsoletes.html -share/doc/libfwupd/method.SecurityAttr.get_plugin.html -share/doc/libfwupd/method.SecurityAttr.get_result.html -share/doc/libfwupd/method.SecurityAttr.get_result_fallback.html -share/doc/libfwupd/method.SecurityAttr.get_result_success.html -share/doc/libfwupd/method.SecurityAttr.get_title.html -share/doc/libfwupd/method.SecurityAttr.get_url.html -share/doc/libfwupd/method.SecurityAttr.has_flag.html -share/doc/libfwupd/method.SecurityAttr.has_guid.html -share/doc/libfwupd/method.SecurityAttr.has_obsolete.html -share/doc/libfwupd/method.SecurityAttr.remove_flag.html -share/doc/libfwupd/method.SecurityAttr.set_appstream_id.html -share/doc/libfwupd/method.SecurityAttr.set_bios_setting_current_value.html -share/doc/libfwupd/method.SecurityAttr.set_bios_setting_id.html -share/doc/libfwupd/method.SecurityAttr.set_bios_setting_target_value.html -share/doc/libfwupd/method.SecurityAttr.set_created.html -share/doc/libfwupd/method.SecurityAttr.set_description.html -share/doc/libfwupd/method.SecurityAttr.set_flags.html -share/doc/libfwupd/method.SecurityAttr.set_fwupd_version.html -share/doc/libfwupd/method.SecurityAttr.set_kernel_current_value.html -share/doc/libfwupd/method.SecurityAttr.set_kernel_target_value.html -share/doc/libfwupd/method.SecurityAttr.set_level.html -share/doc/libfwupd/method.SecurityAttr.set_name.html -share/doc/libfwupd/method.SecurityAttr.set_plugin.html -share/doc/libfwupd/method.SecurityAttr.set_result.html -share/doc/libfwupd/method.SecurityAttr.set_result_fallback.html -share/doc/libfwupd/method.SecurityAttr.set_result_success.html -share/doc/libfwupd/method.SecurityAttr.set_title.html -share/doc/libfwupd/method.SecurityAttr.set_url.html -share/doc/libfwupd/org.freedesktop.fwupd.svg -share/doc/libfwupd/property.Client.battery-level.html -share/doc/libfwupd/property.Client.battery-threshold.html -share/doc/libfwupd/property.Client.daemon-version.html -share/doc/libfwupd/property.Client.host-bkc.html -share/doc/libfwupd/property.Client.host-machine-id.html -share/doc/libfwupd/property.Client.host-product.html -share/doc/libfwupd/property.Client.host-security-id.html -share/doc/libfwupd/property.Client.host-vendor.html -share/doc/libfwupd/property.Client.interactive.html -share/doc/libfwupd/property.Client.only-trusted.html -share/doc/libfwupd/property.Client.percentage.html -share/doc/libfwupd/property.Client.status.html -share/doc/libfwupd/property.Client.tainted.html -share/doc/libfwupd/property.Device.battery-level.html -share/doc/libfwupd/property.Device.battery-threshold.html -share/doc/libfwupd/property.Device.flags.html -share/doc/libfwupd/property.Device.id.html -share/doc/libfwupd/property.Device.parent.html -share/doc/libfwupd/property.Device.percentage.html -share/doc/libfwupd/property.Device.problems.html -share/doc/libfwupd/property.Device.request-flags.html -share/doc/libfwupd/property.Device.status.html -share/doc/libfwupd/property.Device.update-error.html -share/doc/libfwupd/property.Device.update-state.html -share/doc/libfwupd/property.Device.version-format.html -share/doc/libfwupd/property.Device.version.html -share/doc/libfwupd/property.Plugin.flags.html -share/doc/libfwupd/property.Plugin.name.html -share/doc/libfwupd/property.Release.remote-id.html -share/doc/libfwupd/property.Remote.approval-required.html -share/doc/libfwupd/property.Remote.automatic-reports.html -share/doc/libfwupd/property.Remote.automatic-security-reports.html -share/doc/libfwupd/property.Remote.enabled.html -share/doc/libfwupd/property.Remote.flags.html -share/doc/libfwupd/property.Remote.id.html -share/doc/libfwupd/property.Report.flags.html -share/doc/libfwupd/property.Request.device-id.html -share/doc/libfwupd/property.Request.flags.html -share/doc/libfwupd/property.Request.id.html -share/doc/libfwupd/property.Request.image.html -share/doc/libfwupd/property.Request.kind.html -share/doc/libfwupd/property.Request.message.html -share/doc/libfwupd/search.js -share/doc/libfwupd/signal.Client.changed.html -share/doc/libfwupd/signal.Client.device-added.html -share/doc/libfwupd/signal.Client.device-changed.html -share/doc/libfwupd/signal.Client.device-removed.html -share/doc/libfwupd/signal.Client.device-request.html -share/doc/libfwupd/signal.Client.status-changed.html -share/doc/libfwupd/signal.Request.invalidate.html -share/doc/libfwupd/solarized-dark.css -share/doc/libfwupd/solarized-light.css -share/doc/libfwupd/style.css -share/doc/libfwupd/type_func.Codec.array_from_variant.html -share/doc/libfwupd/type_func.Codec.array_to_json.html -share/doc/libfwupd/type_func.Codec.array_to_variant.html -share/doc/libfwupd/type_func.Codec.json_append.html -share/doc/libfwupd/type_func.Codec.json_append_bool.html -share/doc/libfwupd/type_func.Codec.json_append_int.html -share/doc/libfwupd/type_func.Codec.json_append_map.html -share/doc/libfwupd/type_func.Codec.json_append_strv.html -share/doc/libfwupd/type_func.Codec.string_append.html -share/doc/libfwupd/type_func.Codec.string_append_bool.html -share/doc/libfwupd/type_func.Codec.string_append_hex.html -share/doc/libfwupd/type_func.Codec.string_append_int.html -share/doc/libfwupd/type_func.Codec.string_append_size.html -share/doc/libfwupd/type_func.Codec.string_append_time.html -share/doc/libfwupd/type_func.Device.array_ensure_parents.html -share/doc/libfwupd/type_func.Device.array_filter_flags.html -share/doc/libfwupd/type_func.Device.flag_from_string.html -share/doc/libfwupd/type_func.Device.flag_to_string.html -share/doc/libfwupd/type_func.Device.id_is_valid.html -share/doc/libfwupd/type_func.Device.problem_from_string.html -share/doc/libfwupd/type_func.Device.problem_to_string.html -share/doc/libfwupd/type_func.Plugin.flag_from_string.html -share/doc/libfwupd/type_func.Plugin.flag_to_string.html -share/doc/libfwupd/type_func.Release.array_filter_flags.html -share/doc/libfwupd/type_func.Release.flag_from_string.html -share/doc/libfwupd/type_func.Release.flag_to_string.html -share/doc/libfwupd/type_func.Release.urgency_from_string.html -share/doc/libfwupd/type_func.Release.urgency_to_string.html -share/doc/libfwupd/type_func.Remote.flag_from_string.html -share/doc/libfwupd/type_func.Remote.flag_to_string.html -share/doc/libfwupd/type_func.Remote.kind_from_string.html -share/doc/libfwupd/type_func.Remote.kind_to_string.html -share/doc/libfwupd/type_func.Report.flag_from_string.html -share/doc/libfwupd/type_func.Report.flag_to_string.html -share/doc/libfwupd/type_func.Request.flag_from_string.html -share/doc/libfwupd/type_func.Request.flag_to_string.html -share/doc/libfwupd/type_func.Request.kind_from_string.html -share/doc/libfwupd/type_func.Request.kind_to_string.html -share/doc/libfwupd/type_func.SecurityAttr.flag_from_string.html -share/doc/libfwupd/type_func.SecurityAttr.flag_to_string.html -share/doc/libfwupd/type_func.SecurityAttr.flag_to_suffix.html -share/doc/libfwupd/type_func.SecurityAttr.result_from_string.html -share/doc/libfwupd/type_func.SecurityAttr.result_to_string.html -share/doc/libfwupd/urlmap_fwupd.js -share/doc/libfwupd/vfunc.BiosSetting.write_value.html -share/doc/libfwupd/vfunc.Client.changed.html -share/doc/libfwupd/vfunc.Client.device_added.html -share/doc/libfwupd/vfunc.Client.device_changed.html -share/doc/libfwupd/vfunc.Client.device_removed.html -share/doc/libfwupd/vfunc.Client.device_request.html -share/doc/libfwupd/vfunc.Client.status_changed.html -share/doc/libfwupd/vfunc.Codec.add_json.html -share/doc/libfwupd/vfunc.Codec.add_string.html -share/doc/libfwupd/vfunc.Codec.add_variant.html -share/doc/libfwupd/vfunc.Codec.from_json.html -share/doc/libfwupd/vfunc.Codec.from_variant.html -share/doc/libfwupd/vfunc.Codec.from_variant_iter.html -share/doc/libfwupd/vfunc.Codec.to_string.html -share/doc/libfwupd/vfunc.Codec.to_variant.html -share/doc/libfwupd/vfunc.Request.invalidate.html -share/doc/libfwupdplugin/RedHatDisplay-Black.woff -share/doc/libfwupdplugin/RedHatDisplay-Black.woff2 -share/doc/libfwupdplugin/RedHatDisplay-BlackItalic.woff -share/doc/libfwupdplugin/RedHatDisplay-BlackItalic.woff2 -share/doc/libfwupdplugin/RedHatDisplay-Bold.woff -share/doc/libfwupdplugin/RedHatDisplay-Bold.woff2 -share/doc/libfwupdplugin/RedHatDisplay-BoldItalic.woff -share/doc/libfwupdplugin/RedHatDisplay-BoldItalic.woff2 -share/doc/libfwupdplugin/RedHatDisplay-Italic.woff -share/doc/libfwupdplugin/RedHatDisplay-Italic.woff2 -share/doc/libfwupdplugin/RedHatDisplay-Medium.woff -share/doc/libfwupdplugin/RedHatDisplay-Medium.woff2 -share/doc/libfwupdplugin/RedHatDisplay-MediumItalic.woff -share/doc/libfwupdplugin/RedHatDisplay-MediumItalic.woff2 -share/doc/libfwupdplugin/RedHatDisplay-Regular.woff -share/doc/libfwupdplugin/RedHatDisplay-Regular.woff2 -share/doc/libfwupdplugin/RedHatText-Bold.woff -share/doc/libfwupdplugin/RedHatText-Bold.woff2 -share/doc/libfwupdplugin/RedHatText-BoldItalic.woff -share/doc/libfwupdplugin/RedHatText-BoldItalic.woff2 -share/doc/libfwupdplugin/RedHatText-Italic.woff -share/doc/libfwupdplugin/RedHatText-Italic.woff2 -share/doc/libfwupdplugin/RedHatText-Medium.woff -share/doc/libfwupdplugin/RedHatText-Medium.woff2 -share/doc/libfwupdplugin/RedHatText-MediumItalic.woff -share/doc/libfwupdplugin/RedHatText-MediumItalic.woff2 -share/doc/libfwupdplugin/RedHatText-Regular.woff -share/doc/libfwupdplugin/RedHatText-Regular.woff2 -share/doc/libfwupdplugin/SourceCodePro-It.ttf.woff -share/doc/libfwupdplugin/SourceCodePro-Regular.ttf.woff -share/doc/libfwupdplugin/SourceCodePro-Semibold.ttf.woff -share/doc/libfwupdplugin/acpi-dmar-README.html -share/doc/libfwupdplugin/acpi-facp-README.html -share/doc/libfwupdplugin/acpi-ivrs-README.html -share/doc/libfwupdplugin/acpi-phat-README.html -share/doc/libfwupdplugin/algoltek-usb-README.html -share/doc/libfwupdplugin/algoltek-usbcr-README.html -share/doc/libfwupdplugin/alias.EndianType.html -share/doc/libfwupdplugin/alias.IntelThunderboltNvmArcParams.html -share/doc/libfwupdplugin/alias.IntelThunderboltNvmDigital.html -share/doc/libfwupdplugin/alias.IntelThunderboltNvmDram.html -share/doc/libfwupdplugin/alias.IntelThunderboltNvmDrom.html -share/doc/libfwupdplugin/alias.MkhiArbhSvnGetInfoRequest.html -share/doc/libfwupdplugin/alias.MkhiArbhSvnGetInfoResponse.html -share/doc/libfwupdplugin/alias.MkhiArbhSvnInfoEntry.html -share/doc/libfwupdplugin/alias.MkhiReadFileExRequest.html -share/doc/libfwupdplugin/alias.MkhiReadFileExResponse.html -share/doc/libfwupdplugin/alias.MkhiReadFileRequest.html -share/doc/libfwupdplugin/alias.MkhiReadFileResponse.html -share/doc/libfwupdplugin/alias.StructAcpiTable.html -share/doc/libfwupdplugin/alias.StructCabData.html -share/doc/libfwupdplugin/alias.StructCabFile.html -share/doc/libfwupdplugin/alias.StructCabFolder.html -share/doc/libfwupdplugin/alias.StructCabHeader.html -share/doc/libfwupdplugin/alias.StructCabHeaderReserve.html -share/doc/libfwupdplugin/alias.StructCfuOffer.html -share/doc/libfwupdplugin/alias.StructCfuPayload.html -share/doc/libfwupdplugin/alias.StructDfuFtr.html -share/doc/libfwupdplugin/alias.StructDfuseElement.html -share/doc/libfwupdplugin/alias.StructDfuseHdr.html -share/doc/libfwupdplugin/alias.StructDfuseImage.html -share/doc/libfwupdplugin/alias.StructDpauxDpcd.html -share/doc/libfwupdplugin/alias.StructDs20.html -share/doc/libfwupdplugin/alias.StructEdid.html -share/doc/libfwupdplugin/alias.StructEdidDescriptor.html -share/doc/libfwupdplugin/alias.StructEfiDevicePath.html -share/doc/libfwupdplugin/alias.StructEfiFile.html -share/doc/libfwupdplugin/alias.StructEfiFile2.html -share/doc/libfwupdplugin/alias.StructEfiHardDriveDevicePath.html -share/doc/libfwupdplugin/alias.StructEfiLoadOption.html -share/doc/libfwupdplugin/alias.StructEfiLz77DecompressorHeader.html -share/doc/libfwupdplugin/alias.StructEfiSection.html -share/doc/libfwupdplugin/alias.StructEfiSection2.html -share/doc/libfwupdplugin/alias.StructEfiSectionCompression.html -share/doc/libfwupdplugin/alias.StructEfiSectionFreeformSubtypeGuid.html -share/doc/libfwupdplugin/alias.StructEfiSectionGuidDefined.html -share/doc/libfwupdplugin/alias.StructEfiSignatureList.html -share/doc/libfwupdplugin/alias.StructEfiTime.html -share/doc/libfwupdplugin/alias.StructEfiVariableAuthentication2.html -share/doc/libfwupdplugin/alias.StructEfiVolume.html -share/doc/libfwupdplugin/alias.StructEfiVolumeBlockMap.html -share/doc/libfwupdplugin/alias.StructEfiVolumeExtEntry.html -share/doc/libfwupdplugin/alias.StructEfiVolumeExtHeader.html -share/doc/libfwupdplugin/alias.StructEfiWinCertificate.html -share/doc/libfwupdplugin/alias.StructElfFileHeader64le.html -share/doc/libfwupdplugin/alias.StructElfProgramHeader64le.html -share/doc/libfwupdplugin/alias.StructElfSectionHeader64le.html -share/doc/libfwupdplugin/alias.StructFdt.html -share/doc/libfwupdplugin/alias.StructFdtProp.html -share/doc/libfwupdplugin/alias.StructFdtReserveEntry.html -share/doc/libfwupdplugin/alias.StructFmap.html -share/doc/libfwupdplugin/alias.StructFmapArea.html -share/doc/libfwupdplugin/alias.StructIfdFcba.html -share/doc/libfwupdplugin/alias.StructIfdFdbar.html -share/doc/libfwupdplugin/alias.StructIfwiCpd.html -share/doc/libfwupdplugin/alias.StructIfwiCpdEntry.html -share/doc/libfwupdplugin/alias.StructIfwiCpdManifest.html -share/doc/libfwupdplugin/alias.StructIfwiCpdManifestExt.html -share/doc/libfwupdplugin/alias.StructIfwiFpt.html -share/doc/libfwupdplugin/alias.StructIfwiFptEntry.html -share/doc/libfwupdplugin/alias.StructMsDs20.html -share/doc/libfwupdplugin/alias.StructOprom.html -share/doc/libfwupdplugin/alias.StructOpromPci.html -share/doc/libfwupdplugin/alias.StructPeCoffFileHeader.html -share/doc/libfwupdplugin/alias.StructPeCoffOptionalHeader64.html -share/doc/libfwupdplugin/alias.StructPeCoffSection.html -share/doc/libfwupdplugin/alias.StructPeCoffSymbol.html -share/doc/libfwupdplugin/alias.StructPeDosHeader.html -share/doc/libfwupdplugin/alias.StructSbatLevelSectionHeader.html -share/doc/libfwupdplugin/alias.StructShimHive.html -share/doc/libfwupdplugin/alias.StructShimHiveItem.html -share/doc/libfwupdplugin/alias.StructSmbiosEp32.html -share/doc/libfwupdplugin/alias.StructSmbiosEp64.html -share/doc/libfwupdplugin/alias.StructSmbiosStructure.html -share/doc/libfwupdplugin/alias.StructUswid.html -share/doc/libfwupdplugin/alias.UsbBaseHdr.html -share/doc/libfwupdplugin/alias.UsbBosHdr.html -share/doc/libfwupdplugin/alias.UsbDescriptorHdr.html -share/doc/libfwupdplugin/alias.UsbDeviceHdr.html -share/doc/libfwupdplugin/alias.UsbDfuDescriptorHdr.html -share/doc/libfwupdplugin/alias.UsbEndpointHdr.html -share/doc/libfwupdplugin/alias.UsbHidDescriptorHdr.html -share/doc/libfwupdplugin/alias.UsbInterfaceHdr.html -share/doc/libfwupdplugin/amd-gpu-README.html -share/doc/libfwupdplugin/amd-kria-README.html -share/doc/libfwupdplugin/amd-pmc-README.html -share/doc/libfwupdplugin/analogix-README.html -share/doc/libfwupdplugin/android-boot-README.html -share/doc/libfwupdplugin/architecture-plan.svg -share/doc/libfwupdplugin/asus-hid-README.html -share/doc/libfwupdplugin/ata-README.html -share/doc/libfwupdplugin/aver-hid-README.html -share/doc/libfwupdplugin/bcm57xx-README.html -share/doc/libfwupdplugin/best-known-configuration.html -share/doc/libfwupdplugin/bios-README.html -share/doc/libfwupdplugin/bios-settings.html -share/doc/libfwupdplugin/bnr-dp-README.html -share/doc/libfwupdplugin/building.html -share/doc/libfwupdplugin/callback.ArchiveIterateFunc.html -share/doc/libfwupdplugin/callback.ContextLookupIter.html -share/doc/libfwupdplugin/callback.DeviceLockerFunc.html -share/doc/libfwupdplugin/callback.DeviceRetryFunc.html -share/doc/libfwupdplugin/callback.InputStreamChunkifyFunc.html -share/doc/libfwupdplugin/callback.IoctlFixupFunc.html -share/doc/libfwupdplugin/callback.QuirksIter.html -share/doc/libfwupdplugin/callback.StrsplitFunc.html -share/doc/libfwupdplugin/ccgx-README.html -share/doc/libfwupdplugin/ccgx-dmc-README.html -share/doc/libfwupdplugin/cfu-README.html -share/doc/libfwupdplugin/ch341a-README.html -share/doc/libfwupdplugin/ch347-README.html -share/doc/libfwupdplugin/class.AcpiTable.html -share/doc/libfwupdplugin/class.Archive.html -share/doc/libfwupdplugin/class.ArchiveFirmware.html -share/doc/libfwupdplugin/class.Backend.html -share/doc/libfwupdplugin/class.BiosSettings.html -share/doc/libfwupdplugin/class.BlockDevice.html -share/doc/libfwupdplugin/class.BlockPartition.html -share/doc/libfwupdplugin/class.BluezDevice.html -share/doc/libfwupdplugin/class.CabFirmware.html -share/doc/libfwupdplugin/class.CabImage.html -share/doc/libfwupdplugin/class.CfiDevice.html -share/doc/libfwupdplugin/class.CfuOffer.html -share/doc/libfwupdplugin/class.CfuPayload.html -share/doc/libfwupdplugin/class.Chunk.html -share/doc/libfwupdplugin/class.ChunkArray.html -share/doc/libfwupdplugin/class.CompositeInputStream.html -share/doc/libfwupdplugin/class.Config.html -share/doc/libfwupdplugin/class.Context.html -share/doc/libfwupdplugin/class.CoswidFirmware.html -share/doc/libfwupdplugin/class.CsvEntry.html -share/doc/libfwupdplugin/class.CsvFirmware.html -share/doc/libfwupdplugin/class.Device.html -share/doc/libfwupdplugin/class.DeviceEvent.html -share/doc/libfwupdplugin/class.DeviceLocker.html -share/doc/libfwupdplugin/class.DeviceProgress.html -share/doc/libfwupdplugin/class.DfuFirmware.html -share/doc/libfwupdplugin/class.DfuseFirmware.html -share/doc/libfwupdplugin/class.DpauxDevice.html -share/doc/libfwupdplugin/class.DrmDevice.html -share/doc/libfwupdplugin/class.Edid.html -share/doc/libfwupdplugin/class.EfiDevicePath.html -share/doc/libfwupdplugin/class.EfiDevicePathList.html -share/doc/libfwupdplugin/class.EfiFile.html -share/doc/libfwupdplugin/class.EfiFilesystem.html -share/doc/libfwupdplugin/class.EfiHardDriveDevicePath.html -share/doc/libfwupdplugin/class.EfiLoadOption.html -share/doc/libfwupdplugin/class.EfiSection.html -share/doc/libfwupdplugin/class.EfiSignature.html -share/doc/libfwupdplugin/class.EfiSignatureList.html -share/doc/libfwupdplugin/class.EfiVariableAuthentication2.html -share/doc/libfwupdplugin/class.EfiVolume.html -share/doc/libfwupdplugin/class.EfiX509Device.html -share/doc/libfwupdplugin/class.EfiX509Signature.html -share/doc/libfwupdplugin/class.Efivars.html -share/doc/libfwupdplugin/class.ElfFirmware.html -share/doc/libfwupdplugin/class.FdtFirmware.html -share/doc/libfwupdplugin/class.FdtImage.html -share/doc/libfwupdplugin/class.Firmware.html -share/doc/libfwupdplugin/class.FitFirmware.html -share/doc/libfwupdplugin/class.FmapFirmware.html -share/doc/libfwupdplugin/class.HeciDevice.html -share/doc/libfwupdplugin/class.HidDescriptor.html -share/doc/libfwupdplugin/class.HidDevice.html -share/doc/libfwupdplugin/class.HidReport.html -share/doc/libfwupdplugin/class.HidrawDevice.html -share/doc/libfwupdplugin/class.Hwids.html -share/doc/libfwupdplugin/class.I2cDevice.html -share/doc/libfwupdplugin/class.IOChannel.html -share/doc/libfwupdplugin/class.IfdBios.html -share/doc/libfwupdplugin/class.IfdFirmware.html -share/doc/libfwupdplugin/class.IfdImage.html -share/doc/libfwupdplugin/class.IfwiCpdFirmware.html -share/doc/libfwupdplugin/class.IfwiFptFirmware.html -share/doc/libfwupdplugin/class.IhexFirmware.html -share/doc/libfwupdplugin/class.IntelThunderboltFirmware.html -share/doc/libfwupdplugin/class.IntelThunderboltNvm.html -share/doc/libfwupdplugin/class.Ioctl.html -share/doc/libfwupdplugin/class.KernelSearchPathLocker.html -share/doc/libfwupdplugin/class.LinearFirmware.html -share/doc/libfwupdplugin/class.MeiDevice.html -share/doc/libfwupdplugin/class.MsgpackItem.html -share/doc/libfwupdplugin/class.OpromDevice.html -share/doc/libfwupdplugin/class.OpromFirmware.html -share/doc/libfwupdplugin/class.PartialInputStream.html -share/doc/libfwupdplugin/class.PciDevice.html -share/doc/libfwupdplugin/class.PefileFirmware.html -share/doc/libfwupdplugin/class.Pkcs7.html -share/doc/libfwupdplugin/class.Plugin.html -share/doc/libfwupdplugin/class.Progress.html -share/doc/libfwupdplugin/class.Quirks.html -share/doc/libfwupdplugin/class.SbatlevelSection.html -share/doc/libfwupdplugin/class.SecurityAttr.html -share/doc/libfwupdplugin/class.SecurityAttrs.html -share/doc/libfwupdplugin/class.SerioDevice.html -share/doc/libfwupdplugin/class.Smbios.html -share/doc/libfwupdplugin/class.SrecFirmware.html -share/doc/libfwupdplugin/class.UdevDevice.html -share/doc/libfwupdplugin/class.UefiDevice.html -share/doc/libfwupdplugin/class.UsbBosDescriptor.html -share/doc/libfwupdplugin/class.UsbConfigDescriptor.html -share/doc/libfwupdplugin/class.UsbDevice.html -share/doc/libfwupdplugin/class.UsbDeviceDs20.html -share/doc/libfwupdplugin/class.UsbDeviceFwDs20.html -share/doc/libfwupdplugin/class.UsbDeviceMsDs20.html -share/doc/libfwupdplugin/class.UsbEndpoint.html -share/doc/libfwupdplugin/class.UsbHidDescriptor.html -share/doc/libfwupdplugin/class.UsbInterface.html -share/doc/libfwupdplugin/class.UswidFirmware.html -share/doc/libfwupdplugin/class.V4lDevice.html -share/doc/libfwupdplugin/class.Volume.html -share/doc/libfwupdplugin/class.VolumeLocker.html -share/doc/libfwupdplugin/class.X509Certificate.html -share/doc/libfwupdplugin/classes_hierarchy.html -share/doc/libfwupdplugin/const.ARCHIVE_COMPRESSION_LAST.html -share/doc/libfwupdplugin/const.ARCHIVE_FORMAT_LAST.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_FIRMWARE_REVISION.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_HARDWARE_REVISION.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_MANUFACTURER_NAME.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_MODEL_NUMBER.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_PNP_UID.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SERIAL_NUMBER.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SOFTWARE_REVISION.html -share/doc/libfwupdplugin/const.BLUEZ_DEVICE_UUID_DI_SYSTEM_ID.html -share/doc/libfwupdplugin/const.CFI_DEVICE_CMD_LAST.html -share/doc/libfwupdplugin/const.CHUNK_ADDR_OFFSET_NONE.html -share/doc/libfwupdplugin/const.CHUNK_PAGESZ_NONE.html -share/doc/libfwupdplugin/const.CONTEXT_HWID_FLAG_LOAD_ALL.html -share/doc/libfwupdplugin/const.COSWID_ENTITY_ROLE_LAST.html -share/doc/libfwupdplugin/const.COSWID_TAG_LAST.html -share/doc/libfwupdplugin/const.CPU_VENDOR_LAST.html -share/doc/libfwupdplugin/const.DEVICE_ICON_AC_ADAPTER.html -share/doc/libfwupdplugin/const.DEVICE_ICON_APPLICATION_CERTIFICATE.html -share/doc/libfwupdplugin/const.DEVICE_ICON_AUDIO_CARD.html -share/doc/libfwupdplugin/const.DEVICE_ICON_AUTH_FINGERPRINT.html -share/doc/libfwupdplugin/const.DEVICE_ICON_COMPUTER.html -share/doc/libfwupdplugin/const.DEVICE_ICON_DOCK.html -share/doc/libfwupdplugin/const.DEVICE_ICON_DOCK_USB.html -share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_HARDDISK.html -share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_MULTIDISK.html -share/doc/libfwupdplugin/const.DEVICE_ICON_DRIVE_SSD.html -share/doc/libfwupdplugin/const.DEVICE_ICON_GPU.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_DIALPAD.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_GAMING.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_KEYBOARD.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_MOUSE.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_TABLET.html -share/doc/libfwupdplugin/const.DEVICE_ICON_INPUT_TOUCHPAD.html -share/doc/libfwupdplugin/const.DEVICE_ICON_MEMORY.html -share/doc/libfwupdplugin/const.DEVICE_ICON_MODEM.html -share/doc/libfwupdplugin/const.DEVICE_ICON_NETWORK_WIRED.html -share/doc/libfwupdplugin/const.DEVICE_ICON_NETWORK_WIRELESS.html -share/doc/libfwupdplugin/const.DEVICE_ICON_PDA.html -share/doc/libfwupdplugin/const.DEVICE_ICON_THUNDERBOLT.html -share/doc/libfwupdplugin/const.DEVICE_ICON_USB_HUB.html -share/doc/libfwupdplugin/const.DEVICE_ICON_USB_RECEIVER.html -share/doc/libfwupdplugin/const.DEVICE_ICON_VIDEO_CAMERA.html -share/doc/libfwupdplugin/const.DEVICE_ICON_VIDEO_DISPLAY.html -share/doc/libfwupdplugin/const.DEVICE_ICON_WEB_CAMERA.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_CPU_MITIGATIONS_REQUIRED.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_CPU_SINKCLOSE_MICROCODE_VER.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_TBT_IS_SAFE_MODE.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_CAPSULE_FLAGS.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_DEVICE_KIND.html -share/doc/libfwupdplugin/const.DEVICE_METADATA_UEFI_FW_VERSION.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ADD_COUNTERPART_GUIDS.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ADD_INSTANCE_ID_REV.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ATTACH_EXTRA_RESET.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_AUTO_PARENT_CHILDREN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_AUTO_PAUSE_POLLING.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_COUNTERPART_VISIBLE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DELAYED_REMOVAL.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DETACH_PREPARE_FIRMWARE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_DISPLAY_REQUIRED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_EMULATED_REQUIRE_SETUP.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ENFORCE_REQUIRES.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ENSURE_SEMVER.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_EXPLICIT_ORDER.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_CPU.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_CPU_CHILD.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_FIRMWARE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_HOST_FIRMWARE_CHILD.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IGNORE_SYSTEM_POWER.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INHERIT_ACTIVATION.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INHIBIT_CHILDREN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INSTALL_LOOP_RESTART.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_INSTALL_PARENT_FIRST.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IS_FAKE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_IS_OPEN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_ONLY_CHECKSUM.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_FLAGS.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_ICON.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_NAME.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_NAME_CATEGORY.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_REQUIRED_FREE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_SIGNED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VENDOR.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VERFMT.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_MD_SET_VERSION.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_INSTANCE_IDS.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_REMOVE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_AUTO_REMOVE_CHILDREN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_GENERIC_GUIDS.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_LID_CLOSED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_PROBE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_NO_SERIAL_NUMBER.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_ONLY_SUPPORTED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_PARENT_NAME_PREFIX.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REFCOUNTED_PROXY.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REGISTERED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_REPLUG_MATCH_GUID.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_RETRY_OPEN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_SAVE_INTO_BACKUP_REMOTE.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_SKIPS_RESTART.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_UNCONNECTED.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_UPDATE_PENDING.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PARENT_FOR_BATTERY.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PARENT_FOR_OPEN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PROXY_FALLBACK.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_PROXY_FOR_OPEN.html -share/doc/libfwupdplugin/const.DEVICE_PRIVATE_FLAG_USE_RUNTIME_VERSION.html -share/doc/libfwupdplugin/const.DEVICE_REMOVE_DELAY_RE_ENUMERATE.html -share/doc/libfwupdplugin/const.DEVICE_REMOVE_DELAY_USER_REPLUG.html -share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_ATMEL_AVR.html -share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFUSE.html -share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFU_1_0.html -share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_DFU_1_1.html -share/doc/libfwupdplugin/const.DFU_FIRMARE_VERSION_UNKNOWN.html -share/doc/libfwupdplugin/const.DISPLAY_STATE_LAST.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_BRANCH_DEVICE.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_LINK_CONFIGURATION.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_LINK_SINK_STATUS.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_RECEIVER_CAPABILITY.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_SINK_DEVICE.html -share/doc/libfwupdplugin/const.DPAUX_DEVICE_DPCD_OFFSET_SOURCE_DEVICE.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_APPEND_WRITE.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_AUTHENTICATED_WRITE_ACCESS.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_BOOTSERVICE_ACCESS.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_HARDWARE_ERROR_RECORD.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_NON_VOLATILE.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_RUNTIME_ACCESS.html -share/doc/libfwupdplugin/const.EFIVARS_ATTR_TIME_BASED_AUTHENTICATED_WRITE_ACCESS.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_EFI_CAPSULE_REPORT.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_EFI_GLOBAL.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_FWUPDATE.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_SECURITY_DATABASE.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_SHIM.html -share/doc/libfwupdplugin/const.EFIVARS_GUID_UX_CAPSULE.html -share/doc/libfwupdplugin/const.EFI_FILE_GUID_BIOS_GUARD.html -share/doc/libfwupdplugin/const.EFI_FILE_GUID_FV_IMAGE.html -share/doc/libfwupdplugin/const.EFI_FILE_GUID_MICROCODE.html -share/doc/libfwupdplugin/const.EFI_HARD_DRIVE_DEVICE_PATH_SIGNATURE_TYPE_LAST.html -share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_KIND_LAST.html -share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_METADATA_CMDLINE.html -share/doc/libfwupdplugin/const.EFI_LOAD_OPTION_METADATA_PATH.html -share/doc/libfwupdplugin/const.EFI_LZ77_DECOMPRESSOR_VERSION_LAST.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ACPI1_TABLE.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ACPI2_TABLE.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_ESRT_TABLE.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_LZMA_COMPRESS.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_SMBIOS_TABLE.html -share/doc/libfwupdplugin/const.EFI_SECTION_GUID_TIANO_COMPRESS.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_FRAMEWORK.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_MICROSOFT.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_OVMF.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_OVMF_LEGACY.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_GUID_ZERO.html -share/doc/libfwupdplugin/const.EFI_SIGNATURE_KIND_LAST.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_APPLE_BOOT.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS1.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS2.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_FFS3.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_HP_FS.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_EVSA.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_EVSA2.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_NVRAM_NVAR.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_PFH1.html -share/doc/libfwupdplugin/const.EFI_VOLUME_GUID_PFH2.html -share/doc/libfwupdplugin/const.FIRMWARE_ALIGNMENT_LAST.html -share/doc/libfwupdplugin/const.FIRMWARE_ID_HEADER.html -share/doc/libfwupdplugin/const.FIRMWARE_ID_PAYLOAD.html -share/doc/libfwupdplugin/const.FIRMWARE_ID_SIGNATURE.html -share/doc/libfwupdplugin/const.FIRMWARE_SEARCH_MAGIC_BUFSZ_MAX.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_ALGO.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_COMPATIBLE.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA_OFFSET.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_DATA_SIZE.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_SKIP_OFFSET.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_STORE_OFFSET.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_TIMESTAMP.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_VALUE.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ATTR_VERSION.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ID_CONFIGURATIONS.html -share/doc/libfwupdplugin/const.FIT_FIRMWARE_ID_IMAGES.html -share/doc/libfwupdplugin/const.FMAP_FIRMWARE_STRLEN.html -share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_FWUPDATE.html -share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MCHI.html -share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MCHI2.html -share/doc/libfwupdplugin/const.HECI_DEVICE_UUID_MKHI.html -share/doc/libfwupdplugin/const.HID_ITEM_KIND_LAST.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BASEBOARD_MANUFACTURER.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BASEBOARD_PRODUCT.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_MAJOR_RELEASE.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_MINOR_RELEASE.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_VENDOR.html -share/doc/libfwupdplugin/const.HWIDS_KEY_BIOS_VERSION.html -share/doc/libfwupdplugin/const.HWIDS_KEY_ENCLOSURE_KIND.html -share/doc/libfwupdplugin/const.HWIDS_KEY_FAMILY.html -share/doc/libfwupdplugin/const.HWIDS_KEY_FIRMWARE_MAJOR_RELEASE.html -share/doc/libfwupdplugin/const.HWIDS_KEY_FIRMWARE_MINOR_RELEASE.html -share/doc/libfwupdplugin/const.HWIDS_KEY_MANUFACTURER.html -share/doc/libfwupdplugin/const.HWIDS_KEY_PRODUCT_NAME.html -share/doc/libfwupdplugin/const.HWIDS_KEY_PRODUCT_SKU.html -share/doc/libfwupdplugin/const.I2C_DEVICE_PRIVATE_FLAG_NO_HWID_GUIDS.html -share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_MANIFEST.html -share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_METADATA.html -share/doc/libfwupdplugin/const.IFWI_CPD_FIRMWARE_IDX_MODULEDATA_IDX.html -share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_CKSM.html -share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_FWIM.html -share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_IMGI.html -share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_INFO.html -share/doc/libfwupdplugin/const.IFWI_FPT_FIRMWARE_IDX_SDTA.html -share/doc/libfwupdplugin/const.INTEL_THUNDERBOLT_NVM_FAMILY_LAST.html -share/doc/libfwupdplugin/const.INTEL_THUNDERBOLT_NVM_SECTION_LAST.html -share/doc/libfwupdplugin/const.LID_STATE_LAST.html -share/doc/libfwupdplugin/const.MSGPACK_ITEM_KIND_LAST.html -share/doc/libfwupdplugin/const.OPROM_COMPRESSION_TYPE_LAST.html -share/doc/libfwupdplugin/const.OPROM_MACHINE_TYPE_LAST.html -share/doc/libfwupdplugin/const.OPROM_SUBSYSTEM_LAST.html -share/doc/libfwupdplugin/const.POWER_STATE_LAST.html -share/doc/libfwupdplugin/const.QUIRKS_ACQUIESCE_DELAY.html -share/doc/libfwupdplugin/const.QUIRKS_BATTERY_THRESHOLD.html -share/doc/libfwupdplugin/const.QUIRKS_BRANCH.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_BLOCK_SIZE.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_BLOCK_ERASE.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_CHIP_ERASE.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_PAGE_PROG.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_DATA.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_ID.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_ID_SZ.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_READ_STATUS.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_SECTOR_ERASE.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_WRITE_EN.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_CMD_WRITE_STATUS.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_PAGE_SIZE.html -share/doc/libfwupdplugin/const.QUIRKS_CFI_DEVICE_SECTOR_SIZE.html -share/doc/libfwupdplugin/const.QUIRKS_CHILDREN.html -share/doc/libfwupdplugin/const.QUIRKS_COUNTERPART_GUID.html -share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_GTYPE.html -share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE.html -share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE_MAX.html -share/doc/libfwupdplugin/const.QUIRKS_FIRMWARE_SIZE_MIN.html -share/doc/libfwupdplugin/const.QUIRKS_FLAGS.html -share/doc/libfwupdplugin/const.QUIRKS_GTYPE.html -share/doc/libfwupdplugin/const.QUIRKS_GUID.html -share/doc/libfwupdplugin/const.QUIRKS_GUID_QUIRK.html -share/doc/libfwupdplugin/const.QUIRKS_ICON.html -share/doc/libfwupdplugin/const.QUIRKS_INHIBIT.html -share/doc/libfwupdplugin/const.QUIRKS_INSTALL_DURATION.html -share/doc/libfwupdplugin/const.QUIRKS_ISSUE.html -share/doc/libfwupdplugin/const.QUIRKS_NAME.html -share/doc/libfwupdplugin/const.QUIRKS_PARENT_GUID.html -share/doc/libfwupdplugin/const.QUIRKS_PLUGIN.html -share/doc/libfwupdplugin/const.QUIRKS_PRIORITY.html -share/doc/libfwupdplugin/const.QUIRKS_PROTOCOL.html -share/doc/libfwupdplugin/const.QUIRKS_PROXY_GTYPE.html -share/doc/libfwupdplugin/const.QUIRKS_PROXY_GUID.html -share/doc/libfwupdplugin/const.QUIRKS_REMOVE_DELAY.html -share/doc/libfwupdplugin/const.QUIRKS_SUMMARY.html -share/doc/libfwupdplugin/const.QUIRKS_UPDATE_IMAGE.html -share/doc/libfwupdplugin/const.QUIRKS_UPDATE_MESSAGE.html -share/doc/libfwupdplugin/const.QUIRKS_VENDOR.html -share/doc/libfwupdplugin/const.QUIRKS_VENDOR_ID.html -share/doc/libfwupdplugin/const.QUIRKS_VERSION.html -share/doc/libfwupdplugin/const.QUIRKS_VERSION_FORMAT.html -share/doc/libfwupdplugin/const.SMBIOS_CHASSIS_KIND_LAST.html -share/doc/libfwupdplugin/const.SMBIOS_STRUCTURE_TYPE_LAST.html -share/doc/libfwupdplugin/const.UDEV_DEVICE_ATTR_READ_TIMEOUT_DEFAULT.html -share/doc/libfwupdplugin/const.USB_DEVICE_MS_DS20_DESC_LAST.html -share/doc/libfwupdplugin/const.USB_DIRECTION_LAST.html -share/doc/libfwupdplugin/const.USB_RECIPIENT_LAST.html -share/doc/libfwupdplugin/const.USB_REQUEST_TYPE_LAST.html -share/doc/libfwupdplugin/const.VOLUME_KIND_BDP.html -share/doc/libfwupdplugin/const.VOLUME_KIND_ESP.html -share/doc/libfwupdplugin/corsair-README.html -share/doc/libfwupdplugin/cpu-README.html -share/doc/libfwupdplugin/cros-ec-README.html -share/doc/libfwupdplugin/ctor.AcpiTable.new.html -share/doc/libfwupdplugin/ctor.Archive.new.html -share/doc/libfwupdplugin/ctor.Archive.new_stream.html -share/doc/libfwupdplugin/ctor.ArchiveFirmware.new.html -share/doc/libfwupdplugin/ctor.BiosSettings.new.html -share/doc/libfwupdplugin/ctor.CabFirmware.new.html -share/doc/libfwupdplugin/ctor.CabImage.new.html -share/doc/libfwupdplugin/ctor.CfiDevice.new.html -share/doc/libfwupdplugin/ctor.CfuOffer.new.html -share/doc/libfwupdplugin/ctor.CfuPayload.new.html -share/doc/libfwupdplugin/ctor.Chunk.bytes_new.html -share/doc/libfwupdplugin/ctor.Chunk.new.html -share/doc/libfwupdplugin/ctor.ChunkArray.new_from_bytes.html -share/doc/libfwupdplugin/ctor.ChunkArray.new_from_stream.html -share/doc/libfwupdplugin/ctor.ChunkArray.new_virtual.html -share/doc/libfwupdplugin/ctor.CompositeInputStream.new.html -share/doc/libfwupdplugin/ctor.Config.new.html -share/doc/libfwupdplugin/ctor.Context.new.html -share/doc/libfwupdplugin/ctor.CoswidFirmware.new.html -share/doc/libfwupdplugin/ctor.CsvEntry.new.html -share/doc/libfwupdplugin/ctor.CsvFirmware.new.html -share/doc/libfwupdplugin/ctor.Device.new.html -share/doc/libfwupdplugin/ctor.DeviceEvent.new.html -share/doc/libfwupdplugin/ctor.DeviceLocker.new.html -share/doc/libfwupdplugin/ctor.DeviceLocker.new_full.html -share/doc/libfwupdplugin/ctor.DeviceProgress.new.html -share/doc/libfwupdplugin/ctor.DfuFirmware.new.html -share/doc/libfwupdplugin/ctor.DfuseFirmware.new.html -share/doc/libfwupdplugin/ctor.Edid.new.html -share/doc/libfwupdplugin/ctor.EfiDevicePath.new.html -share/doc/libfwupdplugin/ctor.EfiDevicePathList.new.html -share/doc/libfwupdplugin/ctor.EfiFile.new.html -share/doc/libfwupdplugin/ctor.EfiFilesystem.new.html -share/doc/libfwupdplugin/ctor.EfiHardDriveDevicePath.new.html -share/doc/libfwupdplugin/ctor.EfiHardDriveDevicePath.new_from_volume.html -share/doc/libfwupdplugin/ctor.EfiLoadOption.new.html -share/doc/libfwupdplugin/ctor.EfiSection.new.html -share/doc/libfwupdplugin/ctor.EfiSignatureList.new.html -share/doc/libfwupdplugin/ctor.EfiVolume.new.html -share/doc/libfwupdplugin/ctor.EfiX509Device.new.html -share/doc/libfwupdplugin/ctor.Efivars.new.html -share/doc/libfwupdplugin/ctor.ElfFirmware.new.html -share/doc/libfwupdplugin/ctor.FdtFirmware.new.html -share/doc/libfwupdplugin/ctor.FdtImage.new.html -share/doc/libfwupdplugin/ctor.Firmware.new.html -share/doc/libfwupdplugin/ctor.Firmware.new_from_bytes.html -share/doc/libfwupdplugin/ctor.Firmware.new_from_gtypes.html -share/doc/libfwupdplugin/ctor.FitFirmware.new.html -share/doc/libfwupdplugin/ctor.FmapFirmware.new.html -share/doc/libfwupdplugin/ctor.HidDescriptor.new.html -share/doc/libfwupdplugin/ctor.HidReport.new.html -share/doc/libfwupdplugin/ctor.IOChannel.new_file.html -share/doc/libfwupdplugin/ctor.IOChannel.unix_new.html -share/doc/libfwupdplugin/ctor.IOChannel.virtual_new.html -share/doc/libfwupdplugin/ctor.IfdBios.new.html -share/doc/libfwupdplugin/ctor.IfdFirmware.new.html -share/doc/libfwupdplugin/ctor.IfdImage.new.html -share/doc/libfwupdplugin/ctor.IfwiCpdFirmware.new.html -share/doc/libfwupdplugin/ctor.IfwiFptFirmware.new.html -share/doc/libfwupdplugin/ctor.IhexFirmware.new.html -share/doc/libfwupdplugin/ctor.IntelThunderboltFirmware.new.html -share/doc/libfwupdplugin/ctor.IntelThunderboltNvm.new.html -share/doc/libfwupdplugin/ctor.KernelSearchPathLocker.new.html -share/doc/libfwupdplugin/ctor.LinearFirmware.new.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_array.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_binary.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_binary_stream.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_boolean.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_float.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_integer.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_map.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_nil.html -share/doc/libfwupdplugin/ctor.MsgpackItem.new_string.html -share/doc/libfwupdplugin/ctor.OpromFirmware.new.html -share/doc/libfwupdplugin/ctor.PartialInputStream.new.html -share/doc/libfwupdplugin/ctor.PefileFirmware.new.html -share/doc/libfwupdplugin/ctor.Pkcs7.new.html -share/doc/libfwupdplugin/ctor.Plugin.new.html -share/doc/libfwupdplugin/ctor.Plugin.new_from_gtype.html -share/doc/libfwupdplugin/ctor.Progress.new.html -share/doc/libfwupdplugin/ctor.Quirks.new.html -share/doc/libfwupdplugin/ctor.SbatlevelSection.new.html -share/doc/libfwupdplugin/ctor.SecurityAttr.new.html -share/doc/libfwupdplugin/ctor.SecurityAttrs.new.html -share/doc/libfwupdplugin/ctor.Smbios.new.html -share/doc/libfwupdplugin/ctor.SrecFirmware.new.html -share/doc/libfwupdplugin/ctor.UdevDevice.new.html -share/doc/libfwupdplugin/ctor.UefiDevice.new.html -share/doc/libfwupdplugin/ctor.UsbBosDescriptor.new.html -share/doc/libfwupdplugin/ctor.UsbConfigDescriptor.new.html -share/doc/libfwupdplugin/ctor.UsbDevice.new.html -share/doc/libfwupdplugin/ctor.UsbDeviceFwDs20.new.html -share/doc/libfwupdplugin/ctor.UsbDeviceMsDs20.new.html -share/doc/libfwupdplugin/ctor.UsbEndpoint.new.html -share/doc/libfwupdplugin/ctor.UsbHidDescriptor.new.html -share/doc/libfwupdplugin/ctor.UsbInterface.new.html -share/doc/libfwupdplugin/ctor.UswidFirmware.new.html -share/doc/libfwupdplugin/ctor.Volume.new_by_device.html -share/doc/libfwupdplugin/ctor.Volume.new_by_devnum.html -share/doc/libfwupdplugin/ctor.VolumeLocker.new.html -share/doc/libfwupdplugin/ctor.X509Certificate.new.html -share/doc/libfwupdplugin/dbxtool.html -share/doc/libfwupdplugin/debug_attached.png -share/doc/libfwupdplugin/debug_breakpoint.png -share/doc/libfwupdplugin/debug_task.png -share/doc/libfwupdplugin/debug_tool_selector.png -share/doc/libfwupdplugin/dell-README.html -share/doc/libfwupdplugin/dell-dock-README.html -share/doc/libfwupdplugin/dell-kestrel-README.html -share/doc/libfwupdplugin/device-emulation.html -share/doc/libfwupdplugin/devlink-README.html -share/doc/libfwupdplugin/dfu-README.html -share/doc/libfwupdplugin/ds20.html -share/doc/libfwupdplugin/ebitdo-README.html -share/doc/libfwupdplugin/egis-moc-README.html -share/doc/libfwupdplugin/elan-kbd-README.html -share/doc/libfwupdplugin/elanfp-README.html -share/doc/libfwupdplugin/elantp-README.html -share/doc/libfwupdplugin/emmc-README.html -share/doc/libfwupdplugin/enum.ArchiveCompression.html -share/doc/libfwupdplugin/enum.ArchiveFormat.html -share/doc/libfwupdplugin/enum.CabCompression.html -share/doc/libfwupdplugin/enum.CabFileAttribute.html -share/doc/libfwupdplugin/enum.CfiDeviceCmd.html -share/doc/libfwupdplugin/enum.CfuOfferComponentId.html -share/doc/libfwupdplugin/enum.CoffSubsystem.html -share/doc/libfwupdplugin/enum.ContextQuirkSource.html -share/doc/libfwupdplugin/enum.CoswidEntityRole.html -share/doc/libfwupdplugin/enum.CoswidHashAlg.html -share/doc/libfwupdplugin/enum.CoswidLinkRel.html -share/doc/libfwupdplugin/enum.CoswidTag.html -share/doc/libfwupdplugin/enum.CoswidVersionScheme.html -share/doc/libfwupdplugin/enum.CpuVendor.html -share/doc/libfwupdplugin/enum.CrcKind.html -share/doc/libfwupdplugin/enum.DisplayState.html -share/doc/libfwupdplugin/enum.EdidDescriptorTag.html -share/doc/libfwupdplugin/enum.EfiCompressionType.html -share/doc/libfwupdplugin/enum.EfiDevicePathType.html -share/doc/libfwupdplugin/enum.EfiFileAttrib.html -share/doc/libfwupdplugin/enum.EfiFileType.html -share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathPartitionFormat.html -share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathSignatureType.html -share/doc/libfwupdplugin/enum.EfiHardDriveDevicePathSubtype.html -share/doc/libfwupdplugin/enum.EfiLoadOptionAttrs.html -share/doc/libfwupdplugin/enum.EfiLoadOptionKind.html -share/doc/libfwupdplugin/enum.EfiLz77DecompressorVersion.html -share/doc/libfwupdplugin/enum.EfiSectionType.html -share/doc/libfwupdplugin/enum.EfiSignatureKind.html -share/doc/libfwupdplugin/enum.EfiVolumeExtEntryType.html -share/doc/libfwupdplugin/enum.ElfFileHeaderType.html -share/doc/libfwupdplugin/enum.ElfSectionHeaderType.html -share/doc/libfwupdplugin/enum.FdtToken.html -share/doc/libfwupdplugin/enum.FirmareSrecRecordKind.html -share/doc/libfwupdplugin/enum.FirmwareAlignment.html -share/doc/libfwupdplugin/enum.HidItemKind.html -share/doc/libfwupdplugin/enum.HidItemTag.html -share/doc/libfwupdplugin/enum.HidrawBusType.html -share/doc/libfwupdplugin/enum.IfdRegion.html -share/doc/libfwupdplugin/enum.IhexFirmwareRecordType.html -share/doc/libfwupdplugin/enum.IntegerBase.html -share/doc/libfwupdplugin/enum.IntelThunderboltNvmFamily.html -share/doc/libfwupdplugin/enum.IntelThunderboltNvmSection.html -share/doc/libfwupdplugin/enum.LidState.html -share/doc/libfwupdplugin/enum.MkhiArbhSvnInfoEntryUsageId.html -share/doc/libfwupdplugin/enum.MkhiCommand.html -share/doc/libfwupdplugin/enum.MkhiGroupId.html -share/doc/libfwupdplugin/enum.MkhiStatus.html -share/doc/libfwupdplugin/enum.MsgpackCmd.html -share/doc/libfwupdplugin/enum.MsgpackItemKind.html -share/doc/libfwupdplugin/enum.OpromCompressionType.html -share/doc/libfwupdplugin/enum.OpromIndicatorFlags.html -share/doc/libfwupdplugin/enum.OpromMachineType.html -share/doc/libfwupdplugin/enum.OpromSubsystem.html -share/doc/libfwupdplugin/enum.PathKind.html -share/doc/libfwupdplugin/enum.PciDeviceBaseCls.html -share/doc/libfwupdplugin/enum.PeCoffMachine.html -share/doc/libfwupdplugin/enum.PeCoffMagic.html -share/doc/libfwupdplugin/enum.PluginRule.html -share/doc/libfwupdplugin/enum.PluginVerifyFlags.html -share/doc/libfwupdplugin/enum.PowerState.html -share/doc/libfwupdplugin/enum.SmbiosChassisKind.html -share/doc/libfwupdplugin/enum.SmbiosStructureType.html -share/doc/libfwupdplugin/enum.UsbClass.html -share/doc/libfwupdplugin/enum.UsbDescriptorKind.html -share/doc/libfwupdplugin/enum.UsbDeviceMsDs20Desc.html -share/doc/libfwupdplugin/enum.UsbDirection.html -share/doc/libfwupdplugin/enum.UsbLangid.html -share/doc/libfwupdplugin/enum.UsbRecipient.html -share/doc/libfwupdplugin/enum.UsbRequestType.html -share/doc/libfwupdplugin/enum.UswidHeaderFlags.html -share/doc/libfwupdplugin/enum.UswidPayloadCompression.html -share/doc/libfwupdplugin/enum.V4lCap.html -share/doc/libfwupdplugin/env.html -share/doc/libfwupdplugin/ep963x-README.html -share/doc/libfwupdplugin/fastboot-README.html -share/doc/libfwupdplugin/flags.ArchiveFlags.html -share/doc/libfwupdplugin/flags.BackendSetupFlags.html -share/doc/libfwupdplugin/flags.ConfigLoadFlags.html -share/doc/libfwupdplugin/flags.ContextEspFileFlags.html -share/doc/libfwupdplugin/flags.ContextFlags.html -share/doc/libfwupdplugin/flags.ContextHwidFlags.html -share/doc/libfwupdplugin/flags.DeviceIncorporateFlags.html -share/doc/libfwupdplugin/flags.DeviceInstanceFlags.html -share/doc/libfwupdplugin/flags.DumpFlags.html -share/doc/libfwupdplugin/flags.FirmwareExportFlags.html -share/doc/libfwupdplugin/flags.FirmwareFlags.html -share/doc/libfwupdplugin/flags.FirmwareParseFlags.html -share/doc/libfwupdplugin/flags.HidDeviceFlags.html -share/doc/libfwupdplugin/flags.IOChannelFlags.html -share/doc/libfwupdplugin/flags.IfdAccess.html -share/doc/libfwupdplugin/flags.IntelThunderboltNvmSectionFlags.html -share/doc/libfwupdplugin/flags.IoChannelOpenFlags.html -share/doc/libfwupdplugin/flags.IoctlFlags.html -share/doc/libfwupdplugin/flags.ProgressFlags.html -share/doc/libfwupdplugin/flags.QuirksLoadFlags.html -share/doc/libfwupdplugin/flags.SecurityAttrsFlags.html -share/doc/libfwupdplugin/flags.UsbDeviceClaimFlags.html -share/doc/libfwupdplugin/flags.UtfConvertFlags.html -share/doc/libfwupdplugin/flashrom-README.html -share/doc/libfwupdplugin/focalfp-README.html -share/doc/libfwupdplugin/fonts.css -share/doc/libfwupdplugin/fpc-README.html -share/doc/libfwupdplugin/framework-qmk-README.html -share/doc/libfwupdplugin/fresco-pd-README.html -share/doc/libfwupdplugin/func.BIT_CLEAR.html -share/doc/libfwupdplugin/func.BIT_SET.html -share/doc/libfwupdplugin/func.byte_array_align_up.html -share/doc/libfwupdplugin/func.byte_array_append_bytes.html -share/doc/libfwupdplugin/func.byte_array_append_uint16.html -share/doc/libfwupdplugin/func.byte_array_append_uint24.html -share/doc/libfwupdplugin/func.byte_array_append_uint32.html -share/doc/libfwupdplugin/func.byte_array_append_uint64.html -share/doc/libfwupdplugin/func.byte_array_append_uint8.html -share/doc/libfwupdplugin/func.byte_array_compare.html -share/doc/libfwupdplugin/func.byte_array_from_string.html -share/doc/libfwupdplugin/func.byte_array_set_size.html -share/doc/libfwupdplugin/func.byte_array_to_string.html -share/doc/libfwupdplugin/func.bytes_align.html -share/doc/libfwupdplugin/func.bytes_compare.html -share/doc/libfwupdplugin/func.bytes_from_string.html -share/doc/libfwupdplugin/func.bytes_get_contents.html -share/doc/libfwupdplugin/func.bytes_get_data_safe.html -share/doc/libfwupdplugin/func.bytes_is_empty.html -share/doc/libfwupdplugin/func.bytes_new_offset.html -share/doc/libfwupdplugin/func.bytes_pad.html -share/doc/libfwupdplugin/func.bytes_set_contents.html -share/doc/libfwupdplugin/func.bytes_to_string.html -share/doc/libfwupdplugin/func.cab_compression_to_string.html -share/doc/libfwupdplugin/func.coff_subsystem_to_string.html -share/doc/libfwupdplugin/func.common_align_up.html -share/doc/libfwupdplugin/func.common_get_kernel_cmdline.html -share/doc/libfwupdplugin/func.common_get_memory_size.html -share/doc/libfwupdplugin/func.common_get_olson_timezone_id.html -share/doc/libfwupdplugin/func.common_guid_is_plausible.html -share/doc/libfwupdplugin/func.coswid_entity_role_from_string.html -share/doc/libfwupdplugin/func.coswid_entity_role_to_string.html -share/doc/libfwupdplugin/func.coswid_hash_alg_from_string.html -share/doc/libfwupdplugin/func.coswid_hash_alg_to_string.html -share/doc/libfwupdplugin/func.coswid_link_rel_from_string.html -share/doc/libfwupdplugin/func.coswid_link_rel_to_string.html -share/doc/libfwupdplugin/func.coswid_tag_from_string.html -share/doc/libfwupdplugin/func.coswid_tag_to_string.html -share/doc/libfwupdplugin/func.coswid_version_scheme_from_string.html -share/doc/libfwupdplugin/func.coswid_version_scheme_to_string.html -share/doc/libfwupdplugin/func.cpu_get_attrs.html -share/doc/libfwupdplugin/func.cpu_get_vendor.html -share/doc/libfwupdplugin/func.cpuid.html -share/doc/libfwupdplugin/func.crc16.html -share/doc/libfwupdplugin/func.crc16_bytes.html -share/doc/libfwupdplugin/func.crc32.html -share/doc/libfwupdplugin/func.crc32_bytes.html -share/doc/libfwupdplugin/func.crc8.html -share/doc/libfwupdplugin/func.crc8_bytes.html -share/doc/libfwupdplugin/func.crc_find.html -share/doc/libfwupdplugin/func.crc_misr16.html -share/doc/libfwupdplugin/func.device_add_checksum.html -share/doc/libfwupdplugin/func.device_add_icon.html -share/doc/libfwupdplugin/func.device_add_issue.html -share/doc/libfwupdplugin/func.device_add_protocol.html -share/doc/libfwupdplugin/func.device_add_release.html -share/doc/libfwupdplugin/func.device_add_request_flag.html -share/doc/libfwupdplugin/func.device_add_vendor_id.html -share/doc/libfwupdplugin/func.device_get_branch.html -share/doc/libfwupdplugin/func.device_get_checksums.html -share/doc/libfwupdplugin/func.device_get_composite_id.html -share/doc/libfwupdplugin/func.device_get_flags.html -share/doc/libfwupdplugin/func.device_get_flashes_left.html -share/doc/libfwupdplugin/func.device_get_guid_default.html -share/doc/libfwupdplugin/func.device_get_guids.html -share/doc/libfwupdplugin/func.device_get_icons.html -share/doc/libfwupdplugin/func.device_get_id.html -share/doc/libfwupdplugin/func.device_get_install_duration.html -share/doc/libfwupdplugin/func.device_get_instance_ids.html -share/doc/libfwupdplugin/func.device_get_issues.html -share/doc/libfwupdplugin/func.device_get_name.html -share/doc/libfwupdplugin/func.device_get_percentage.html -share/doc/libfwupdplugin/func.device_get_plugin.html -share/doc/libfwupdplugin/func.device_get_protocols.html -share/doc/libfwupdplugin/func.device_get_release_default.html -share/doc/libfwupdplugin/func.device_get_serial.html -share/doc/libfwupdplugin/func.device_get_status.html -share/doc/libfwupdplugin/func.device_get_summary.html -share/doc/libfwupdplugin/func.device_get_update_error.html -share/doc/libfwupdplugin/func.device_get_update_state.html -share/doc/libfwupdplugin/func.device_get_vendor.html -share/doc/libfwupdplugin/func.device_get_vendor_ids.html -share/doc/libfwupdplugin/func.device_get_version.html -share/doc/libfwupdplugin/func.device_get_version_bootloader.html -share/doc/libfwupdplugin/func.device_get_version_bootloader_raw.html -share/doc/libfwupdplugin/func.device_get_version_build_date.html -share/doc/libfwupdplugin/func.device_get_version_format.html -share/doc/libfwupdplugin/func.device_get_version_lowest.html -share/doc/libfwupdplugin/func.device_get_version_lowest_raw.html -share/doc/libfwupdplugin/func.device_get_version_raw.html -share/doc/libfwupdplugin/func.device_has_checksum.html -share/doc/libfwupdplugin/func.device_has_flag.html -share/doc/libfwupdplugin/func.device_has_icon.html -share/doc/libfwupdplugin/func.device_has_protocol.html -share/doc/libfwupdplugin/func.device_has_request_flag.html -share/doc/libfwupdplugin/func.device_has_vendor_id.html -share/doc/libfwupdplugin/func.device_set_branch.html -share/doc/libfwupdplugin/func.device_set_description.html -share/doc/libfwupdplugin/func.device_set_flags.html -share/doc/libfwupdplugin/func.device_set_flashes_left.html -share/doc/libfwupdplugin/func.device_set_install_duration.html -share/doc/libfwupdplugin/func.device_set_percentage.html -share/doc/libfwupdplugin/func.device_set_plugin.html -share/doc/libfwupdplugin/func.device_set_serial.html -share/doc/libfwupdplugin/func.device_set_status.html -share/doc/libfwupdplugin/func.device_set_summary.html -share/doc/libfwupdplugin/func.device_set_update_error.html -share/doc/libfwupdplugin/func.device_set_version_bootloader_raw.html -share/doc/libfwupdplugin/func.device_set_version_build_date.html -share/doc/libfwupdplugin/func.display_state_from_string.html -share/doc/libfwupdplugin/func.display_state_to_string.html -share/doc/libfwupdplugin/func.dump_bytes.html -share/doc/libfwupdplugin/func.dump_full.html -share/doc/libfwupdplugin/func.dump_raw.html -share/doc/libfwupdplugin/func.efi_guid_to_name.html -share/doc/libfwupdplugin/func.efi_lz77_decompressor_version_to_string.html -share/doc/libfwupdplugin/func.efi_parse_sections.html -share/doc/libfwupdplugin/func.elf_section_header_type_to_string.html -share/doc/libfwupdplugin/func.error_convert.html -share/doc/libfwupdplugin/func.hid_item_kind_to_string.html -share/doc/libfwupdplugin/func.hid_item_tag_from_string.html -share/doc/libfwupdplugin/func.hid_item_tag_to_string.html -share/doc/libfwupdplugin/func.hidraw_bus_type_to_string.html -share/doc/libfwupdplugin/func.ifd_access_to_string.html -share/doc/libfwupdplugin/func.ifd_region_to_string.html -share/doc/libfwupdplugin/func.input_stream_chunkify.html -share/doc/libfwupdplugin/func.input_stream_compute_checksum.html -share/doc/libfwupdplugin/func.input_stream_compute_crc16.html -share/doc/libfwupdplugin/func.input_stream_compute_crc32.html -share/doc/libfwupdplugin/func.input_stream_compute_sum16.html -share/doc/libfwupdplugin/func.input_stream_compute_sum32.html -share/doc/libfwupdplugin/func.input_stream_compute_sum8.html -share/doc/libfwupdplugin/func.input_stream_find.html -share/doc/libfwupdplugin/func.input_stream_from_path.html -share/doc/libfwupdplugin/func.input_stream_read_byte_array.html -share/doc/libfwupdplugin/func.input_stream_read_bytes.html -share/doc/libfwupdplugin/func.input_stream_read_safe.html -share/doc/libfwupdplugin/func.input_stream_read_string.html -share/doc/libfwupdplugin/func.input_stream_read_u16.html -share/doc/libfwupdplugin/func.input_stream_read_u24.html -share/doc/libfwupdplugin/func.input_stream_read_u32.html -share/doc/libfwupdplugin/func.input_stream_read_u64.html -share/doc/libfwupdplugin/func.input_stream_read_u8.html -share/doc/libfwupdplugin/func.input_stream_size.html -share/doc/libfwupdplugin/func.kenv_get_string.html -share/doc/libfwupdplugin/func.kernel_add_cmdline_arg.html -share/doc/libfwupdplugin/func.kernel_check_cmdline_mutable.html -share/doc/libfwupdplugin/func.kernel_check_version.html -share/doc/libfwupdplugin/func.kernel_get_cmdline.html -share/doc/libfwupdplugin/func.kernel_get_config.html -share/doc/libfwupdplugin/func.kernel_locked_down.html -share/doc/libfwupdplugin/func.kernel_parse_cmdline.html -share/doc/libfwupdplugin/func.kernel_parse_config.html -share/doc/libfwupdplugin/func.kernel_remove_cmdline_arg.html -share/doc/libfwupdplugin/func.lid_state_to_string.html -share/doc/libfwupdplugin/func.memchk_read.html -share/doc/libfwupdplugin/func.memchk_write.html -share/doc/libfwupdplugin/func.memcmp_safe.html -share/doc/libfwupdplugin/func.memcpy_safe.html -share/doc/libfwupdplugin/func.memdup_safe.html -share/doc/libfwupdplugin/func.memmem_safe.html -share/doc/libfwupdplugin/func.memread_uint16.html -share/doc/libfwupdplugin/func.memread_uint16_safe.html -share/doc/libfwupdplugin/func.memread_uint24.html -share/doc/libfwupdplugin/func.memread_uint24_safe.html -share/doc/libfwupdplugin/func.memread_uint32.html -share/doc/libfwupdplugin/func.memread_uint32_safe.html -share/doc/libfwupdplugin/func.memread_uint64.html -share/doc/libfwupdplugin/func.memread_uint64_safe.html -share/doc/libfwupdplugin/func.memread_uint8_safe.html -share/doc/libfwupdplugin/func.memstrsafe.html -share/doc/libfwupdplugin/func.memwrite_uint16.html -share/doc/libfwupdplugin/func.memwrite_uint16_safe.html -share/doc/libfwupdplugin/func.memwrite_uint24.html -share/doc/libfwupdplugin/func.memwrite_uint32.html -share/doc/libfwupdplugin/func.memwrite_uint32_safe.html -share/doc/libfwupdplugin/func.memwrite_uint64.html -share/doc/libfwupdplugin/func.memwrite_uint64_safe.html -share/doc/libfwupdplugin/func.memwrite_uint8_safe.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_request_new.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_get_num_entries.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_get_result.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_get_info_response_parse.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_executing.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_min_allowed.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_get_usage_id.html -share/doc/libfwupdplugin/func.mkhi_arbh_svn_info_entry_parse.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_new.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_data_size.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_file_id.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_request_set_flags.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_get_data_size.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_get_result.html -share/doc/libfwupdplugin/func.mkhi_read_file_ex_response_parse.html -share/doc/libfwupdplugin/func.mkhi_read_file_request_new.html -share/doc/libfwupdplugin/func.mkhi_read_file_request_set_data_size.html -share/doc/libfwupdplugin/func.mkhi_read_file_request_set_filename.html -share/doc/libfwupdplugin/func.mkhi_read_file_request_set_flags.html -share/doc/libfwupdplugin/func.mkhi_read_file_response_get_data_size.html -share/doc/libfwupdplugin/func.mkhi_read_file_response_get_result.html -share/doc/libfwupdplugin/func.mkhi_read_file_response_parse.html -share/doc/libfwupdplugin/func.mkhi_status_to_string.html -share/doc/libfwupdplugin/func.output_stream_from_path.html -share/doc/libfwupdplugin/func.output_stream_write_bytes.html -share/doc/libfwupdplugin/func.path_find_program.html -share/doc/libfwupdplugin/func.path_from_kind.html -share/doc/libfwupdplugin/func.path_get_files.html -share/doc/libfwupdplugin/func.path_get_symlink_target.html -share/doc/libfwupdplugin/func.path_glob.html -share/doc/libfwupdplugin/func.path_make_absolute.html -share/doc/libfwupdplugin/func.path_mkdir.html -share/doc/libfwupdplugin/func.path_mkdir_parent.html -share/doc/libfwupdplugin/func.path_rmtree.html -share/doc/libfwupdplugin/func.plugin_add_flag.html -share/doc/libfwupdplugin/func.plugin_get_flags.html -share/doc/libfwupdplugin/func.plugin_has_flag.html -share/doc/libfwupdplugin/func.plugin_remove_flag.html -share/doc/libfwupdplugin/func.power_state_is_ac.html -share/doc/libfwupdplugin/func.power_state_to_string.html -share/doc/libfwupdplugin/func.snap_is_in_snap.html -share/doc/libfwupdplugin/func.strdup.html -share/doc/libfwupdplugin/func.strjoin.html -share/doc/libfwupdplugin/func.strpassmask.html -share/doc/libfwupdplugin/func.strsafe.html -share/doc/libfwupdplugin/func.strsafe_bytes.html -share/doc/libfwupdplugin/func.strsplit.html -share/doc/libfwupdplugin/func.strsplit_bytes.html -share/doc/libfwupdplugin/func.strsplit_full.html -share/doc/libfwupdplugin/func.strsplit_stream.html -share/doc/libfwupdplugin/func.strstrip.html -share/doc/libfwupdplugin/func.strtobool.html -share/doc/libfwupdplugin/func.strtoll.html -share/doc/libfwupdplugin/func.strtoull.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_checksum.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_length.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_id.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_revision.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_oem_table_id.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_revision.html -share/doc/libfwupdplugin/func.struct_acpi_table_get_signature.html -share/doc/libfwupdplugin/func.struct_acpi_table_new.html -share/doc/libfwupdplugin/func.struct_acpi_table_parse_stream.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_checksum.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_length.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_id.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_revision.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_oem_table_id.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_revision.html -share/doc/libfwupdplugin/func.struct_acpi_table_set_signature.html -share/doc/libfwupdplugin/func.struct_cab_data_get_checksum.html -share/doc/libfwupdplugin/func.struct_cab_data_get_comp.html -share/doc/libfwupdplugin/func.struct_cab_data_get_uncomp.html -share/doc/libfwupdplugin/func.struct_cab_data_new.html -share/doc/libfwupdplugin/func.struct_cab_data_parse_stream.html -share/doc/libfwupdplugin/func.struct_cab_data_set_checksum.html -share/doc/libfwupdplugin/func.struct_cab_data_set_comp.html -share/doc/libfwupdplugin/func.struct_cab_data_set_uncomp.html -share/doc/libfwupdplugin/func.struct_cab_file_get_date.html -share/doc/libfwupdplugin/func.struct_cab_file_get_fattr.html -share/doc/libfwupdplugin/func.struct_cab_file_get_index.html -share/doc/libfwupdplugin/func.struct_cab_file_get_time.html -share/doc/libfwupdplugin/func.struct_cab_file_get_uoffset.html -share/doc/libfwupdplugin/func.struct_cab_file_get_usize.html -share/doc/libfwupdplugin/func.struct_cab_file_new.html -share/doc/libfwupdplugin/func.struct_cab_file_parse_stream.html -share/doc/libfwupdplugin/func.struct_cab_file_set_date.html -share/doc/libfwupdplugin/func.struct_cab_file_set_fattr.html -share/doc/libfwupdplugin/func.struct_cab_file_set_index.html -share/doc/libfwupdplugin/func.struct_cab_file_set_time.html -share/doc/libfwupdplugin/func.struct_cab_file_set_uoffset.html -share/doc/libfwupdplugin/func.struct_cab_file_set_usize.html -share/doc/libfwupdplugin/func.struct_cab_folder_get_compression.html -share/doc/libfwupdplugin/func.struct_cab_folder_get_ndatab.html -share/doc/libfwupdplugin/func.struct_cab_folder_get_offset.html -share/doc/libfwupdplugin/func.struct_cab_folder_new.html -share/doc/libfwupdplugin/func.struct_cab_folder_parse_stream.html -share/doc/libfwupdplugin/func.struct_cab_folder_set_compression.html -share/doc/libfwupdplugin/func.struct_cab_folder_set_ndatab.html -share/doc/libfwupdplugin/func.struct_cab_folder_set_offset.html -share/doc/libfwupdplugin/func.struct_cab_header_get_flags.html -share/doc/libfwupdplugin/func.struct_cab_header_get_idx_cabinet.html -share/doc/libfwupdplugin/func.struct_cab_header_get_nr_files.html -share/doc/libfwupdplugin/func.struct_cab_header_get_nr_folders.html -share/doc/libfwupdplugin/func.struct_cab_header_get_off_cffile.html -share/doc/libfwupdplugin/func.struct_cab_header_get_set_id.html -share/doc/libfwupdplugin/func.struct_cab_header_get_size.html -share/doc/libfwupdplugin/func.struct_cab_header_new.html -share/doc/libfwupdplugin/func.struct_cab_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_block.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_folder.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_get_rsvd_hdr.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_new.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_parse_stream.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_block.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_folder.html -share/doc/libfwupdplugin/func.struct_cab_header_reserve_set_rsvd_hdr.html -share/doc/libfwupdplugin/func.struct_cab_header_set_flags.html -share/doc/libfwupdplugin/func.struct_cab_header_set_idx_cabinet.html -share/doc/libfwupdplugin/func.struct_cab_header_set_nr_files.html -share/doc/libfwupdplugin/func.struct_cab_header_set_nr_folders.html -share/doc/libfwupdplugin/func.struct_cab_header_set_off_cffile.html -share/doc/libfwupdplugin/func.struct_cab_header_set_set_id.html -share/doc/libfwupdplugin/func.struct_cab_header_set_size.html -share/doc/libfwupdplugin/func.struct_cab_header_validate_stream.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_compat_variant_mask.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_component_id.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags1.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags2.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_flags3.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_product_id.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_segment_number.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_token.html -share/doc/libfwupdplugin/func.struct_cfu_offer_get_version.html -share/doc/libfwupdplugin/func.struct_cfu_offer_new.html -share/doc/libfwupdplugin/func.struct_cfu_offer_parse_stream.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_compat_variant_mask.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_component_id.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags1.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags2.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_flags3.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_product_id.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_segment_number.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_token.html -share/doc/libfwupdplugin/func.struct_cfu_offer_set_version.html -share/doc/libfwupdplugin/func.struct_cfu_payload_get_addr.html -share/doc/libfwupdplugin/func.struct_cfu_payload_get_size.html -share/doc/libfwupdplugin/func.struct_cfu_payload_new.html -share/doc/libfwupdplugin/func.struct_cfu_payload_parse_stream.html -share/doc/libfwupdplugin/func.struct_cfu_payload_set_addr.html -share/doc/libfwupdplugin/func.struct_cfu_payload_set_size.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_crc.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_len.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_pid.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_release.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_ver.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_get_vid.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_new.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_parse_stream.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_crc.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_len.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_pid.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_release.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_ver.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_set_vid.html -share/doc/libfwupdplugin/func.struct_dfu_ftr_validate_stream.html -share/doc/libfwupdplugin/func.struct_dfuse_element_get_address.html -share/doc/libfwupdplugin/func.struct_dfuse_element_get_size.html -share/doc/libfwupdplugin/func.struct_dfuse_element_new.html -share/doc/libfwupdplugin/func.struct_dfuse_element_parse_stream.html -share/doc/libfwupdplugin/func.struct_dfuse_element_set_address.html -share/doc/libfwupdplugin/func.struct_dfuse_element_set_size.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_get_image_size.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_get_targets.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_new.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_parse_stream.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_set_image_size.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_set_targets.html -share/doc/libfwupdplugin/func.struct_dfuse_hdr_validate_stream.html -share/doc/libfwupdplugin/func.struct_dfuse_image_get_alt_setting.html -share/doc/libfwupdplugin/func.struct_dfuse_image_get_chunks.html -share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_name.html -share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_named.html -share/doc/libfwupdplugin/func.struct_dfuse_image_get_target_size.html -share/doc/libfwupdplugin/func.struct_dfuse_image_new.html -share/doc/libfwupdplugin/func.struct_dfuse_image_parse_stream.html -share/doc/libfwupdplugin/func.struct_dfuse_image_set_alt_setting.html -share/doc/libfwupdplugin/func.struct_dfuse_image_set_chunks.html -share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_name.html -share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_named.html -share/doc/libfwupdplugin/func.struct_dfuse_image_set_target_size.html -share/doc/libfwupdplugin/func.struct_dfuse_image_validate.html -share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_dev_id.html -share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_fw_ver.html -share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_hw_rev.html -share/doc/libfwupdplugin/func.struct_dpaux_dpcd_get_ieee_oui.html -share/doc/libfwupdplugin/func.struct_dpaux_dpcd_parse.html -share/doc/libfwupdplugin/func.struct_ds20_get_alt_code.html -share/doc/libfwupdplugin/func.struct_ds20_get_guid.html -share/doc/libfwupdplugin/func.struct_ds20_get_platform_ver.html -share/doc/libfwupdplugin/func.struct_ds20_get_total_length.html -share/doc/libfwupdplugin/func.struct_ds20_get_vendor_code.html -share/doc/libfwupdplugin/func.struct_ds20_new.html -share/doc/libfwupdplugin/func.struct_ds20_parse_stream.html -share/doc/libfwupdplugin/func.struct_ds20_set_alt_code.html -share/doc/libfwupdplugin/func.struct_ds20_set_guid.html -share/doc/libfwupdplugin/func.struct_ds20_set_platform_ver.html -share/doc/libfwupdplugin/func.struct_ds20_set_total_length.html -share/doc/libfwupdplugin/func.struct_ds20_set_vendor_code.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_get_data.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_get_kind.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_get_subkind.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_get_tag.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_new.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_parse_stream.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_set_data.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_set_kind.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_set_subkind.html -share/doc/libfwupdplugin/func.struct_edid_descriptor_set_tag.html -share/doc/libfwupdplugin/func.struct_edid_get_checksum.html -share/doc/libfwupdplugin/func.struct_edid_get_data_blocks.html -share/doc/libfwupdplugin/func.struct_edid_get_extension_block_count.html -share/doc/libfwupdplugin/func.struct_edid_get_manufacturer_name.html -share/doc/libfwupdplugin/func.struct_edid_get_product_code.html -share/doc/libfwupdplugin/func.struct_edid_get_revision_number.html -share/doc/libfwupdplugin/func.struct_edid_get_serial_number.html -share/doc/libfwupdplugin/func.struct_edid_get_week_of_manufacture.html -share/doc/libfwupdplugin/func.struct_edid_get_year_of_manufacture.html -share/doc/libfwupdplugin/func.struct_edid_new.html -share/doc/libfwupdplugin/func.struct_edid_parse_stream.html -share/doc/libfwupdplugin/func.struct_edid_set_checksum.html -share/doc/libfwupdplugin/func.struct_edid_set_data_blocks.html -share/doc/libfwupdplugin/func.struct_edid_set_extension_block_count.html -share/doc/libfwupdplugin/func.struct_edid_set_manufacturer_name.html -share/doc/libfwupdplugin/func.struct_edid_set_product_code.html -share/doc/libfwupdplugin/func.struct_edid_set_revision_number.html -share/doc/libfwupdplugin/func.struct_edid_set_serial_number.html -share/doc/libfwupdplugin/func.struct_edid_set_week_of_manufacture.html -share/doc/libfwupdplugin/func.struct_edid_set_year_of_manufacture.html -share/doc/libfwupdplugin/func.struct_efi_device_path_get_length.html -share/doc/libfwupdplugin/func.struct_efi_device_path_get_subtype.html -share/doc/libfwupdplugin/func.struct_efi_device_path_get_type.html -share/doc/libfwupdplugin/func.struct_efi_device_path_new.html -share/doc/libfwupdplugin/func.struct_efi_device_path_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_device_path_set_length.html -share/doc/libfwupdplugin/func.struct_efi_device_path_set_subtype.html -share/doc/libfwupdplugin/func.struct_efi_device_path_set_type.html -share/doc/libfwupdplugin/func.struct_efi_file2_get_extended_size.html -share/doc/libfwupdplugin/func.struct_efi_file2_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_file_get_attrs.html -share/doc/libfwupdplugin/func.struct_efi_file_get_data_checksum.html -share/doc/libfwupdplugin/func.struct_efi_file_get_hdr_checksum.html -share/doc/libfwupdplugin/func.struct_efi_file_get_name.html -share/doc/libfwupdplugin/func.struct_efi_file_get_size.html -share/doc/libfwupdplugin/func.struct_efi_file_get_state.html -share/doc/libfwupdplugin/func.struct_efi_file_get_type.html -share/doc/libfwupdplugin/func.struct_efi_file_new.html -share/doc/libfwupdplugin/func.struct_efi_file_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_file_set_attrs.html -share/doc/libfwupdplugin/func.struct_efi_file_set_data_checksum.html -share/doc/libfwupdplugin/func.struct_efi_file_set_hdr_checksum.html -share/doc/libfwupdplugin/func.struct_efi_file_set_name.html -share/doc/libfwupdplugin/func.struct_efi_file_set_size.html -share/doc/libfwupdplugin/func.struct_efi_file_set_state.html -share/doc/libfwupdplugin/func.struct_efi_file_set_type.html -share/doc/libfwupdplugin/func.struct_efi_file_validate.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_format.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_number.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_signature.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_size.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_partition_start.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_signature_type.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_get_subtype.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_new.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_format.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_number.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_signature.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_size.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_partition_start.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_signature_type.html -share/doc/libfwupdplugin/func.struct_efi_hard_drive_device_path_set_subtype.html -share/doc/libfwupdplugin/func.struct_efi_load_option_get_attrs.html -share/doc/libfwupdplugin/func.struct_efi_load_option_get_dp_size.html -share/doc/libfwupdplugin/func.struct_efi_load_option_new.html -share/doc/libfwupdplugin/func.struct_efi_load_option_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_load_option_set_attrs.html -share/doc/libfwupdplugin/func.struct_efi_load_option_set_dp_size.html -share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_get_dst_size.html -share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_get_src_size.html -share/doc/libfwupdplugin/func.struct_efi_lz77_decompressor_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section2_get_extended_size.html -share/doc/libfwupdplugin/func.struct_efi_section2_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section_compression_get_compression_type.html -share/doc/libfwupdplugin/func.struct_efi_section_compression_get_uncompressed_length.html -share/doc/libfwupdplugin/func.struct_efi_section_compression_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section_freeform_subtype_guid_get_guid.html -share/doc/libfwupdplugin/func.struct_efi_section_freeform_subtype_guid_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section_get_size.html -share/doc/libfwupdplugin/func.struct_efi_section_get_type.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_attr.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_name.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_get_offset.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_new.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_attr.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_name.html -share/doc/libfwupdplugin/func.struct_efi_section_guid_defined_set_offset.html -share/doc/libfwupdplugin/func.struct_efi_section_new.html -share/doc/libfwupdplugin/func.struct_efi_section_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_section_set_size.html -share/doc/libfwupdplugin/func.struct_efi_section_set_type.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_get_header_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_get_list_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_get_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_get_type.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_new.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_set_header_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_set_list_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_set_size.html -share/doc/libfwupdplugin/func.struct_efi_signature_list_set_type.html -share/doc/libfwupdplugin/func.struct_efi_time_get_day.html -share/doc/libfwupdplugin/func.struct_efi_time_get_daylight.html -share/doc/libfwupdplugin/func.struct_efi_time_get_hour.html -share/doc/libfwupdplugin/func.struct_efi_time_get_minute.html -share/doc/libfwupdplugin/func.struct_efi_time_get_month.html -share/doc/libfwupdplugin/func.struct_efi_time_get_nanosecond.html -share/doc/libfwupdplugin/func.struct_efi_time_get_second.html -share/doc/libfwupdplugin/func.struct_efi_time_get_timezone.html -share/doc/libfwupdplugin/func.struct_efi_time_get_year.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_get_auth_info.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_get_timestamp.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_new.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_set_auth_info.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_set_timestamp.html -share/doc/libfwupdplugin/func.struct_efi_variable_authentication2_validate_stream.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_get_length.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_get_num_blocks.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_new.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_set_length.html -share/doc/libfwupdplugin/func.struct_efi_volume_block_map_set_num_blocks.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_get_size.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_get_type.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_entry_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_get_fv_name.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_get_size.html -share/doc/libfwupdplugin/func.struct_efi_volume_ext_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_attrs.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_checksum.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_ext_hdr.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_guid.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_hdr_len.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_length.html -share/doc/libfwupdplugin/func.struct_efi_volume_get_zero_vector.html -share/doc/libfwupdplugin/func.struct_efi_volume_new.html -share/doc/libfwupdplugin/func.struct_efi_volume_parse_stream.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_attrs.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_checksum.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_ext_hdr.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_guid.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_hdr_len.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_length.html -share/doc/libfwupdplugin/func.struct_efi_volume_set_zero_vector.html -share/doc/libfwupdplugin/func.struct_efi_volume_validate_stream.html -share/doc/libfwupdplugin/func.struct_efi_win_certificate_get_length.html -share/doc/libfwupdplugin/func.struct_efi_win_certificate_set_length.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ehsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ei_abiversion.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_ei_osabi.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_entry.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_flags.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_machine.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phentsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phnum.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_phoff.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shentsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shnum.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shoff.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_shstrndx.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_get_type.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_new.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_parse_stream.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ehsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ei_abiversion.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_ei_osabi.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_entry.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_flags.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_machine.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phentsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phnum.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_phoff.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shentsize.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shnum.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shoff.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_shstrndx.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_set_type.html -share/doc/libfwupdplugin/func.struct_elf_file_header64le_validate_stream.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_align.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_filesz.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_flags.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_flags2.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_memsz.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_offset.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_paddr.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_get_vaddr.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_new.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_parse_stream.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_align.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_filesz.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_flags.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_flags2.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_memsz.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_offset.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_paddr.html -share/doc/libfwupdplugin/func.struct_elf_program_header64le_set_vaddr.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_addr.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_addralign.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_entsize.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_flags.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_info.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_link.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_name.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_offset.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_size.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_get_type.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_new.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_parse_stream.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_addr.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_addralign.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_entsize.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_flags.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_info.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_link.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_name.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_offset.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_size.html -share/doc/libfwupdplugin/func.struct_elf_section_header64le_set_type.html -share/doc/libfwupdplugin/func.struct_fdt_get_boot_cpuid_phys.html -share/doc/libfwupdplugin/func.struct_fdt_get_last_comp_version.html -share/doc/libfwupdplugin/func.struct_fdt_get_off_dt_strings.html -share/doc/libfwupdplugin/func.struct_fdt_get_off_dt_struct.html -share/doc/libfwupdplugin/func.struct_fdt_get_off_mem_rsvmap.html -share/doc/libfwupdplugin/func.struct_fdt_get_size_dt_strings.html -share/doc/libfwupdplugin/func.struct_fdt_get_size_dt_struct.html -share/doc/libfwupdplugin/func.struct_fdt_get_totalsize.html -share/doc/libfwupdplugin/func.struct_fdt_get_version.html -share/doc/libfwupdplugin/func.struct_fdt_new.html -share/doc/libfwupdplugin/func.struct_fdt_parse_stream.html -share/doc/libfwupdplugin/func.struct_fdt_prop_get_len.html -share/doc/libfwupdplugin/func.struct_fdt_prop_get_nameoff.html -share/doc/libfwupdplugin/func.struct_fdt_prop_new.html -share/doc/libfwupdplugin/func.struct_fdt_prop_parse.html -share/doc/libfwupdplugin/func.struct_fdt_prop_set_len.html -share/doc/libfwupdplugin/func.struct_fdt_prop_set_nameoff.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_get_address.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_get_size.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_new.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_parse_stream.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_set_address.html -share/doc/libfwupdplugin/func.struct_fdt_reserve_entry_set_size.html -share/doc/libfwupdplugin/func.struct_fdt_set_boot_cpuid_phys.html -share/doc/libfwupdplugin/func.struct_fdt_set_last_comp_version.html -share/doc/libfwupdplugin/func.struct_fdt_set_off_dt_strings.html -share/doc/libfwupdplugin/func.struct_fdt_set_off_dt_struct.html -share/doc/libfwupdplugin/func.struct_fdt_set_off_mem_rsvmap.html -share/doc/libfwupdplugin/func.struct_fdt_set_size_dt_strings.html -share/doc/libfwupdplugin/func.struct_fdt_set_size_dt_struct.html -share/doc/libfwupdplugin/func.struct_fdt_set_totalsize.html -share/doc/libfwupdplugin/func.struct_fdt_set_version.html -share/doc/libfwupdplugin/func.struct_fdt_validate_stream.html -share/doc/libfwupdplugin/func.struct_fmap_area_get_flags.html -share/doc/libfwupdplugin/func.struct_fmap_area_get_name.html -share/doc/libfwupdplugin/func.struct_fmap_area_get_offset.html -share/doc/libfwupdplugin/func.struct_fmap_area_get_size.html -share/doc/libfwupdplugin/func.struct_fmap_area_new.html -share/doc/libfwupdplugin/func.struct_fmap_area_parse_stream.html -share/doc/libfwupdplugin/func.struct_fmap_area_set_flags.html -share/doc/libfwupdplugin/func.struct_fmap_area_set_name.html -share/doc/libfwupdplugin/func.struct_fmap_area_set_offset.html -share/doc/libfwupdplugin/func.struct_fmap_area_set_size.html -share/doc/libfwupdplugin/func.struct_fmap_get_base.html -share/doc/libfwupdplugin/func.struct_fmap_get_name.html -share/doc/libfwupdplugin/func.struct_fmap_get_nareas.html -share/doc/libfwupdplugin/func.struct_fmap_get_size.html -share/doc/libfwupdplugin/func.struct_fmap_get_ver_major.html -share/doc/libfwupdplugin/func.struct_fmap_get_ver_minor.html -share/doc/libfwupdplugin/func.struct_fmap_new.html -share/doc/libfwupdplugin/func.struct_fmap_parse_stream.html -share/doc/libfwupdplugin/func.struct_fmap_set_base.html -share/doc/libfwupdplugin/func.struct_fmap_set_name.html -share/doc/libfwupdplugin/func.struct_fmap_set_nareas.html -share/doc/libfwupdplugin/func.struct_fmap_set_size.html -share/doc/libfwupdplugin/func.struct_fmap_set_ver_major.html -share/doc/libfwupdplugin/func.struct_fmap_set_ver_minor.html -share/doc/libfwupdplugin/func.struct_fmap_validate_stream.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flcomp.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flill.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_get_flill1.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_new.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flcomp.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flill.html -share/doc/libfwupdplugin/func.struct_ifd_fcba_set_flill1.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map0.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map1.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_get_descriptor_map2.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_new.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map0.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map1.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_set_descriptor_map2.html -share/doc/libfwupdplugin/func.struct_ifd_fdbar_validate_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_name.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_get_offset.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_new.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_name.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_entry_set_offset.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_checksum.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_crc32.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_entry_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_num_of_entries.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_get_partition_name.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_get_extension_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_get_extension_type.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_new.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_set_extension_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_ext_set_extension_type.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_date.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_flags.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_type.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_id.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_rsvd.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_size.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_svn.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_vendor.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_get_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_new.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_date.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_flags.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_type.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_id.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_rsvd.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_size.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_svn.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_vendor.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_manifest_set_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_new.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_checksum.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_crc32.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_entry_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_num_of_entries.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_set_partition_name.html -share/doc/libfwupdplugin/func.struct_ifwi_cpd_validate_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_length.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_offset.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_partition_name.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_get_partition_type.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_new.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_length.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_offset.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_partition_name.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_entry_set_partition_type.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_crc32.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_build.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_hotfix.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_major.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_fitc_minor.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_flags.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_num_of_entries.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_ticks_to_add.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_tokens_to_add.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_get_uma_size.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_new.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_parse_stream.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_crc32.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_build.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_hotfix.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_major.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_fitc_minor.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_flags.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_header_length.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_header_version.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_num_of_entries.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_ticks_to_add.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_tokens_to_add.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_set_uma_size.html -share/doc/libfwupdplugin/func.struct_ifwi_fpt_validate_stream.html -share/doc/libfwupdplugin/func.struct_ms_ds20_get_size.html -share/doc/libfwupdplugin/func.struct_ms_ds20_get_type.html -share/doc/libfwupdplugin/func.struct_ms_ds20_new.html -share/doc/libfwupdplugin/func.struct_ms_ds20_parse_stream.html -share/doc/libfwupdplugin/func.struct_ms_ds20_set_size.html -share/doc/libfwupdplugin/func.struct_ms_ds20_set_type.html -share/doc/libfwupdplugin/func.struct_oprom_get_compression_type.html -share/doc/libfwupdplugin/func.struct_oprom_get_efi_image_offset.html -share/doc/libfwupdplugin/func.struct_oprom_get_expansion_header_offset.html -share/doc/libfwupdplugin/func.struct_oprom_get_image_size.html -share/doc/libfwupdplugin/func.struct_oprom_get_init_func_entry_point.html -share/doc/libfwupdplugin/func.struct_oprom_get_machine_type.html -share/doc/libfwupdplugin/func.struct_oprom_get_pci_header_offset.html -share/doc/libfwupdplugin/func.struct_oprom_get_subsystem.html -share/doc/libfwupdplugin/func.struct_oprom_new.html -share/doc/libfwupdplugin/func.struct_oprom_parse_stream.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_class_code.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_code_type.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_conf_util_code_header_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_device_id.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_device_list_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_dmtf_clp_entry_point_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_image_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_image_revision.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_indicator.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_max_runtime_image_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_structure_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_structure_revision.html -share/doc/libfwupdplugin/func.struct_oprom_pci_get_vendor_id.html -share/doc/libfwupdplugin/func.struct_oprom_pci_new.html -share/doc/libfwupdplugin/func.struct_oprom_pci_parse_stream.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_class_code.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_code_type.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_conf_util_code_header_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_device_id.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_device_list_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_dmtf_clp_entry_point_pointer.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_image_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_image_revision.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_indicator.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_max_runtime_image_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_structure_length.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_structure_revision.html -share/doc/libfwupdplugin/func.struct_oprom_pci_set_vendor_id.html -share/doc/libfwupdplugin/func.struct_oprom_set_compression_type.html -share/doc/libfwupdplugin/func.struct_oprom_set_efi_image_offset.html -share/doc/libfwupdplugin/func.struct_oprom_set_expansion_header_offset.html -share/doc/libfwupdplugin/func.struct_oprom_set_image_size.html -share/doc/libfwupdplugin/func.struct_oprom_set_init_func_entry_point.html -share/doc/libfwupdplugin/func.struct_oprom_set_machine_type.html -share/doc/libfwupdplugin/func.struct_oprom_set_pci_header_offset.html -share/doc/libfwupdplugin/func.struct_oprom_set_subsystem.html -share/doc/libfwupdplugin/func.struct_oprom_validate_stream.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_characteristics.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_machine.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_number_of_sections.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_number_of_symbols.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_pointer_to_symbol_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_get_size_of_optional_header.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_new.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_characteristics.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_machine.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_number_of_sections.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_number_of_symbols.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_pointer_to_symbol_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_file_header_set_size_of_optional_header.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_addressofentrypoint.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_base_of_code.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_certificate_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_checksum.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_debug_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_file_alignment.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_image_base.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_loader_flags.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_magic.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_major_linker_version.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_minor_linker_version.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_number_of_rva_and_sizes.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_section_alignment.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_certificate_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_code.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_debug_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_headers.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_image.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_initialized_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_size_of_uninitialized_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_get_subsystem.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_new.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_parse_stream.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_addressofentrypoint.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_base_of_code.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_certificate_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_checksum.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_debug_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_file_alignment.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_image_base.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_loader_flags.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_magic.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_major_linker_version.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_minor_linker_version.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_number_of_rva_and_sizes.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_section_alignment.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_certificate_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_code.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_debug_table.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_headers.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_image.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_initialized_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_size_of_uninitialized_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_optional_header64_set_subsystem.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_characteristics.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_name.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_pointer_to_raw_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_size_of_raw_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_virtual_address.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_get_virtual_size.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_new.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_parse_stream.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_characteristics.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_name.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_pointer_to_raw_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_size_of_raw_data.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_virtual_address.html -share/doc/libfwupdplugin/func.struct_pe_coff_section_set_virtual_size.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cblp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_cparhdr.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_crlc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_lfanew.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_lfarlc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_maxalloc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_minalloc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_get_sp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_new.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cblp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_cparhdr.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_crlc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_lfanew.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_lfarlc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_maxalloc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_minalloc.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_set_sp.html -share/doc/libfwupdplugin/func.struct_pe_dos_header_validate_stream.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_get_latest.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_get_previous.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_new.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_parse_stream.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_set_latest.html -share/doc/libfwupdplugin/func.struct_sbat_level_section_header_set_previous.html -share/doc/libfwupdplugin/func.struct_shim_hive_get_crc32.html -share/doc/libfwupdplugin/func.struct_shim_hive_get_header_version.html -share/doc/libfwupdplugin/func.struct_shim_hive_get_items_count.html -share/doc/libfwupdplugin/func.struct_shim_hive_get_items_offset.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_get_key_length.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_get_value_length.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_new.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_parse_stream.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_set_key_length.html -share/doc/libfwupdplugin/func.struct_shim_hive_item_set_value_length.html -share/doc/libfwupdplugin/func.struct_shim_hive_new.html -share/doc/libfwupdplugin/func.struct_shim_hive_parse_stream.html -share/doc/libfwupdplugin/func.struct_shim_hive_set_crc32.html -share/doc/libfwupdplugin/func.struct_shim_hive_set_header_version.html -share/doc/libfwupdplugin/func.struct_shim_hive_set_items_count.html -share/doc/libfwupdplugin/func.struct_shim_hive_set_items_offset.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_entry_point_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_intermediate_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_intermediate_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_max_structure_sz.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_number_smbios_structs.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_bcd_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_major_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_smbios_minor_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_structure_table_addr.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_get_structure_table_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_new.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_parse.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_entry_point_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_intermediate_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_intermediate_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_max_structure_sz.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_number_smbios_structs.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_bcd_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_major_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_smbios_minor_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_structure_table_addr.html -share/doc/libfwupdplugin/func.struct_smbios_ep32_set_structure_table_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_entry_point_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_reserved0.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_docrev.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_major_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_smbios_minor_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_structure_table_addr.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_get_structure_table_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_new.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_parse.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_anchor_str.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_csum.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_len.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_entry_point_rev.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_reserved0.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_docrev.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_major_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_smbios_minor_ver.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_structure_table_addr.html -share/doc/libfwupdplugin/func.struct_smbios_ep64_set_structure_table_len.html -share/doc/libfwupdplugin/func.struct_smbios_structure_get_handle.html -share/doc/libfwupdplugin/func.struct_smbios_structure_get_length.html -share/doc/libfwupdplugin/func.struct_smbios_structure_get_type.html -share/doc/libfwupdplugin/func.struct_smbios_structure_new.html -share/doc/libfwupdplugin/func.struct_smbios_structure_parse.html -share/doc/libfwupdplugin/func.struct_smbios_structure_set_handle.html -share/doc/libfwupdplugin/func.struct_smbios_structure_set_length.html -share/doc/libfwupdplugin/func.struct_smbios_structure_set_type.html -share/doc/libfwupdplugin/func.struct_uswid_get_compression.html -share/doc/libfwupdplugin/func.struct_uswid_get_flags.html -share/doc/libfwupdplugin/func.struct_uswid_get_hdrsz.html -share/doc/libfwupdplugin/func.struct_uswid_get_hdrver.html -share/doc/libfwupdplugin/func.struct_uswid_get_payloadsz.html -share/doc/libfwupdplugin/func.struct_uswid_new.html -share/doc/libfwupdplugin/func.struct_uswid_parse_stream.html -share/doc/libfwupdplugin/func.struct_uswid_set_compression.html -share/doc/libfwupdplugin/func.struct_uswid_set_flags.html -share/doc/libfwupdplugin/func.struct_uswid_set_hdrsz.html -share/doc/libfwupdplugin/func.struct_uswid_set_hdrver.html -share/doc/libfwupdplugin/func.struct_uswid_set_payloadsz.html -share/doc/libfwupdplugin/func.struct_uswid_validate_stream.html -share/doc/libfwupdplugin/func.strwidth.html -share/doc/libfwupdplugin/func.sum16.html -share/doc/libfwupdplugin/func.sum16_bytes.html -share/doc/libfwupdplugin/func.sum16w.html -share/doc/libfwupdplugin/func.sum16w_bytes.html -share/doc/libfwupdplugin/func.sum32.html -share/doc/libfwupdplugin/func.sum32_bytes.html -share/doc/libfwupdplugin/func.sum32w.html -share/doc/libfwupdplugin/func.sum32w_bytes.html -share/doc/libfwupdplugin/func.sum8.html -share/doc/libfwupdplugin/func.sum8_bytes.html -share/doc/libfwupdplugin/func.usb_base_hdr_get_descriptor_type.html -share/doc/libfwupdplugin/func.usb_base_hdr_get_length.html -share/doc/libfwupdplugin/func.usb_base_hdr_parse.html -share/doc/libfwupdplugin/func.usb_base_hdr_parse_stream.html -share/doc/libfwupdplugin/func.usb_bos_hdr_get_descriptor_type.html -share/doc/libfwupdplugin/func.usb_bos_hdr_get_dev_capability_type.html -share/doc/libfwupdplugin/func.usb_bos_hdr_get_length.html -share/doc/libfwupdplugin/func.usb_bos_hdr_new.html -share/doc/libfwupdplugin/func.usb_bos_hdr_parse_stream.html -share/doc/libfwupdplugin/func.usb_bos_hdr_set_descriptor_type.html -share/doc/libfwupdplugin/func.usb_bos_hdr_set_dev_capability_type.html -share/doc/libfwupdplugin/func.usb_bos_hdr_set_length.html -share/doc/libfwupdplugin/func.usb_class_to_string.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_attributes.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_configuration.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_configuration_value.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_length.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_max_power.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_num_interfaces.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_get_total_length.html -share/doc/libfwupdplugin/func.usb_descriptor_hdr_parse_stream.html -share/doc/libfwupdplugin/func.usb_descriptor_kind_from_string.html -share/doc/libfwupdplugin/func.usb_descriptor_kind_to_string.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_attributes.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_detach_timeout.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_dfu_version.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_length.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_get_transfer_size.html -share/doc/libfwupdplugin/func.usb_dfu_descriptor_hdr_parse_bytes.html -share/doc/libfwupdplugin/func.uswid_payload_compression_from_string.html -share/doc/libfwupdplugin/func.uswid_payload_compression_to_string.html -share/doc/libfwupdplugin/func.utf16_to_utf8_byte_array.html -share/doc/libfwupdplugin/func.utf16_to_utf8_bytes.html -share/doc/libfwupdplugin/func.utf8_to_utf16_byte_array.html -share/doc/libfwupdplugin/func.utf8_to_utf16_bytes.html -share/doc/libfwupdplugin/func.v4l_cap_to_string.html -share/doc/libfwupdplugin/func.version_compare.html -share/doc/libfwupdplugin/func.version_ensure_semver.html -share/doc/libfwupdplugin/func.version_from_uint16.html -share/doc/libfwupdplugin/func.version_from_uint16_hex.html -share/doc/libfwupdplugin/func.version_from_uint24.html -share/doc/libfwupdplugin/func.version_from_uint32.html -share/doc/libfwupdplugin/func.version_from_uint32_hex.html -share/doc/libfwupdplugin/func.version_from_uint64.html -share/doc/libfwupdplugin/func.version_guess_format.html -share/doc/libfwupdplugin/func.version_parse_from_format.html -share/doc/libfwupdplugin/func.version_verify_format.html -share/doc/libfwupdplugin/func.xmlb_builder_insert_kb.html -share/doc/libfwupdplugin/func.xmlb_builder_insert_kv.html -share/doc/libfwupdplugin/func.xmlb_builder_insert_kx.html -share/doc/libfwupdplugin/fwupd-remotes.d.html -share/doc/libfwupdplugin/fwupd.conf.html -share/doc/libfwupdplugin/fwupdmgr.html -share/doc/libfwupdplugin/fwupdtool.html -share/doc/libfwupdplugin/fzy.js -share/doc/libfwupdplugin/genesys-README.html -share/doc/libfwupdplugin/genesys-gl32xx-README.html -share/doc/libfwupdplugin/go-up-symbolic.png -share/doc/libfwupdplugin/goodix-moc-README.html -share/doc/libfwupdplugin/goodix-tp-README.html -share/doc/libfwupdplugin/gpio-README.html -share/doc/libfwupdplugin/hpi-cfu-README.html -share/doc/libfwupdplugin/hsi.html -share/doc/libfwupdplugin/huddly-usb-README.html -share/doc/libfwupdplugin/hughski-colorhug-README.html -share/doc/libfwupdplugin/hwids.html -share/doc/libfwupdplugin/ilitek-its-README.html -share/doc/libfwupdplugin/index.html -share/doc/libfwupdplugin/index.json -share/doc/libfwupdplugin/intel-amt-README.html -share/doc/libfwupdplugin/intel-cvs-README.html -share/doc/libfwupdplugin/intel-gsc-README.html -share/doc/libfwupdplugin/intel-mchi-README.html -share/doc/libfwupdplugin/intel-mkhi-README.html -share/doc/libfwupdplugin/intel-usb4-README.html -share/doc/libfwupdplugin/iommu-README.html -share/doc/libfwupdplugin/jabra-README.html -share/doc/libfwupdplugin/jabra-file-README.html -share/doc/libfwupdplugin/jabra-gnp-README.html -share/doc/libfwupdplugin/kinetic-dp-README.html -share/doc/libfwupdplugin/legion-hid2-README.html -share/doc/libfwupdplugin/lenovo-thinklmi-README.html -share/doc/libfwupdplugin/libfwupdplugin.devhelp2 -share/doc/libfwupdplugin/linux-display-README.html -share/doc/libfwupdplugin/linux-lockdown-README.html -share/doc/libfwupdplugin/linux-sleep-README.html -share/doc/libfwupdplugin/linux-swap-README.html -share/doc/libfwupdplugin/linux-tainted-README.html -share/doc/libfwupdplugin/logind-README.html -share/doc/libfwupdplugin/logitech-bulkcontroller-README.html -share/doc/libfwupdplugin/logitech-hidpp-README.html -share/doc/libfwupdplugin/logitech-rallysystem-README.html -share/doc/libfwupdplugin/logitech-scribe-README.html -share/doc/libfwupdplugin/logitech-tap-README.html -share/doc/libfwupdplugin/main.js -share/doc/libfwupdplugin/mediatek-scaler-README.html -share/doc/libfwupdplugin/method.AcpiTable.get_oem_id.html -share/doc/libfwupdplugin/method.AcpiTable.get_oem_revision.html -share/doc/libfwupdplugin/method.AcpiTable.get_oem_table_id.html -share/doc/libfwupdplugin/method.AcpiTable.get_revision.html -share/doc/libfwupdplugin/method.Archive.add_entry.html -share/doc/libfwupdplugin/method.Archive.iterate.html -share/doc/libfwupdplugin/method.Archive.lookup_by_fn.html -share/doc/libfwupdplugin/method.Archive.write.html -share/doc/libfwupdplugin/method.ArchiveFirmware.get_compression.html -share/doc/libfwupdplugin/method.ArchiveFirmware.get_format.html -share/doc/libfwupdplugin/method.ArchiveFirmware.get_image_fnmatch.html -share/doc/libfwupdplugin/method.ArchiveFirmware.set_compression.html -share/doc/libfwupdplugin/method.ArchiveFirmware.set_format.html -share/doc/libfwupdplugin/method.Backend.add_string.html -share/doc/libfwupdplugin/method.Backend.coldplug.html -share/doc/libfwupdplugin/method.Backend.create_device.html -share/doc/libfwupdplugin/method.Backend.create_device_for_donor.html -share/doc/libfwupdplugin/method.Backend.device_added.html -share/doc/libfwupdplugin/method.Backend.device_changed.html -share/doc/libfwupdplugin/method.Backend.device_removed.html -share/doc/libfwupdplugin/method.Backend.get_context.html -share/doc/libfwupdplugin/method.Backend.get_device_parent.html -share/doc/libfwupdplugin/method.Backend.get_devices.html -share/doc/libfwupdplugin/method.Backend.get_enabled.html -share/doc/libfwupdplugin/method.Backend.get_name.html -share/doc/libfwupdplugin/method.Backend.invalidate.html -share/doc/libfwupdplugin/method.Backend.lookup_by_id.html -share/doc/libfwupdplugin/method.Backend.registered.html -share/doc/libfwupdplugin/method.Backend.set_enabled.html -share/doc/libfwupdplugin/method.Backend.setup.html -share/doc/libfwupdplugin/method.BiosSettings.add_attribute.html -share/doc/libfwupdplugin/method.BiosSettings.get_all.html -share/doc/libfwupdplugin/method.BiosSettings.get_attr.html -share/doc/libfwupdplugin/method.BiosSettings.get_pending_reboot.html -share/doc/libfwupdplugin/method.BiosSettings.setup.html -share/doc/libfwupdplugin/method.BiosSettings.to_hash_kv.html -share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_none.html -share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_read.html -share/doc/libfwupdplugin/method.BlockDevice.sg_io_cmd_write.html -share/doc/libfwupdplugin/method.BlockPartition.get_fs_label.html -share/doc/libfwupdplugin/method.BlockPartition.get_fs_type.html -share/doc/libfwupdplugin/method.BlockPartition.get_fs_uuid.html -share/doc/libfwupdplugin/method.BlockPartition.get_mount_point.html -share/doc/libfwupdplugin/method.BluezDevice.notify_acquire.html -share/doc/libfwupdplugin/method.BluezDevice.notify_start.html -share/doc/libfwupdplugin/method.BluezDevice.notify_stop.html -share/doc/libfwupdplugin/method.BluezDevice.read.html -share/doc/libfwupdplugin/method.BluezDevice.read_string.html -share/doc/libfwupdplugin/method.BluezDevice.write.html -share/doc/libfwupdplugin/method.BluezDevice.write_acquire.html -share/doc/libfwupdplugin/method.CabFirmware.get_compressed.html -share/doc/libfwupdplugin/method.CabFirmware.get_only_basename.html -share/doc/libfwupdplugin/method.CabFirmware.set_compressed.html -share/doc/libfwupdplugin/method.CabFirmware.set_only_basename.html -share/doc/libfwupdplugin/method.CabImage.get_created.html -share/doc/libfwupdplugin/method.CabImage.get_win32_filename.html -share/doc/libfwupdplugin/method.CabImage.set_created.html -share/doc/libfwupdplugin/method.CabImage.set_win32_filename.html -share/doc/libfwupdplugin/method.CfiDevice.chip_select.html -share/doc/libfwupdplugin/method.CfiDevice.chip_select_locker_new.html -share/doc/libfwupdplugin/method.CfiDevice.get_block_size.html -share/doc/libfwupdplugin/method.CfiDevice.get_cmd.html -share/doc/libfwupdplugin/method.CfiDevice.get_flash_id.html -share/doc/libfwupdplugin/method.CfiDevice.get_page_size.html -share/doc/libfwupdplugin/method.CfiDevice.get_sector_size.html -share/doc/libfwupdplugin/method.CfiDevice.get_size.html -share/doc/libfwupdplugin/method.CfiDevice.send_command.html -share/doc/libfwupdplugin/method.CfiDevice.set_block_size.html -share/doc/libfwupdplugin/method.CfiDevice.set_flash_id.html -share/doc/libfwupdplugin/method.CfiDevice.set_page_size.html -share/doc/libfwupdplugin/method.CfiDevice.set_sector_size.html -share/doc/libfwupdplugin/method.CfiDevice.set_size.html -share/doc/libfwupdplugin/method.CfuOffer.get_bank.html -share/doc/libfwupdplugin/method.CfuOffer.get_component_id.html -share/doc/libfwupdplugin/method.CfuOffer.get_force_ignore_version.html -share/doc/libfwupdplugin/method.CfuOffer.get_force_immediate_reset.html -share/doc/libfwupdplugin/method.CfuOffer.get_hw_variant.html -share/doc/libfwupdplugin/method.CfuOffer.get_milestone.html -share/doc/libfwupdplugin/method.CfuOffer.get_product_id.html -share/doc/libfwupdplugin/method.CfuOffer.get_protocol_revision.html -share/doc/libfwupdplugin/method.CfuOffer.get_segment_number.html -share/doc/libfwupdplugin/method.CfuOffer.get_token.html -share/doc/libfwupdplugin/method.CfuOffer.set_bank.html -share/doc/libfwupdplugin/method.CfuOffer.set_component_id.html -share/doc/libfwupdplugin/method.CfuOffer.set_force_ignore_version.html -share/doc/libfwupdplugin/method.CfuOffer.set_force_immediate_reset.html -share/doc/libfwupdplugin/method.CfuOffer.set_hw_variant.html -share/doc/libfwupdplugin/method.CfuOffer.set_milestone.html -share/doc/libfwupdplugin/method.CfuOffer.set_product_id.html -share/doc/libfwupdplugin/method.CfuOffer.set_protocol_revision.html -share/doc/libfwupdplugin/method.CfuOffer.set_segment_number.html -share/doc/libfwupdplugin/method.CfuOffer.set_token.html -share/doc/libfwupdplugin/method.Chunk.get_address.html -share/doc/libfwupdplugin/method.Chunk.get_bytes.html -share/doc/libfwupdplugin/method.Chunk.get_data.html -share/doc/libfwupdplugin/method.Chunk.get_data_out.html -share/doc/libfwupdplugin/method.Chunk.get_data_sz.html -share/doc/libfwupdplugin/method.Chunk.get_idx.html -share/doc/libfwupdplugin/method.Chunk.get_page.html -share/doc/libfwupdplugin/method.Chunk.set_address.html -share/doc/libfwupdplugin/method.Chunk.set_bytes.html -share/doc/libfwupdplugin/method.Chunk.set_idx.html -share/doc/libfwupdplugin/method.Chunk.set_page.html -share/doc/libfwupdplugin/method.Chunk.to_string.html -share/doc/libfwupdplugin/method.ChunkArray.index.html -share/doc/libfwupdplugin/method.ChunkArray.length.html -share/doc/libfwupdplugin/method.CompositeInputStream.add_bytes.html -share/doc/libfwupdplugin/method.CompositeInputStream.add_partial_stream.html -share/doc/libfwupdplugin/method.CompositeInputStream.add_stream.html -share/doc/libfwupdplugin/method.Config.get_value.html -share/doc/libfwupdplugin/method.Config.get_value_bool.html -share/doc/libfwupdplugin/method.Config.get_value_strv.html -share/doc/libfwupdplugin/method.Config.get_value_u64.html -share/doc/libfwupdplugin/method.Config.load.html -share/doc/libfwupdplugin/method.Config.reset_defaults.html -share/doc/libfwupdplugin/method.Config.set_default.html -share/doc/libfwupdplugin/method.Config.set_value.html -share/doc/libfwupdplugin/method.Context.add_compile_version.html -share/doc/libfwupdplugin/method.Context.add_esp_volume.html -share/doc/libfwupdplugin/method.Context.add_firmware_gtype.html -share/doc/libfwupdplugin/method.Context.add_flag.html -share/doc/libfwupdplugin/method.Context.add_quirk_key.html -share/doc/libfwupdplugin/method.Context.add_runtime_version.html -share/doc/libfwupdplugin/method.Context.add_udev_subsystem.html -share/doc/libfwupdplugin/method.Context.efivars_check_free_space.html -share/doc/libfwupdplugin/method.Context.get_backends.html -share/doc/libfwupdplugin/method.Context.get_battery_level.html -share/doc/libfwupdplugin/method.Context.get_battery_threshold.html -share/doc/libfwupdplugin/method.Context.get_bios_setting.html -share/doc/libfwupdplugin/method.Context.get_bios_setting_pending_reboot.html -share/doc/libfwupdplugin/method.Context.get_bios_settings.html -share/doc/libfwupdplugin/method.Context.get_chassis_kind.html -share/doc/libfwupdplugin/method.Context.get_compile_versions.html -share/doc/libfwupdplugin/method.Context.get_config.html -share/doc/libfwupdplugin/method.Context.get_data.html -share/doc/libfwupdplugin/method.Context.get_default_esp.html -share/doc/libfwupdplugin/method.Context.get_display_state.html -share/doc/libfwupdplugin/method.Context.get_efivars.html -share/doc/libfwupdplugin/method.Context.get_esp_files.html -share/doc/libfwupdplugin/method.Context.get_esp_location.html -share/doc/libfwupdplugin/method.Context.get_esp_volume_by_hard_drive_device_path.html -share/doc/libfwupdplugin/method.Context.get_esp_volumes.html -share/doc/libfwupdplugin/method.Context.get_fdt.html -share/doc/libfwupdplugin/method.Context.get_firmware_gtype_by_id.html -share/doc/libfwupdplugin/method.Context.get_firmware_gtype_ids.html -share/doc/libfwupdplugin/method.Context.get_firmware_gtypes.html -share/doc/libfwupdplugin/method.Context.get_hwid_guids.html -share/doc/libfwupdplugin/method.Context.get_hwid_replace_value.html -share/doc/libfwupdplugin/method.Context.get_hwid_value.html -share/doc/libfwupdplugin/method.Context.get_hwids.html -share/doc/libfwupdplugin/method.Context.get_lid_state.html -share/doc/libfwupdplugin/method.Context.get_plugin_names_for_udev_subsystem.html -share/doc/libfwupdplugin/method.Context.get_power_state.html -share/doc/libfwupdplugin/method.Context.get_runtime_version.html -share/doc/libfwupdplugin/method.Context.get_runtime_versions.html -share/doc/libfwupdplugin/method.Context.get_smbios.html -share/doc/libfwupdplugin/method.Context.get_smbios_data.html -share/doc/libfwupdplugin/method.Context.get_smbios_integer.html -share/doc/libfwupdplugin/method.Context.get_smbios_string.html -share/doc/libfwupdplugin/method.Context.get_udev_subsystems.html -share/doc/libfwupdplugin/method.Context.has_backend.html -share/doc/libfwupdplugin/method.Context.has_flag.html -share/doc/libfwupdplugin/method.Context.has_hwid_flag.html -share/doc/libfwupdplugin/method.Context.has_hwid_guid.html -share/doc/libfwupdplugin/method.Context.housekeeping.html -share/doc/libfwupdplugin/method.Context.load_hwinfo.html -share/doc/libfwupdplugin/method.Context.load_quirks.html -share/doc/libfwupdplugin/method.Context.lookup_quirk_by_id.html -share/doc/libfwupdplugin/method.Context.lookup_quirk_by_id_iter.html -share/doc/libfwupdplugin/method.Context.reload_bios_settings.html -share/doc/libfwupdplugin/method.Context.remove_flag.html -share/doc/libfwupdplugin/method.Context.security_changed.html -share/doc/libfwupdplugin/method.Context.set_battery_level.html -share/doc/libfwupdplugin/method.Context.set_battery_threshold.html -share/doc/libfwupdplugin/method.Context.set_chassis_kind.html -share/doc/libfwupdplugin/method.Context.set_data.html -share/doc/libfwupdplugin/method.Context.set_display_state.html -share/doc/libfwupdplugin/method.Context.set_esp_location.html -share/doc/libfwupdplugin/method.Context.set_lid_state.html -share/doc/libfwupdplugin/method.Context.set_power_state.html -share/doc/libfwupdplugin/method.CoswidFirmware.get_product.html -share/doc/libfwupdplugin/method.CsvEntry.add_value.html -share/doc/libfwupdplugin/method.CsvEntry.get_value_by_column_id.html -share/doc/libfwupdplugin/method.CsvEntry.get_value_by_column_id_uint64.html -share/doc/libfwupdplugin/method.CsvEntry.get_value_by_idx.html -share/doc/libfwupdplugin/method.CsvFirmware.add_column_id.html -share/doc/libfwupdplugin/method.CsvFirmware.get_column_id.html -share/doc/libfwupdplugin/method.CsvFirmware.get_write_column_ids.html -share/doc/libfwupdplugin/method.CsvFirmware.set_write_column_ids.html -share/doc/libfwupdplugin/method.Device.activate.html -share/doc/libfwupdplugin/method.Device.add_child.html -share/doc/libfwupdplugin/method.Device.add_event.html -share/doc/libfwupdplugin/method.Device.add_flag.html -share/doc/libfwupdplugin/method.Device.add_instance_id.html -share/doc/libfwupdplugin/method.Device.add_instance_id_full.html -share/doc/libfwupdplugin/method.Device.add_instance_str.html -share/doc/libfwupdplugin/method.Device.add_instance_strsafe.html -share/doc/libfwupdplugin/method.Device.add_instance_strup.html -share/doc/libfwupdplugin/method.Device.add_instance_u16.html -share/doc/libfwupdplugin/method.Device.add_instance_u32.html -share/doc/libfwupdplugin/method.Device.add_instance_u4.html -share/doc/libfwupdplugin/method.Device.add_instance_u8.html -share/doc/libfwupdplugin/method.Device.add_json.html -share/doc/libfwupdplugin/method.Device.add_parent_backend_id.html -share/doc/libfwupdplugin/method.Device.add_parent_guid.html -share/doc/libfwupdplugin/method.Device.add_parent_physical_id.html -share/doc/libfwupdplugin/method.Device.add_possible_plugin.html -share/doc/libfwupdplugin/method.Device.add_private_flag.html -share/doc/libfwupdplugin/method.Device.add_problem.html -share/doc/libfwupdplugin/method.Device.add_security_attrs.html -share/doc/libfwupdplugin/method.Device.add_string.html -share/doc/libfwupdplugin/method.Device.attach.html -share/doc/libfwupdplugin/method.Device.attach_full.html -share/doc/libfwupdplugin/method.Device.bind_driver.html -share/doc/libfwupdplugin/method.Device.build_instance_id.html -share/doc/libfwupdplugin/method.Device.build_instance_id_full.html -share/doc/libfwupdplugin/method.Device.build_instance_id_strv.html -share/doc/libfwupdplugin/method.Device.build_vendor_id.html -share/doc/libfwupdplugin/method.Device.build_vendor_id_u16.html -share/doc/libfwupdplugin/method.Device.check_fwupd_version.html -share/doc/libfwupdplugin/method.Device.cleanup.html -share/doc/libfwupdplugin/method.Device.clear_events.html -share/doc/libfwupdplugin/method.Device.close.html -share/doc/libfwupdplugin/method.Device.convert_instance_ids.html -share/doc/libfwupdplugin/method.Device.detach.html -share/doc/libfwupdplugin/method.Device.detach_full.html -share/doc/libfwupdplugin/method.Device.dump_firmware.html -share/doc/libfwupdplugin/method.Device.emit_request.html -share/doc/libfwupdplugin/method.Device.ensure_from_component.html -share/doc/libfwupdplugin/method.Device.ensure_from_release.html -share/doc/libfwupdplugin/method.Device.ensure_id.html -share/doc/libfwupdplugin/method.Device.from_json.html -share/doc/libfwupdplugin/method.Device.get_acquiesce_delay.html -share/doc/libfwupdplugin/method.Device.get_backend.html -share/doc/libfwupdplugin/method.Device.get_backend_id.html -share/doc/libfwupdplugin/method.Device.get_backend_parent.html -share/doc/libfwupdplugin/method.Device.get_backend_parent_with_subsystem.html -share/doc/libfwupdplugin/method.Device.get_battery_level.html -share/doc/libfwupdplugin/method.Device.get_battery_threshold.html -share/doc/libfwupdplugin/method.Device.get_children.html -share/doc/libfwupdplugin/method.Device.get_contents.html -share/doc/libfwupdplugin/method.Device.get_contents_bytes.html -share/doc/libfwupdplugin/method.Device.get_context.html -share/doc/libfwupdplugin/method.Device.get_counterpart_guids.html -share/doc/libfwupdplugin/method.Device.get_created_usec.html -share/doc/libfwupdplugin/method.Device.get_custom_flags.html -share/doc/libfwupdplugin/method.Device.get_equivalent_id.html -share/doc/libfwupdplugin/method.Device.get_events.html -share/doc/libfwupdplugin/method.Device.get_firmware_gtype.html -share/doc/libfwupdplugin/method.Device.get_firmware_size_max.html -share/doc/libfwupdplugin/method.Device.get_firmware_size_min.html -share/doc/libfwupdplugin/method.Device.get_instance_str.html -share/doc/libfwupdplugin/method.Device.get_logical_id.html -share/doc/libfwupdplugin/method.Device.get_metadata.html -share/doc/libfwupdplugin/method.Device.get_metadata_boolean.html -share/doc/libfwupdplugin/method.Device.get_metadata_integer.html -share/doc/libfwupdplugin/method.Device.get_modified_usec.html -share/doc/libfwupdplugin/method.Device.get_order.html -share/doc/libfwupdplugin/method.Device.get_parent.html -share/doc/libfwupdplugin/method.Device.get_parent_backend_ids.html -share/doc/libfwupdplugin/method.Device.get_parent_guids.html -share/doc/libfwupdplugin/method.Device.get_parent_physical_ids.html -share/doc/libfwupdplugin/method.Device.get_physical_id.html -share/doc/libfwupdplugin/method.Device.get_pid.html -share/doc/libfwupdplugin/method.Device.get_possible_plugins.html -share/doc/libfwupdplugin/method.Device.get_priority.html -share/doc/libfwupdplugin/method.Device.get_proxy.html -share/doc/libfwupdplugin/method.Device.get_proxy_gtype.html -share/doc/libfwupdplugin/method.Device.get_proxy_guid.html -share/doc/libfwupdplugin/method.Device.get_proxy_with_fallback.html -share/doc/libfwupdplugin/method.Device.get_remove_delay.html -share/doc/libfwupdplugin/method.Device.get_request_cnt.html -share/doc/libfwupdplugin/method.Device.get_required_free.html -share/doc/libfwupdplugin/method.Device.get_results.html -share/doc/libfwupdplugin/method.Device.get_root.html -share/doc/libfwupdplugin/method.Device.get_smbios_string.html -share/doc/libfwupdplugin/method.Device.get_specialized_gtype.html -share/doc/libfwupdplugin/method.Device.get_update_image.html -share/doc/libfwupdplugin/method.Device.get_update_message.html -share/doc/libfwupdplugin/method.Device.get_update_request_id.html -share/doc/libfwupdplugin/method.Device.get_vid.html -share/doc/libfwupdplugin/method.Device.has_guid.html -share/doc/libfwupdplugin/method.Device.has_inhibit.html -share/doc/libfwupdplugin/method.Device.has_instance_id.html -share/doc/libfwupdplugin/method.Device.has_parent_backend_id.html -share/doc/libfwupdplugin/method.Device.has_parent_guid.html -share/doc/libfwupdplugin/method.Device.has_parent_physical_id.html -share/doc/libfwupdplugin/method.Device.has_private_flag.html -share/doc/libfwupdplugin/method.Device.has_private_flag_quark.html -share/doc/libfwupdplugin/method.Device.has_problem.html -share/doc/libfwupdplugin/method.Device.incorporate.html -share/doc/libfwupdplugin/method.Device.incorporate_flag.html -share/doc/libfwupdplugin/method.Device.inhibit.html -share/doc/libfwupdplugin/method.Device.is_updatable.html -share/doc/libfwupdplugin/method.Device.load_event.html -share/doc/libfwupdplugin/method.Device.open.html -share/doc/libfwupdplugin/method.Device.poll.html -share/doc/libfwupdplugin/method.Device.poll_locker_new.html -share/doc/libfwupdplugin/method.Device.prepare.html -share/doc/libfwupdplugin/method.Device.prepare_firmware.html -share/doc/libfwupdplugin/method.Device.probe.html -share/doc/libfwupdplugin/method.Device.probe_complete.html -share/doc/libfwupdplugin/method.Device.probe_invalidate.html -share/doc/libfwupdplugin/method.Device.query_file_exists.html -share/doc/libfwupdplugin/method.Device.read_firmware.html -share/doc/libfwupdplugin/method.Device.register_private_flag.html -share/doc/libfwupdplugin/method.Device.reload.html -share/doc/libfwupdplugin/method.Device.remove_child.html -share/doc/libfwupdplugin/method.Device.remove_children.html -share/doc/libfwupdplugin/method.Device.remove_flag.html -share/doc/libfwupdplugin/method.Device.remove_metadata.html -share/doc/libfwupdplugin/method.Device.remove_private_flag.html -share/doc/libfwupdplugin/method.Device.remove_problem.html -share/doc/libfwupdplugin/method.Device.replace.html -share/doc/libfwupdplugin/method.Device.report_metadata_post.html -share/doc/libfwupdplugin/method.Device.report_metadata_pre.html -share/doc/libfwupdplugin/method.Device.rescan.html -share/doc/libfwupdplugin/method.Device.retry.html -share/doc/libfwupdplugin/method.Device.retry_add_recovery.html -share/doc/libfwupdplugin/method.Device.retry_full.html -share/doc/libfwupdplugin/method.Device.retry_set_delay.html -share/doc/libfwupdplugin/method.Device.save_event.html -share/doc/libfwupdplugin/method.Device.security_attr_new.html -share/doc/libfwupdplugin/method.Device.set_acquiesce_delay.html -share/doc/libfwupdplugin/method.Device.set_backend.html -share/doc/libfwupdplugin/method.Device.set_backend_id.html -share/doc/libfwupdplugin/method.Device.set_battery_level.html -share/doc/libfwupdplugin/method.Device.set_battery_threshold.html -share/doc/libfwupdplugin/method.Device.set_contents.html -share/doc/libfwupdplugin/method.Device.set_contents_bytes.html -share/doc/libfwupdplugin/method.Device.set_context.html -share/doc/libfwupdplugin/method.Device.set_created_usec.html -share/doc/libfwupdplugin/method.Device.set_custom_flags.html -share/doc/libfwupdplugin/method.Device.set_equivalent_id.html -share/doc/libfwupdplugin/method.Device.set_firmware_gtype.html -share/doc/libfwupdplugin/method.Device.set_firmware_size.html -share/doc/libfwupdplugin/method.Device.set_firmware_size_max.html -share/doc/libfwupdplugin/method.Device.set_firmware_size_min.html -share/doc/libfwupdplugin/method.Device.set_fwupd_version.html -share/doc/libfwupdplugin/method.Device.set_id.html -share/doc/libfwupdplugin/method.Device.set_logical_id.html -share/doc/libfwupdplugin/method.Device.set_metadata.html -share/doc/libfwupdplugin/method.Device.set_metadata_boolean.html -share/doc/libfwupdplugin/method.Device.set_metadata_integer.html -share/doc/libfwupdplugin/method.Device.set_modified_usec.html -share/doc/libfwupdplugin/method.Device.set_name.html -share/doc/libfwupdplugin/method.Device.set_order.html -share/doc/libfwupdplugin/method.Device.set_parent.html -share/doc/libfwupdplugin/method.Device.set_physical_id.html -share/doc/libfwupdplugin/method.Device.set_pid.html -share/doc/libfwupdplugin/method.Device.set_poll_interval.html -share/doc/libfwupdplugin/method.Device.set_priority.html -share/doc/libfwupdplugin/method.Device.set_progress.html -share/doc/libfwupdplugin/method.Device.set_proxy.html -share/doc/libfwupdplugin/method.Device.set_proxy_gtype.html -share/doc/libfwupdplugin/method.Device.set_proxy_guid.html -share/doc/libfwupdplugin/method.Device.set_quirk_kv.html -share/doc/libfwupdplugin/method.Device.set_remove_delay.html -share/doc/libfwupdplugin/method.Device.set_required_free.html -share/doc/libfwupdplugin/method.Device.set_specialized_gtype.html -share/doc/libfwupdplugin/method.Device.set_target.html -share/doc/libfwupdplugin/method.Device.set_update_image.html -share/doc/libfwupdplugin/method.Device.set_update_message.html -share/doc/libfwupdplugin/method.Device.set_update_request_id.html -share/doc/libfwupdplugin/method.Device.set_update_state.html -share/doc/libfwupdplugin/method.Device.set_vendor.html -share/doc/libfwupdplugin/method.Device.set_version.html -share/doc/libfwupdplugin/method.Device.set_version_bootloader.html -share/doc/libfwupdplugin/method.Device.set_version_format.html -share/doc/libfwupdplugin/method.Device.set_version_lowest.html -share/doc/libfwupdplugin/method.Device.set_version_lowest_raw.html -share/doc/libfwupdplugin/method.Device.set_version_raw.html -share/doc/libfwupdplugin/method.Device.set_vid.html -share/doc/libfwupdplugin/method.Device.setup.html -share/doc/libfwupdplugin/method.Device.sleep.html -share/doc/libfwupdplugin/method.Device.sleep_full.html -share/doc/libfwupdplugin/method.Device.to_string.html -share/doc/libfwupdplugin/method.Device.unbind_driver.html -share/doc/libfwupdplugin/method.Device.uninhibit.html -share/doc/libfwupdplugin/method.Device.write_firmware.html -share/doc/libfwupdplugin/method.DeviceEvent.check_error.html -share/doc/libfwupdplugin/method.DeviceEvent.copy_data.html -share/doc/libfwupdplugin/method.DeviceEvent.get_bytes.html -share/doc/libfwupdplugin/method.DeviceEvent.get_i64.html -share/doc/libfwupdplugin/method.DeviceEvent.get_str.html -share/doc/libfwupdplugin/method.DeviceEvent.set_bytes.html -share/doc/libfwupdplugin/method.DeviceEvent.set_data.html -share/doc/libfwupdplugin/method.DeviceEvent.set_error.html -share/doc/libfwupdplugin/method.DeviceEvent.set_i64.html -share/doc/libfwupdplugin/method.DeviceEvent.set_str.html -share/doc/libfwupdplugin/method.DeviceLocker.close.html -share/doc/libfwupdplugin/method.DfuFirmware.get_pid.html -share/doc/libfwupdplugin/method.DfuFirmware.get_release.html -share/doc/libfwupdplugin/method.DfuFirmware.get_version.html -share/doc/libfwupdplugin/method.DfuFirmware.get_vid.html -share/doc/libfwupdplugin/method.DfuFirmware.set_pid.html -share/doc/libfwupdplugin/method.DfuFirmware.set_release.html -share/doc/libfwupdplugin/method.DfuFirmware.set_version.html -share/doc/libfwupdplugin/method.DfuFirmware.set_vid.html -share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_dev_id.html -share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_hw_rev.html -share/doc/libfwupdplugin/method.DpauxDevice.get_dpcd_ieee_oui.html -share/doc/libfwupdplugin/method.DpauxDevice.read.html -share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_dev_id.html -share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_hw_rev.html -share/doc/libfwupdplugin/method.DpauxDevice.set_dpcd_ieee_oui.html -share/doc/libfwupdplugin/method.DpauxDevice.write.html -share/doc/libfwupdplugin/method.DrmDevice.get_connector_id.html -share/doc/libfwupdplugin/method.DrmDevice.get_crtc_height.html -share/doc/libfwupdplugin/method.DrmDevice.get_crtc_width.html -share/doc/libfwupdplugin/method.DrmDevice.get_crtc_x.html -share/doc/libfwupdplugin/method.DrmDevice.get_crtc_y.html -share/doc/libfwupdplugin/method.DrmDevice.get_edid.html -share/doc/libfwupdplugin/method.DrmDevice.get_enabled.html -share/doc/libfwupdplugin/method.DrmDevice.get_state.html -share/doc/libfwupdplugin/method.Edid.get_eisa_id.html -share/doc/libfwupdplugin/method.Edid.get_pnp_id.html -share/doc/libfwupdplugin/method.Edid.get_product_code.html -share/doc/libfwupdplugin/method.Edid.get_product_name.html -share/doc/libfwupdplugin/method.Edid.get_serial_number.html -share/doc/libfwupdplugin/method.Edid.set_eisa_id.html -share/doc/libfwupdplugin/method.Edid.set_pnp_id.html -share/doc/libfwupdplugin/method.Edid.set_product_code.html -share/doc/libfwupdplugin/method.Edid.set_product_name.html -share/doc/libfwupdplugin/method.Edid.set_serial_number.html -share/doc/libfwupdplugin/method.EfiDevicePath.get_subtype.html -share/doc/libfwupdplugin/method.EfiDevicePath.set_subtype.html -share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.compare.html -share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_number.html -share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_signature.html -share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_size.html -share/doc/libfwupdplugin/method.EfiHardDriveDevicePath.get_partition_start.html -share/doc/libfwupdplugin/method.EfiLoadOption.get_kind.html -share/doc/libfwupdplugin/method.EfiLoadOption.get_metadata.html -share/doc/libfwupdplugin/method.EfiLoadOption.set_kind.html -share/doc/libfwupdplugin/method.EfiLoadOption.set_metadata.html -share/doc/libfwupdplugin/method.EfiSignature.get_kind.html -share/doc/libfwupdplugin/method.EfiSignature.get_owner.html -share/doc/libfwupdplugin/method.EfiSignatureList.get_newest.html -share/doc/libfwupdplugin/method.EfiVariableAuthentication2.get_signers.html -share/doc/libfwupdplugin/method.EfiX509Signature.get_issuer.html -share/doc/libfwupdplugin/method.EfiX509Signature.get_subject.html -share/doc/libfwupdplugin/method.EfiX509Signature.get_subject_name.html -share/doc/libfwupdplugin/method.EfiX509Signature.get_subject_vendor.html -share/doc/libfwupdplugin/method.Efivars.create_boot_entry_for_volume.html -share/doc/libfwupdplugin/method.Efivars.delete.html -share/doc/libfwupdplugin/method.Efivars.delete_with_glob.html -share/doc/libfwupdplugin/method.Efivars.exists.html -share/doc/libfwupdplugin/method.Efivars.get_boot_current.html -share/doc/libfwupdplugin/method.Efivars.get_boot_data.html -share/doc/libfwupdplugin/method.Efivars.get_boot_entries.html -share/doc/libfwupdplugin/method.Efivars.get_boot_entry.html -share/doc/libfwupdplugin/method.Efivars.get_boot_next.html -share/doc/libfwupdplugin/method.Efivars.get_boot_order.html -share/doc/libfwupdplugin/method.Efivars.get_data.html -share/doc/libfwupdplugin/method.Efivars.get_data_bytes.html -share/doc/libfwupdplugin/method.Efivars.get_monitor.html -share/doc/libfwupdplugin/method.Efivars.get_names.html -share/doc/libfwupdplugin/method.Efivars.get_secure_boot.html -share/doc/libfwupdplugin/method.Efivars.set_boot_data.html -share/doc/libfwupdplugin/method.Efivars.set_boot_entry.html -share/doc/libfwupdplugin/method.Efivars.set_boot_next.html -share/doc/libfwupdplugin/method.Efivars.set_boot_order.html -share/doc/libfwupdplugin/method.Efivars.set_data.html -share/doc/libfwupdplugin/method.Efivars.set_data_bytes.html -share/doc/libfwupdplugin/method.Efivars.space_free.html -share/doc/libfwupdplugin/method.Efivars.space_used.html -share/doc/libfwupdplugin/method.Efivars.supported.html -share/doc/libfwupdplugin/method.FdtFirmware.get_cpuid.html -share/doc/libfwupdplugin/method.FdtFirmware.get_image_by_path.html -share/doc/libfwupdplugin/method.FdtFirmware.set_cpuid.html -share/doc/libfwupdplugin/method.FdtImage.get_attr.html -share/doc/libfwupdplugin/method.FdtImage.get_attr_str.html -share/doc/libfwupdplugin/method.FdtImage.get_attr_strlist.html -share/doc/libfwupdplugin/method.FdtImage.get_attr_u32.html -share/doc/libfwupdplugin/method.FdtImage.get_attr_u64.html -share/doc/libfwupdplugin/method.FdtImage.get_attrs.html -share/doc/libfwupdplugin/method.FdtImage.set_attr.html -share/doc/libfwupdplugin/method.FdtImage.set_attr_str.html -share/doc/libfwupdplugin/method.FdtImage.set_attr_strlist.html -share/doc/libfwupdplugin/method.FdtImage.set_attr_uint32.html -share/doc/libfwupdplugin/method.FdtImage.set_attr_uint64.html -share/doc/libfwupdplugin/method.Firmware.add_chunk.html -share/doc/libfwupdplugin/method.Firmware.add_flag.html -share/doc/libfwupdplugin/method.Firmware.add_image.html -share/doc/libfwupdplugin/method.Firmware.add_image_full.html -share/doc/libfwupdplugin/method.Firmware.add_patch.html -share/doc/libfwupdplugin/method.Firmware.build.html -share/doc/libfwupdplugin/method.Firmware.build_from_filename.html -share/doc/libfwupdplugin/method.Firmware.build_from_xml.html -share/doc/libfwupdplugin/method.Firmware.check_compatible.html -share/doc/libfwupdplugin/method.Firmware.export.html -share/doc/libfwupdplugin/method.Firmware.export_to_xml.html -share/doc/libfwupdplugin/method.Firmware.get_addr.html -share/doc/libfwupdplugin/method.Firmware.get_alignment.html -share/doc/libfwupdplugin/method.Firmware.get_bytes.html -share/doc/libfwupdplugin/method.Firmware.get_bytes_with_patches.html -share/doc/libfwupdplugin/method.Firmware.get_checksum.html -share/doc/libfwupdplugin/method.Firmware.get_chunks.html -share/doc/libfwupdplugin/method.Firmware.get_depth.html -share/doc/libfwupdplugin/method.Firmware.get_filename.html -share/doc/libfwupdplugin/method.Firmware.get_id.html -share/doc/libfwupdplugin/method.Firmware.get_idx.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_checksum.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_gtype.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_gtype_bytes.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_id.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_id_bytes.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_id_stream.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_idx.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_idx_bytes.html -share/doc/libfwupdplugin/method.Firmware.get_image_by_idx_stream.html -share/doc/libfwupdplugin/method.Firmware.get_images.html -share/doc/libfwupdplugin/method.Firmware.get_images_max.html -share/doc/libfwupdplugin/method.Firmware.get_offset.html -share/doc/libfwupdplugin/method.Firmware.get_parent.html -share/doc/libfwupdplugin/method.Firmware.get_size.html -share/doc/libfwupdplugin/method.Firmware.get_size_max.html -share/doc/libfwupdplugin/method.Firmware.get_stream.html -share/doc/libfwupdplugin/method.Firmware.get_version.html -share/doc/libfwupdplugin/method.Firmware.get_version_format.html -share/doc/libfwupdplugin/method.Firmware.get_version_raw.html -share/doc/libfwupdplugin/method.Firmware.has_flag.html -share/doc/libfwupdplugin/method.Firmware.parse_bytes.html -share/doc/libfwupdplugin/method.Firmware.parse_file.html -share/doc/libfwupdplugin/method.Firmware.parse_stream.html -share/doc/libfwupdplugin/method.Firmware.remove_image.html -share/doc/libfwupdplugin/method.Firmware.remove_image_by_id.html -share/doc/libfwupdplugin/method.Firmware.remove_image_by_idx.html -share/doc/libfwupdplugin/method.Firmware.set_addr.html -share/doc/libfwupdplugin/method.Firmware.set_alignment.html -share/doc/libfwupdplugin/method.Firmware.set_bytes.html -share/doc/libfwupdplugin/method.Firmware.set_filename.html -share/doc/libfwupdplugin/method.Firmware.set_id.html -share/doc/libfwupdplugin/method.Firmware.set_idx.html -share/doc/libfwupdplugin/method.Firmware.set_images_max.html -share/doc/libfwupdplugin/method.Firmware.set_offset.html -share/doc/libfwupdplugin/method.Firmware.set_parent.html -share/doc/libfwupdplugin/method.Firmware.set_size.html -share/doc/libfwupdplugin/method.Firmware.set_size_max.html -share/doc/libfwupdplugin/method.Firmware.set_stream.html -share/doc/libfwupdplugin/method.Firmware.set_version.html -share/doc/libfwupdplugin/method.Firmware.set_version_format.html -share/doc/libfwupdplugin/method.Firmware.set_version_raw.html -share/doc/libfwupdplugin/method.Firmware.to_string.html -share/doc/libfwupdplugin/method.Firmware.tokenize.html -share/doc/libfwupdplugin/method.Firmware.write.html -share/doc/libfwupdplugin/method.Firmware.write_chunk.html -share/doc/libfwupdplugin/method.Firmware.write_file.html -share/doc/libfwupdplugin/method.FitFirmware.get_timestamp.html -share/doc/libfwupdplugin/method.FitFirmware.set_timestamp.html -share/doc/libfwupdplugin/method.HeciDevice.arbh_svn_get_info.html -share/doc/libfwupdplugin/method.HeciDevice.read_file.html -share/doc/libfwupdplugin/method.HeciDevice.read_file_ex.html -share/doc/libfwupdplugin/method.HidDescriptor.find_report.html -share/doc/libfwupdplugin/method.HidDevice.add_flag.html -share/doc/libfwupdplugin/method.HidDevice.get_ep_addr_in.html -share/doc/libfwupdplugin/method.HidDevice.get_ep_addr_out.html -share/doc/libfwupdplugin/method.HidDevice.get_interface.html -share/doc/libfwupdplugin/method.HidDevice.get_report.html -share/doc/libfwupdplugin/method.HidDevice.parse_descriptors.html -share/doc/libfwupdplugin/method.HidDevice.set_ep_addr_in.html -share/doc/libfwupdplugin/method.HidDevice.set_ep_addr_out.html -share/doc/libfwupdplugin/method.HidDevice.set_interface.html -share/doc/libfwupdplugin/method.HidDevice.set_report.html -share/doc/libfwupdplugin/method.HidrawDevice.get_bus_type.html -share/doc/libfwupdplugin/method.HidrawDevice.get_feature.html -share/doc/libfwupdplugin/method.HidrawDevice.get_report.html -share/doc/libfwupdplugin/method.HidrawDevice.parse_descriptor.html -share/doc/libfwupdplugin/method.HidrawDevice.set_feature.html -share/doc/libfwupdplugin/method.HidrawDevice.set_report.html -share/doc/libfwupdplugin/method.Hwids.add_guid.html -share/doc/libfwupdplugin/method.Hwids.add_value.html -share/doc/libfwupdplugin/method.Hwids.get_chid_keys.html -share/doc/libfwupdplugin/method.Hwids.get_guid.html -share/doc/libfwupdplugin/method.Hwids.get_guids.html -share/doc/libfwupdplugin/method.Hwids.get_keys.html -share/doc/libfwupdplugin/method.Hwids.get_replace_keys.html -share/doc/libfwupdplugin/method.Hwids.get_replace_values.html -share/doc/libfwupdplugin/method.Hwids.get_value.html -share/doc/libfwupdplugin/method.Hwids.has_guid.html -share/doc/libfwupdplugin/method.I2cDevice.read.html -share/doc/libfwupdplugin/method.I2cDevice.set_address.html -share/doc/libfwupdplugin/method.I2cDevice.write.html -share/doc/libfwupdplugin/method.IOChannel.read_byte_array.html -share/doc/libfwupdplugin/method.IOChannel.read_bytes.html -share/doc/libfwupdplugin/method.IOChannel.read_raw.html -share/doc/libfwupdplugin/method.IOChannel.seek.html -share/doc/libfwupdplugin/method.IOChannel.shutdown.html -share/doc/libfwupdplugin/method.IOChannel.unix_get_fd.html -share/doc/libfwupdplugin/method.IOChannel.write_byte_array.html -share/doc/libfwupdplugin/method.IOChannel.write_bytes.html -share/doc/libfwupdplugin/method.IOChannel.write_raw.html -share/doc/libfwupdplugin/method.IOChannel.write_stream.html -share/doc/libfwupdplugin/method.IfdFirmware.check_jedec_cmd.html -share/doc/libfwupdplugin/method.IfdImage.get_access.html -share/doc/libfwupdplugin/method.IfdImage.set_access.html -share/doc/libfwupdplugin/method.IhexFirmware.get_records.html -share/doc/libfwupdplugin/method.IhexFirmware.set_padding_value.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_device_id.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_flash_size.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_model_id.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.get_vendor_id.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.has_pd.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.is_host.html -share/doc/libfwupdplugin/method.IntelThunderboltNvm.is_native.html -share/doc/libfwupdplugin/method.Ioctl.add_const_buffer.html -share/doc/libfwupdplugin/method.Ioctl.add_key_as_u16.html -share/doc/libfwupdplugin/method.Ioctl.add_key_as_u8.html -share/doc/libfwupdplugin/method.Ioctl.add_mutable_buffer.html -share/doc/libfwupdplugin/method.Ioctl.execute.html -share/doc/libfwupdplugin/method.Ioctl.set_name.html -share/doc/libfwupdplugin/method.KernelSearchPathLocker.get_path.html -share/doc/libfwupdplugin/method.LinearFirmware.get_image_gtype.html -share/doc/libfwupdplugin/method.MeiDevice.connect.html -share/doc/libfwupdplugin/method.MeiDevice.get_fw_status.html -share/doc/libfwupdplugin/method.MeiDevice.get_fw_ver.html -share/doc/libfwupdplugin/method.MeiDevice.get_max_msg_length.html -share/doc/libfwupdplugin/method.MeiDevice.get_protocol_version.html -share/doc/libfwupdplugin/method.MeiDevice.read.html -share/doc/libfwupdplugin/method.MeiDevice.write.html -share/doc/libfwupdplugin/method.MsgpackItem.get_array.html -share/doc/libfwupdplugin/method.MsgpackItem.get_binary.html -share/doc/libfwupdplugin/method.MsgpackItem.get_boolean.html -share/doc/libfwupdplugin/method.MsgpackItem.get_float.html -share/doc/libfwupdplugin/method.MsgpackItem.get_integer.html -share/doc/libfwupdplugin/method.MsgpackItem.get_kind.html -share/doc/libfwupdplugin/method.MsgpackItem.get_map.html -share/doc/libfwupdplugin/method.MsgpackItem.get_string.html -share/doc/libfwupdplugin/method.OpromFirmware.get_compression_type.html -share/doc/libfwupdplugin/method.OpromFirmware.get_machine_type.html -share/doc/libfwupdplugin/method.OpromFirmware.get_subsystem.html -share/doc/libfwupdplugin/method.PartialInputStream.get_offset.html -share/doc/libfwupdplugin/method.PartialInputStream.get_size.html -share/doc/libfwupdplugin/method.PciDevice.get_revision.html -share/doc/libfwupdplugin/method.PciDevice.get_subsystem_pid.html -share/doc/libfwupdplugin/method.PciDevice.get_subsystem_vid.html -share/doc/libfwupdplugin/method.PciDevice.set_revision.html -share/doc/libfwupdplugin/method.PciDevice.set_subsystem_pid.html -share/doc/libfwupdplugin/method.PciDevice.set_subsystem_vid.html -share/doc/libfwupdplugin/method.Plugin.add_device_gtype.html -share/doc/libfwupdplugin/method.Plugin.add_device_udev_subsystem.html -share/doc/libfwupdplugin/method.Plugin.add_firmware_gtype.html -share/doc/libfwupdplugin/method.Plugin.add_report_metadata.html -share/doc/libfwupdplugin/method.Plugin.add_rule.html -share/doc/libfwupdplugin/method.Plugin.add_string.html -share/doc/libfwupdplugin/method.Plugin.add_udev_subsystem.html -share/doc/libfwupdplugin/method.Plugin.alloc_data.html -share/doc/libfwupdplugin/method.Plugin.cache_add.html -share/doc/libfwupdplugin/method.Plugin.cache_lookup.html -share/doc/libfwupdplugin/method.Plugin.cache_remove.html -share/doc/libfwupdplugin/method.Plugin.device_add.html -share/doc/libfwupdplugin/method.Plugin.device_register.html -share/doc/libfwupdplugin/method.Plugin.device_remove.html -share/doc/libfwupdplugin/method.Plugin.get_config_value.html -share/doc/libfwupdplugin/method.Plugin.get_config_value_boolean.html -share/doc/libfwupdplugin/method.Plugin.get_context.html -share/doc/libfwupdplugin/method.Plugin.get_data.html -share/doc/libfwupdplugin/method.Plugin.get_device_gtype_default.html -share/doc/libfwupdplugin/method.Plugin.get_device_gtypes.html -share/doc/libfwupdplugin/method.Plugin.get_devices.html -share/doc/libfwupdplugin/method.Plugin.get_name.html -share/doc/libfwupdplugin/method.Plugin.get_order.html -share/doc/libfwupdplugin/method.Plugin.get_priority.html -share/doc/libfwupdplugin/method.Plugin.get_report_metadata.html -share/doc/libfwupdplugin/method.Plugin.get_rules.html -share/doc/libfwupdplugin/method.Plugin.is_open.html -share/doc/libfwupdplugin/method.Plugin.name_compare.html -share/doc/libfwupdplugin/method.Plugin.open.html -share/doc/libfwupdplugin/method.Plugin.order_compare.html -share/doc/libfwupdplugin/method.Plugin.reset_config_values.html -share/doc/libfwupdplugin/method.Plugin.runner_activate.html -share/doc/libfwupdplugin/method.Plugin.runner_add_security_attrs.html -share/doc/libfwupdplugin/method.Plugin.runner_attach.html -share/doc/libfwupdplugin/method.Plugin.runner_backend_device_added.html -share/doc/libfwupdplugin/method.Plugin.runner_backend_device_changed.html -share/doc/libfwupdplugin/method.Plugin.runner_cleanup.html -share/doc/libfwupdplugin/method.Plugin.runner_clear_results.html -share/doc/libfwupdplugin/method.Plugin.runner_coldplug.html -share/doc/libfwupdplugin/method.Plugin.runner_composite_cleanup.html -share/doc/libfwupdplugin/method.Plugin.runner_composite_prepare.html -share/doc/libfwupdplugin/method.Plugin.runner_detach.html -share/doc/libfwupdplugin/method.Plugin.runner_device_added.html -share/doc/libfwupdplugin/method.Plugin.runner_device_created.html -share/doc/libfwupdplugin/method.Plugin.runner_device_register.html -share/doc/libfwupdplugin/method.Plugin.runner_device_removed.html -share/doc/libfwupdplugin/method.Plugin.runner_fix_host_security_attr.html -share/doc/libfwupdplugin/method.Plugin.runner_get_results.html -share/doc/libfwupdplugin/method.Plugin.runner_init.html -share/doc/libfwupdplugin/method.Plugin.runner_modify_config.html -share/doc/libfwupdplugin/method.Plugin.runner_prepare.html -share/doc/libfwupdplugin/method.Plugin.runner_ready.html -share/doc/libfwupdplugin/method.Plugin.runner_reboot_cleanup.html -share/doc/libfwupdplugin/method.Plugin.runner_reload.html -share/doc/libfwupdplugin/method.Plugin.runner_startup.html -share/doc/libfwupdplugin/method.Plugin.runner_undo_host_security_attr.html -share/doc/libfwupdplugin/method.Plugin.runner_unlock.html -share/doc/libfwupdplugin/method.Plugin.runner_verify.html -share/doc/libfwupdplugin/method.Plugin.runner_write_firmware.html -share/doc/libfwupdplugin/method.Plugin.security_attr_new.html -share/doc/libfwupdplugin/method.Plugin.set_config_default.html -share/doc/libfwupdplugin/method.Plugin.set_config_value.html -share/doc/libfwupdplugin/method.Plugin.set_context.html -share/doc/libfwupdplugin/method.Plugin.set_device_gtype_default.html -share/doc/libfwupdplugin/method.Plugin.set_name.html -share/doc/libfwupdplugin/method.Plugin.set_order.html -share/doc/libfwupdplugin/method.Plugin.set_priority.html -share/doc/libfwupdplugin/method.Plugin.to_string.html -share/doc/libfwupdplugin/method.Progress.add_flag.html -share/doc/libfwupdplugin/method.Progress.add_step.html -share/doc/libfwupdplugin/method.Progress.finished.html -share/doc/libfwupdplugin/method.Progress.get_child.html -share/doc/libfwupdplugin/method.Progress.get_duration.html -share/doc/libfwupdplugin/method.Progress.get_id.html -share/doc/libfwupdplugin/method.Progress.get_name.html -share/doc/libfwupdplugin/method.Progress.get_percentage.html -share/doc/libfwupdplugin/method.Progress.get_profile.html -share/doc/libfwupdplugin/method.Progress.get_status.html -share/doc/libfwupdplugin/method.Progress.get_steps.html -share/doc/libfwupdplugin/method.Progress.has_flag.html -share/doc/libfwupdplugin/method.Progress.remove_flag.html -share/doc/libfwupdplugin/method.Progress.reset.html -share/doc/libfwupdplugin/method.Progress.set_id.html -share/doc/libfwupdplugin/method.Progress.set_name.html -share/doc/libfwupdplugin/method.Progress.set_percentage.html -share/doc/libfwupdplugin/method.Progress.set_percentage_full.html -share/doc/libfwupdplugin/method.Progress.set_profile.html -share/doc/libfwupdplugin/method.Progress.set_status.html -share/doc/libfwupdplugin/method.Progress.set_steps.html -share/doc/libfwupdplugin/method.Progress.sleep.html -share/doc/libfwupdplugin/method.Progress.step_done.html -share/doc/libfwupdplugin/method.Progress.traceback.html -share/doc/libfwupdplugin/method.Quirks.add_possible_key.html -share/doc/libfwupdplugin/method.Quirks.load.html -share/doc/libfwupdplugin/method.Quirks.lookup_by_id.html -share/doc/libfwupdplugin/method.Quirks.lookup_by_id_iter.html -share/doc/libfwupdplugin/method.SecurityAttrs.append.html -share/doc/libfwupdplugin/method.SecurityAttrs.append_internal.html -share/doc/libfwupdplugin/method.SecurityAttrs.calculate_hsi.html -share/doc/libfwupdplugin/method.SecurityAttrs.compare.html -share/doc/libfwupdplugin/method.SecurityAttrs.depsolve.html -share/doc/libfwupdplugin/method.SecurityAttrs.equal.html -share/doc/libfwupdplugin/method.SecurityAttrs.get_all.html -share/doc/libfwupdplugin/method.SecurityAttrs.get_by_appstream_id.html -share/doc/libfwupdplugin/method.SecurityAttrs.is_valid.html -share/doc/libfwupdplugin/method.SecurityAttrs.remove_all.html -share/doc/libfwupdplugin/method.SecurityAttrs.to_variant.html -share/doc/libfwupdplugin/method.Smbios.get_data.html -share/doc/libfwupdplugin/method.Smbios.get_integer.html -share/doc/libfwupdplugin/method.Smbios.get_string.html -share/doc/libfwupdplugin/method.Smbios.setup.html -share/doc/libfwupdplugin/method.Smbios.setup_from_file.html -share/doc/libfwupdplugin/method.Smbios.setup_from_path.html -share/doc/libfwupdplugin/method.SrecFirmware.get_records.html -share/doc/libfwupdplugin/method.SrecFirmware.set_addr_max.html -share/doc/libfwupdplugin/method.SrecFirmware.set_addr_min.html -share/doc/libfwupdplugin/method.UdevDevice.add_open_flag.html -share/doc/libfwupdplugin/method.UdevDevice.add_property.html -share/doc/libfwupdplugin/method.UdevDevice.emit_changed.html -share/doc/libfwupdplugin/method.UdevDevice.get_bind_id.html -share/doc/libfwupdplugin/method.UdevDevice.get_device_file.html -share/doc/libfwupdplugin/method.UdevDevice.get_device_file_from_subsystem.html -share/doc/libfwupdplugin/method.UdevDevice.get_devpath.html -share/doc/libfwupdplugin/method.UdevDevice.get_devtype.html -share/doc/libfwupdplugin/method.UdevDevice.get_driver.html -share/doc/libfwupdplugin/method.UdevDevice.get_io_channel.html -share/doc/libfwupdplugin/method.UdevDevice.get_number.html -share/doc/libfwupdplugin/method.UdevDevice.get_subsystem.html -share/doc/libfwupdplugin/method.UdevDevice.get_subsystem_depth.html -share/doc/libfwupdplugin/method.UdevDevice.get_subsystem_devtype.html -share/doc/libfwupdplugin/method.UdevDevice.get_sysfs_path.html -share/doc/libfwupdplugin/method.UdevDevice.ioctl.html -share/doc/libfwupdplugin/method.UdevDevice.ioctl_new.html -share/doc/libfwupdplugin/method.UdevDevice.list_sysfs.html -share/doc/libfwupdplugin/method.UdevDevice.match_subsystem.html -share/doc/libfwupdplugin/method.UdevDevice.parse_number.html -share/doc/libfwupdplugin/method.UdevDevice.pread.html -share/doc/libfwupdplugin/method.UdevDevice.pwrite.html -share/doc/libfwupdplugin/method.UdevDevice.read.html -share/doc/libfwupdplugin/method.UdevDevice.read_bytes.html -share/doc/libfwupdplugin/method.UdevDevice.read_property.html -share/doc/libfwupdplugin/method.UdevDevice.read_sysfs.html -share/doc/libfwupdplugin/method.UdevDevice.read_sysfs_bytes.html -share/doc/libfwupdplugin/method.UdevDevice.remove_open_flag.html -share/doc/libfwupdplugin/method.UdevDevice.reopen.html -share/doc/libfwupdplugin/method.UdevDevice.seek.html -share/doc/libfwupdplugin/method.UdevDevice.set_bind_id.html -share/doc/libfwupdplugin/method.UdevDevice.set_device_file.html -share/doc/libfwupdplugin/method.UdevDevice.set_devtype.html -share/doc/libfwupdplugin/method.UdevDevice.set_io_channel.html -share/doc/libfwupdplugin/method.UdevDevice.set_number.html -share/doc/libfwupdplugin/method.UdevDevice.set_physical_id.html -share/doc/libfwupdplugin/method.UdevDevice.set_subsystem.html -share/doc/libfwupdplugin/method.UdevDevice.write.html -share/doc/libfwupdplugin/method.UdevDevice.write_bytes.html -share/doc/libfwupdplugin/method.UdevDevice.write_sysfs.html -share/doc/libfwupdplugin/method.UdevDevice.write_sysfs_byte_array.html -share/doc/libfwupdplugin/method.UdevDevice.write_sysfs_bytes.html -share/doc/libfwupdplugin/method.UefiDevice.get_efivar_bytes.html -share/doc/libfwupdplugin/method.UefiDevice.get_guid.html -share/doc/libfwupdplugin/method.UefiDevice.get_name.html -share/doc/libfwupdplugin/method.UefiDevice.set_efivar_bytes.html -share/doc/libfwupdplugin/method.UefiDevice.set_guid.html -share/doc/libfwupdplugin/method.UefiDevice.set_name.html -share/doc/libfwupdplugin/method.UsbBosDescriptor.get_capability.html -share/doc/libfwupdplugin/method.UsbConfigDescriptor.get_configuration.html -share/doc/libfwupdplugin/method.UsbConfigDescriptor.get_configuration_value.html -share/doc/libfwupdplugin/method.UsbDevice.add_interface.html -share/doc/libfwupdplugin/method.UsbDevice.bulk_transfer.html -share/doc/libfwupdplugin/method.UsbDevice.claim_interface.html -share/doc/libfwupdplugin/method.UsbDevice.control_transfer.html -share/doc/libfwupdplugin/method.UsbDevice.get_address.html -share/doc/libfwupdplugin/method.UsbDevice.get_bus.html -share/doc/libfwupdplugin/method.UsbDevice.get_claim_retry_count.html -share/doc/libfwupdplugin/method.UsbDevice.get_class.html -share/doc/libfwupdplugin/method.UsbDevice.get_configuration_index.html -share/doc/libfwupdplugin/method.UsbDevice.get_custom_index.html -share/doc/libfwupdplugin/method.UsbDevice.get_dev.html -share/doc/libfwupdplugin/method.UsbDevice.get_hid_descriptors.html -share/doc/libfwupdplugin/method.UsbDevice.get_interface.html -share/doc/libfwupdplugin/method.UsbDevice.get_interfaces.html -share/doc/libfwupdplugin/method.UsbDevice.get_manufacturer_index.html -share/doc/libfwupdplugin/method.UsbDevice.get_product_index.html -share/doc/libfwupdplugin/method.UsbDevice.get_release.html -share/doc/libfwupdplugin/method.UsbDevice.get_serial_number_index.html -share/doc/libfwupdplugin/method.UsbDevice.get_spec.html -share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor.html -share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor_bytes.html -share/doc/libfwupdplugin/method.UsbDevice.get_string_descriptor_bytes_full.html -share/doc/libfwupdplugin/method.UsbDevice.interrupt_transfer.html -share/doc/libfwupdplugin/method.UsbDevice.release_interface.html -share/doc/libfwupdplugin/method.UsbDevice.reset.html -share/doc/libfwupdplugin/method.UsbDevice.set_claim_retry_count.html -share/doc/libfwupdplugin/method.UsbDevice.set_configuration.html -share/doc/libfwupdplugin/method.UsbDevice.set_interface_alt.html -share/doc/libfwupdplugin/method.UsbDeviceDs20.apply_to_device.html -share/doc/libfwupdplugin/method.UsbDeviceDs20.set_version_lowest.html -share/doc/libfwupdplugin/method.UsbEndpoint.get_address.html -share/doc/libfwupdplugin/method.UsbEndpoint.get_direction.html -share/doc/libfwupdplugin/method.UsbEndpoint.get_maximum_packet_size.html -share/doc/libfwupdplugin/method.UsbEndpoint.get_number.html -share/doc/libfwupdplugin/method.UsbEndpoint.get_polling_interval.html -share/doc/libfwupdplugin/method.UsbHidDescriptor.get_blob.html -share/doc/libfwupdplugin/method.UsbHidDescriptor.get_descriptor_length.html -share/doc/libfwupdplugin/method.UsbHidDescriptor.get_iface_number.html -share/doc/libfwupdplugin/method.UsbHidDescriptor.set_blob.html -share/doc/libfwupdplugin/method.UsbHidDescriptor.set_iface_number.html -share/doc/libfwupdplugin/method.UsbInterface.add_endpoint.html -share/doc/libfwupdplugin/method.UsbInterface.get_alternate.html -share/doc/libfwupdplugin/method.UsbInterface.get_class.html -share/doc/libfwupdplugin/method.UsbInterface.get_endpoints.html -share/doc/libfwupdplugin/method.UsbInterface.get_index.html -share/doc/libfwupdplugin/method.UsbInterface.get_number.html -share/doc/libfwupdplugin/method.UsbInterface.get_protocol.html -share/doc/libfwupdplugin/method.UsbInterface.get_subclass.html -share/doc/libfwupdplugin/method.V4lDevice.get_caps.html -share/doc/libfwupdplugin/method.V4lDevice.get_index.html -share/doc/libfwupdplugin/method.Volume.check_free_space.html -share/doc/libfwupdplugin/method.Volume.get_block_name.html -share/doc/libfwupdplugin/method.Volume.get_block_size.html -share/doc/libfwupdplugin/method.Volume.get_id.html -share/doc/libfwupdplugin/method.Volume.get_id_type.html -share/doc/libfwupdplugin/method.Volume.get_mount_point.html -share/doc/libfwupdplugin/method.Volume.get_partition_kind.html -share/doc/libfwupdplugin/method.Volume.get_partition_name.html -share/doc/libfwupdplugin/method.Volume.get_partition_number.html -share/doc/libfwupdplugin/method.Volume.get_partition_offset.html -share/doc/libfwupdplugin/method.Volume.get_partition_size.html -share/doc/libfwupdplugin/method.Volume.get_partition_uuid.html -share/doc/libfwupdplugin/method.Volume.get_size.html -share/doc/libfwupdplugin/method.Volume.is_encrypted.html -share/doc/libfwupdplugin/method.Volume.is_internal.html -share/doc/libfwupdplugin/method.Volume.is_mdraid.html -share/doc/libfwupdplugin/method.Volume.is_mounted.html -share/doc/libfwupdplugin/method.Volume.mount.html -share/doc/libfwupdplugin/method.Volume.unmount.html -share/doc/libfwupdplugin/method.VolumeLocker.close.html -share/doc/libfwupdplugin/method.X509Certificate.get_activation_time.html -share/doc/libfwupdplugin/method.X509Certificate.get_issuer.html -share/doc/libfwupdplugin/method.X509Certificate.get_subject.html -share/doc/libfwupdplugin/modem-manager-README.html -share/doc/libfwupdplugin/msr-README.html -share/doc/libfwupdplugin/mtd-README.html -share/doc/libfwupdplugin/nordic-hid-README.html -share/doc/libfwupdplugin/nvme-README.html -share/doc/libfwupdplugin/only-trusted.html -share/doc/libfwupdplugin/org.freedesktop.fwupd.svg -share/doc/libfwupdplugin/parade-lspcon-README.html -share/doc/libfwupdplugin/parade-usbhub-README.html -share/doc/libfwupdplugin/pci-bcr-README.html -share/doc/libfwupdplugin/pci-mei-README.html -share/doc/libfwupdplugin/pci-psp-README.html -share/doc/libfwupdplugin/pixart-rf-README.html -share/doc/libfwupdplugin/powerd-README.html -share/doc/libfwupdplugin/property.Backend.can-invalidate.html -share/doc/libfwupdplugin/property.Backend.context.html -share/doc/libfwupdplugin/property.Backend.device-gtype.html -share/doc/libfwupdplugin/property.Backend.name.html -share/doc/libfwupdplugin/property.BluezDevice.object-manager.html -share/doc/libfwupdplugin/property.BluezDevice.proxy.html -share/doc/libfwupdplugin/property.CfiDevice.flash-id.html -share/doc/libfwupdplugin/property.Context.battery-level.html -share/doc/libfwupdplugin/property.Context.battery-threshold.html -share/doc/libfwupdplugin/property.Context.display-state.html -share/doc/libfwupdplugin/property.Context.flags.html -share/doc/libfwupdplugin/property.Context.lid-state.html -share/doc/libfwupdplugin/property.Context.power-state.html -share/doc/libfwupdplugin/property.Device.backend-id.html -share/doc/libfwupdplugin/property.Device.backend.html -share/doc/libfwupdplugin/property.Device.context.html -share/doc/libfwupdplugin/property.Device.equivalent-id.html -share/doc/libfwupdplugin/property.Device.logical-id.html -share/doc/libfwupdplugin/property.Device.parent.html -share/doc/libfwupdplugin/property.Device.physical-id.html -share/doc/libfwupdplugin/property.Device.pid.html -share/doc/libfwupdplugin/property.Device.private-flags.html -share/doc/libfwupdplugin/property.Device.proxy.html -share/doc/libfwupdplugin/property.Device.required-free.html -share/doc/libfwupdplugin/property.Device.update-image.html -share/doc/libfwupdplugin/property.Device.update-message.html -share/doc/libfwupdplugin/property.Device.vid.html -share/doc/libfwupdplugin/property.DpauxDevice.dpcd-ieee-oui.html -share/doc/libfwupdplugin/property.Firmware.parent.html -share/doc/libfwupdplugin/property.HidDevice.interface.html -share/doc/libfwupdplugin/property.LinearFirmware.image-gtype.html -share/doc/libfwupdplugin/property.Plugin.context.html -share/doc/libfwupdplugin/property.UdevDevice.bind-id.html -share/doc/libfwupdplugin/property.UdevDevice.device-file.html -share/doc/libfwupdplugin/property.UdevDevice.devtype.html -share/doc/libfwupdplugin/property.UdevDevice.driver.html -share/doc/libfwupdplugin/property.UdevDevice.subsystem.html -share/doc/libfwupdplugin/property.UsbDevice.libusb-device.html -share/doc/libfwupdplugin/property.Volume.mount-path.html -share/doc/libfwupdplugin/property.Volume.proxy-block.html -share/doc/libfwupdplugin/property.Volume.proxy-filesystem.html -share/doc/libfwupdplugin/property.Volume.proxy-partition.html -share/doc/libfwupdplugin/qc-firehose-README.html -share/doc/libfwupdplugin/qc-s5gen2-README.html -share/doc/libfwupdplugin/qsi-dock-README.html -share/doc/libfwupdplugin/realtek-mst-README.html -share/doc/libfwupdplugin/redfish-README.html -share/doc/libfwupdplugin/rp-pico-README.html -share/doc/libfwupdplugin/rts54hub-README.html -share/doc/libfwupdplugin/scsi-README.html -share/doc/libfwupdplugin/search.js -share/doc/libfwupdplugin/signal.Backend.device-added.html -share/doc/libfwupdplugin/signal.Backend.device-changed.html -share/doc/libfwupdplugin/signal.Backend.device-removed.html -share/doc/libfwupdplugin/signal.BluezDevice.changed.html -share/doc/libfwupdplugin/signal.Config.changed.html -share/doc/libfwupdplugin/signal.Config.loaded.html -share/doc/libfwupdplugin/signal.Context.housekeeping.html -share/doc/libfwupdplugin/signal.Context.security-changed.html -share/doc/libfwupdplugin/signal.Device.child-added.html -share/doc/libfwupdplugin/signal.Device.child-removed.html -share/doc/libfwupdplugin/signal.Device.request.html -share/doc/libfwupdplugin/signal.Plugin.check-supported.html -share/doc/libfwupdplugin/signal.Plugin.device-added.html -share/doc/libfwupdplugin/signal.Plugin.device-register.html -share/doc/libfwupdplugin/signal.Plugin.device-removed.html -share/doc/libfwupdplugin/signal.Plugin.rules-changed.html -share/doc/libfwupdplugin/signal.Progress.percentage-changed.html -share/doc/libfwupdplugin/signal.Progress.status-changed.html -share/doc/libfwupdplugin/signal.UdevDevice.changed.html -share/doc/libfwupdplugin/solarized-dark.css -share/doc/libfwupdplugin/solarized-light.css -share/doc/libfwupdplugin/steelseries-README.html -share/doc/libfwupdplugin/struct.ErrorConvertEntry.html -share/doc/libfwupdplugin/struct.ErrorMapEntry.html -share/doc/libfwupdplugin/struct.PluginData.html -share/doc/libfwupdplugin/struct.PluginVfuncs.html -share/doc/libfwupdplugin/style.css -share/doc/libfwupdplugin/supermicro-license.html -share/doc/libfwupdplugin/synaptics-cape-README.html -share/doc/libfwupdplugin/synaptics-cxaudio-README.html -share/doc/libfwupdplugin/synaptics-mst-README.html -share/doc/libfwupdplugin/synaptics-prometheus-README.html -share/doc/libfwupdplugin/synaptics-rmi-README.html -share/doc/libfwupdplugin/synaptics-vmm9-README.html -share/doc/libfwupdplugin/system76-launch-README.html -share/doc/libfwupdplugin/telink-dfu-README.html -share/doc/libfwupdplugin/test-README.html -share/doc/libfwupdplugin/test_task.png -share/doc/libfwupdplugin/thelio-io-README.html -share/doc/libfwupdplugin/thunderbolt-README.html -share/doc/libfwupdplugin/ti-tps6598x-README.html -share/doc/libfwupdplugin/tpm-README.html -share/doc/libfwupdplugin/tutorial.html -share/doc/libfwupdplugin/type_func.Archive.compression_from_string.html -share/doc/libfwupdplugin/type_func.Archive.compression_to_string.html -share/doc/libfwupdplugin/type_func.Archive.format_from_string.html -share/doc/libfwupdplugin/type_func.Archive.format_to_string.html -share/doc/libfwupdplugin/type_func.CfiDevice.cmd_to_string.html -share/doc/libfwupdplugin/type_func.ChunkArray.mutable_new.html -share/doc/libfwupdplugin/type_func.ChunkArray.new.html -share/doc/libfwupdplugin/type_func.ChunkArray.to_string.html -share/doc/libfwupdplugin/type_func.Device.instance_flags_to_string.html -share/doc/libfwupdplugin/type_func.EfiFile.type_to_string.html -share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.partition_format_from_string.html -share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.partition_format_to_string.html -share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.signature_type_from_string.html -share/doc/libfwupdplugin/type_func.EfiHardDriveDevicePath.signature_type_to_string.html -share/doc/libfwupdplugin/type_func.EfiLoadOption.kind_from_string.html -share/doc/libfwupdplugin/type_func.EfiLoadOption.kind_to_string.html -share/doc/libfwupdplugin/type_func.EfiSection.type_to_string.html -share/doc/libfwupdplugin/type_func.EfiSignature.kind_from_string.html -share/doc/libfwupdplugin/type_func.EfiSignature.kind_to_string.html -share/doc/libfwupdplugin/type_func.EfiVolume.ext_entry_type_to_string.html -share/doc/libfwupdplugin/type_func.ErrorMapEntry.to_gerror.html -share/doc/libfwupdplugin/type_func.Firmware.flags_to_string.html -share/doc/libfwupdplugin/type_func.Firmware.strparse_uint16_safe.html -share/doc/libfwupdplugin/type_func.Firmware.strparse_uint24_safe.html -share/doc/libfwupdplugin/type_func.Firmware.strparse_uint32_safe.html -share/doc/libfwupdplugin/type_func.Firmware.strparse_uint4_safe.html -share/doc/libfwupdplugin/type_func.Firmware.strparse_uint8_safe.html -share/doc/libfwupdplugin/type_func.IOChannel.open_flags_to_string.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.arc_params_new.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.arc_params_set_pd_pointer.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_new.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_arc_params.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_available_sections.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_device_id.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_drom.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flags_host.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flags_is_native.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_flash_size.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_ucode.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.digital_set_version.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.dram_new.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_new.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_set_model_id.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.drom_set_vendor_id.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.family_from_string.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.family_to_string.html -share/doc/libfwupdplugin/type_func.IntelThunderboltNvm.section_to_string.html -share/doc/libfwupdplugin/type_func.MsgpackItem.kind_to_string.html -share/doc/libfwupdplugin/type_func.Plugin.guess_name_from_fn.html -share/doc/libfwupdplugin/type_func.SecurityAttr.add_bios_target_value.html -share/doc/libfwupdplugin/type_func.SecurityAttr.check_fwupd_version.html -share/doc/libfwupdplugin/type_func.Smbios.chassis_kind_to_string.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_class.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_protocol.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_device_sub_class.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_length.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_manufacturer_idx.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_max_packet_size0.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_num_configurations.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_product.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_product_idx.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_serial_number_idx.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_usb.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_get_vendor.html -share/doc/libfwupdplugin/type_func.UsbDevice.hdr_parse_stream.html -share/doc/libfwupdplugin/type_func.UsbDeviceMsDs20.desc_to_string.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_attributes.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_descriptor_type.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_endpoint_address.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_interval.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_length.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_get_max_packet_size.html -share/doc/libfwupdplugin/type_func.UsbEndpoint.hdr_parse_stream.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_class_descriptor_length.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_class_descriptor_type.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_country_code.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_hid.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_length.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_get_num_descriptors.html -share/doc/libfwupdplugin/type_func.UsbHidDescriptor.hdr_parse_stream.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_alternate_setting.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_class.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_number.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_protocol.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_interface_sub_class.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_length.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_get_num_endpoints.html -share/doc/libfwupdplugin/type_func.UsbInterface.hdr_parse_stream.html -share/doc/libfwupdplugin/type_func.Volume.kind_convert_to_gpt.html -share/doc/libfwupdplugin/type_func.Volume.new_by_kind.html -share/doc/libfwupdplugin/uefi-capsule-README.html -share/doc/libfwupdplugin/uefi-db-README.html -share/doc/libfwupdplugin/uefi-db.html -share/doc/libfwupdplugin/uefi-dbx-README.html -share/doc/libfwupdplugin/uefi-esrt-README.html -share/doc/libfwupdplugin/uefi-kek-README.html -share/doc/libfwupdplugin/uefi-mok-README.html -share/doc/libfwupdplugin/uefi-pk-README.html -share/doc/libfwupdplugin/uefi-recovery-README.html -share/doc/libfwupdplugin/uefi-sbat-README.html -share/doc/libfwupdplugin/uf2-README.html -share/doc/libfwupdplugin/upower-README.html -share/doc/libfwupdplugin/urlmap_fwupdplugin.js -share/doc/libfwupdplugin/usi-dock-README.html -share/doc/libfwupdplugin/vbe-README.html -share/doc/libfwupdplugin/vfunc.Backend.coldplug.html -share/doc/libfwupdplugin/vfunc.Backend.create_device.html -share/doc/libfwupdplugin/vfunc.Backend.create_device_for_donor.html -share/doc/libfwupdplugin/vfunc.Backend.get_device_parent.html -share/doc/libfwupdplugin/vfunc.Backend.invalidate.html -share/doc/libfwupdplugin/vfunc.Backend.registered.html -share/doc/libfwupdplugin/vfunc.Backend.setup.html -share/doc/libfwupdplugin/vfunc.Backend.to_string.html -share/doc/libfwupdplugin/vfunc.CfiDevice.chip_select.html -share/doc/libfwupdplugin/vfunc.CfiDevice.read_jedec.html -share/doc/libfwupdplugin/vfunc.CfiDevice.send_command.html -share/doc/libfwupdplugin/vfunc.Context.housekeeping.html -share/doc/libfwupdplugin/vfunc.Context.security_changed.html -share/doc/libfwupdplugin/vfunc.Efivars.delete.html -share/doc/libfwupdplugin/vfunc.Efivars.delete_with_glob.html -share/doc/libfwupdplugin/vfunc.Efivars.exists.html -share/doc/libfwupdplugin/vfunc.Efivars.get_data.html -share/doc/libfwupdplugin/vfunc.Efivars.get_monitor.html -share/doc/libfwupdplugin/vfunc.Efivars.get_names.html -share/doc/libfwupdplugin/vfunc.Efivars.set_data.html -share/doc/libfwupdplugin/vfunc.Efivars.space_free.html -share/doc/libfwupdplugin/vfunc.Efivars.space_used.html -share/doc/libfwupdplugin/vfunc.Efivars.supported.html -share/doc/libfwupdplugin/vfunc.Firmware.build.html -share/doc/libfwupdplugin/vfunc.Firmware.check_compatible.html -share/doc/libfwupdplugin/vfunc.Firmware.convert_version.html -share/doc/libfwupdplugin/vfunc.Firmware.export.html -share/doc/libfwupdplugin/vfunc.Firmware.get_checksum.html -share/doc/libfwupdplugin/vfunc.Firmware.parse.html -share/doc/libfwupdplugin/vfunc.Firmware.tokenize.html -share/doc/libfwupdplugin/vfunc.Firmware.validate.html -share/doc/libfwupdplugin/vfunc.Firmware.write.html -share/doc/libfwupdplugin/vfunc.Plugin._check_supported.html -share/doc/libfwupdplugin/vfunc.Plugin._device_added.html -share/doc/libfwupdplugin/vfunc.Plugin._device_register.html -share/doc/libfwupdplugin/vfunc.Plugin._device_removed.html -share/doc/libfwupdplugin/vfunc.Plugin._percentage_changed.html -share/doc/libfwupdplugin/vfunc.Plugin._rules_changed.html -share/doc/libfwupdplugin/vfunc.Plugin._status_changed.html -share/doc/libfwupdplugin/vfunc.Plugin.activate.html -share/doc/libfwupdplugin/vfunc.Plugin.add_security_attrs.html -share/doc/libfwupdplugin/vfunc.Plugin.attach.html -share/doc/libfwupdplugin/vfunc.Plugin.backend_device_added.html -share/doc/libfwupdplugin/vfunc.Plugin.backend_device_changed.html -share/doc/libfwupdplugin/vfunc.Plugin.backend_device_removed.html -share/doc/libfwupdplugin/vfunc.Plugin.cleanup.html -share/doc/libfwupdplugin/vfunc.Plugin.clear_results.html -share/doc/libfwupdplugin/vfunc.Plugin.coldplug.html -share/doc/libfwupdplugin/vfunc.Plugin.composite_cleanup.html -share/doc/libfwupdplugin/vfunc.Plugin.composite_prepare.html -share/doc/libfwupdplugin/vfunc.Plugin.detach.html -share/doc/libfwupdplugin/vfunc.Plugin.device_added.html -share/doc/libfwupdplugin/vfunc.Plugin.device_created.html -share/doc/libfwupdplugin/vfunc.Plugin.device_registered.html -share/doc/libfwupdplugin/vfunc.Plugin.fix_host_security_attr.html -share/doc/libfwupdplugin/vfunc.Plugin.get_results.html -share/doc/libfwupdplugin/vfunc.Plugin.modify_config.html -share/doc/libfwupdplugin/vfunc.Plugin.prepare.html -share/doc/libfwupdplugin/vfunc.Plugin.ready.html -share/doc/libfwupdplugin/vfunc.Plugin.reboot_cleanup.html -share/doc/libfwupdplugin/vfunc.Plugin.startup.html -share/doc/libfwupdplugin/vfunc.Plugin.to_string.html -share/doc/libfwupdplugin/vfunc.Plugin.undo_host_security_attr.html -share/doc/libfwupdplugin/vfunc.Plugin.unlock.html -share/doc/libfwupdplugin/vfunc.Plugin.verify.html -share/doc/libfwupdplugin/vfunc.Plugin.write_firmware.html -share/doc/libfwupdplugin/vfunc.UsbDeviceDs20.parse.html -share/doc/libfwupdplugin/vli-README.html -share/doc/libfwupdplugin/wacom-raw-README.html -share/doc/libfwupdplugin/wacom-usb-README.html -share/doc/libfwupdplugin/wistron-dock-README.html +%%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 diff --git a/sysutils/javaservicewrapper/Makefile b/sysutils/javaservicewrapper/Makefile index d4a51da2f2d9..78fff18e6b0e 100644 --- a/sysutils/javaservicewrapper/Makefile +++ b/sysutils/javaservicewrapper/Makefile @@ -1,5 +1,5 @@ PORTNAME= javaservicewrapper -PORTVERSION= 3.5.60 +PORTVERSION= 3.6.3 CATEGORIES= sysutils java MASTER_SITES= https://wrapper.tanukisoftware.com/download/${PORTVERSION}/ DISTNAME= wrapper_${PORTVERSION}_src diff --git a/sysutils/javaservicewrapper/distinfo b/sysutils/javaservicewrapper/distinfo index bd9b8c008cbc..e0473f0e6e00 100644 --- a/sysutils/javaservicewrapper/distinfo +++ b/sysutils/javaservicewrapper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742215176 -SHA256 (wrapper_3.5.60_src.tar.gz) = 877896e14f375c0c881c3a50f8ee910bc6504b388fbbfe65128e79d763d08717 -SIZE (wrapper_3.5.60_src.tar.gz) = 831764 +TIMESTAMP = 1760527269 +SHA256 (wrapper_3.6.3_src.tar.gz) = 7bc5ad89ed21a39b4a4ed548dfe92fc587aed40e6c75059a71309fb8042ff580 +SIZE (wrapper_3.6.3_src.tar.gz) = 902583 diff --git a/sysutils/javaservicewrapper/pkg-message b/sysutils/javaservicewrapper/pkg-message new file mode 100644 index 000000000000..edcae7f29c15 --- /dev/null +++ b/sysutils/javaservicewrapper/pkg-message @@ -0,0 +1,14 @@ +[ +{ + type: upgrade + maximum_version: "3.6.0" + message: <<EOM +With the upgrade to version 3.6.0+ support for all properties ending with +'.stripquotes' in your wrapper.conf has been dropped and your application +won't start again. + +Read the release notes for more details: +https://wrapper.tanukisoftware.com/doc/english/release-notes.html#3.6.0 +EOM +} +] diff --git a/sysutils/javaservicewrapper/pkg-plist b/sysutils/javaservicewrapper/pkg-plist index c63c912d3815..10e4500a4d54 100644 --- a/sysutils/javaservicewrapper/pkg-plist +++ b/sysutils/javaservicewrapper/pkg-plist @@ -9,27 +9,64 @@ bin/javaservicewrapper %%DATADIR%%/lib/wrapperdemo.jar %%DATADIR%%/lib/wrappertest.jar %%DATADIR%%/lib/wrappertest2.jar +%%DATADIR%%/test/additionalproperties +%%DATADIR%%/test/additionalproperties.conf %%DATADIR%%/test/appparameterfile-01-empty %%DATADIR%%/test/appparameterfile-01-empty.conf %%DATADIR%%/test/appparameterfile-01-empty.param %%DATADIR%%/test/appparameterfile-02-1line %%DATADIR%%/test/appparameterfile-02-1line.conf %%DATADIR%%/test/appparameterfile-02-1line.param -%%DATADIR%%/test/appparameterfile-03-stripq-false -%%DATADIR%%/test/appparameterfile-03-stripq-false.conf -%%DATADIR%%/test/appparameterfile-03-stripq-false.param -%%DATADIR%%/test/appparameterfile-04-stripq-true -%%DATADIR%%/test/appparameterfile-04-stripq-true.conf -%%DATADIR%%/test/appparameterfile-04-stripq-true.param +%%DATADIR%%/test/appparameterfile-03-quotable-false +%%DATADIR%%/test/appparameterfile-03-quotable-false.conf +%%DATADIR%%/test/appparameterfile-03-quotable-false.param +%%DATADIR%%/test/appparameterfile-04-quotable-true +%%DATADIR%%/test/appparameterfile-04-quotable-true.conf +%%DATADIR%%/test/appparameterfile-04-quotable-true.param %%DATADIR%%/test/appparameterfile-05-encoding %%DATADIR%%/test/appparameterfile-05-encoding.conf %%DATADIR%%/test/appparameterfile-05-encoding.param -%%DATADIR%%/test/appparameterfile-06-multilines -%%DATADIR%%/test/appparameterfile-06-multilines.conf -%%DATADIR%%/test/appparameterfile-06-multilines.param -%%DATADIR%%/test/appparameterfile-07-envvars -%%DATADIR%%/test/appparameterfile-07-envvars.conf -%%DATADIR%%/test/appparameterfile-07-envvars.param +%%DATADIR%%/test/appparameterfile-06-multilines-quotable-false +%%DATADIR%%/test/appparameterfile-06-multilines-quotable-false.conf +%%DATADIR%%/test/appparameterfile-06-multilines-quotable-false.param +%%DATADIR%%/test/appparameterfile-07-multilines-quotable-true +%%DATADIR%%/test/appparameterfile-07-multilines-quotable-true.conf +%%DATADIR%%/test/appparameterfile-07-multilines-quotable-true.param +%%DATADIR%%/test/appparameterfile-08-envvars +%%DATADIR%%/test/appparameterfile-08-envvars.conf +%%DATADIR%%/test/appparameterfile-08-envvars.param +%%DATADIR%%/test/appproperties +%%DATADIR%%/test/appproperties.conf +%%DATADIR%%/test/apppropertyfile-01-empty +%%DATADIR%%/test/apppropertyfile-01-empty.conf +%%DATADIR%%/test/apppropertyfile-01-empty.param +%%DATADIR%%/test/apppropertyfile-02-1line +%%DATADIR%%/test/apppropertyfile-02-1line.conf +%%DATADIR%%/test/apppropertyfile-02-1line.param +%%DATADIR%%/test/apppropertyfile-03-quotable-false +%%DATADIR%%/test/apppropertyfile-03-quotable-false.conf +%%DATADIR%%/test/apppropertyfile-03-quotable-false.param +%%DATADIR%%/test/apppropertyfile-04-quotable-true +%%DATADIR%%/test/apppropertyfile-04-quotable-true.conf +%%DATADIR%%/test/apppropertyfile-04-quotable-true.param +%%DATADIR%%/test/apppropertyfile-05-encoding +%%DATADIR%%/test/apppropertyfile-05-encoding.conf +%%DATADIR%%/test/apppropertyfile-05-encoding.param +%%DATADIR%%/test/apppropertyfile-06-multilines-quotable-false +%%DATADIR%%/test/apppropertyfile-06-multilines-quotable-false.conf +%%DATADIR%%/test/apppropertyfile-06-multilines-quotable-false.param +%%DATADIR%%/test/apppropertyfile-07-multilines-quotable-true +%%DATADIR%%/test/apppropertyfile-07-multilines-quotable-true.conf +%%DATADIR%%/test/apppropertyfile-07-multilines-quotable-true.param +%%DATADIR%%/test/apppropertyfile-08-envvars +%%DATADIR%%/test/apppropertyfile-08-envvars.conf +%%DATADIR%%/test/apppropertyfile-08-envvars.param +%%DATADIR%%/test/backendparamslistener +%%DATADIR%%/test/backendparamslistener.conf +%%DATADIR%%/test/backendparamssimple +%%DATADIR%%/test/backendparamssimple.conf +%%DATADIR%%/test/backendparamsstartstop +%%DATADIR%%/test/backendparamsstartstop.conf %%DATADIR%%/test/backgroundthreads %%DATADIR%%/test/backgroundthreads.conf %%DATADIR%%/test/childwrapper @@ -39,12 +76,6 @@ bin/javaservicewrapper %%DATADIR%%/test/common/resourcelimit %%DATADIR%%/test/daemonthreads %%DATADIR%%/test/daemonthreads.conf -%%DATADIR%%/test/defaultstripquotes-01-none -%%DATADIR%%/test/defaultstripquotes-01-none.conf -%%DATADIR%%/test/defaultstripquotes-02-true -%%DATADIR%%/test/defaultstripquotes-02-true.conf -%%DATADIR%%/test/defaultstripquotes-03-false -%%DATADIR%%/test/defaultstripquotes-03-false.conf %%DATADIR%%/test/delayediorestarter %%DATADIR%%/test/delayediorestarter.conf %%DATADIR%%/test/envvars @@ -77,21 +108,36 @@ bin/javaservicewrapper %%DATADIR%%/test/javaadditionalfile-02-1line %%DATADIR%%/test/javaadditionalfile-02-1line.conf %%DATADIR%%/test/javaadditionalfile-02-1line.param -%%DATADIR%%/test/javaadditionalfile-03-stripq-false -%%DATADIR%%/test/javaadditionalfile-03-stripq-false.conf -%%DATADIR%%/test/javaadditionalfile-03-stripq-false.param -%%DATADIR%%/test/javaadditionalfile-04-stripq-true -%%DATADIR%%/test/javaadditionalfile-04-stripq-true.conf -%%DATADIR%%/test/javaadditionalfile-04-stripq-true.param +%%DATADIR%%/test/javaadditionalfile-03-quotable-false +%%DATADIR%%/test/javaadditionalfile-03-quotable-false.conf +%%DATADIR%%/test/javaadditionalfile-03-quotable-false.param +%%DATADIR%%/test/javaadditionalfile-04-quotable-true +%%DATADIR%%/test/javaadditionalfile-04-quotable-true.conf +%%DATADIR%%/test/javaadditionalfile-04-quotable-true.param %%DATADIR%%/test/javaadditionalfile-05-encoding %%DATADIR%%/test/javaadditionalfile-05-encoding.conf %%DATADIR%%/test/javaadditionalfile-05-encoding.param -%%DATADIR%%/test/javaadditionalfile-06-multilines -%%DATADIR%%/test/javaadditionalfile-06-multilines.conf -%%DATADIR%%/test/javaadditionalfile-06-multilines.param -%%DATADIR%%/test/javaadditionalfile-07-envvars -%%DATADIR%%/test/javaadditionalfile-07-envvars.conf -%%DATADIR%%/test/javaadditionalfile-07-envvars.param +%%DATADIR%%/test/javaadditionalfile-06-multilines-quotable-false +%%DATADIR%%/test/javaadditionalfile-06-multilines-quotable-false.conf +%%DATADIR%%/test/javaadditionalfile-06-multilines-quotable-false.param +%%DATADIR%%/test/javaadditionalfile-07-multilines-quotable-true +%%DATADIR%%/test/javaadditionalfile-07-multilines-quotable-true.conf +%%DATADIR%%/test/javaadditionalfile-07-multilines-quotable-true.param +%%DATADIR%%/test/javaadditionalfile-08-envvars +%%DATADIR%%/test/javaadditionalfile-08-envvars.conf +%%DATADIR%%/test/javaadditionalfile-08-envvars.param +%%DATADIR%%/test/javaadditionalscope-01-conf +%%DATADIR%%/test/javaadditionalscope-01-conf.conf +%%DATADIR%%/test/javaadditionalscope-02-file +%%DATADIR%%/test/javaadditionalscope-02-file.conf +%%DATADIR%%/test/javaadditionalscope-02-filequotableFALSE.param +%%DATADIR%%/test/javaadditionalscope-02-filequotableTRUE.param +%%DATADIR%%/test/javaadditionalsplit-01-conf +%%DATADIR%%/test/javaadditionalsplit-01-conf.conf +%%DATADIR%%/test/javaadditionalsplit-02-file +%%DATADIR%%/test/javaadditionalsplit-02-file.conf +%%DATADIR%%/test/javaadditionalsplit-02-filequotableFALSE.param +%%DATADIR%%/test/javaadditionalsplit-02-filequotableTRUE.param %%DATADIR%%/test/jvmencoding %%DATADIR%%/test/jvmencoding.conf %%DATADIR%%/test/jvmencoding2 @@ -118,6 +164,8 @@ bin/javaservicewrapper %%DATADIR%%/test/longrunningwithshutdownhook.conf %%DATADIR%%/test/memory %%DATADIR%%/test/memory.conf +%%DATADIR%%/test/module-nativeaccess +%%DATADIR%%/test/module-nativeaccess.conf %%DATADIR%%/test/module-standalone-jarapp %%DATADIR%%/test/module-standalone-jarapp-runtimeimage %%DATADIR%%/test/module-standalone-jarapp-runtimeimage.conf @@ -152,6 +200,8 @@ bin/javaservicewrapper %%DATADIR%%/test/onexit.conf %%DATADIR%%/test/outputloader %%DATADIR%%/test/outputloader.conf +%%DATADIR%%/test/parameters +%%DATADIR%%/test/parameters.conf %%DATADIR%%/test/passthrough %%DATADIR%%/test/passthrough.conf %%DATADIR%%/test/percentoutput @@ -177,6 +227,8 @@ bin/javaservicewrapper %%DATADIR%%/test/shutdownlock.conf %%DATADIR%%/test/simplewrapperlistener %%DATADIR%%/test/simplewrapperlistener.conf +%%DATADIR%%/test/slowclassinit +%%DATADIR%%/test/slowclassinit.conf %%DATADIR%%/test/slowstop %%DATADIR%%/test/slowstop.conf %%DATADIR%%/test/startstopstopandreturnwhilestarting @@ -187,8 +239,6 @@ bin/javaservicewrapper %%DATADIR%%/test/stopwhilestarting.conf %%DATADIR%%/test/stopwhilestartingforcestop %%DATADIR%%/test/stopwhilestartingforcestop.conf -%%DATADIR%%/test/systemproperty -%%DATADIR%%/test/systemproperty.conf %%DATADIR%%/test/template.conf %%DATADIR%%/test/template-module.conf %%DATADIR%%/test/timedlogoutput diff --git a/sysutils/stackit/Makefile b/sysutils/stackit/Makefile index f0b18632620c..be67f0bb4b4e 100644 --- a/sysutils/stackit/Makefile +++ b/sysutils/stackit/Makefile @@ -1,7 +1,6 @@ PORTNAME= stackit DISTVERSIONPREFIX= v -DISTVERSION= 0.44.0 -PORTREVISION= 1 +DISTVERSION= 0.44.1 CATEGORIES= sysutils MAINTAINER= gogolok@gmail.com diff --git a/sysutils/stackit/distinfo b/sysutils/stackit/distinfo index b8a11573992f..dde909082fb1 100644 --- a/sysutils/stackit/distinfo +++ b/sysutils/stackit/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1760361014 -SHA256 (go/sysutils_stackit/stackit-v0.44.0/v0.44.0.mod) = d01643fd9026430b5940e6a6847bbf6eb35e127259f932918c7d9634ef45b63e -SIZE (go/sysutils_stackit/stackit-v0.44.0/v0.44.0.mod) = 13041 -SHA256 (go/sysutils_stackit/stackit-v0.44.0/v0.44.0.zip) = 730574ae4de0531194265ee09bfcc44f34c071c95c0982aedaaafd9f09b1d759 -SIZE (go/sysutils_stackit/stackit-v0.44.0/v0.44.0.zip) = 2165408 +TIMESTAMP = 1760445981 +SHA256 (go/sysutils_stackit/stackit-v0.44.1/v0.44.1.mod) = d01643fd9026430b5940e6a6847bbf6eb35e127259f932918c7d9634ef45b63e +SIZE (go/sysutils_stackit/stackit-v0.44.1/v0.44.1.mod) = 13041 +SHA256 (go/sysutils_stackit/stackit-v0.44.1/v0.44.1.zip) = 6faacd5c6196adbbf59c346db65801db09616ef83c1c792a023d87c22787779a +SIZE (go/sysutils_stackit/stackit-v0.44.1/v0.44.1.zip) = 2167853 diff --git a/textproc/harper/Makefile b/textproc/harper/Makefile index e33f46aecd4f..501cab06e0cf 100644 --- a/textproc/harper/Makefile +++ b/textproc/harper/Makefile @@ -1,6 +1,6 @@ PORTNAME= harper DISTVERSIONPREFIX= v -DISTVERSION= 0.67.0 +DISTVERSION= 0.68.0 CATEGORIES= textproc MAINTAINER= ashish@FreeBSD.org diff --git a/textproc/harper/Makefile.crates b/textproc/harper/Makefile.crates index 1fd0a7863671..9050b6eb4021 100644 --- a/textproc/harper/Makefile.crates +++ b/textproc/harper/Makefile.crates @@ -470,7 +470,7 @@ CARGO_CRATES= addr2line-0.24.2 \ unicode-script-0.5.7 \ unicode-segmentation-1.12.0 \ unicode-width-0.1.14 \ - unicode-width-0.2.1 \ + unicode-width-0.2.2 \ unicode-xid-0.2.6 \ unscanny-0.1.0 \ unty-0.0.4 \ diff --git a/textproc/harper/distinfo b/textproc/harper/distinfo index 68a5fe461f58..03b9dd7bf01f 100644 --- a/textproc/harper/distinfo +++ b/textproc/harper/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1759787267 +TIMESTAMP = 1760620074 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 @@ -943,8 +943,8 @@ SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec9 SIZE (rust/crates/unicode-segmentation-1.12.0.crate) = 106323 SHA256 (rust/crates/unicode-width-0.1.14.crate) = 7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af SIZE (rust/crates/unicode-width-0.1.14.crate) = 271615 -SHA256 (rust/crates/unicode-width-0.2.1.crate) = 4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c -SIZE (rust/crates/unicode-width-0.2.1.crate) = 279344 +SHA256 (rust/crates/unicode-width-0.2.2.crate) = b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 +SIZE (rust/crates/unicode-width-0.2.2.crate) = 282768 SHA256 (rust/crates/unicode-xid-0.2.6.crate) = ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853 SIZE (rust/crates/unicode-xid-0.2.6.crate) = 15744 SHA256 (rust/crates/unscanny-0.1.0.crate) = e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47 @@ -1117,5 +1117,5 @@ SHA256 (rust/crates/zerovec-derive-0.11.1.crate) = 5b96237efa0c878c64bd89c436f66 SIZE (rust/crates/zerovec-derive-0.11.1.crate) = 21294 SHA256 (rust/crates/zip-1.1.4.crate) = 9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164 SIZE (rust/crates/zip-1.1.4.crate) = 77910 -SHA256 (Automattic-harper-v0.67.0_GH0.tar.gz) = bbdb0235ab6214923c740defb1b4f2e2bf6e414e941c725f1a76ca49feb78e5b -SIZE (Automattic-harper-v0.67.0_GH0.tar.gz) = 7402102 +SHA256 (Automattic-harper-v0.68.0_GH0.tar.gz) = 0ea869450f516558a8ae905af9270505503621b3cb1071bba8d24c2b8056b1d7 +SIZE (Automattic-harper-v0.68.0_GH0.tar.gz) = 7409856 diff --git a/textproc/otree/Makefile b/textproc/otree/Makefile index 912b45e91643..af25fea2a9df 100644 --- a/textproc/otree/Makefile +++ b/textproc/otree/Makefile @@ -1,7 +1,6 @@ PORTNAME= otree DISTVERSIONPREFIX= v -DISTVERSION= 0.6.1 -PORTREVISION= 1 +DISTVERSION= 0.6.2 CATEGORIES= textproc MAINTAINER= olgeni@FreeBSD.org @@ -17,27 +16,27 @@ GH_ACCOUNT= fioncat CARGO_CRATES= aho-corasick-1.1.3 \ allocator-api2-0.2.21 \ - anstream-0.6.20 \ - anstyle-1.0.11 \ + anstream-0.6.21 \ + anstyle-1.0.13 \ anstyle-parse-0.2.7 \ anstyle-query-1.1.4 \ anstyle-wincon-3.0.10 \ - anyhow-1.0.99 \ - autocfg-1.5.0 \ + anyhow-1.0.100 \ bitflags-1.3.2 \ - bitflags-2.9.3 \ - camino-1.1.11 \ + bitflags-2.9.4 \ + camino-1.2.1 \ cargo-platform-0.1.9 \ cargo_metadata-0.19.2 \ cassowary-0.3.0 \ castaway-0.2.4 \ - cfg-if-1.0.3 \ - clap-4.5.45 \ - clap_builder-4.5.44 \ - clap_derive-4.5.45 \ - clap_lex-0.7.5 \ + cfg-if-1.0.4 \ + clap-4.5.49 \ + clap_builder-4.5.49 \ + clap_derive-4.5.49 \ + clap_lex-0.7.6 \ colorchoice-1.0.4 \ compact_str-0.8.1 \ + console-0.16.1 \ convert_case-0.7.1 \ crossterm-0.28.1 \ crossterm-0.29.0 \ @@ -45,7 +44,7 @@ CARGO_CRATES= aho-corasick-1.1.3 \ darling-0.20.11 \ darling_core-0.20.11 \ darling_macro-0.20.11 \ - deranged-0.4.0 \ + deranged-0.5.4 \ derive_builder-0.20.2 \ derive_builder_core-0.20.2 \ derive_builder_macro-0.20.2 \ @@ -55,21 +54,23 @@ CARGO_CRATES= aho-corasick-1.1.3 \ dirs-sys-0.5.0 \ document-features-0.2.11 \ either-1.15.0 \ + encode_unicode-1.0.0 \ equivalent-1.0.2 \ - errno-0.3.13 \ + errno-0.3.14 \ filedescriptor-0.8.3 \ fnv-1.0.7 \ foldhash-0.1.5 \ fsevent-sys-4.1.0 \ getrandom-0.2.16 \ hashbrown-0.15.5 \ - hcl-edit-0.9.1 \ - hcl-primitives-0.1.9 \ - hcl-rs-0.19.2 \ + hashbrown-0.16.0 \ + hcl-edit-0.9.3 \ + hcl-primitives-0.1.11 \ + hcl-rs-0.19.4 \ heck-0.5.0 \ humansize-2.1.3 \ ident_case-1.0.1 \ - indexmap-2.11.0 \ + indexmap-2.11.4 \ indoc-2.0.6 \ inotify-0.11.0 \ inotify-sys-0.1.5 \ @@ -80,57 +81,59 @@ CARGO_CRATES= aho-corasick-1.1.3 \ kqueue-1.1.1 \ kqueue-sys-1.0.4 \ kstring-2.0.2 \ - libc-0.2.175 \ + libc-0.2.177 \ libm-0.2.15 \ - libredox-0.1.9 \ + libredox-0.1.10 \ libyml-0.0.5 \ linux-raw-sys-0.4.15 \ - linux-raw-sys-0.9.4 \ + linux-raw-sys-0.11.0 \ litrs-0.4.2 \ - lock_api-0.4.13 \ - log-0.4.27 \ + lock_api-0.4.14 \ + log-0.4.28 \ lru-0.12.5 \ - memchr-2.7.5 \ + memchr-2.7.6 \ mio-1.0.4 \ notify-8.2.0 \ notify-types-2.0.0 \ ntapi-0.4.1 \ num-conv-0.1.0 \ num_threads-0.1.7 \ - objc2-core-foundation-0.3.1 \ + objc2-core-foundation-0.3.2 \ + once_cell-1.21.3 \ once_cell_polyfill-1.70.1 \ option-ext-0.2.0 \ - parking_lot-0.12.4 \ - parking_lot_core-0.9.11 \ + parking_lot-0.12.5 \ + parking_lot_core-0.9.12 \ paste-1.0.15 \ powerfmt-0.2.0 \ pratt-0.4.0 \ proc-macro2-1.0.101 \ quick-xml-0.38.3 \ - quote-1.0.40 \ + quote-1.0.41 \ ratatui-0.29.0 \ - redox_syscall-0.5.17 \ + redox_syscall-0.5.18 \ redox_users-0.5.2 \ - regex-1.11.2 \ - regex-automata-0.4.10 \ - regex-syntax-0.8.6 \ + regex-1.12.2 \ + regex-automata-0.4.13 \ + regex-syntax-0.8.8 \ rustc_version-0.4.1 \ rustix-0.38.44 \ - rustix-1.0.8 \ + rustix-1.1.2 \ rustversion-1.0.22 \ ryu-1.0.20 \ same-file-1.0.6 \ scopeguard-1.2.0 \ - semver-1.0.26 \ - serde-1.0.219 \ - serde_derive-1.0.219 \ - serde_json-1.0.143 \ - serde_spanned-1.0.0 \ + semver-1.0.27 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.145 \ + serde_spanned-1.0.3 \ serde_yml-0.0.12 \ signal-hook-0.3.18 \ signal-hook-mio-0.2.4 \ signal-hook-registry-1.4.6 \ - simple-error-0.3.1 \ + simple-error-0.3.2 \ smallvec-1.15.1 \ static_assertions-1.1.0 \ strsim-0.11.1 \ @@ -139,25 +142,25 @@ CARGO_CRATES= aho-corasick-1.1.3 \ syn-2.0.106 \ sysinfo-0.34.2 \ thiserror-1.0.69 \ - thiserror-2.0.16 \ + thiserror-2.0.17 \ thiserror-impl-1.0.69 \ - thiserror-impl-2.0.16 \ - time-0.3.41 \ - time-core-0.1.4 \ - time-macros-0.2.22 \ - toml-0.9.5 \ - toml_datetime-0.7.0 \ - toml_parser-1.0.2 \ - toml_writer-1.0.2 \ + thiserror-impl-2.0.17 \ + time-0.3.44 \ + time-core-0.1.6 \ + time-macros-0.2.24 \ + toml-0.9.8 \ + toml_datetime-0.7.3 \ + toml_parser-1.0.4 \ + toml_writer-1.0.4 \ tui-textarea-0.7.0 \ tui-tree-widget-0.23.1 \ - unicode-ident-1.0.18 \ + unicode-ident-1.0.19 \ unicode-segmentation-1.12.0 \ unicode-truncate-1.1.0 \ unicode-width-0.1.14 \ unicode-width-0.2.0 \ utf8parse-0.2.2 \ - vecmap-rs-0.2.3 \ + vecmap-rs-0.2.4 \ vergen-9.0.6 \ vergen-lib-0.1.6 \ version_check-0.9.5 \ @@ -165,34 +168,35 @@ CARGO_CRATES= aho-corasick-1.1.3 \ wasi-0.11.1+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ - winapi-util-0.1.10 \ + winapi-util-0.1.11 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.57.0 \ windows-core-0.57.0 \ windows-implement-0.57.0 \ windows-interface-0.57.0 \ - windows-link-0.1.3 \ + windows-link-0.2.1 \ windows-result-0.1.2 \ windows-sys-0.59.0 \ windows-sys-0.60.2 \ + windows-sys-0.61.2 \ windows-targets-0.52.6 \ - windows-targets-0.53.3 \ + windows-targets-0.53.5 \ windows_aarch64_gnullvm-0.52.6 \ - windows_aarch64_gnullvm-0.53.0 \ + windows_aarch64_gnullvm-0.53.1 \ windows_aarch64_msvc-0.52.6 \ - windows_aarch64_msvc-0.53.0 \ + windows_aarch64_msvc-0.53.1 \ windows_i686_gnu-0.52.6 \ - windows_i686_gnu-0.53.0 \ + windows_i686_gnu-0.53.1 \ windows_i686_gnullvm-0.52.6 \ - windows_i686_gnullvm-0.53.0 \ + windows_i686_gnullvm-0.53.1 \ windows_i686_msvc-0.52.6 \ - windows_i686_msvc-0.53.0 \ + windows_i686_msvc-0.53.1 \ windows_x86_64_gnu-0.52.6 \ - windows_x86_64_gnu-0.53.0 \ + windows_x86_64_gnu-0.53.1 \ windows_x86_64_gnullvm-0.52.6 \ - windows_x86_64_gnullvm-0.53.0 \ + windows_x86_64_gnullvm-0.53.1 \ windows_x86_64_msvc-0.52.6 \ - windows_x86_64_msvc-0.53.0 \ + windows_x86_64_msvc-0.53.1 \ winnow-0.7.13 PLIST_FILES= bin/otree diff --git a/textproc/otree/distinfo b/textproc/otree/distinfo index a41c5f0b3c5a..50e3e6f90ce2 100644 --- a/textproc/otree/distinfo +++ b/textproc/otree/distinfo @@ -1,28 +1,26 @@ -TIMESTAMP = 1757117593 +TIMESTAMP = 1760592641 SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 -SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 -SIZE (rust/crates/anstream-0.6.20.crate) = 28797 -SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd -SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstream-0.6.21.crate) = 43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a +SIZE (rust/crates/anstream-0.6.21.crate) = 29516 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 SIZE (rust/crates/anstyle-query-1.1.4.crate) = 10192 SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 -SHA256 (rust/crates/anyhow-1.0.99.crate) = b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100 -SIZE (rust/crates/anyhow-1.0.99.crate) = 53809 -SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 -SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 +SHA256 (rust/crates/anyhow-1.0.100.crate) = a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61 +SIZE (rust/crates/anyhow-1.0.100.crate) = 54059 SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 -SHA256 (rust/crates/bitflags-2.9.3.crate) = 34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d -SIZE (rust/crates/bitflags-2.9.3.crate) = 47777 -SHA256 (rust/crates/camino-1.1.11.crate) = 5d07aa9a93b00c76f71bc35d598bed923f6d4f3a9ca5c24b7737ae1a292841c0 -SIZE (rust/crates/camino-1.1.11.crate) = 43862 +SHA256 (rust/crates/bitflags-2.9.4.crate) = 2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394 +SIZE (rust/crates/bitflags-2.9.4.crate) = 47950 +SHA256 (rust/crates/camino-1.2.1.crate) = 276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609 +SIZE (rust/crates/camino-1.2.1.crate) = 41364 SHA256 (rust/crates/cargo-platform-0.1.9.crate) = e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea SIZE (rust/crates/cargo-platform-0.1.9.crate) = 12010 SHA256 (rust/crates/cargo_metadata-0.19.2.crate) = dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba @@ -31,20 +29,22 @@ SHA256 (rust/crates/cassowary-0.3.0.crate) = df8670b8c7b9dae1793364eafadf7239c40 SIZE (rust/crates/cassowary-0.3.0.crate) = 22876 SHA256 (rust/crates/castaway-0.2.4.crate) = dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a SIZE (rust/crates/castaway-0.2.4.crate) = 12546 -SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 -SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 -SHA256 (rust/crates/clap-4.5.45.crate) = 1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318 -SIZE (rust/crates/clap-4.5.45.crate) = 58337 -SHA256 (rust/crates/clap_builder-4.5.44.crate) = b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8 -SIZE (rust/crates/clap_builder-4.5.44.crate) = 169799 -SHA256 (rust/crates/clap_derive-4.5.45.crate) = 14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6 -SIZE (rust/crates/clap_derive-4.5.45.crate) = 33545 -SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 -SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 +SHA256 (rust/crates/clap-4.5.49.crate) = f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f +SIZE (rust/crates/clap-4.5.49.crate) = 62007 +SHA256 (rust/crates/clap_builder-4.5.49.crate) = 0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730 +SIZE (rust/crates/clap_builder-4.5.49.crate) = 170616 +SHA256 (rust/crates/clap_derive-4.5.49.crate) = 2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671 +SIZE (rust/crates/clap_derive-4.5.49.crate) = 33559 +SHA256 (rust/crates/clap_lex-0.7.6.crate) = a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d +SIZE (rust/crates/clap_lex-0.7.6.crate) = 13466 SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 SHA256 (rust/crates/compact_str-0.8.1.crate) = 3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32 SIZE (rust/crates/compact_str-0.8.1.crate) = 71371 +SHA256 (rust/crates/console-0.16.1.crate) = b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4 +SIZE (rust/crates/console-0.16.1.crate) = 39129 SHA256 (rust/crates/convert_case-0.7.1.crate) = bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7 SIZE (rust/crates/convert_case-0.7.1.crate) = 23816 SHA256 (rust/crates/crossterm-0.28.1.crate) = 829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6 @@ -59,8 +59,8 @@ SHA256 (rust/crates/darling_core-0.20.11.crate) = 0d00b9596d185e565c2207a0b01f8b SIZE (rust/crates/darling_core-0.20.11.crate) = 68006 SHA256 (rust/crates/darling_macro-0.20.11.crate) = fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead SIZE (rust/crates/darling_macro-0.20.11.crate) = 2532 -SHA256 (rust/crates/deranged-0.4.0.crate) = 9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e -SIZE (rust/crates/deranged-0.4.0.crate) = 23235 +SHA256 (rust/crates/deranged-0.5.4.crate) = a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071 +SIZE (rust/crates/deranged-0.5.4.crate) = 24461 SHA256 (rust/crates/derive_builder-0.20.2.crate) = 507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947 SIZE (rust/crates/derive_builder-0.20.2.crate) = 36661 SHA256 (rust/crates/derive_builder_core-0.20.2.crate) = 2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8 @@ -79,10 +79,12 @@ SHA256 (rust/crates/document-features-0.2.11.crate) = 95249b50c6c185bee49034bcb3 SIZE (rust/crates/document-features-0.2.11.crate) = 14640 SHA256 (rust/crates/either-1.15.0.crate) = 48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719 SIZE (rust/crates/either-1.15.0.crate) = 20114 +SHA256 (rust/crates/encode_unicode-1.0.0.crate) = 34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0 +SIZE (rust/crates/encode_unicode-1.0.0.crate) = 56986 SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 -SHA256 (rust/crates/errno-0.3.13.crate) = 778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad -SIZE (rust/crates/errno-0.3.13.crate) = 12449 +SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb +SIZE (rust/crates/errno-0.3.14.crate) = 12002 SHA256 (rust/crates/filedescriptor-0.8.3.crate) = e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d SIZE (rust/crates/filedescriptor-0.8.3.crate) = 12635 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 @@ -95,20 +97,22 @@ SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433 SIZE (rust/crates/getrandom-0.2.16.crate) = 40163 SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 -SHA256 (rust/crates/hcl-edit-0.9.1.crate) = 95f32dc8e2ac2efd3726a759c0e1cd91315465d75a191468dcd8f885f384cad0 -SIZE (rust/crates/hcl-edit-0.9.1.crate) = 66718 -SHA256 (rust/crates/hcl-primitives-0.1.9.crate) = f097693bfc799cc5043956e93a28c51ca4e72f2c3daa21f65a5b0a28510df1f2 -SIZE (rust/crates/hcl-primitives-0.1.9.crate) = 16977 -SHA256 (rust/crates/hcl-rs-0.19.2.crate) = 87112599bbc3476dc61061583cc6c0d4f305f0820d4cf3e4cda46199248dd781 -SIZE (rust/crates/hcl-rs-0.19.2.crate) = 107530 +SHA256 (rust/crates/hashbrown-0.16.0.crate) = 5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d +SIZE (rust/crates/hashbrown-0.16.0.crate) = 141708 +SHA256 (rust/crates/hcl-edit-0.9.3.crate) = 3ab35d988dc879e293759e29b430a4ba9e6125965eec6fd0dfab0cb349e172d7 +SIZE (rust/crates/hcl-edit-0.9.3.crate) = 66831 +SHA256 (rust/crates/hcl-primitives-0.1.11.crate) = 829a11d304c89e2cfe0dbb494a686bbe2b48ade17705c62cd1957b04aa4630f6 +SIZE (rust/crates/hcl-primitives-0.1.11.crate) = 17017 +SHA256 (rust/crates/hcl-rs-0.19.4.crate) = 5914e8caacb6e224944a8181bebd79bf81ad4999a36689f0a3158e555b49040d +SIZE (rust/crates/hcl-rs-0.19.4.crate) = 107533 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea SIZE (rust/crates/heck-0.5.0.crate) = 11517 SHA256 (rust/crates/humansize-2.1.3.crate) = 6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7 SIZE (rust/crates/humansize-2.1.3.crate) = 11953 SHA256 (rust/crates/ident_case-1.0.1.crate) = b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39 SIZE (rust/crates/ident_case-1.0.1.crate) = 3492 -SHA256 (rust/crates/indexmap-2.11.0.crate) = f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9 -SIZE (rust/crates/indexmap-2.11.0.crate) = 99851 +SHA256 (rust/crates/indexmap-2.11.4.crate) = 4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5 +SIZE (rust/crates/indexmap-2.11.4.crate) = 100302 SHA256 (rust/crates/indoc-2.0.6.crate) = f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd SIZE (rust/crates/indoc-2.0.6.crate) = 17164 SHA256 (rust/crates/inotify-0.11.0.crate) = f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3 @@ -129,28 +133,28 @@ SHA256 (rust/crates/kqueue-sys-1.0.4.crate) = ed9625ffda8729b85e45cf04090035ac36 SIZE (rust/crates/kqueue-sys-1.0.4.crate) = 7160 SHA256 (rust/crates/kstring-2.0.2.crate) = 558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1 SIZE (rust/crates/kstring-2.0.2.crate) = 23044 -SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 -SIZE (rust/crates/libc-0.2.175.crate) = 788728 +SHA256 (rust/crates/libc-0.2.177.crate) = 2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976 +SIZE (rust/crates/libc-0.2.177.crate) = 792045 SHA256 (rust/crates/libm-0.2.15.crate) = f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de SIZE (rust/crates/libm-0.2.15.crate) = 156108 -SHA256 (rust/crates/libredox-0.1.9.crate) = 391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3 -SIZE (rust/crates/libredox-0.1.9.crate) = 7281 +SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb +SIZE (rust/crates/libredox-0.1.10.crate) = 7332 SHA256 (rust/crates/libyml-0.0.5.crate) = 3302702afa434ffa30847a83305f0a69d6abd74293b6554c18ec85c7ef30c980 SIZE (rust/crates/libyml-0.0.5.crate) = 97931 SHA256 (rust/crates/linux-raw-sys-0.4.15.crate) = d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab SIZE (rust/crates/linux-raw-sys-0.4.15.crate) = 2150898 -SHA256 (rust/crates/linux-raw-sys-0.9.4.crate) = cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12 -SIZE (rust/crates/linux-raw-sys-0.9.4.crate) = 2311088 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 SHA256 (rust/crates/litrs-0.4.2.crate) = f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed SIZE (rust/crates/litrs-0.4.2.crate) = 43399 -SHA256 (rust/crates/lock_api-0.4.13.crate) = 96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765 -SIZE (rust/crates/lock_api-0.4.13.crate) = 28565 -SHA256 (rust/crates/log-0.4.27.crate) = 13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94 -SIZE (rust/crates/log-0.4.27.crate) = 48120 +SHA256 (rust/crates/lock_api-0.4.14.crate) = 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 +SIZE (rust/crates/lock_api-0.4.14.crate) = 29249 +SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 +SIZE (rust/crates/log-0.4.28.crate) = 51131 SHA256 (rust/crates/lru-0.12.5.crate) = 234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38 SIZE (rust/crates/lru-0.12.5.crate) = 16047 -SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 -SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 SHA256 (rust/crates/mio-1.0.4.crate) = 78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c SIZE (rust/crates/mio-1.0.4.crate) = 104212 SHA256 (rust/crates/notify-8.2.0.crate) = 4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3 @@ -163,16 +167,18 @@ SHA256 (rust/crates/num-conv-0.1.0.crate) = 51d515d32fb182ee37cda2ccdcb92950d6a3 SIZE (rust/crates/num-conv-0.1.0.crate) = 7444 SHA256 (rust/crates/num_threads-0.1.7.crate) = 5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9 SIZE (rust/crates/num_threads-0.1.7.crate) = 7455 -SHA256 (rust/crates/objc2-core-foundation-0.3.1.crate) = 1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166 -SIZE (rust/crates/objc2-core-foundation-0.3.1.crate) = 178121 +SHA256 (rust/crates/objc2-core-foundation-0.3.2.crate) = 2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536 +SIZE (rust/crates/objc2-core-foundation-0.3.2.crate) = 180804 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad SIZE (rust/crates/once_cell_polyfill-1.70.1.crate) = 7510 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 -SHA256 (rust/crates/parking_lot-0.12.4.crate) = 70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13 -SIZE (rust/crates/parking_lot-0.12.4.crate) = 46779 -SHA256 (rust/crates/parking_lot_core-0.9.11.crate) = bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5 -SIZE (rust/crates/parking_lot_core-0.9.11.crate) = 34773 +SHA256 (rust/crates/parking_lot-0.12.5.crate) = 93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a +SIZE (rust/crates/parking_lot-0.12.5.crate) = 46735 +SHA256 (rust/crates/parking_lot_core-0.9.12.crate) = 2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1 +SIZE (rust/crates/parking_lot_core-0.9.12.crate) = 34110 SHA256 (rust/crates/paste-1.0.15.crate) = 57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a SIZE (rust/crates/paste-1.0.15.crate) = 18374 SHA256 (rust/crates/powerfmt-0.2.0.crate) = 439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391 @@ -183,26 +189,26 @@ SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f3 SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 SHA256 (rust/crates/quick-xml-0.38.3.crate) = 42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89 SIZE (rust/crates/quick-xml-0.38.3.crate) = 204498 -SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d -SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/quote-1.0.41.crate) = ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1 +SIZE (rust/crates/quote-1.0.41.crate) = 31408 SHA256 (rust/crates/ratatui-0.29.0.crate) = eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b SIZE (rust/crates/ratatui-0.29.0.crate) = 543514 -SHA256 (rust/crates/redox_syscall-0.5.17.crate) = 5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77 -SIZE (rust/crates/redox_syscall-0.5.17.crate) = 30002 +SHA256 (rust/crates/redox_syscall-0.5.18.crate) = ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d +SIZE (rust/crates/redox_syscall-0.5.18.crate) = 30747 SHA256 (rust/crates/redox_users-0.5.2.crate) = a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac SIZE (rust/crates/redox_users-0.5.2.crate) = 17280 -SHA256 (rust/crates/regex-1.11.2.crate) = 23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912 -SIZE (rust/crates/regex-1.11.2.crate) = 166265 -SHA256 (rust/crates/regex-automata-0.4.10.crate) = 6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6 -SIZE (rust/crates/regex-automata-0.4.10.crate) = 622754 -SHA256 (rust/crates/regex-syntax-0.8.6.crate) = caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001 -SIZE (rust/crates/regex-syntax-0.8.6.crate) = 358808 +SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 +SIZE (rust/crates/regex-1.12.2.crate) = 163843 +SHA256 (rust/crates/regex-automata-0.4.13.crate) = 5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c +SIZE (rust/crates/regex-automata-0.4.13.crate) = 625250 +SHA256 (rust/crates/regex-syntax-0.8.8.crate) = 7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58 +SIZE (rust/crates/regex-syntax-0.8.8.crate) = 359141 SHA256 (rust/crates/rustc_version-0.4.1.crate) = cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92 SIZE (rust/crates/rustc_version-0.4.1.crate) = 12245 SHA256 (rust/crates/rustix-0.38.44.crate) = fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154 SIZE (rust/crates/rustix-0.38.44.crate) = 379347 -SHA256 (rust/crates/rustix-1.0.8.crate) = 11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8 -SIZE (rust/crates/rustix-1.0.8.crate) = 416688 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 SHA256 (rust/crates/rustversion-1.0.22.crate) = b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d SIZE (rust/crates/rustversion-1.0.22.crate) = 21096 SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f @@ -211,16 +217,18 @@ SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e SIZE (rust/crates/same-file-1.0.6.crate) = 10183 SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 -SHA256 (rust/crates/semver-1.0.26.crate) = 56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0 -SIZE (rust/crates/semver-1.0.26.crate) = 31303 -SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6 -SIZE (rust/crates/serde-1.0.219.crate) = 78983 -SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00 -SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 -SHA256 (rust/crates/serde_json-1.0.143.crate) = d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a -SIZE (rust/crates/serde_json-1.0.143.crate) = 155342 -SHA256 (rust/crates/serde_spanned-1.0.0.crate) = 40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83 -SIZE (rust/crates/serde_spanned-1.0.0.crate) = 10956 +SHA256 (rust/crates/semver-1.0.27.crate) = d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2 +SIZE (rust/crates/semver-1.0.27.crate) = 30081 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 +SHA256 (rust/crates/serde_spanned-1.0.3.crate) = e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392 +SIZE (rust/crates/serde_spanned-1.0.3.crate) = 11011 SHA256 (rust/crates/serde_yml-0.0.12.crate) = 59e2dd588bf1597a252c3b920e0143eb99b0f76e4e082f4c92ce34fbc9e71ddd SIZE (rust/crates/serde_yml-0.0.12.crate) = 125859 SHA256 (rust/crates/signal-hook-0.3.18.crate) = d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2 @@ -229,8 +237,8 @@ SHA256 (rust/crates/signal-hook-mio-0.2.4.crate) = 34db1a06d485c9142248b7a054f03 SIZE (rust/crates/signal-hook-mio-0.2.4.crate) = 9314 SHA256 (rust/crates/signal-hook-registry-1.4.6.crate) = b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b SIZE (rust/crates/signal-hook-registry-1.4.6.crate) = 19277 -SHA256 (rust/crates/simple-error-0.3.1.crate) = 7e2accd2c41a0e920d2abd91b2badcfa1da784662f54fbc47e0e3a51f1e2e1cf -SIZE (rust/crates/simple-error-0.3.1.crate) = 9862 +SHA256 (rust/crates/simple-error-0.3.2.crate) = 69da7c8ef9e55986dcaa55dd095bbf7d321e80cc91644f25ce26a83dbe9e7f14 +SIZE (rust/crates/simple-error-0.3.2.crate) = 10581 SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f @@ -247,32 +255,32 @@ SHA256 (rust/crates/sysinfo-0.34.2.crate) = a4b93974b3d3aeaa036504b8eefd4c039dce SIZE (rust/crates/sysinfo-0.34.2.crate) = 204750 SHA256 (rust/crates/thiserror-1.0.69.crate) = b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52 SIZE (rust/crates/thiserror-1.0.69.crate) = 22198 -SHA256 (rust/crates/thiserror-2.0.16.crate) = 3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0 -SIZE (rust/crates/thiserror-2.0.16.crate) = 29095 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 SHA256 (rust/crates/thiserror-impl-1.0.69.crate) = 4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1 SIZE (rust/crates/thiserror-impl-1.0.69.crate) = 18365 -SHA256 (rust/crates/thiserror-impl-2.0.16.crate) = 6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960 -SIZE (rust/crates/thiserror-impl-2.0.16.crate) = 21214 -SHA256 (rust/crates/time-0.3.41.crate) = 8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40 -SIZE (rust/crates/time-0.3.41.crate) = 138369 -SHA256 (rust/crates/time-core-0.1.4.crate) = c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c -SIZE (rust/crates/time-core-0.1.4.crate) = 8422 -SHA256 (rust/crates/time-macros-0.2.22.crate) = 3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49 -SIZE (rust/crates/time-macros-0.2.22.crate) = 24604 -SHA256 (rust/crates/toml-0.9.5.crate) = 75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8 -SIZE (rust/crates/toml-0.9.5.crate) = 56833 -SHA256 (rust/crates/toml_datetime-0.7.0.crate) = bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3 -SIZE (rust/crates/toml_datetime-0.7.0.crate) = 18108 -SHA256 (rust/crates/toml_parser-1.0.2.crate) = b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10 -SIZE (rust/crates/toml_parser-1.0.2.crate) = 35241 -SHA256 (rust/crates/toml_writer-1.0.2.crate) = fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64 -SIZE (rust/crates/toml_writer-1.0.2.crate) = 16988 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 +SHA256 (rust/crates/time-0.3.44.crate) = 91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d +SIZE (rust/crates/time-0.3.44.crate) = 143200 +SHA256 (rust/crates/time-core-0.1.6.crate) = 40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b +SIZE (rust/crates/time-core-0.1.6.crate) = 9105 +SHA256 (rust/crates/time-macros-0.2.24.crate) = 30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3 +SIZE (rust/crates/time-macros-0.2.24.crate) = 24715 +SHA256 (rust/crates/toml-0.9.8.crate) = f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8 +SIZE (rust/crates/toml-0.9.8.crate) = 56104 +SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533 +SIZE (rust/crates/toml_datetime-0.7.3.crate) = 17827 +SHA256 (rust/crates/toml_parser-1.0.4.crate) = c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e +SIZE (rust/crates/toml_parser-1.0.4.crate) = 34978 +SHA256 (rust/crates/toml_writer-1.0.4.crate) = df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2 +SIZE (rust/crates/toml_writer-1.0.4.crate) = 17146 SHA256 (rust/crates/tui-textarea-0.7.0.crate) = 0a5318dd619ed73c52a9417ad19046724effc1287fb75cdcc4eca1d6ac1acbae SIZE (rust/crates/tui-textarea-0.7.0.crate) = 67947 SHA256 (rust/crates/tui-tree-widget-0.23.1.crate) = c14c4488e071617f5b5922222193cdf6725835e492c6229557af85d3c1a4e903 SIZE (rust/crates/tui-tree-widget-0.23.1.crate) = 22330 -SHA256 (rust/crates/unicode-ident-1.0.18.crate) = 5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512 -SIZE (rust/crates/unicode-ident-1.0.18.crate) = 47743 +SHA256 (rust/crates/unicode-ident-1.0.19.crate) = f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d +SIZE (rust/crates/unicode-ident-1.0.19.crate) = 47480 SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493 SIZE (rust/crates/unicode-segmentation-1.12.0.crate) = 106323 SHA256 (rust/crates/unicode-truncate-1.1.0.crate) = b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf @@ -283,8 +291,8 @@ SHA256 (rust/crates/unicode-width-0.2.0.crate) = 1fc81956842c57dac11422a97c3b819 SIZE (rust/crates/unicode-width-0.2.0.crate) = 271509 SHA256 (rust/crates/utf8parse-0.2.2.crate) = 06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821 SIZE (rust/crates/utf8parse-0.2.2.crate) = 13499 -SHA256 (rust/crates/vecmap-rs-0.2.3.crate) = 67cfc542f75493f412a51c02af26f58f710ab0e2204d264135054377244276be -SIZE (rust/crates/vecmap-rs-0.2.3.crate) = 35738 +SHA256 (rust/crates/vecmap-rs-0.2.4.crate) = f9758649b51083aa8008666f41c23f05abca1766aad4cc447b195dd83ef1297b +SIZE (rust/crates/vecmap-rs-0.2.4.crate) = 35943 SHA256 (rust/crates/vergen-9.0.6.crate) = 6b2bf58be11fc9414104c6d3a2e464163db5ef74b12296bda593cac37b6e4777 SIZE (rust/crates/vergen-9.0.6.crate) = 33160 SHA256 (rust/crates/vergen-lib-0.1.6.crate) = 9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166 @@ -299,8 +307,8 @@ SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe9399 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 -SHA256 (rust/crates/winapi-util-0.1.10.crate) = 0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22 -SIZE (rust/crates/winapi-util-0.1.10.crate) = 13370 +SHA256 (rust/crates/winapi-util-0.1.11.crate) = c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22 +SIZE (rust/crates/winapi-util-0.1.11.crate) = 13368 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 SHA256 (rust/crates/windows-0.57.0.crate) = 12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143 @@ -311,51 +319,53 @@ SHA256 (rust/crates/windows-implement-0.57.0.crate) = 9107ddc059d5b6fbfbffdfa7a7 SIZE (rust/crates/windows-implement-0.57.0.crate) = 10470 SHA256 (rust/crates/windows-interface-0.57.0.crate) = 29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7 SIZE (rust/crates/windows-interface-0.57.0.crate) = 10931 -SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a -SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 SHA256 (rust/crates/windows-result-0.1.2.crate) = 5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8 SIZE (rust/crates/windows-result-0.1.2.crate) = 10601 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 -SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 -SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 -SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 -SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c -SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 -SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 -SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 -SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 -SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 -SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d -SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 -SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba -SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 -SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 -SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 -SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf SIZE (rust/crates/winnow-0.7.13.crate) = 174454 -SHA256 (fioncat-otree-v0.6.1_GH0.tar.gz) = 1c95f78c1b432b4a62392c971bc28eda8bc6754ec53e0701de1c42417c058bdf -SIZE (fioncat-otree-v0.6.1_GH0.tar.gz) = 200631 +SHA256 (fioncat-otree-v0.6.2_GH0.tar.gz) = d5126b1231b00fe6c8bfb0ecb94e86d328090c1e33261922f54e79ef647aed42 +SIZE (fioncat-otree-v0.6.2_GH0.tar.gz) = 202460 diff --git a/textproc/py-readchar/Makefile b/textproc/py-readchar/Makefile index ac4007269a7e..294df3f72557 100644 --- a/textproc/py-readchar/Makefile +++ b/textproc/py-readchar/Makefile @@ -5,7 +5,7 @@ PORTREVISION= 1 CATEGORIES= textproc devel PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= 0mp@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python library to read characters and key strokes WWW= https://github.com/magmax/python-readchar diff --git a/www/angie-module-auth-spnego/Makefile b/www/angie-module-auth-spnego/Makefile index ff16edb9069a..41803c80b2d9 100644 --- a/www/angie-module-auth-spnego/Makefile +++ b/www/angie-module-auth-spnego/Makefile @@ -1,5 +1,4 @@ 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 diff --git a/www/angie-module-cache-purge/Makefile b/www/angie-module-cache-purge/Makefile index e8628c6de22b..b7bdee160341 100644 --- a/www/angie-module-cache-purge/Makefile +++ b/www/angie-module-cache-purge/Makefile @@ -1,5 +1,5 @@ PORTNAME= angie-module-cache-purge -GH_TUPLE= nginx-modules:ngx_cache_purge:2.5.3:module +GH_TUPLE= nginx-modules:ngx_cache_purge:2.5.4:module COMMENT= Angie cache_purge dynamic module diff --git a/www/angie/Makefile b/www/angie/Makefile index ea14558b38e0..7ac5e95fde80 100644 --- a/www/angie/Makefile +++ b/www/angie/Makefile @@ -1,5 +1,6 @@ PORTNAME?= angie DISTVERSION= 1.10.2 +PORTREVISION= 1 CATEGORIES+= www MASTER_SITES+= https://download.angie.software/files/:angie DISTNAME= angie-${DISTVERSIONFULL} diff --git a/www/angie/distinfo b/www/angie/distinfo index 294edb6fa170..b44d89695378 100644 --- a/www/angie/distinfo +++ b/www/angie/distinfo @@ -9,8 +9,8 @@ SHA256 (stnoonan-spnego-http-auth-nginx-module-v1.1.3_GH0.tar.gz) = 0e1e54f8ab7d SIZE (stnoonan-spnego-http-auth-nginx-module-v1.1.3_GH0.tar.gz) = 32975 SHA256 (google-ngx_brotli-v1.0.0rc_GH0.tar.gz) = c85cdcfd76703c95aa4204ee4c2e619aa5b075cac18f428202f65552104add3b SIZE (google-ngx_brotli-v1.0.0rc_GH0.tar.gz) = 16207 -SHA256 (nginx-modules-ngx_cache_purge-2.5.3_GH0.tar.gz) = 43158a75bbc8d4ba66ec9c60a1ec13a792803a36b62ffc3fa01088d8675108e0 -SIZE (nginx-modules-ngx_cache_purge-2.5.3_GH0.tar.gz) = 17156 +SHA256 (nginx-modules-ngx_cache_purge-2.5.4_GH0.tar.gz) = 5bd04373d818b1aa0f3ba0b31b54149207a17815b026f222c537daf587b0cbda +SIZE (nginx-modules-ngx_cache_purge-2.5.4_GH0.tar.gz) = 17174 SHA256 (arut-nginx-dav-ext-module-v3.0.0_GH0.tar.gz) = d2499d94d82d4e4eac8425d799e52883131ae86a956524040ff2fd230ef9f859 SIZE (arut-nginx-dav-ext-module-v3.0.0_GH0.tar.gz) = 14558 SHA256 (openresty-echo-nginx-module-v0.63_GH0.tar.gz) = 8af374d29592ef95baee53c91959c7b04927f11304c318a94f0ee140760515a4 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 b7422d401bac..8d2f2ac79571 100644 --- a/www/linux-freetube/Makefile +++ b/www/linux-freetube/Makefile @@ -1,6 +1,6 @@ PORTNAME= freetube DISTVERSIONPREFIX= v -DISTVERSION= 0.23.11-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 f4bcf71034a4..763acf6ca4da 100644 --- a/www/linux-freetube/distinfo +++ b/www/linux-freetube/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1760545295 -SHA256 (freetube-0.23.11-beta-linux-x64-portable.zip) = c4768351a9f14cbf7dcc8f225f17410d68846a9684f696b40212a7ed9da8f766 -SIZE (freetube-0.23.11-beta-linux-x64-portable.zip) = 104159515 +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/x11-fm/thunar/Makefile b/x11-fm/thunar/Makefile index 44e4f202c6b7..9f466a68286e 100644 --- a/x11-fm/thunar/Makefile +++ b/x11-fm/thunar/Makefile @@ -1,5 +1,5 @@ PORTNAME= thunar -DISTVERSION= 4.20.5 +DISTVERSION= 4.20.6 CATEGORIES= x11-fm xfce MASTER_SITES= XFCE DIST_SUBDIR= xfce4 diff --git a/x11-fm/thunar/distinfo b/x11-fm/thunar/distinfo index 48d637589376..3e5949a617cc 100644 --- a/x11-fm/thunar/distinfo +++ b/x11-fm/thunar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757880670 -SHA256 (xfce4/thunar-4.20.5.tar.bz2) = da299babd233a079a443e527fa38cba3899b6131ef056593de9451178d812f2a -SIZE (xfce4/thunar-4.20.5.tar.bz2) = 4515591 +TIMESTAMP = 1760597013 +SHA256 (xfce4/thunar-4.20.6.tar.bz2) = e815e034c073d634d0e77566837e1d9417b65c886924e3678e3325d5466c784d +SIZE (xfce4/thunar-4.20.6.tar.bz2) = 4528554 |