├── .CodeQL.yml ├── .config └── CredScanSuppressions.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions-feedback.md ├── actions │ └── checkout-with-stable-pkgs │ │ └── action.yml ├── policies │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ ├── azurelinux-spec-cleaner.patch │ ├── cgmanifest.json │ ├── check-circular-deps.yml │ ├── check-clean-stage.yml │ ├── check-entangled-specs.yml │ ├── check-files.yml │ ├── check-license-map.yml │ ├── check-manifests.yml │ ├── check-package-builds.yml │ ├── check-package-cgmanifest.yml │ ├── check-package-update-gate.yml │ ├── check-source-signatures.yml │ ├── check-spec.yml │ ├── check-srpm-duplicates.yml │ ├── check-static-glibc.yml │ ├── disallowed-extensions.txt │ ├── go-test-coverage.yml │ ├── lint-specs.yml │ ├── merge-conflict-check.yml │ ├── packagelist-gate.csv │ ├── quickstart_2.0.yml │ ├── validate-cg-manifest.sh │ └── verify-osguard-imageconfigs.yml ├── .gitignore ├── .pipelines ├── CodeQL │ └── CodeQL.yml ├── cherrypick │ └── CherryPick.yml ├── common │ ├── libs │ │ ├── build_tools.sh │ │ ├── file_tools.sh │ │ └── rpm_tools.sh │ └── scripts │ │ └── PackageSignedRPMs.sh ├── containerSourceData │ ├── Dockerfile-Initial │ ├── Dockerfile-Nvidia-Initial │ ├── azurelinuxlocal.repo │ ├── base │ │ ├── Dockerfile-Base-Template │ │ └── Dockerfile-Distroless-Template │ ├── busybox │ │ ├── Dockerfile-Busybox │ │ ├── busybox.name │ │ └── busybox.pkg │ ├── cdi │ │ ├── Dockerfile-cdi-apiserver │ │ ├── Dockerfile-cdi-cloner │ │ ├── Dockerfile-cdi-controller │ │ ├── Dockerfile-cdi-importer │ │ ├── Dockerfile-cdi-operator │ │ ├── Dockerfile-cdi-uploadproxy │ │ ├── Dockerfile-cdi-uploadserver │ │ ├── api.name │ │ ├── api.pkg │ │ ├── cloner.name │ │ ├── cloner.pkg │ │ ├── controller.name │ │ ├── controller.pkg │ │ ├── importer.name │ │ ├── importer.pkg │ │ ├── operator.name │ │ ├── operator.pkg │ │ ├── uploadproxy.name │ │ ├── uploadproxy.pkg │ │ ├── uploadserver.name │ │ └── uploadserver.pkg │ ├── certmanager │ │ ├── Dockerfile-cert-manager │ │ ├── acmesolver.name │ │ ├── acmesolver.pkg │ │ ├── cainjector.name │ │ ├── cainjector.pkg │ │ ├── cmctl.name │ │ ├── cmctl.pkg │ │ ├── controller.name │ │ ├── controller.pkg │ │ ├── webhook.name │ │ └── webhook.pkg │ ├── cloudproviderkubevirt │ │ ├── Dockerfile-cloud-provider-kubevirt │ │ ├── cloudproviderkubevirt.name │ │ └── cloudproviderkubevirt.pkg │ ├── cuda │ │ ├── core.pkg │ │ └── nvidia.pkg │ ├── imagecustomizer │ │ ├── Dockerfile-imagecustomizer │ │ ├── imagecustomizer.name │ │ └── imagecustomizer.pkg │ ├── influxdb │ │ ├── Dockerfile-Influxdb │ │ ├── configuration-files │ │ │ ├── default-config.yml │ │ │ └── influxdb-docker-entrypoint.sh │ │ ├── influxdb.name │ │ └── influxdb.pkg │ ├── kubevirt │ │ ├── Dockerfile-kubevirt-virt-api │ │ ├── Dockerfile-kubevirt-virt-controller │ │ ├── Dockerfile-kubevirt-virt-handler │ │ ├── Dockerfile-kubevirt-virt-launcher │ │ ├── Dockerfile-kubevirt-virt-operator │ │ ├── virt-api.name │ │ ├── virt-api.pkg │ │ ├── virt-controller.name │ │ ├── virt-controller.pkg │ │ ├── virt-handler.name │ │ ├── virt-handler.pkg │ │ ├── virt-launcher.name │ │ ├── virt-launcher.pkg │ │ ├── virt-operator.name │ │ └── virt-operator.pkg │ ├── memcached │ │ ├── Dockerfile-Memcached │ │ ├── memcached.name │ │ └── memcached.pkg │ ├── multus │ │ ├── Dockerfile-Multus │ │ ├── multus.name │ │ └── multus.pkg │ ├── nginx │ │ ├── Dockerfile-Nginx │ │ ├── configuration-files │ │ │ ├── default.conf │ │ │ └── nginx.conf │ │ ├── nginx.name │ │ └── nginx.pkg │ ├── nodejs │ │ ├── Dockerfile-Nodejs │ │ ├── distroless │ │ │ ├── holdback-nodejs.pkg │ │ │ └── nodejs.pkg │ │ ├── nodejs.name │ │ └── nodejs.pkg │ ├── openmpi │ │ ├── Dockerfile-Openmpi │ │ ├── openmpi.name │ │ └── openmpi.pkg │ ├── php │ │ ├── Dockerfile-PHP │ │ ├── php.name │ │ └── php.pkg │ ├── postgres │ │ ├── Dockerfile-Postgres │ │ ├── configuration-files │ │ │ └── postgres-docker-entrypoint.sh │ │ ├── postgres.name │ │ └── postgres.pkg │ ├── prometheus │ │ ├── Dockerfile-Prometheus │ │ ├── distroless │ │ │ ├── holdback-prometheus.pkg │ │ │ └── prometheus.pkg │ │ ├── prometheus.name │ │ └── prometheus.pkg │ ├── prometheusadapter │ │ ├── Dockerfile-Prometheus-Adapter │ │ ├── distroless │ │ │ ├── holdback-prometheusadapter.pkg │ │ │ └── prometheusadapter.pkg │ │ ├── prometheusadapter.name │ │ └── prometheusadapter.pkg │ ├── python │ │ ├── Dockerfile-Python │ │ ├── distroless │ │ │ ├── holdback-python.pkg │ │ │ └── python.pkg │ │ ├── python.name │ │ └── python.pkg │ ├── pytorch │ │ ├── Dockerfile-Pytorch │ │ ├── configuration-files │ │ │ └── pytorch-docker-entrypoint.sh │ │ ├── pytorch.name │ │ └── pytorch.pkg │ ├── rabbitmqserver │ │ ├── Dockerfile-rabbitmq-server │ │ ├── configuration-files │ │ │ └── rabbitmq-server-docker-entrypoint.sh │ │ ├── rabbitmqserver.name │ │ └── rabbitmqserver.pkg │ ├── ruby │ │ ├── Dockerfile-Ruby │ │ ├── ruby.name │ │ └── ruby.pkg │ ├── rust │ │ ├── Dockerfile-Rust │ │ ├── rust.name │ │ └── rust.pkg │ ├── scripts │ │ ├── BuildBaseContainers.sh │ │ ├── BuildContainerCommonSteps.sh │ │ ├── BuildGoldenContainer.sh │ │ ├── BuildGoldenDistrolessContainer.sh │ │ ├── BuildNvidiaDriverContainers.sh │ │ └── PublishContainers.sh │ ├── sriovnetworkdeviceplugin │ │ ├── Dockerfile-sriov-network-device-plugin │ │ ├── sriovnetworkdeviceplugin.name │ │ └── sriovnetworkdeviceplugin.pkg │ ├── telegraf │ │ ├── Dockerfile-Telegraf │ │ ├── telegraf.name │ │ └── telegraf.pkg │ ├── tensorflow │ │ ├── Dockerfile-Tensorflow │ │ ├── configuration-files │ │ │ └── bashrc │ │ ├── tensorflow.name │ │ └── tensorflow.pkg │ └── valkey │ │ ├── Dockerfile-Valkey │ │ ├── configuration-files │ │ └── valkey-docker-entrypoint.sh │ │ ├── valkey.name │ │ └── valkey.pkg ├── fasttrack │ └── FasttrackMergeNotifier.yml ├── livepatching │ ├── BuildLivepatch.sh │ ├── BuildLivepatchSigned.sh │ ├── DeployLivepatch.yml │ └── ExtractKernelModules.sh ├── prchecks │ ├── CveSpecFilePRCheck │ │ ├── AntiPatternDetector.py │ │ ├── CveSpecFilePRCheck.py │ │ ├── CveSpecFilePRCheck.yml │ │ ├── GITHUB_INTEGRATION.md │ │ ├── GitHubClient.py │ │ ├── GptModelConfigClass.py │ │ ├── OpenAIClientClass.py │ │ ├── PromptTemplatesClass.py │ │ ├── README.md │ │ ├── ResultAnalyzer.py │ │ ├── apply-security-config.sh │ │ ├── pr-check-diagrams.md │ │ ├── requirements.txt │ │ ├── run-pr-check.sh │ │ ├── security-config-dev.json │ │ └── test_antipattern_detector.py │ ├── DevPRCheck.yml │ └── FastTrackPRCheck.yml ├── templates │ ├── PackageBuild.yml │ ├── PackageBuildPRCheck.yml │ ├── PackageTestResultsAnalysis.yml │ ├── RawToolchainDownload.yml │ ├── ToolchainBuild.yml │ ├── ToolchainCalculatePackageRetests.yml │ └── ToolkitCheck.yml └── templatesWithCheckout │ └── SodiffCheck.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES-AND-NOTICES ├── LICENSE.md ├── LICENSES-MAP.md └── SPECS │ ├── LICENSE-EXCEPTIONS.PHOTON │ ├── LICENSE-LGPLv2.md │ ├── LICENSE-PHOTON.md │ ├── LICENSES-MAP.md │ ├── NOTICE.APACHE2 │ └── data │ └── licenses.json ├── README.md ├── SECURITY.md ├── SPECS-EXTENDED ├── 389-ds-base │ ├── 389-ds-base-devel.README │ ├── 389-ds-base.signatures.json │ ├── 389-ds-base.spec │ └── 389-ds-base.sysusers ├── CharLS │ ├── CharLS.signatures.json │ └── CharLS.spec ├── GConf2 │ ├── GConf-gettext.patch │ ├── GConf2.signatures.json │ ├── GConf2.spec │ ├── drop-spew.patch │ ├── gconf-3.2.6-gconf-engine_key_is_writable.patch │ ├── macros.gconf2 │ ├── pkill-hack.patch │ └── workaround-crash.patch ├── GeoIP-GeoLite-data │ ├── GeoIP-GeoLite-data.signatures.json │ ├── GeoIP-GeoLite-data.spec │ └── LICENSE ├── GeoIP │ ├── GeoIP.signatures.json │ └── GeoIP.spec ├── Judy │ ├── Judy-1.0.4-fix-Judy1-mans.patch │ ├── Judy-1.0.4-test-shared.patch │ ├── Judy-1.0.5-undefined-behavior.patch │ ├── Judy.signatures.json │ ├── Judy.spec │ └── README.Fedora ├── LibRaw │ ├── LibRaw-pkgconfig.patch │ ├── LibRaw.signatures.json │ └── LibRaw.spec ├── ORBit2 │ ├── ORBit2-2.14.3-multilib.patch │ ├── ORBit2-2.14.3-ref-leaks.patch │ ├── ORBit2-allow-deprecated.patch │ ├── ORBit2-make-j-safety.patch │ ├── ORBit2.signatures.json │ └── ORBit2.spec ├── OpenEXR │ ├── OpenEXR.signatures.json │ ├── OpenEXR.spec │ ├── openexr-2.3.0-bigendian.patch │ └── openexr-2.3.0-tests.patch ├── PEGTL │ ├── PEGTL.signatures.json │ └── PEGTL.spec ├── PyGreSQL │ ├── PyGreSQL.signatures.json │ └── PyGreSQL.spec ├── SDL2 │ ├── SDL2-2.30.1-prefer-wayland.patch │ ├── SDL2.signatures.json │ ├── SDL2.spec │ ├── SDL_config.h │ ├── SDL_revision.h │ └── multilib.patch ├── SDL_sound │ ├── SDL_sound.signatures.json │ └── SDL_sound.spec ├── SuperLU │ ├── SuperLU-fedora-make.inc.in │ ├── SuperLU-fix_example_builds.patch │ ├── SuperLU.signatures.json │ ├── SuperLU.spec │ └── superlu-removemc64.patch ├── Xaw3d │ ├── Xaw3d-1.5-debian-fixes.patch │ ├── Xaw3d-1.6.1-3Dlabel.patch │ ├── Xaw3d-1.6.1-hsbar.patch │ ├── Xaw3d-1.6.5-fontset.patch │ ├── Xaw3d.signatures.json │ ├── Xaw3d.spec │ ├── alan.coopersmith.asc │ └── libXaw3d-1.6.6.tar.xz.sig ├── a52dec │ ├── a52dec-0.7.4-rpath64.patch │ ├── a52dec-configure-optflags.patch │ ├── a52dec.signatures.json │ ├── a52dec.spec │ └── liba52-silence.patch ├── accountsservice │ ├── 0001-mocklibc-Fix-compiler-warning.patch │ ├── 0002-user-manager-Fix-another-compiler-warning.patch │ ├── accountsservice.signatures.json │ └── accountsservice.spec ├── acpid │ ├── acpid-2.0.32-kacpimon-dynamic-connections.patch │ ├── acpid.power.conf │ ├── acpid.power.sh │ ├── acpid.service │ ├── acpid.signatures.json │ ├── acpid.socket │ ├── acpid.spec │ ├── acpid.sysconfig │ └── acpid.video.conf ├── adcli │ ├── adcli.signatures.json │ └── adcli.spec ├── adobe-mappings-cmap │ ├── adobe-mappings-cmap.signatures.json │ └── adobe-mappings-cmap.spec ├── adobe-mappings-pdf │ ├── adobe-mappings-pdf.signatures.json │ └── adobe-mappings-pdf.spec ├── advancecomp │ ├── advancecomp.signatures.json │ └── advancecomp.spec ├── alsa-firmware │ ├── alsa-firmware.signatures.json │ └── alsa-firmware.spec ├── alsa-plugins │ ├── alsa-plugins.signatures.json │ └── alsa-plugins.spec ├── amtk │ ├── amtk.signatures.json │ └── amtk.spec ├── amtterm │ ├── amtterm.signatures.json │ └── amtterm.spec ├── ansible-freeipa │ ├── ansible-freeipa.signatures.json │ └── ansible-freeipa.spec ├── aopalliance │ ├── aopalliance-1.0.pom │ ├── aopalliance-LICENSE.txt │ ├── aopalliance-MANIFEST.MF │ ├── aopalliance.signatures.json │ └── aopalliance.spec ├── apache-commons-beanutils │ ├── apache-commons-beanutils-fix-build-version.patch │ ├── apache-commons-beanutils.signatures.json │ ├── apache-commons-beanutils.spec │ └── jdk11.patch ├── apache-commons-codec │ ├── apache-commons-codec-build.xml │ ├── apache-commons-codec.signatures.json │ ├── apache-commons-codec.spec │ ├── aspell-mail.txt │ └── commons-codec-1.15-src.tar.gz.asc ├── apache-commons-collections │ ├── apache-commons-collections.signatures.json │ ├── apache-commons-collections.spec │ ├── commons-collections-3.2-build_xml.patch │ ├── commons-collections-3.2.2-tf.javadoc.patch │ ├── commons-collections-jdk11.patch │ ├── commons-collections-missing-MF.patch │ ├── commons-collections-testframework.pom │ ├── jakarta-commons-collections-javadoc-nonet.patch │ └── java8-compat.patch ├── apache-commons-collections4 │ ├── apache-commons-collections4-build.xml │ ├── apache-commons-collections4.signatures.json │ └── apache-commons-collections4.spec ├── apache-commons-compress │ ├── 0001-Remove-Brotli-compressor.patch │ ├── 0002-Remove-ZSTD-compressor.patch │ ├── apache-commons-compress-build.xml │ ├── apache-commons-compress.signatures.json │ ├── apache-commons-compress.spec │ ├── commons-compress-1.19-src.tar.gz.asc │ └── fix_java_8_compatibility.patch ├── apache-commons-daemon │ ├── apache-commons-daemon-JAVA_OS.patch │ ├── apache-commons-daemon-build.xml │ ├── apache-commons-daemon-riscv64.patch │ ├── apache-commons-daemon.keyring │ ├── apache-commons-daemon.signatures.json │ ├── apache-commons-daemon.spec │ └── commons-daemon-1.2.3-src.tar.gz.asc ├── apache-commons-dbcp │ ├── apache-commons-dbcp-javadoc.patch │ ├── apache-commons-dbcp-sourcetarget.patch │ ├── apache-commons-dbcp.signatures.json │ └── apache-commons-dbcp.spec ├── apache-commons-digester │ ├── apache-commons-digester-build.xml │ ├── apache-commons-digester.signatures.json │ └── apache-commons-digester.spec ├── apache-commons-httpclient │ ├── apache-commons-httpclient-CVE-2014-3577.patch │ ├── apache-commons-httpclient-CVE-2015-5262.patch │ ├── apache-commons-httpclient-addosgimanifest.patch │ ├── apache-commons-httpclient-disablecryptotests.patch │ ├── apache-commons-httpclient-encoding.patch │ ├── apache-commons-httpclient.signatures.json │ ├── apache-commons-httpclient.spec │ ├── commons-httpclient-3.1.pom │ └── commons-httpclient-CVE-2012-5783-2.patch ├── apache-commons-io │ ├── apache-commons-io-build.xml │ ├── apache-commons-io.signatures.json │ ├── apache-commons-io.spec │ └── commons-io-2.14.0-src.tar.gz.asc ├── apache-commons-jexl │ ├── 0001-Port-to-current-javacc.patch │ ├── 001-Fix-tests.patch │ ├── apache-commons-jexl-javadoc.patch │ ├── apache-commons-jexl.signatures.json │ ├── apache-commons-jexl.spec │ ├── build.xml │ ├── common.xml │ └── jexl2-compat-build.xml ├── apache-commons-net │ ├── apache-commons-net-build.xml │ ├── apache-commons-net.signatures.json │ └── apache-commons-net.spec ├── apache-commons-pool │ ├── apache-commons-pool.signatures.json │ ├── apache-commons-pool.spec │ ├── commons-pool-1.6-sourcetarget.patch │ └── jakarta-commons-pool-build.patch ├── apache-commons-pool2 │ ├── apache-commons-pool2.signatures.json │ ├── apache-commons-pool2.spec │ └── jakarta-commons-pool-build.patch ├── apache-commons-validator │ ├── apache-commons-validator.signatures.json │ ├── apache-commons-validator.spec │ ├── commons-validator-1.5.0-locale.patch │ └── commons-validator-1.5.0-srcencoding.patch ├── apache-commons-vfs2 │ ├── 0001_exlcude_abstractclass_from_test.patch │ ├── 0002_remove_ftpFile_providers.patch │ ├── apache-commons-vfs2.signatures.json │ ├── apache-commons-vfs2.spec │ ├── build.xml │ ├── common.xml │ ├── commons-vfs2-build.xml │ └── commons-vfs2-examples-build.xml ├── apache-parent │ ├── apache-parent.signatures.json │ └── apache-parent.spec ├── args4j │ ├── args4j.signatures.json │ ├── args4j.spec │ └── change-source-option-to-1.8.patch ├── arptables │ ├── arptables-legacy-helper │ ├── arptables.service │ ├── arptables.signatures.json │ └── arptables.spec ├── arpwatch │ ├── arpwatch-2.1a10-man.patch │ ├── arpwatch-2.1a15-bogon.patch │ ├── arpwatch-2.1a15-buffer-overflow-bz1563939.patch │ ├── arpwatch-2.1a15-devlookup.patch │ ├── arpwatch-2.1a15-dropgroup.patch │ ├── arpwatch-2.1a15-extraman.patch │ ├── arpwatch-2.1a15-lookupiselect.patch │ ├── arpwatch-2.1a15-nolocalpcap.patch │ ├── arpwatch-2.1a4-fhs.patch │ ├── arpwatch-201301-ethcodes.patch │ ├── arpwatch-LICENSE.txt │ ├── arpwatch-aarch64.patch │ ├── arpwatch-addr.patch │ ├── arpwatch-dir-man.patch │ ├── arpwatch-drop-man.patch │ ├── arpwatch-drop.patch │ ├── arpwatch-exitcode.patch │ ├── arpwatch-pie.patch │ ├── arpwatch-promisc.patch │ ├── arpwatch-scripts.patch │ ├── arpwatch.service │ ├── arpwatch.signatures.json │ └── arpwatch.spec ├── asio │ ├── asio.signatures.json │ └── asio.spec ├── aspell-en │ ├── aspell-en.signatures.json │ └── aspell-en.spec ├── audiofile │ ├── 822b732fd31ffcb78f6920001e9b1fbd815fa712.patch │ ├── 941774c8c0e79007196d7f1e7afdc97689f869b3.patch │ ├── audiofile-0.3.6-CVE-2015-7747.patch │ ├── audiofile-0.3.6-left-shift-neg.patch │ ├── audiofile-0.3.6-narrowing.patch │ ├── audiofile-0.3.6-pull42.patch │ ├── audiofile-0.3.6-pull43.patch │ ├── audiofile-0.3.6-pull44.patch │ ├── audiofile.signatures.json │ ├── audiofile.spec │ └── fde6d79fb8363c4a329a184ef0b107156602b225.patch ├── azl-otel-collector │ ├── azl-otel-collector.service │ ├── azl-otel-collector.signatures.json │ ├── azl-otel-collector.spec │ └── generate_source_tarball.sh ├── babeltrace │ ├── babeltrace-1.5.11.tar.bz2.asc │ ├── babeltrace.signatures.json │ ├── babeltrace.spec │ └── python39.patch ├── babl │ ├── babl.signatures.json │ └── babl.spec ├── baekmuk-ttf-fonts │ ├── baekmuk-ttf-batang.conf │ ├── baekmuk-ttf-batang.metainfo.xml │ ├── baekmuk-ttf-dotum.conf │ ├── baekmuk-ttf-dotum.metainfo.xml │ ├── baekmuk-ttf-fonts.signatures.json │ ├── baekmuk-ttf-fonts.spec │ ├── baekmuk-ttf-gulim.conf │ ├── baekmuk-ttf-gulim.metainfo.xml │ ├── baekmuk-ttf-hline.conf │ ├── baekmuk-ttf-hline.metainfo.xml │ └── baekmuk-ttf.metainfo.xml ├── base64coder │ ├── base64coder-LICENSE.txt │ ├── base64coder-javadoc.patch │ ├── base64coder-manifest.patch │ ├── base64coder-sourcetarget.patch │ ├── base64coder.signatures.json │ └── base64coder.spec ├── bats │ ├── bats.signatures.json │ └── bats.spec ├── bcache-tools │ ├── bcache-status-python3.patch │ ├── bcache-status-rootgc.patch │ ├── bcache-tools-1.0.8-noprobe.2.patch │ ├── bcache-tools-1.1-cmdline.patch │ ├── bcache-tools-1.1-man.pach │ ├── bcache-tools-1.1-util-linux-hdr.patch │ ├── bcache-tools-20131018-fedconf.patch │ ├── bcache-tools-status-20160804-man.patch │ ├── bcache-tools.signatures.json │ └── bcache-tools.spec ├── bcel │ ├── bcel-5.2-encoding.patch │ ├── bcel-5.2-src.tar.gz.asc │ ├── bcel-5.2.pom │ ├── bcel.keyring │ ├── bcel.signatures.json │ └── bcel.spec ├── bea-stax │ ├── LICENSE-2.0.txt │ ├── bea-stax-gcj-build.patch │ ├── bea-stax-target8.patch │ ├── bea-stax.signatures.json │ ├── bea-stax.spec │ ├── stax-1.2.0.pom │ └── stax-api-1.0.1.pom ├── beust-jcommander │ ├── beust-jcommander-build.xml │ ├── beust-jcommander.pom │ ├── beust-jcommander.signatures.json │ └── beust-jcommander.spec ├── biosdevname │ ├── 0001-Disable-biosdevname-by-default.patch │ ├── 0002-Place-udev-rules-to-usr-lib.patch │ ├── biosdevname.signatures.json │ └── biosdevname.spec ├── blosc │ ├── blosc-gcc11.patch │ ├── blosc.signatures.json │ └── blosc.spec ├── bolt │ ├── 0001-test-test-unix-skip-unix-domain-socket-test.patch │ ├── bolt.signatures.json │ └── bolt.spec ├── boom-boot │ ├── 0001-etc-Remove-executable-permission-from-etc-default-bo.patch │ ├── 0002-man-Fix-line-starting-with.patch │ ├── boom-boot.signatures.json │ └── boom-boot.spec ├── booth │ ├── CVE-2022-2553.patch │ ├── booth.signatures.json │ └── booth.spec ├── botan2 │ ├── botan2.signatures.json │ └── botan2.spec ├── breezy │ ├── breezy-3.0.2.tar.gz.asc │ ├── breezy.signatures.json │ ├── breezy.spec │ └── brz-icon-64.png ├── bsf │ ├── bsf-doclint-ignore.patch │ ├── bsf-pom.xml │ ├── bsf.signatures.json │ ├── bsf.spec │ ├── build-file.patch │ └── build.properties.patch ├── buildah │ ├── 0001-Run-selective-tests.patch │ ├── buildah.signatures.json │ └── buildah.spec ├── bwidget │ ├── bwidget.signatures.json │ └── bwidget.spec ├── cachefilesd │ ├── cachefilesd-LICENSE.txt │ ├── cachefilesd.signatures.json │ └── cachefilesd.spec ├── cairomm │ ├── cairomm.signatures.json │ └── cairomm.spec ├── capnproto │ ├── capnproto.signatures.json │ └── capnproto.spec ├── capstone │ ├── capstone.signatures.json │ └── capstone.spec ├── cassandra-driver │ ├── cassandra-driver.signatures.json │ └── cassandra-driver.spec ├── cassandra │ ├── Readme │ ├── cassandra.service │ ├── cassandra.signatures.json │ └── cassandra.spec ├── catatonit │ ├── catatonit.signatures.json │ └── catatonit.spec ├── catch1 │ ├── catch1-sigstksz.patch │ ├── catch1.signatures.json │ └── catch1.spec ├── cdparanoia │ ├── 010_build_system.patch │ ├── 050_all_build_only_shared_libraries.patch │ ├── cdparanoia-III-01-typos-and-spelling.patch │ ├── cdparanoia-III-05-gcc4.3.patch │ ├── cdparanoia-III-06-endian.patch │ ├── cdparanoia-III-c++.patch │ ├── cdparanoia-III-ide_majors.patch │ ├── cdparanoia.signatures.json │ ├── cdparanoia.spec │ └── config-guess-sub-update.patch ├── cdrdao │ ├── cdrdao-1.2.4-ax_pthread.patch │ ├── cdrdao-1.2.4-wformat-security.patch │ ├── cdrdao.signatures.json │ └── cdrdao.spec ├── celt051 │ ├── celt051.signatures.json │ └── celt051.spec ├── certmonger │ ├── certmonger.signatures.json │ └── certmonger.spec ├── cfitsio │ ├── cfitsio-ldflags.patch │ ├── cfitsio-noversioncheck.patch │ ├── cfitsio-pkgconfig.patch │ ├── cfitsio-remove-rpath.patch │ ├── cfitsio.signatures.json │ └── cfitsio.spec ├── cgdcbxd │ ├── cgdcbxd.service │ ├── cgdcbxd.signatures.json │ └── cgdcbxd.spec ├── cglib │ ├── cglib.signatures.json │ └── cglib.spec ├── chan │ ├── chan.signatures.json │ └── chan.spec ├── cim-schema │ ├── LICENSE │ ├── cim-schema.signatures.json │ └── cim-schema.spec ├── cjkuni-uming-fonts │ ├── 90-ttf-arphic-uming-embolden.conf │ ├── cjkuni-uming-fonts-fontconfig.conf │ ├── cjkuni-uming-fonts.signatures.json │ └── cjkuni-uming-fonts.spec ├── cjose │ ├── cjose.signatures.json │ └── cjose.spec ├── cldr-emoji-annotation │ ├── cldr-emoji-annotation.signatures.json │ └── cldr-emoji-annotation.spec ├── clucene │ ├── 0001-Fix-missing-include-time.h.patch │ ├── 0001-Make-sure-to-return-value-from-non-void-function.patch │ ├── 0002-Avoid-deadlock-in-TestIndexSearcher.patch │ ├── clucene-core-2.3.3.4-CLuceneConfig.patch │ ├── clucene-core-2.3.3.4-install_contribs_lib.patch │ ├── clucene-core-2.3.3.4-pkgconfig.patch │ ├── clucene-core-2.3.3.4-usleep.patch │ ├── clucene.signatures.json │ └── clucene.spec ├── clutter-gst3 │ ├── clutter-gst3.signatures.json │ ├── clutter-gst3.spec │ └── remove-rgbx-bgrx-support.patch ├── clutter-gtk │ ├── clutter-gtk.signatures.json │ └── clutter-gtk.spec ├── clutter │ ├── clutter.signatures.json │ └── clutter.spec ├── cmake-fedora │ ├── cmake-fedora.signatures.json │ └── cmake-fedora.spec ├── cogl │ ├── 0001-egl-Use-eglGetPlatformDisplay-not-eglGetDisplay.patch │ ├── 0002-add-GL_ARB_shader_texture_lod-support.patch │ ├── 0003-texture-support-copy_sub_image.patch │ ├── cogl.signatures.json │ └── cogl.spec ├── colorize │ ├── colorize.signatures.json │ └── colorize.spec ├── compat-lua │ ├── compat-lua.signatures.json │ ├── compat-lua.spec │ ├── lua-5.1.4-autotoolize.patch │ ├── lua-5.1.4-idsize.patch │ ├── lua-5.1.4-lunatic.patch │ └── lua-5.1.4-pc-compat.patch ├── console-setup │ ├── console-setup-1.76-fsf-address.patch │ ├── console-setup-1.76-paths.patch │ ├── console-setup-1.84-ctrll-lock.patch │ ├── console-setup.signatures.json │ └── console-setup.spec ├── container-exception-logger │ ├── container-exception-logger.signatures.json │ └── container-exception-logger.spec ├── convmv │ ├── convmv-2.0-preserve-timestamps.patch │ ├── convmv.signatures.json │ └── convmv.spec ├── corosync-qdevice │ ├── corosync-qdevice.signatures.json │ └── corosync-qdevice.spec ├── corosync │ ├── corosync.signatures.json │ └── corosync.spec ├── cpp-hocon │ ├── cpp-hocon.signatures.json │ └── cpp-hocon.spec ├── cppcheck │ ├── cppcheck-2.11-translations.patch │ ├── cppcheck-2.18-TestCondition.patch │ ├── cppcheck.signatures.json │ └── cppcheck.spec ├── cpptest │ ├── cpptest.signatures.json │ └── cpptest.spec ├── cpuid │ ├── cpuid.signatures.json │ └── cpuid.spec ├── cqlsh │ ├── cqlsh.signatures.json │ └── cqlsh.spec ├── crash-ptdump-command │ ├── crash-ptdump-command.signatures.json │ ├── crash-ptdump-command.spec │ └── rhel8_build.patch ├── cri-o │ ├── cri-o-rpmlintrc │ ├── cri-o.signatures.json │ ├── cri-o.spec │ ├── crio.conf │ ├── crio.service │ ├── generate_source_tarball.sh │ ├── kubelet.env │ └── sysconfig.crio ├── criu │ ├── criu-tmpfiles.conf │ ├── criu.signatures.json │ ├── criu.spec │ └── unifying_struct_names.patch ├── crypto-policies │ ├── crypto-policies.signatures.json │ └── crypto-policies.spec ├── cscope │ ├── cscope-dblfree.patch │ ├── cscope.signatures.json │ └── cscope.spec ├── custodia │ ├── 0001-Replace-use-of-pytest-get_marker.patch │ ├── custodia.conf │ ├── custodia.signatures.json │ ├── custodia.spec │ ├── custodia.tmpfiles.conf │ ├── custodia@.service │ ├── custodia@.socket │ └── nonfatal_deprecation.patch ├── dbus-c++ │ ├── dbus-c++-gcc4.7.patch │ ├── dbus-c++-linkfix.patch │ ├── dbus-c++-macro_collision.patch │ ├── dbus-c++-template-operators.patch │ ├── dbus-c++-threading.patch │ ├── dbus-c++-writechar.patch │ ├── dbus-c++.signatures.json │ └── dbus-c++.spec ├── dcraw │ ├── dcraw-9.21-lcms2-error-reporting.patch │ ├── dcraw-CVE-2017-13735.patch │ ├── dcraw-CVE-2017-14608.patch │ ├── dcraw-CVE-2018-19655.patch │ ├── dcraw-CVE-2018-5801.patch │ ├── dcraw.signatures.json │ └── dcraw.spec ├── deltarpm │ ├── deltarpm.signatures.json │ └── deltarpm.spec ├── delve │ ├── delve.signatures.json │ ├── delve.spec │ └── golang-1.15.4-TestStepIntoWrapperForEmbeddedPointer.patch ├── device-mapper-persistent-data │ ├── device-mapper-persistent-data-avoid-strip.patch │ ├── device-mapper-persistent-data.signatures.json │ └── device-mapper-persistent-data.spec ├── diffstat │ ├── COPYING │ ├── diffstat.signatures.json │ └── diffstat.spec ├── discount │ ├── define_destructor.patch │ ├── discount-c99.patch │ ├── discount-dont-run-ldconfig.patch │ ├── discount.signatures.json │ ├── discount.spec │ └── set_deps.patch ├── dleyna-connector-dbus │ ├── dleyna-connector-dbus.signatures.json │ └── dleyna-connector-dbus.spec ├── dleyna-core │ ├── dleyna-core-Don-t-remove-a-queue-more-than-once.patch │ ├── dleyna-core-Make-the-task-processor-more-robust.patch │ ├── dleyna-core.signatures.json │ ├── dleyna-core.spec │ ├── port-to-gupnp-1.6.patch │ └── port_gupnp_1.6_context_filter.patch ├── dmraid │ ├── avoid_register.patch │ ├── bz626417_19-enabling_registration_degraded_volume.patch │ ├── bz626417_20-cleanup_some_compilation_warning.patch │ ├── bz626417_21-add_option_that_postpones_any_metadata_updates.patch │ ├── bz635995-data_corruption_during_activation_volume_marked_for_rebuild.patch │ ├── ddf1_lsi_persistent_name.patch │ ├── dmraid-1.0.0.rc16-test_devices.patch │ ├── dmraid-activation.service │ ├── dmraid-fix-build-to-honour-cflags-var.patch │ ├── dmraid-fix-destdir.patch │ ├── dmraid-fix-errors-and-warnings-triggered-by-CFLAGS.patch │ ├── dmraid-fix-missing-destdir.patch │ ├── dmraid-fix-so-flags.patch │ ├── dmraid.signatures.json │ ├── dmraid.spec │ ├── fedora-dmraid-activation │ ├── fix_sil_jbod.patch │ ├── libversion-display.patch │ ├── libversion.patch │ ├── move_pattern_file_to_var.patch │ ├── pdc_raid10_failure.patch │ └── return_error_wo_disks.patch ├── docbook-simple │ ├── LICENSE.PTR │ ├── docbook-simple.README.redhat │ ├── docbook-simple.cat │ ├── docbook-simple.signatures.json │ ├── docbook-simple.spec │ └── docbook-simple.xml ├── docbook-slides │ ├── docbook-slides.README.redhat │ ├── docbook-slides.cat │ ├── docbook-slides.signatures.json │ ├── docbook-slides.spec │ └── docbook-slides.xml ├── docbook-style-dsssl │ ├── LICENSE.PTR │ ├── docbook-style-dsssl.Makefile │ ├── docbook-style-dsssl.signatures.json │ └── docbook-style-dsssl.spec ├── docbook-utils │ ├── db2html │ ├── docbook-utils-2ndspaces.patch │ ├── docbook-utils-grepnocolors.patch │ ├── docbook-utils-newgrep.patch │ ├── docbook-utils-nofinalecho.patch │ ├── docbook-utils-papersize.patch │ ├── docbook-utils-rtfmanpage.patch │ ├── docbook-utils-sgmlinclude.patch │ ├── docbook-utils-spaces.patch │ ├── docbook-utils-w3mtxtconvert.patch │ ├── docbook-utils.signatures.json │ ├── docbook-utils.spec │ ├── docbook2man-spec.pl │ └── gdp-both.dsl ├── docbook2X │ ├── docbook2X.signatures.json │ └── docbook2X.spec ├── docbook5-style-xsl │ ├── docbook5-style-xsl.signatures.json │ └── docbook5-style-xsl.spec ├── dogtail │ ├── dogtail.signatures.json │ └── dogtail.spec ├── dotconf │ ├── dotconf.signatures.json │ └── dotconf.spec ├── dovecot │ ├── dovecot-1.0.beta2-mkcert-permissions.patch │ ├── dovecot-1.0.rc7-mkcert-paths.patch │ ├── dovecot-2.0-defaultconfig.patch │ ├── dovecot-2.1.10-waitonline.patch │ ├── dovecot-2.2.20-initbysystemd.patch │ ├── dovecot-2.2.22-systemd_w_protectsystem.patch │ ├── dovecot-2.3.0.1-libxcrypt.patch │ ├── dovecot-2.3.11-bigkey.patch │ ├── dovecot-2.3.13-bigtvsec.patch │ ├── dovecot.conf.5 │ ├── dovecot.init │ ├── dovecot.pam │ ├── dovecot.signatures.json │ ├── dovecot.spec │ ├── dovecot.sysconfig │ ├── dovecot.tmpfilesd │ └── prestartscript ├── driverctl │ ├── driverctl.signatures.json │ └── driverctl.spec ├── dropwatch │ ├── dropwatch.signatures.json │ └── dropwatch.spec ├── drpm │ ├── drpm.signatures.json │ └── drpm.spec ├── dumpet │ ├── 0001-Manually-tell-it-we-ve-got-64-bit-files-because-32-b.patch │ ├── dumpet.signatures.json │ └── dumpet.spec ├── dvd+rw-tools │ ├── dvd+rw-tools-7.0-dvddl.patch │ ├── dvd+rw-tools-7.0-glibc2.6.90.patch │ ├── dvd+rw-tools-7.0-reload.patch │ ├── dvd+rw-tools-7.0-wctomb.patch │ ├── dvd+rw-tools-7.0-wexit.patch │ ├── dvd+rw-tools-7.0.manpatch │ ├── dvd+rw-tools-7.1-bluray_pow_freespace.patch │ ├── dvd+rw-tools-7.1-bluray_srm+pow.patch │ ├── dvd+rw-tools-7.1-format.patch │ ├── dvd+rw-tools-7.1-lastshort.patch │ ├── dvd+rw-tools-7.1-noevent.patch │ ├── dvd+rw-tools-7.1-sysmacro-inc.patch │ ├── dvd+rw-tools.signatures.json │ ├── dvd+rw-tools.spec │ └── index.html ├── dyninst │ ├── dyninst-10.1.0-aarch-regs.patch │ ├── dyninst-10.1.0-result.patch │ ├── dyninst.signatures.json │ ├── dyninst.spec │ ├── gcc-11-fix.patch │ ├── testsuite-10.1.0-386.patch │ └── testsuite-10.1.0-gettid.patch ├── ecj │ ├── MANIFEST.MF │ ├── ecj-3.18.0.pom │ ├── ecj-encoding.patch │ ├── ecj-rpmdebuginfo.patch │ ├── ecj.signatures.json │ ├── ecj.spec │ ├── java10api.pom │ └── jdk10u-jdk8compat.patch ├── edac-utils │ ├── 13.patch │ ├── edac-utils.signatures.json │ ├── edac-utils.spec │ └── edac.service ├── efax │ ├── efax-0.9-config.patch │ ├── efax-0.9-manpage.patch │ ├── efax-0.9-misc.patch │ ├── efax-0.9-msg-va_list.patch │ ├── efax-0.9-nullptr.patch │ ├── efax-0.9-numlines.patch │ ├── efax-0.9-pdf.patch │ ├── efax-0.9-quote.patch │ ├── efax-0.9-viewcmd.patch │ ├── efax-0.9a-001114-crash.patch │ ├── efax-0.9a-001114-format-security.patch │ ├── efax-0.9a-001114-multiple-definition.patch │ ├── efax.signatures.json │ ├── efax.spec │ ├── efax08a-time.patch │ └── logrotate-efax ├── efi-rpm-macros │ ├── 0001-Don-t-have-arm-as-an-alt-arch-of-aarch64.patch │ ├── 0002-Makefile-fix-permission-on-boot-efi-EFI.patch │ ├── efi-rpm-macros.signatures.json │ └── efi-rpm-macros.spec ├── elinks │ ├── 0000-elinks-0.15.0-ssl-noegd.patch │ ├── 0001-elinks-0.15.1-utf_8_io-default.patch │ ├── 0004-elinks-0.15.0-sysname.patch │ ├── 0005-elinks-0.15.0-xterm.patch │ ├── elinks-0.11.0-getaddrinfo.patch │ ├── elinks-0.12pre6-list_is_singleton.patch │ ├── elinks.conf │ ├── elinks.signatures.json │ └── elinks.spec ├── enca │ ├── enca.signatures.json │ └── enca.spec ├── enchant │ ├── enchant.signatures.json │ └── enchant.spec ├── enscript │ ├── 0001-enscript-newencodings.patch │ ├── enscript-1.6.1-locale.patch │ ├── enscript-1.6.4-rh457720.patch │ ├── enscript-CVE-vasnprintf.patch │ ├── enscript-bufpos-crash.patch │ ├── enscript-build.patch │ ├── enscript-manfixes.patch │ ├── enscript-php-1.6.4.st │ ├── enscript-rh477382.patch │ ├── enscript-wrap_header.patch │ ├── enscript.signatures.json │ └── enscript.spec ├── evemu │ ├── evemu.signatures.json │ └── evemu.spec ├── exempi │ ├── exempi.signatures.json │ └── exempi.spec ├── exiv2 │ ├── exiv2.signatures.json │ └── exiv2.spec ├── fabtests │ ├── 0001-adjust-shebang-lines-in-rft_yaml_to_junit_xml-and-ru.patch │ ├── fabtests.signatures.json │ └── fabtests.spec ├── facter │ ├── facter-4.8.0.gem.asc │ ├── facter.signatures.json │ ├── facter.spec │ └── puppet-gpg-signing-key-20250406.pub ├── fakechroot │ ├── 534e6d555736b97211523970d378dfb0db2608e9.patch │ ├── 693a3597ea7fccfb62f357503ff177bd3e3d5a89.patch │ ├── 75d7e6fa191c11a791faff06a0de86eaa7801d05.patch │ ├── 86.patch │ ├── b42d1fb9538f680af2f31e864c555414ccba842a.patch │ ├── fakechroot.signatures.json │ └── fakechroot.spec ├── fence-virt │ ├── fence-virt.signatures.json │ └── fence-virt.spec ├── fetchmail │ ├── fetchmail-6.4.39.tar.xz.asc │ ├── fetchmail.signatures.json │ └── fetchmail.spec ├── fftw │ ├── fftw.signatures.json │ └── fftw.spec ├── filebench │ ├── LICENSE │ ├── filebench.1 │ ├── filebench.signatures.json │ ├── filebench.spec │ └── make-dofile-global.patch ├── flac │ ├── flac.signatures.json │ ├── flac.spec │ └── xmms-flac.desktop ├── flashrom │ ├── 6E6EF9A0BA478006E2776E4CC037BB413134D111.gpg │ ├── flashrom.signatures.json │ └── flashrom.spec ├── flite │ ├── flite-2.2-lto.patch │ ├── flite-2.2-texinfo-7.0.patch │ ├── flite.signatures.json │ └── flite.spec ├── fltk │ ├── fltk-1.3.4-fltk_config.patch │ ├── fltk-cmake.patch │ ├── fltk-config.sh │ ├── fltk.signatures.json │ └── fltk.spec ├── fonts-rpm-macros │ ├── fonts-rpm-macros-drop-yaml.patch │ ├── fonts-rpm-macros-epoch-in-req.patch │ ├── fonts-rpm-macros-omit-foundry-in-family.patch │ ├── fonts-rpm-macros.signatures.json │ ├── fonts-rpm-macros.spec │ └── update_for_azl.patch ├── foomatic-db │ ├── foomatic-db-device-ids.patch │ ├── foomatic-db-invalid.patch │ ├── foomatic-db.signatures.json │ └── foomatic-db.spec ├── freeradius │ ├── freeradius-Adjust-configuration-to-fit-Red-Hat-specifics.patch │ ├── freeradius-Use-system-crypto-policy-by-default.patch │ ├── freeradius-bootstrap-create-only.patch │ ├── freeradius-bootstrap-make-permissions.patch │ ├── freeradius-configure-c99.patch │ ├── freeradius-ease-openssl-version-check.patch │ ├── freeradius-ldap-infinite-timeout-on-starttls.patch │ ├── freeradius-logrotate │ ├── freeradius-no-buildtime-cert-gen.patch │ ├── freeradius-pam-conf │ ├── freeradius-tmpfiles.conf │ ├── freeradius.signatures.json │ ├── freeradius.spec │ ├── freeradius.sysusers │ └── radiusd.service ├── freexl │ ├── freexl.signatures.json │ └── freexl.spec ├── fros │ ├── 0002-Specify-prototypes-for-used-X11-C-functions.patch │ ├── 0004-Switch-to-XDG_CURRENT_DESKTOP.patch │ ├── 0005-Ensure-that-the-right-version-of-Gtk-gets-loaded.patch │ ├── 0006-Delay-initialization-of-GNOME-Screencast-D-Bus-proxy.patch │ ├── 0007-Add-a-sanity-check-to-recordmydestkop-plugin.patch │ ├── fros.signatures.json │ └── fros.spec ├── fstrm │ ├── fstrm.signatures.json │ └── fstrm.spec ├── fuse-overlayfs │ ├── fuse-overlayfs.signatures.json │ └── fuse-overlayfs.spec ├── fuse-sshfs │ ├── ED31791B2C5C1613AF388B8AD113FCAC3C4E599F.gpg │ ├── fuse-sshfs.signatures.json │ ├── fuse-sshfs.spec │ ├── sshfs-0001-Refer-to-mount.fuse3-instead-of-mount.fuse.patch │ └── sshfs-3.7.3.tar.xz.asc ├── fwupd-efi │ ├── azure_linux_compat.patch │ ├── fwupd-efi.signatures.json │ └── fwupd-efi.spec ├── fwupd │ ├── fwupd.signatures.json │ └── fwupd.spec ├── fxload │ ├── fxload-cflags-ldflags.patch │ ├── fxload-generate-tarball.sh │ ├── fxload-noa3load.patch │ ├── fxload.signatures.json │ └── fxload.spec ├── gavl │ ├── gavl-1.1.1-system_libgdither.patch │ ├── gavl.signatures.json │ └── gavl.spec ├── gconf-editor │ ├── gconf-editor.signatures.json │ └── gconf-editor.spec ├── gcr │ ├── fix-meson-packages-build-keyword.patch │ ├── gcr.signatures.json │ └── gcr.spec ├── gdal │ ├── cpl-config.h │ ├── gdal-config │ ├── gdal.signatures.json │ ├── gdal.spec │ └── gdal_utils.patch ├── gdisk │ ├── gdisk.signatures.json │ └── gdisk.spec ├── generic-logos │ ├── generic-logos.signatures.json │ └── generic-logos.spec ├── genwqe-tools │ ├── genwqe-tools.signatures.json │ ├── genwqe-tools.spec │ ├── genwqe-user-4.0.18-install-gzFile_test.patch │ └── genwqe-user-4.0.20-glibc-2.30-gettid-naming-conflict.patch ├── geoclue2 │ ├── geoclue2.signatures.json │ └── geoclue2.spec ├── geolite2 │ ├── geolite2.signatures.json │ └── geolite2.spec ├── geronimo-specs │ ├── geronimo-specs.build.xml │ ├── geronimo-specs.signatures.json │ ├── geronimo-specs.spec │ └── undot.py ├── gi-docgen │ ├── gi-docgen-2022.2-no-web-fonts.patch │ ├── gi-docgen.signatures.json │ └── gi-docgen.spec ├── gl-manpages │ ├── dbmathml.dtd │ ├── gl-manpages.signatures.json │ ├── gl-manpages.spec │ └── metainfo.xsl ├── glassfish-annotation-api │ ├── LICENSE │ ├── glassfish-annotation-api-build.xml │ ├── glassfish-annotation-api.signatures.json │ └── glassfish-annotation-api.spec ├── glew │ ├── glew-2.1.0-install.patch │ ├── glew-2.2.0-gcc12-cplusplus.patch │ ├── glew.signatures.json │ └── glew.spec ├── glm │ ├── glm-1.0.1-noarch.patch │ ├── glm-1.0.1-without-werror.patch │ ├── glm.signatures.json │ └── glm.spec ├── glog │ ├── glog.signatures.json │ └── glog.spec ├── gnome-desktop-testing │ ├── 0001-Don-t-crash-on-unknown-command-line-options.patch │ ├── gnome-desktop-testing.signatures.json │ └── gnome-desktop-testing.spec ├── gnome-doc-utils │ ├── gnome-doc-utils-0.14.0-package.patch │ ├── gnome-doc-utils-0.20.10-python3.patch │ ├── gnome-doc-utils.signatures.json │ └── gnome-doc-utils.spec ├── gnome-icon-theme │ ├── gnome-icon-theme.signatures.json │ ├── gnome-icon-theme.spec │ └── legacy-icon-mapping.xml ├── gnome-keyring │ ├── gnome-keyring.signatures.json │ └── gnome-keyring.spec ├── gnu-getopt │ ├── gnu-getopt-java8compat.patch │ ├── gnu-getopt.signatures.json │ └── gnu-getopt.spec ├── gnu-regexp │ ├── gnu-regexp.build.xml │ ├── gnu-regexp.signatures.json │ └── gnu-regexp.spec ├── go-rpm-macros │ ├── fixing_ldflags_for_azl.patch │ ├── go-rpm-macros.signatures.json │ └── go-rpm-macros.spec ├── gom │ ├── gom.signatures.json │ └── gom.spec ├── google-api-python-client │ ├── google-api-python-client.signatures.json │ └── google-api-python-client.spec ├── google-crosextra-caladea-fonts │ ├── 30-0-google-crosextra-caladea-fontconfig.conf │ ├── 62-google-crosextra-caladea-fontconfig.conf │ ├── google-crosextra-caladea-fonts.signatures.json │ ├── google-crosextra-caladea-fonts.spec │ └── google-crosextra-caladea.metainfo.xml ├── google-crosextra-carlito-fonts │ ├── 30-0-google-crosextra-carlito-fontconfig.conf │ ├── 62-google-crosextra-carlito-fontconfig.conf │ ├── google-crosextra-carlito-fonts.signatures.json │ ├── google-crosextra-carlito-fonts.spec │ └── google-crosextra-carlito.metainfo.xml ├── google-noto-cjk-fonts │ ├── 65-google-noto-cjk-fonts.conf │ ├── genfontconf.py │ ├── genfontconf.sh │ ├── google-noto-cjk-fonts.signatures.json │ └── google-noto-cjk-fonts.spec ├── google-noto-emoji-fonts │ ├── google-noto-emoji-color.metainfo.xml │ ├── google-noto-emoji-fonts.signatures.json │ ├── google-noto-emoji-fonts.spec │ ├── google-noto-emoji.metainfo.xml │ ├── noto-emoji-build-all-flags.patch │ ├── noto-emoji-check-sequence.patch │ ├── noto-emoji-use-gm.patch │ └── noto-emoji-use-system-pngquant.patch ├── gphoto2 │ ├── gphoto2.signatures.json │ └── gphoto2.spec ├── gpm │ ├── 1.20.7...4a938233fbe6de7af05aabc74891b68d4bae40f8.diff │ ├── f04f24dd5ca5c1c13608b144ab66e2ccd47f106a.patch │ ├── gpm-1.20.1-lib-silent.patch │ ├── gpm-1.20.1-weak-wgetch.patch │ ├── gpm-1.20.5-close-fds.patch │ ├── gpm-1.20.6-capability.patch │ ├── gpm-1.20.6-missing-header-dir-in-make-depend.patch │ ├── gpm-1.20.6-multilib.patch │ ├── gpm-1.20.7-rhbz-668480-gpm-types-7-manpage-fixes.patch │ ├── gpm.service │ ├── gpm.signatures.json │ └── gpm.spec ├── gpsbabel │ ├── 0002-No-solicitation.patch │ ├── gpsbabel.png │ ├── gpsbabel.signatures.json │ └── gpsbabel.spec ├── graphene │ ├── graphene.signatures.json │ └── graphene.spec ├── graphite2 │ ├── graphite-arm-nodefaultlibs.patch │ ├── graphite2-1.2.0-cmakepath.patch │ ├── graphite2.signatures.json │ └── graphite2.spec ├── gsl │ ├── gsl-1.10-lib64.patch │ ├── gsl-test.patch │ ├── gsl-tol.patch │ ├── gsl.signatures.json │ └── gsl.spec ├── gspell │ ├── gspell.signatures.json │ └── gspell.spec ├── gssdp │ ├── gssdp.signatures.json │ └── gssdp.spec ├── gssntlmssp │ ├── gssntlmssp.signatures.json │ └── gssntlmssp.spec ├── gstreamer1-plugins-base │ ├── 0001-missing-plugins-Remove-the-mpegaudioversion-field.patch │ ├── gstreamer1-plugins-base.signatures.json │ └── gstreamer1-plugins-base.spec ├── gstreamer1 │ ├── gstreamer-inspect-rpm-format.patch │ ├── gstreamer1.attr │ ├── gstreamer1.prov │ ├── gstreamer1.signatures.json │ └── gstreamer1.spec ├── gtk-vnc │ ├── 0001-make-gtk-vnc-debug-work-with-new-glib.patch │ ├── 0002-Expand-log-message-to-include-log-domain-and-timesta.patch │ ├── gtk-vnc.signatures.json │ └── gtk-vnc.spec ├── gtkspell │ ├── gtkspell.signatures.json │ └── gtkspell.spec ├── gupnp-av │ ├── gupnp-av.signatures.json │ └── gupnp-av.spec ├── gupnp-dlna │ ├── gupnp-dlna.signatures.json │ └── gupnp-dlna.spec ├── gupnp-igd │ ├── gupnp-igd.signatures.json │ └── gupnp-igd.spec ├── gupnp │ ├── gupnp.signatures.json │ └── gupnp.spec ├── hawtjni-runtime │ ├── hawtjni-runtime.signatures.json │ └── hawtjni-runtime.spec ├── hdf │ ├── h4comp │ ├── hdf-build.patch │ ├── hdf.signatures.json │ └── hdf.spec ├── hiera │ ├── fix-puppetlab-paths.patch │ ├── hiera-3.12.0.tar.gz.asc │ ├── hiera.signatures.json │ ├── hiera.spec │ └── puppet-gpg-signing-key-20250406.pub ├── highlight │ ├── highlight.signatures.json │ └── highlight.spec ├── hping3 │ ├── hping3-20051105-typo.patch │ ├── hping3-bytesex.patch │ ├── hping3-cflags.patch │ ├── hping3-common.patch │ ├── hping3-getifnamedebug.patch │ ├── hping3-include.patch │ ├── hping3-man.patch │ ├── hping3.signatures.json │ └── hping3.spec ├── hsakmt │ ├── 0001-CMakeLists-Set-the-correct-default-version.patch │ ├── 0001-Fix-install-targets.patch │ ├── 0001-Use-CFLAGS-and-LDFLAGS-specified-in-environment-vari.patch │ ├── hsakmt.signatures.json │ └── hsakmt.spec ├── httpcomponents-core │ ├── fix-compiler-version.patch │ ├── httpcomponents-core-java8compat.patch │ ├── httpcomponents-core.signatures.json │ └── httpcomponents-core.spec ├── hunspell-af │ ├── hunspell-af.signatures.json │ └── hunspell-af.spec ├── hunspell-ar │ ├── hunspell-ar.signatures.json │ └── hunspell-ar.spec ├── hunspell-as │ ├── hunspell-as.signatures.json │ └── hunspell-as.spec ├── hunspell-ast │ ├── hunspell-ast.signatures.json │ └── hunspell-ast.spec ├── hunspell-az │ ├── hunspell-az.signatures.json │ └── hunspell-az.spec ├── hunspell-be │ ├── hunspell-be-LICENSE.txt │ ├── hunspell-be.signatures.json │ ├── hunspell-be.spec │ └── hyphen-be-LICENSE.txt ├── hunspell-bg │ ├── hunspell-bg.signatures.json │ └── hunspell-bg.spec ├── hunspell-bn │ ├── hunspell-bn.signatures.json │ └── hunspell-bn.spec ├── hunspell-br │ ├── hunspell-br.signatures.json │ └── hunspell-br.spec ├── hunspell-ca │ ├── hunspell-ca.signatures.json │ └── hunspell-ca.spec ├── hunspell-cop │ ├── hunspell-cop.signatures.json │ └── hunspell-cop.spec ├── hunspell-csb │ ├── hunspell-csb.signatures.json │ └── hunspell-csb.spec ├── hunspell-cv │ ├── hunspell-cv.signatures.json │ └── hunspell-cv.spec ├── hunspell-cy │ ├── hunspell-cy-LICENSE.txt │ ├── hunspell-cy.signatures.json │ └── hunspell-cy.spec ├── hunspell-da │ ├── hunspell-da.signatures.json │ └── hunspell-da.spec ├── hunspell-de │ ├── hunspell-de.signatures.json │ └── hunspell-de.spec ├── hunspell-dsb │ ├── hunspell-dsb.signatures.json │ └── hunspell-dsb.spec ├── hunspell-el │ ├── hunspell-el-LICENSE.txt │ ├── hunspell-el.signatures.json │ └── hunspell-el.spec ├── hunspell-eo │ ├── hunspell-eo-LICENSE.txt │ ├── hunspell-eo.signatures.json │ └── hunspell-eo.spec ├── hunspell-es │ ├── hunspell-es.signatures.json │ └── hunspell-es.spec ├── hunspell-et │ ├── hunspell-et.signatures.json │ └── hunspell-et.spec ├── hunspell-eu │ ├── XUXEN_kode_irekia_eskuliburua-LINUX-OO.pdf │ ├── hunspell-eu-LICENSE.txt │ ├── hunspell-eu.signatures.json │ └── hunspell-eu.spec ├── hunspell-fa │ ├── hunspell-fa.signatures.json │ └── hunspell-fa.spec ├── hunspell-fj │ ├── hunspell-fj.signatures.json │ └── hunspell-fj.spec ├── hunspell-fo │ ├── hunspell-fo.signatures.json │ └── hunspell-fo.spec ├── hunspell-fr │ ├── hunspell-fr-LICENSE.txt │ ├── hunspell-fr.signatures.json │ └── hunspell-fr.spec ├── hunspell-fur │ ├── hunspell-fur.signatures.json │ └── hunspell-fur.spec ├── hunspell-fy │ ├── hunspell-fy-LICENSE.txt │ ├── hunspell-fy.signatures.json │ └── hunspell-fy.spec ├── hunspell-ga │ ├── hunspell-ga.signatures.json │ ├── hunspell-ga.spec │ ├── hunspell-header │ ├── ispell-gaeilge-5.0-buildhunspell.patch │ └── myspell-header ├── hunspell-gd │ ├── hunspell-gd.signatures.json │ └── hunspell-gd.spec ├── hunspell-gl │ ├── hunspell-gl-LICENSE.txt │ ├── hunspell-gl.signatures.json │ └── hunspell-gl.spec ├── hunspell-grc │ ├── hunspell-grc.signatures.json │ └── hunspell-grc.spec ├── hunspell-gu │ ├── hunspell-gu-LICENSE.txt │ ├── hunspell-gu.signatures.json │ └── hunspell-gu.spec ├── hunspell-gv │ ├── hunspell-gv.signatures.json │ └── hunspell-gv.spec ├── hunspell-haw │ ├── hunspell-haw.signatures.json │ └── hunspell-haw.spec ├── hunspell-hi │ ├── hunspell-hi.signatures.json │ └── hunspell-hi.spec ├── hunspell-hil │ ├── hunspell-hil.signatures.json │ └── hunspell-hil.spec ├── hunspell-hr │ ├── hunspell-hr-LICENSE.txt │ ├── hunspell-hr.signatures.json │ └── hunspell-hr.spec ├── hunspell-hsb │ ├── hunspell-hsb.signatures.json │ └── hunspell-hsb.spec ├── hunspell-ht │ ├── hunspell-ht.signatures.json │ └── hunspell-ht.spec ├── hunspell-hu │ ├── hunspell-hu-LICENSE.txt │ ├── hunspell-hu.signatures.json │ └── hunspell-hu.spec ├── hunspell-hy │ ├── hunspell-hy.signatures.json │ └── hunspell-hy.spec ├── hunspell-ia │ ├── hunspell-ia-LICENSE.txt │ ├── hunspell-ia.signatures.json │ └── hunspell-ia.spec ├── hunspell-id │ ├── hunspell-id.signatures.json │ └── hunspell-id.spec ├── hunspell-is │ ├── hunspell-is.signatures.json │ └── hunspell-is.spec ├── hunspell-it │ ├── hunspell-it-sf2994177.cleandic.patch │ ├── hunspell-it.signatures.json │ └── hunspell-it.spec ├── hunspell-kk │ ├── hunspell-kk-LICENSE.txt │ ├── hunspell-kk.signatures.json │ └── hunspell-kk.spec ├── hunspell-km │ ├── hunspell-km.signatures.json │ └── hunspell-km.spec ├── hunspell-kn │ ├── hunspell-kn.signatures.json │ └── hunspell-kn.spec ├── hunspell-ko │ ├── hunspell-ko.signatures.json │ └── hunspell-ko.spec ├── hunspell-ku │ ├── hunspell-ku.signatures.json │ └── hunspell-ku.spec ├── hunspell-ky │ ├── hunspell-ky.signatures.json │ └── hunspell-ky.spec ├── hunspell-la │ ├── hunspell-la.signatures.json │ └── hunspell-la.spec ├── hunspell-lb │ ├── hunspell-lb.signatures.json │ └── hunspell-lb.spec ├── hunspell-ln │ ├── hunspell-ln.signatures.json │ └── hunspell-ln.spec ├── hunspell-mai │ ├── hunspell-mai.signatures.json │ └── hunspell-mai.spec ├── hunspell-mg │ ├── hunspell-mg.signatures.json │ └── hunspell-mg.spec ├── hunspell-mi │ ├── hunspell-mi.signatures.json │ └── hunspell-mi.spec ├── hunspell-mk │ ├── hunspell-mk-LICENSE.txt │ ├── hunspell-mk-iconv.patch │ ├── hunspell-mk.signatures.json │ └── hunspell-mk.spec ├── hunspell-ml │ ├── hunspell-ml.signatures.json │ └── hunspell-ml.spec ├── hunspell-mn │ ├── hunspell-mn-LICENSE.txt │ ├── hunspell-mn.signatures.json │ └── hunspell-mn.spec ├── hunspell-mos │ ├── hunspell-mos.signatures.json │ └── hunspell-mos.spec ├── hunspell-mr │ ├── hunspell-mr.signatures.json │ └── hunspell-mr.spec ├── hunspell-ms │ ├── hunspell-ms-LICENSE.txt │ ├── hunspell-ms.signatures.json │ └── hunspell-ms.spec ├── hunspell-mt │ ├── hunspell-mt.signatures.json │ └── hunspell-mt.spec ├── hunspell-nds │ ├── hunspell-nds.signatures.json │ └── hunspell-nds.spec ├── hunspell-ne │ ├── hunspell-ne-LICENSE.txt │ ├── hunspell-ne.signatures.json │ └── hunspell-ne.spec ├── hunspell-nl │ ├── hunspell-nl.signatures.json │ └── hunspell-nl.spec ├── hunspell-no │ ├── hunspell-no-LICENSE.txt │ ├── hunspell-no.signatures.json │ ├── hunspell-no.spec │ └── rhbz959989.badsfxrules.patch ├── hunspell-nr │ ├── hunspell-nr-LICENSE.txt │ ├── hunspell-nr.signatures.json │ └── hunspell-nr.spec ├── hunspell-nso │ ├── hunspell-nso-LICENSE.txt │ ├── hunspell-nso.signatures.json │ └── hunspell-nso.spec ├── hunspell-ny │ ├── hunspell-ny.signatures.json │ └── hunspell-ny.spec ├── hunspell-om │ ├── hunspell-om.signatures.json │ └── hunspell-om.spec ├── hunspell-or │ ├── hunspell-or.signatures.json │ └── hunspell-or.spec ├── hunspell-pa │ ├── hunspell-pa.signatures.json │ └── hunspell-pa.spec ├── hunspell-pl │ ├── hunspell-pl-LICENSE.txt │ ├── hunspell-pl.signatures.json │ └── hunspell-pl.spec ├── hunspell-pt │ ├── hunspell-pt.signatures.json │ └── hunspell-pt.spec ├── hunspell-quh │ ├── hunspell-quh.signatures.json │ └── hunspell-quh.spec ├── hunspell-ro │ ├── hunspell-ro.signatures.json │ └── hunspell-ro.spec ├── hunspell-ru │ ├── hunspell-ru.signatures.json │ └── hunspell-ru.spec ├── hunspell-rw │ ├── hunspell-rw.signatures.json │ └── hunspell-rw.spec ├── hunspell-se │ ├── hunspell-se.signatures.json │ └── hunspell-se.spec ├── hunspell-shs │ ├── hunspell-shs.signatures.json │ └── hunspell-shs.spec ├── hunspell-si │ ├── hunspell-si.signatures.json │ └── hunspell-si.spec ├── hunspell-sk │ ├── hunspell-sk.signatures.json │ └── hunspell-sk.spec ├── hunspell-sl │ ├── hunspell-sl-LICENSE.txt │ ├── hunspell-sl.signatures.json │ └── hunspell-sl.spec ├── hunspell-smj │ ├── hunspell-smj.signatures.json │ └── hunspell-smj.spec ├── hunspell-so │ ├── hunspell-so.signatures.json │ └── hunspell-so.spec ├── hunspell-sq │ ├── hunspell-sq.signatures.json │ └── hunspell-sq.spec ├── hunspell-sr │ ├── hunspell-sr.signatures.json │ └── hunspell-sr.spec ├── hunspell-sv │ ├── hunspell-sv.signatures.json │ └── hunspell-sv.spec ├── hunspell-sw │ ├── hunspell-sw-LICENSE.txt │ ├── hunspell-sw.signatures.json │ └── hunspell-sw.spec ├── hunspell-ta │ ├── hunspell-ta.signatures.json │ └── hunspell-ta.spec ├── hunspell-te │ ├── hunspell-te.signatures.json │ └── hunspell-te.spec ├── hunspell-tet │ ├── hunspell-tet.signatures.json │ └── hunspell-tet.spec ├── hunspell-th │ ├── hunspell-th-LICENSE.txt │ ├── hunspell-th.signatures.json │ └── hunspell-th.spec ├── hunspell-tk │ ├── hunspell-tk.signatures.json │ └── hunspell-tk.spec ├── hunspell-tl │ ├── hunspell-tl.signatures.json │ └── hunspell-tl.spec ├── hunspell-tn │ ├── hunspell-tn.signatures.json │ └── hunspell-tn.spec ├── hunspell-tpi │ ├── hunspell-tpi.signatures.json │ └── hunspell-tpi.spec ├── hunspell-ts │ ├── hunspell-ts.signatures.json │ └── hunspell-ts.spec ├── hunspell-uk │ ├── hunspell-uk-LICENSE.txt │ ├── hunspell-uk.signatures.json │ └── hunspell-uk.spec ├── hunspell-uz │ ├── hunspell-uz.signatures.json │ └── hunspell-uz.spec ├── hunspell-ve │ ├── hunspell-ve-LICENSE.txt │ ├── hunspell-ve.signatures.json │ └── hunspell-ve.spec ├── hunspell-vi │ ├── hunspell-vi.signatures.json │ └── hunspell-vi.spec ├── hunspell-wa │ ├── hunspell-wa-0.4.15-buildfix.patch │ ├── hunspell-wa.signatures.json │ └── hunspell-wa.spec ├── hunspell-xh │ ├── hunspell-xh-LICENSE.txt │ ├── hunspell-xh.signatures.json │ └── hunspell-xh.spec ├── hunspell-yi │ ├── hunspell-yi.signatures.json │ └── hunspell-yi.spec ├── hyphen-as │ ├── hyphen-as.signatures.json │ └── hyphen-as.spec ├── hyphen-bg │ ├── hyphen-bg.signatures.json │ └── hyphen-bg.spec ├── hyphen-bn │ ├── hyphen-bn.signatures.json │ └── hyphen-bn.spec ├── hyphen-ca │ ├── hyphen-ca.signatures.json │ └── hyphen-ca.spec ├── hyphen-da │ ├── hyphen-da-LICENSE.txt │ ├── hyphen-da-lppl-license-fix.patch │ ├── hyphen-da.signatures.json │ └── hyphen-da.spec ├── hyphen-de │ ├── hyphen-de-LICENSE.txt │ ├── hyphen-de.signatures.json │ └── hyphen-de.spec ├── hyphen-el │ ├── hyphen-el-LICENSE.txt │ ├── hyphen-el.signatures.json │ └── hyphen-el.spec ├── hyphen-es │ ├── hyphen-es.signatures.json │ └── hyphen-es.spec ├── hyphen-fa │ ├── hyphen-fa-LICENSE.txt │ ├── hyphen-fa-cleantex.patch │ ├── hyphen-fa.signatures.json │ └── hyphen-fa.spec ├── hyphen-fo │ ├── hyphen-fo-LICENSE.txt │ ├── hyphen-fo.signatures.json │ └── hyphen-fo.spec ├── hyphen-fr │ ├── hyphen-fr-LICENSE.txt │ ├── hyphen-fr.signatures.json │ └── hyphen-fr.spec ├── hyphen-ga │ ├── hyphen-ga-LICENSE.txt │ ├── hyphen-ga.signatures.json │ └── hyphen-ga.spec ├── hyphen-gl │ ├── hyphen-gl.signatures.json │ └── hyphen-gl.spec ├── hyphen-grc │ ├── hyph-grc.tex │ ├── hyphen-grc-LICENSE.txt │ ├── hyphen-grc-cleantex.patch │ ├── hyphen-grc.signatures.json │ └── hyphen-grc.spec ├── hyphen-gu │ ├── hyphen-gu.signatures.json │ └── hyphen-gu.spec ├── hyphen-hi │ ├── hyphen-hi.signatures.json │ └── hyphen-hi.spec ├── hyphen-hsb │ ├── hyph-hsb.tex │ ├── hyphen-hsb-LICENSE.txt │ ├── hyphen-hsb-cleantex.patch │ ├── hyphen-hsb.signatures.json │ └── hyphen-hsb.spec ├── hyphen-hu │ ├── hyphen-hu.signatures.json │ └── hyphen-hu.spec ├── hyphen-ia │ ├── hyphen-ia-LICENSE.txt │ ├── hyphen-ia-cleantex.patch │ ├── hyphen-ia.signatures.json │ ├── hyphen-ia.spec │ └── iahyphen.tex ├── hyphen-id │ ├── hyphen-id.signatures.json │ └── hyphen-id.spec ├── hyphen-is │ ├── hyphen-is-LICENSE.txt │ ├── hyphen-is-lppl-license-fix.patch │ ├── hyphen-is.signatures.json │ └── hyphen-is.spec ├── hyphen-it │ ├── hyphen-it-LICENSE.txt │ ├── hyphen-it.signatures.json │ └── hyphen-it.spec ├── hyphen-kn │ ├── hyphen-kn.signatures.json │ └── hyphen-kn.spec ├── hyphen-ku │ ├── hyphen-ku-LICENSE.txt │ ├── hyphen-ku.signatures.json │ └── hyphen-ku.spec ├── hyphen-lt │ ├── hyph-lt.tex │ ├── hyphen-lt-LICENSE.txt │ ├── hyphen-lt-cleantex.patch │ ├── hyphen-lt.signatures.json │ └── hyphen-lt.spec ├── hyphen-mi │ ├── hyphen-mi.signatures.json │ └── hyphen-mi.spec ├── hyphen-ml │ ├── hyphen-ml.signatures.json │ └── hyphen-ml.spec ├── hyphen-mn │ ├── hyph-mn-cyrl.tex │ ├── hyphen-mn-LICENSE.txt │ ├── hyphen-mn-cleantex.patch │ ├── hyphen-mn.signatures.json │ └── hyphen-mn.spec ├── hyphen-mr │ ├── hyphen-mr.signatures.json │ └── hyphen-mr.spec ├── hyphen-nl │ ├── hyphen-nl-LICENSE.txt │ ├── hyphen-nl.signatures.json │ └── hyphen-nl.spec ├── hyphen-or │ ├── hyphen-or.signatures.json │ └── hyphen-or.spec ├── hyphen-pa │ ├── hyphen-pa.signatures.json │ └── hyphen-pa.spec ├── hyphen-pl │ ├── hyphen-pl-LICENSE.txt │ ├── hyphen-pl.signatures.json │ └── hyphen-pl.spec ├── hyphen-pt │ ├── hyphen-pt-LICENSE.txt │ ├── hyphen-pt.signatures.json │ └── hyphen-pt.spec ├── hyphen-ro │ ├── hyphen-ro.signatures.json │ └── hyphen-ro.spec ├── hyphen-ru │ ├── hyphen-ru-LICENSE.txt │ ├── hyphen-ru.signatures.json │ └── hyphen-ru.spec ├── hyphen-sa │ ├── hyph-sa.tex │ ├── hyphen-sa-LICENSE.txt │ ├── hyphen-sa-cleantex.patch │ ├── hyphen-sa.signatures.json │ └── hyphen-sa.spec ├── hyphen-sk │ ├── hyphen-sk-LICENSE.txt │ ├── hyphen-sk.signatures.json │ └── hyphen-sk.spec ├── hyphen-sl │ ├── hyphen-sl-LICENSE.txt │ ├── hyphen-sl.signatures.json │ └── hyphen-sl.spec ├── hyphen-sv │ ├── hyphen-sv-LICENSE.txt │ ├── hyphen-sv.signatures.json │ └── hyphen-sv.spec ├── hyphen-ta │ ├── hyphen-ta.signatures.json │ └── hyphen-ta.spec ├── hyphen-te │ ├── hyphen-te.signatures.json │ └── hyphen-te.spec ├── hyphen-tk │ ├── hyph-tk.tex │ ├── hyphen-tk-cleantex.patch │ ├── hyphen-tk.signatures.json │ └── hyphen-tk.spec ├── hyphen-uk │ ├── hyphen-uk-LICENSE.txt │ ├── hyphen-uk.signatures.json │ └── hyphen-uk.spec ├── hyphen │ ├── hyphen.signatures.json │ └── hyphen.spec ├── ibus-chewing │ ├── ibus-chewing-1799517-no-gob2.patch │ ├── ibus-chewing.signatures.json │ └── ibus-chewing.spec ├── ibus-hangul │ ├── ibus-hangul-setup-abspath.patch │ ├── ibus-hangul.signatures.json │ └── ibus-hangul.spec ├── ibus-kkc │ ├── ibus-HEAD.patch │ ├── ibus-kkc-content-type.patch │ ├── ibus-kkc.signatures.json │ └── ibus-kkc.spec ├── ibus-libzhuyin │ ├── ibus-libzhuyin.signatures.json │ └── ibus-libzhuyin.spec ├── ibus-m17n │ ├── ibus-m17n.signatures.json │ └── ibus-m17n.spec ├── ibus-rawcode │ ├── ibus-rawcode.signatures.json │ └── ibus-rawcode.spec ├── ibus-sayura │ ├── fix-for-wayland-rhbz1724759.patch │ ├── ibus-sayura.signatures.json │ └── ibus-sayura.spec ├── ibus-table-chinese │ ├── ibus-table-chinese.signatures.json │ └── ibus-table-chinese.spec ├── ibus-table │ ├── ibus-table.signatures.json │ └── ibus-table.spec ├── ibus │ ├── ibus-1385349-segv-bus-proxy.patch │ ├── ibus-HEAD.patch │ ├── ibus-xinput │ ├── ibus.conf.5 │ ├── ibus.signatures.json │ ├── ibus.spec │ └── ibus.tar.gz.sum ├── icc-profiles-openicc │ ├── icc-profiles-openicc.signatures.json │ └── icc-profiles-openicc.spec ├── icon-naming-utils │ ├── icon-naming-utils-0.8.7-paths.patch │ ├── icon-naming-utils.signatures.json │ └── icon-naming-utils.spec ├── iftop │ ├── iftop-1.0-gcc10.patch │ ├── iftop-1.0-git20181003.patch │ ├── iftop-1.0-ncursesw.patch │ ├── iftop.signatures.json │ └── iftop.spec ├── iio-sensor-proxy │ ├── iio-sensor-proxy.signatures.json │ └── iio-sensor-proxy.spec ├── ilmbase │ ├── ilmbase-1.0.3-pkgconfig.patch │ ├── ilmbase-2.2.0-glibc_iszero.patch │ ├── ilmbase-2.2.0-no_undefined.patch │ ├── ilmbase-config.h │ ├── ilmbase.signatures.json │ └── ilmbase.spec ├── imaptest │ ├── imaptest.signatures.json │ └── imaptest.spec ├── indent │ ├── indent-2.2.13-Check-for-setlocale-function.patch │ ├── indent-2.2.13-Fix-a-heap-buffer-overwrite-in-search_brace-CVE-2023.patch │ ├── indent-2.2.13-Fix-a-heap-buffer-underread-in-set_buf_break.patch │ ├── indent-2.2.13-Fix-an-out-of-buffer-read-in-search_brace-lexi-on-an.patch │ ├── indent-2.2.13.tar.xz.sig │ ├── indent.signatures.json │ ├── indent.spec │ └── key.pgp ├── intel-cmt-cat │ ├── 0001-alter-install-paths.patch │ ├── 0002-remove-build-and-install-of-examples.patch │ ├── 0003-allow-debian-flags-to-be-added.patch │ ├── intel-cmt-cat.signatures.json │ └── intel-cmt-cat.spec ├── ioping │ ├── ioping.signatures.json │ └── ioping.spec ├── ipa-pgothic-fonts │ ├── ipa-pgothic-fonts-fontconfig.conf │ ├── ipa-pgothic-fonts.signatures.json │ └── ipa-pgothic-fonts.spec ├── ipcalc │ ├── ipcalc.signatures.json │ └── ipcalc.spec ├── iprutils │ ├── iprutils-2.4.19-covscan.patch │ ├── iprutils.signatures.json │ └── iprutils.spec ├── iptstate │ ├── iptstate-2.1-man8.patch │ ├── iptstate.signatures.json │ └── iptstate.spec ├── irssi │ ├── gpgkey-7EE65E3082A5FB06AC7C368D00CCB587DDBEF0E1.asc │ ├── irssi-1.4.1-botti-perl-link-fix.patch │ ├── irssi-1.4.5.tar.xz.asc │ ├── irssi-config.h │ ├── irssi.signatures.json │ └── irssi.spec ├── iso-codes │ ├── iso-codes.signatures.json │ └── iso-codes.spec ├── isomd5sum │ ├── fix-lib-path.patch │ ├── isomd5sum.signatures.json │ └── isomd5sum.spec ├── iwd │ ├── iwd.signatures.json │ └── iwd.spec ├── jabberpy │ ├── jabberpy-LICENSE.txt │ ├── jabberpy-clean-sockets.patch │ ├── jabberpy-ipv6.patch │ ├── jabberpy-no-init.patch │ ├── jabberpy-proxy-read.patch │ ├── jabberpy-python3.patch │ ├── jabberpy-sha-deprecation.patch │ ├── jabberpy.signatures.json │ └── jabberpy.spec ├── jakarta-taglibs-standard │ ├── CVE-2015-0254.patch │ ├── jakarta-taglibs-standard-1.1.1-build.patch │ ├── jakarta-taglibs-standard-1.1.1-remove-enums.patch │ ├── jakarta-taglibs-standard-java6-compatibility.patch │ ├── jakarta-taglibs-standard-java7.patch │ ├── jakarta-taglibs-standard.signatures.json │ └── jakarta-taglibs-standard.spec ├── jansi │ ├── jansi-build.xml │ ├── jansi-jni.patch │ ├── jansi.signatures.json │ └── jansi.spec ├── jarjar │ ├── do-not-embed-asm.patch │ ├── jarjar-1.4-asm5.patch │ ├── jarjar-util.pom │ ├── jarjar.pom │ ├── jarjar.signatures.json │ └── jarjar.spec ├── javacc │ ├── javacc-bootstrap.signatures.json │ ├── javacc-bootstrap.spec │ ├── javacc.signatures.json │ └── javacc.spec ├── jbigkit │ ├── jbigkit-2.0-warnings.patch │ ├── jbigkit-2.1-shlib.patch │ ├── jbigkit-covscan.patch │ ├── jbigkit-ldflags.patch │ ├── jbigkit.signatures.json │ └── jbigkit.spec ├── jboss-interceptors-1.2-api │ ├── jboss-interceptors-1.2-api-build.xml │ ├── jboss-interceptors-1.2-api.signatures.json │ └── jboss-interceptors-1.2-api.spec ├── jdepend │ ├── jdepend.signatures.json │ └── jdepend.spec ├── jdom2 │ ├── 0001-Adapt-build.patch │ ├── 07f316957b59d305f04c7bdb26292852bcbc2eb5.patch │ ├── bd3ab78370098491911d7fe9d7a43b97144a234e.patch │ ├── dd4f3c2fc7893edd914954c73eb577f925a7d361.patch │ ├── generate-tarball.sh │ ├── jdom2.signatures.json │ └── jdom2.spec ├── jfsutils │ ├── jfsutils-1.1.15_stdint.patch │ ├── jfsutils.signatures.json │ ├── jfsutils.spec │ ├── jfsutils_format-security_ftbs.patch │ └── jfsutils_sysmacros.patch ├── jimtcl │ ├── jimtcl-stdio-for-readline.diff │ ├── jimtcl.signatures.json │ └── jimtcl.spec ├── jlex │ ├── Main.java │ ├── jlex-1.2.6.build.xml │ ├── jlex-1.2.6.static.patch │ ├── jlex.signatures.json │ ├── jlex.spec │ ├── manual.html │ └── sample.lex ├── jline │ ├── jline-build.xml │ ├── jline-jansi2.patch │ ├── jline-java8compat.patch │ ├── jline.signatures.json │ └── jline.spec ├── jose │ ├── jose.signatures.json │ └── jose.spec ├── js-jquery │ ├── CVE-2019-20149.patch │ ├── js-jquery-disable-gzip-js.patch │ ├── js-jquery.signatures.json │ └── js-jquery.spec ├── jsch │ ├── jsch-0.1.54-sourcetarget.patch │ ├── jsch-0.1.55.pom │ ├── jsch-osgi-manifest.patch │ ├── jsch.signatures.json │ ├── jsch.spec │ └── plugin.properties ├── jsoncpp │ ├── jsoncpp.signatures.json │ └── jsoncpp.spec ├── jsoup │ ├── generate-tarball.sh │ ├── jsoup-build.xml │ ├── jsoup.signatures.json │ └── jsoup.spec ├── jtidy │ ├── build.xml │ ├── jtidy.jtidy.script │ ├── jtidy.signatures.json │ ├── jtidy.spec │ ├── maven-build.properties │ └── maven-build.xml ├── junitperf │ ├── junitperf-1.9.1-javadoc.patch │ ├── junitperf.signatures.json │ └── junitperf.spec ├── jzlib │ ├── jzlib-javadoc-fixes.patch │ ├── jzlib.signatures.json │ ├── jzlib.spec │ └── jzlib_build.xml ├── kde-filesystem │ ├── applnk-hidden-directory │ ├── kde-filesystem.signatures.json │ ├── kde-filesystem.spec │ ├── macros.kde4 │ └── teamnames ├── kernel-ipe │ ├── 0001-add-mstflint-kernel-4.28.0.patch │ ├── Makefile │ ├── azl-ipe-boot-policy.pol │ ├── azurelinux-ca-20230216.pem │ ├── config │ ├── config_aarch64 │ ├── cpupower │ ├── cpupower.service │ ├── kernel-ipe.signatures.json │ ├── kernel-ipe.spec │ ├── sha512hmac-openssl.sh │ └── tarfs.c ├── kernel-lpg-innovate │ ├── azurelinux-ca-20230216.pem │ ├── cpupower │ ├── cpupower.service │ ├── kernel-lpg-innovate.normal.config │ ├── kernel-lpg-innovate.secure.config │ ├── kernel-lpg-innovate.signatures.json │ ├── kernel-lpg-innovate.spec │ └── sha512hmac-openssl.sh ├── kernel-rt │ ├── cbl-mariner-ca-20211013.pem │ ├── config │ ├── cpupower │ ├── cpupower.service │ ├── kernel-rt.signatures.json │ ├── kernel-rt.spec │ ├── patch-6.6.85-rt53.patch │ ├── reapply-serial-8250-adjust-fifo-mode-timeout.patch │ └── sha512hmac-openssl.sh ├── keybinder3 │ ├── fix_gtkdoc.patch │ ├── keybinder3.signatures.json │ └── keybinder3.spec ├── keycloak-httpd-client-install │ ├── keycloak-httpd-client-install.signatures.json │ └── keycloak-httpd-client-install.spec ├── kronosnet │ ├── kronosnet.signatures.json │ └── kronosnet.spec ├── kyotocabinet │ ├── kyotocabinet-1.2.76-8-byte-atomics.patch │ ├── kyotocabinet-1.2.76-cflags.patch │ ├── kyotocabinet.signatures.json │ └── kyotocabinet.spec ├── ladspa │ ├── ladspa-1.13-plugindir.patch │ ├── ladspa.signatures.json │ └── ladspa.spec ├── lame │ ├── lame-noexecstack.patch │ ├── lame.signatures.json │ ├── lame.spec │ └── libmp3lame-symbols.patch ├── langtable │ ├── langtable.signatures.json │ └── langtable.spec ├── lasso │ ├── lasso.signatures.json │ └── lasso.spec ├── latencytop │ ├── latencytop-LICENSE.txt │ ├── latencytop-Makefile-default-to-no-gtk.patch │ ├── latencytop-Makefile-fixes.patch │ ├── latencytop-better-error-message.patch │ ├── latencytop-remove-the-fsync-view.patch │ ├── latencytop.signatures.json │ └── latencytop.spec ├── lcov │ ├── 0001-geninfo-Add-intermediate-text-format-support.patch │ ├── 0002-geninfo-Add-intermediate-JSON-format-support.patch │ ├── lcov.signatures.json │ └── lcov.spec ├── leatherman │ ├── leatherman-1.12.4-shared_nowide.patch │ ├── leatherman-gcc11.patch │ ├── leatherman.signatures.json │ ├── leatherman.spec │ └── system-catch.patch ├── ledmon │ ├── ledmon.signatures.json │ ├── ledmon.spec │ └── ledmon_cflags.patch ├── lensfun │ ├── lensfun-0.3.2-INSTALL_HELPER_SCRIPTS.patch │ ├── lensfun.signatures.json │ └── lensfun.spec ├── lftp │ ├── lftp-4.0.9-date_fmt.patch │ ├── lftp.signatures.json │ └── lftp.spec ├── libEMF │ ├── libEMF.signatures.json │ └── libEMF.spec ├── libIDL │ ├── libIDL-0.8.6-multilib.patch │ ├── libIDL.signatures.json │ └── libIDL.spec ├── libXScrnSaver │ ├── libXScrnSaver.signatures.json │ └── libXScrnSaver.spec ├── libabw │ ├── libabw.signatures.json │ └── libabw.spec ├── libao │ ├── 0001-ao_pulse.c-fix-latency-calculation.patch │ ├── d5221655dfd1a2156aa6be83b5aadea7c1e0f5bd.diff │ ├── libao-nanosleep.patch │ ├── libao.signatures.json │ └── libao.spec ├── libappstream-glib │ ├── libappstream-glib.signatures.json │ └── libappstream-glib.spec ├── libart_lgpl │ ├── libart-multilib.patch │ ├── libart_lgpl.signatures.json │ └── libart_lgpl.spec ├── libasyncns │ ├── libasyncns.signatures.json │ └── libasyncns.spec ├── libavc1394 │ ├── libavc1394-0.5.4-librom.patch │ ├── libavc1394.signatures.json │ └── libavc1394.spec ├── libblockdev │ ├── libblockdev.signatures.json │ └── libblockdev.spec ├── libbsd │ ├── 4F3E74F436050C10F5696574B972BF3EA4AE57A3 │ ├── libbsd-0.12.2.tar.xz.asc │ ├── libbsd-cdefs.h │ ├── libbsd.signatures.json │ └── libbsd.spec ├── libbytesize │ ├── libbytesize.signatures.json │ └── libbytesize.spec ├── libcanberra │ ├── 0001-gtk-Don-t-assume-all-GdkDisplays-are-GdkX11Displays-.patch │ ├── libcanberra.signatures.json │ └── libcanberra.spec ├── libcbor │ ├── libcbor.signatures.json │ └── libcbor.spec ├── libcdio-paranoia │ ├── 38.patch │ ├── libcdio-paranoia-manpage.patch │ ├── libcdio-paranoia.signatures.json │ └── libcdio-paranoia.spec ├── libcdio │ ├── cdio_config.h │ ├── format-security.patch │ ├── libcdio-2.1.0.tar.bz2.sig │ ├── libcdio-no_date_footer.hml │ ├── libcdio.signatures.json │ ├── libcdio.spec │ └── realpath-test-fix.patch ├── libcdr │ ├── libcdr.signatures.json │ └── libcdr.spec ├── libchewing │ ├── 0001-chewing.py-supports-platforms-with-64bit-pointer.patch │ ├── libchewing.signatures.json │ └── libchewing.spec ├── libcli │ ├── calloc.patch │ ├── libcli.signatures.json │ └── libcli.spec ├── libcmis │ ├── libcmis.signatures.json │ ├── libcmis.spec │ └── libxmis-0.6.2-libxml2-2.12.0-includes.patch ├── libcmpiutil │ ├── libcmpiutil-0.5.6-cast-align.patch │ ├── libcmpiutil.signatures.json │ └── libcmpiutil.spec ├── libcroco │ ├── libcroco.signatures.json │ └── libcroco.spec ├── libdap │ ├── libdap-offline.patch │ ├── libdap.signatures.json │ └── libdap.spec ├── libdatrie │ ├── libdatrie.signatures.json │ └── libdatrie.spec ├── libdazzle │ ├── libdazzle.signatures.json │ └── libdazzle.spec ├── libdbi │ ├── libdbi-aarch64.patch │ ├── libdbi.signatures.json │ └── libdbi.spec ├── libdbusmenu │ ├── 00-no-werror.patch │ ├── libdbusmenu.signatures.json │ └── libdbusmenu.spec ├── libdc1394 │ ├── libdc1394-sdl.patch │ ├── libdc1394.signatures.json │ └── libdc1394.spec ├── libdeflate │ ├── libdeflate.signatures.json │ └── libdeflate.spec ├── libdmx │ ├── libdmx.signatures.json │ └── libdmx.spec ├── libdvdnav │ ├── 7180713BE58D1ADC.asc │ ├── libdvdnav-6.1.1.tar.bz2.asc │ ├── libdvdnav.signatures.json │ └── libdvdnav.spec ├── libdvdread │ ├── 7180713BE58D1ADC.asc │ ├── libdvdread-6.0.2.tar.bz2.asc │ ├── libdvdread-6.1.3.tar.bz2.asc │ ├── libdvdread.signatures.json │ └── libdvdread.spec ├── libeasyfc │ ├── libeasyfc-fix-config.patch │ ├── libeasyfc-freetype.patch │ ├── libeasyfc.signatures.json │ └── libeasyfc.spec ├── libecb │ ├── libecb.signatures.json │ └── libecb.spec ├── libeot │ ├── libeot.signatures.json │ └── libeot.spec ├── libepubgen │ ├── libepubgen.signatures.json │ └── libepubgen.spec ├── libesmtp │ ├── CVE-2019-19977-avoid-stach-overrwrite-6.patch │ ├── libesmtp-1.0.6-openssl-1.1.patch │ ├── libesmtp.signatures.json │ └── libesmtp.spec ├── libetonyek │ ├── libetonyek.signatures.json │ └── libetonyek.spec ├── libexttextcat │ ├── libexttextcat.signatures.json │ └── libexttextcat.spec ├── libfreehand │ ├── 0001-Add-missing-semicolon-to-fix-build-with-icu-65.1.patch │ ├── libfreehand.signatures.json │ └── libfreehand.spec ├── libftdi │ ├── libftdi-1.5-fix_pkgconfig_path.patch │ ├── libftdi.signatures.json │ └── libftdi.spec ├── libgadu │ ├── libgadu-1.12.2-gcc10.patch │ ├── libgadu.signatures.json │ └── libgadu.spec ├── libgdither │ ├── libgdither-0.6-default.patch │ ├── libgdither-0.6-gavl.patch │ ├── libgdither-0.6-ldflags.patch │ ├── libgdither.signatures.json │ └── libgdither.spec ├── libgee │ ├── libgee.signatures.json │ └── libgee.spec ├── libgee06 │ ├── libgee06.signatures.json │ └── libgee06.spec ├── libgeotiff │ ├── libgeotiff.signatures.json │ ├── libgeotiff.spec │ └── libgeotiff_cmake.patch ├── libgexiv2 │ ├── libgexiv2.signatures.json │ └── libgexiv2.spec ├── libgit2-glib │ ├── 20.patch │ ├── 22.patch │ ├── libgit2-glib.signatures.json │ └── libgit2-glib.spec ├── libglade2 │ ├── libglade-2.0.1-nowarning.patch │ ├── libglade-secondary.patch │ ├── libglade2.signatures.json │ └── libglade2.spec ├── libgovirt │ ├── 0001-Fix-i18n-generation.patch │ ├── libgovirt.signatures.json │ └── libgovirt.spec ├── libgphoto2 │ ├── gphoto2-pkgcfg.patch │ ├── libgphoto2.signatures.json │ └── libgphoto2.spec ├── libgsf │ ├── libgsf.signatures.json │ └── libgsf.spec ├── libgta │ ├── libgta.signatures.json │ └── libgta.spec ├── libgxps │ ├── libgxps.signatures.json │ └── libgxps.spec ├── libhangul │ ├── libhangul.signatures.json │ └── libhangul.spec ├── libibcommon │ ├── libibcommon.signatures.json │ └── libibcommon.spec ├── libicns │ ├── libicns-0.8.1-gcc6.patch │ ├── libicns.signatures.json │ └── libicns.spec ├── libid3tag │ ├── cmake-hook-genre.dat-and-gperf-files-generation.patch │ ├── libid3tag.signatures.json │ └── libid3tag.spec ├── libiec61883 │ ├── libiec61883-1.2.0-installtests.patch │ ├── libiec61883-channel-allocation-without-local-node-rw.patch │ ├── libiec61883.signatures.json │ └── libiec61883.spec ├── libieee1284 │ ├── libieee1284-aarch64.patch │ ├── libieee1284-strict-aliasing.patch │ ├── libieee1284.signatures.json │ └── libieee1284.spec ├── libimobiledevice-glue │ ├── libimobiledevice-glue.signatures.json │ └── libimobiledevice-glue.spec ├── libimobiledevice │ ├── libimobiledevice.signatures.json │ ├── libimobiledevice.spec │ └── upgrade-fixes-1.3.0.patch ├── libindicator │ ├── libindicator.signatures.json │ └── libindicator.spec ├── libiodbc │ ├── libiodbc-3.52.12-multilib.patch │ ├── libiodbc.signatures.json │ └── libiodbc.spec ├── libipt │ ├── libipt-gcc11.patch │ ├── libipt.signatures.json │ └── libipt.spec ├── libiptcdata │ ├── libiptcdata.signatures.json │ └── libiptcdata.spec ├── libjaylink │ ├── libjaylink.signatures.json │ └── libjaylink.spec ├── libjcat │ ├── libjcat.signatures.json │ └── libjcat.spec ├── libkeepalive │ ├── 0001-Add-vim-modelines-to-source-files.patch │ ├── 0002-test-test.c-Whitespace-cleanup.patch │ ├── 0003-test-Implement-self-test-functionality.patch │ ├── 0004-Makefile-Make-self-test-accessible-by-make-test.patch │ ├── 0005-Makefile-Allow-setting-custom-compiler-flags.patch │ ├── libkeepalive.signatures.json │ └── libkeepalive.spec ├── libkkc-data │ ├── ba1c1bd3eb86d887fc3689c3142732658071b5f7.patch │ ├── libkkc-data.signatures.json │ └── libkkc-data.spec ├── libkkc │ ├── README.md │ ├── libkkc-HEAD.patch │ ├── libkkc-POT.skip.patch │ ├── libkkc-vala-abstract-create.patch │ ├── libkkc.signatures.json │ └── libkkc.spec ├── libkml │ ├── 0001-Fix-build-failure-due-to-failure-to-convert-pointer-.patch │ ├── 0002-Fix-mistaken-use-of-std-cerr-instead-of-std-endl.patch │ ├── 0003-Fix-python-tests.patch │ ├── 0004-Correctly-build-and-run-java-test.patch │ ├── fragile_test.patch │ ├── libkml-bundle-minizip.patch │ ├── libkml.signatures.json │ ├── libkml.spec │ ├── libkml_crypth.patch │ ├── libkml_dont-bytecompile.patch │ ├── libkml_mingw.patch │ └── libkml_test_strcmp.patch ├── liblangtag │ ├── liblangtag.signatures.json │ └── liblangtag.spec ├── libldb │ ├── 0001-PATCH-wafsamba-Fix-few-SyntaxWarnings-caused-by-regu.patch │ ├── ldb-2.1.4.tar.asc │ ├── libldb-LICENSE.txt │ ├── libldb.signatures.json │ └── libldb.spec ├── liblerc │ ├── liblerc.signatures.json │ └── liblerc.spec ├── liblockfile │ ├── liblockfile.signatures.json │ └── liblockfile.spec ├── liblouis │ ├── liblouis.signatures.json │ └── liblouis.spec ├── liblqr-1 │ ├── liblqr-1.signatures.json │ └── liblqr-1.spec ├── libmad │ ├── libmad.signatures.json │ └── libmad.spec ├── libmediaart │ ├── libmediaart.signatures.json │ └── libmediaart.spec ├── libmikmod │ ├── libmikmod-64bit.patch │ ├── libmikmod-cflags.patch │ ├── libmikmod-multilib.patch │ ├── libmikmod.signatures.json │ └── libmikmod.spec ├── libmodman │ ├── libmodman.signatures.json │ └── libmodman.spec ├── libmodplug │ ├── libmodplug-0.8.9.0-timiditypaths.patch │ ├── libmodplug.signatures.json │ └── libmodplug.spec ├── libmodulemd1 │ ├── libmodulemd1.signatures.json │ └── libmodulemd1.spec ├── libmpcdec │ ├── libmpcdec.signatures.json │ └── libmpcdec.spec ├── libmspub │ ├── gcc10.patch │ ├── libmspub.signatures.json │ └── libmspub.spec ├── libmtp │ ├── 0001-doc-Don-t-document-internal-endian-macros.patch │ ├── libmtp.signatures.json │ └── libmtp.spec ├── libmusicbrainz5 │ ├── 0001-Don-t-emit-errors-unless-compiled-for-debug.patch │ ├── doxygen.patch │ ├── libmusicbrainz5.signatures.json │ └── libmusicbrainz5.spec ├── libmwaw │ ├── libmwaw.signatures.json │ └── libmwaw.spec ├── libnet │ ├── libnet.signatures.json │ └── libnet.spec ├── libntlm │ ├── libntlm.signatures.json │ └── libntlm.spec ├── libnumbertext │ ├── libnumbertext.signatures.json │ └── libnumbertext.spec ├── liboauth │ ├── liboauth.signatures.json │ └── liboauth.spec ├── libodfgen │ ├── libodfgen.signatures.json │ └── libodfgen.spec ├── libofa │ ├── libofa-0.9.3-curl.patch │ ├── libofa-0.9.3-gcc41.patch │ ├── libofa-0.9.3-gcc44.patch │ ├── libofa-0.9.3-gcc47.patch │ ├── libofa-0.9.3-pkgconfig.patch │ ├── libofa.signatures.json │ └── libofa.spec ├── libogg │ ├── libogg.signatures.json │ └── libogg.spec ├── liboggz │ ├── liboggz-1.1.1-multilib.patch │ ├── liboggz.signatures.json │ └── liboggz.spec ├── liboil │ ├── liboil-0.3.13-disable-ppc64-opts.patch │ ├── liboil.signatures.json │ └── liboil.spec ├── libomxil-bellagio │ ├── bellagio-0.9.3-dynamicloader-linking.patch │ ├── bellagio-0.9.3-parallel-build.patch │ ├── bellagio-0.9.3-segfault-on-removeFromWaitResource.patch │ ├── libomxil-bellagio-0.9.3-fix_Werror.patch │ ├── libomxil-bellagio-0.9.3-memcpy.patch │ ├── libomxil-bellagio-0.9.3-nodoc.patch │ ├── libomxil-bellagio-0.9.3-unused.patch │ ├── libomxil-bellagio-0.9.3-valgrind_register.patch │ ├── libomxil-bellagio.signatures.json │ ├── libomxil-bellagio.spec │ └── omxil_version.patch ├── libopenraw │ ├── libopenraw.signatures.json │ └── libopenraw.spec ├── liboping │ ├── liboping-1.10-fix-format-ncurses63.patch │ ├── liboping-1.10.0-no-werror.patch │ ├── liboping.signatures.json │ └── liboping.spec ├── libosinfo │ ├── libosinfo.signatures.json │ └── libosinfo.spec ├── libotf │ ├── libotf.signatures.json │ └── libotf.spec ├── libotr │ ├── libotr-4.1.1-socket-h.patch │ ├── libotr-4.1.1-versioning.patch │ ├── libotr.signatures.json │ └── libotr.spec ├── libpagemaker │ ├── libpagemaker.signatures.json │ └── libpagemaker.spec ├── libpaper │ ├── libpaper-file-leak.patch │ ├── libpaper-useglibcfallback.patch │ ├── libpaper.signatures.json │ └── libpaper.spec ├── libpeas │ ├── libpeas.signatures.json │ └── libpeas.spec ├── libpfm │ ├── libpfm-python3-setup.patch │ ├── libpfm.signatures.json │ └── libpfm.spec ├── libpinyin │ ├── libpinyin-2.8.x-head.patch │ ├── libpinyin.signatures.json │ └── libpinyin.spec ├── libplist │ ├── libplist.signatures.json │ └── libplist.spec ├── libpmemobj-cpp │ ├── libpmemobj-cpp.signatures.json │ └── libpmemobj-cpp.spec ├── libpng12 │ ├── libpng12-multilib.patch │ ├── libpng12-pngconf.patch │ ├── libpng12.signatures.json │ └── libpng12.spec ├── libpng15 │ ├── libpng15-CVE-2013-6954.patch │ ├── libpng15-CVE-2018-13785.patch │ ├── libpng15.signatures.json │ ├── libpng15.spec │ └── pngusr.dfa ├── libproxy │ ├── libproxy.signatures.json │ ├── libproxy.spec │ └── proxy.1 ├── libqb │ ├── add-async-connect.patch │ ├── bump-version-for-async.patch │ ├── connretry-recv.patch │ ├── fix-connect-errno.patch │ ├── include-libxml-parser.patch │ ├── libqb.signatures.json │ └── libqb.spec ├── libqxp │ ├── libqxp.signatures.json │ └── libqxp.spec ├── librabbitmq │ ├── librabbitmq.signatures.json │ └── librabbitmq.spec ├── libraqm │ ├── libraqm-3f50e35.patch │ ├── libraqm.signatures.json │ └── libraqm.spec ├── libraw1394 │ ├── libraw1394.signatures.json │ └── libraw1394.spec ├── libreport │ ├── 0001-gui-wizard-gtk-Fix-segfault.patch │ ├── libreport.signatures.json │ └── libreport.spec ├── librevenge │ ├── librevenge.signatures.json │ └── librevenge.spec ├── librx │ ├── librx-1.5-libdir64.patch │ ├── librx.signatures.json │ ├── librx.spec │ ├── rx-1.5-libtoolmode.patch │ ├── rx-1.5-shared.patch │ └── rx-1.5-texinfo.patch ├── libsamplerate │ ├── libsamplerate.signatures.json │ └── libsamplerate.spec ├── libsass │ ├── libsass.signatures.json │ └── libsass.spec ├── libsecret │ ├── libsecret.signatures.json │ └── libsecret.spec ├── libsigc++20 │ ├── libsigc++20.signatures.json │ └── libsigc++20.spec ├── libsigsegv │ ├── configure.patch │ ├── libsigsegv.signatures.json │ └── libsigsegv.spec ├── libsmbios │ ├── libsmbios.signatures.json │ └── libsmbios.spec ├── libspiro │ ├── libspiro.signatures.json │ └── libspiro.spec ├── libsrtp │ ├── libsrtp.signatures.json │ └── libsrtp.spec ├── libstaroffice │ ├── libstaroffice.signatures.json │ └── libstaroffice.spec ├── libstemmer │ ├── BSD.txt │ ├── Notice.txt │ ├── libstemmer.signatures.json │ └── libstemmer.spec ├── libteam │ ├── libteam.signatures.json │ └── libteam.spec ├── libtevent │ ├── libtevent-LICENSE.txt │ ├── libtevent.signatures.json │ ├── libtevent.spec │ └── tevent-0.10.2.tar.asc ├── libthai │ ├── libthai-0.1.9-multilib.patch │ ├── libthai.signatures.json │ └── libthai.spec ├── libtheora │ ├── libtheora.signatures.json │ └── libtheora.spec ├── libtnc │ ├── libtnc-1.25-bootstrap.patch │ ├── libtnc-1.25-syserror.patch │ ├── libtnc.signatures.json │ └── libtnc.spec ├── libtomcrypt │ ├── CVE-2019-17362.patch │ ├── libtomcrypt.signatures.json │ └── libtomcrypt.spec ├── libtommath │ ├── libtommath.signatures.json │ └── libtommath.spec ├── libtranslit │ ├── libtranslit.signatures.json │ └── libtranslit.spec ├── libucil │ ├── libucil-0.9.10-include-alsa.patch │ ├── libucil-0.9.10-leaks.patch │ ├── libucil-0.9.10-warnings.patch │ ├── libucil-0.9.8-bz627890.patch │ ├── libucil.signatures.json │ └── libucil.spec ├── libunicap │ ├── 0001-Address-po-files-issues.patch │ ├── libunicap-0.9.12-arraycmp.patch │ ├── libunicap-0.9.12-datadirname.patch │ ├── libunicap-0.9.12-gcc10.patch │ ├── libunicap-0.9.12-includes.patch │ ├── libunicap-0.9.12-memerrs.patch │ ├── libunicap-0.9.12-videodev.patch │ ├── libunicap-0.9.12-warnings.patch │ ├── libunicap-bz641623.patch │ ├── libunicap-bz642118.patch │ ├── libunicap-filter.sh │ ├── libunicap.signatures.json │ └── libunicap.spec ├── libuninameslist │ ├── libuninameslist.signatures.json │ └── libuninameslist.spec ├── libusb1 │ ├── libusb1.signatures.json │ └── libusb1.spec ├── libusbmuxd │ ├── libusbmuxd.signatures.json │ └── libusbmuxd.spec ├── libutempter │ ├── libutempter.signatures.json │ └── libutempter.spec ├── libvarlink │ ├── libvarlink.signatures.json │ └── libvarlink.spec ├── libvdpau │ ├── README │ ├── baselibs.conf │ ├── c5a8e7c6c8b4b36a0e4c9a4369404519262a3256.patch │ ├── e82dc4bdbb0db3ffa8c78275902738eb63aa5ca8.patch │ ├── libvdpau-rpmlintrc │ ├── libvdpau.signatures.json │ ├── libvdpau.spec │ └── n_UsrEtc.patch ├── libverto │ ├── libverto.signatures.json │ └── libverto.spec ├── libvisio │ ├── libvisio.signatures.json │ └── libvisio.spec ├── libvisual │ ├── libvisual-0.4.0-better-altivec-detection.patch │ ├── libvisual-0.4.0-format-security.patch │ ├── libvisual-0.4.0-inlinedefineconflict.patch │ ├── libvisual.signatures.json │ └── libvisual.spec ├── libvorbis │ ├── libvorbis.signatures.json │ └── libvorbis.spec ├── libvpx │ ├── libvpx-1.7.0-leave-fortify-source-on.patch │ ├── libvpx.signatures.json │ ├── libvpx.spec │ ├── libvpx.ver │ └── vpx_config.h ├── libwnck3 │ ├── libwnck3.signatures.json │ ├── libwnck3.spec │ ├── libwnck_0001-Expose-window-scaling-factor_v43.1.patch │ ├── libwnck_0002-icons-Use-cairo-surfaces-to-render-icons_v43.1.patch │ ├── libwnck_0003-xutils-Change-icons-to-being-cairo-surfaces_v43.1.patch │ ├── libwnck_0004-icons-Mark-GdkPixbuf-icons-as-deprecated_v43.1.patch │ └── libwnck_0005-tasklist-Add-surface-loader-function_v43.1.patch ├── libwpd │ ├── libwpd-gcc11.patch │ ├── libwpd.signatures.json │ └── libwpd.spec ├── libwpe │ ├── gpgkey-5AA3BC334FD7E3369E7C77B291C559DBE4C9123B.gpg │ ├── libwpe-1.15.2.tar.xz.asc │ ├── libwpe.signatures.json │ └── libwpe.spec ├── libwpg │ ├── libwpg.signatures.json │ └── libwpg.spec ├── libwps │ ├── libwps.signatures.json │ └── libwps.spec ├── libwvstreams │ ├── 0001-Use-explicit-cast-and-prevent-compiler-error.patch │ ├── libwvstreams.signatures.json │ ├── libwvstreams.spec │ ├── wvstreams-4.5-noxplctarget.patch │ ├── wvstreams-4.6.1-fix-stack-size.patch │ ├── wvstreams-4.6.1-gcc.patch │ ├── wvstreams-4.6.1-gcc10.patch │ ├── wvstreams-4.6.1-gcc47.patch │ ├── wvstreams-4.6.1-magic.patch │ ├── wvstreams-4.6.1-make.patch │ ├── wvstreams-4.6.1-multilib.patch │ ├── wvstreams-4.6.1-openssl11.patch │ └── wvstreams-4.6.1-statinclude.patch ├── libxklavier │ ├── libxklavier.signatures.json │ └── libxklavier.spec ├── libxmlb │ ├── libxmlb.signatures.json │ └── libxmlb.spec ├── libyubikey │ ├── libyubikey.signatures.json │ └── libyubikey.spec ├── libzmf │ ├── libzmf.signatures.json │ └── libzmf.spec ├── lilv │ ├── drobilla.gpg │ ├── lilv-0.24.26.tar.xz.sig │ ├── lilv.signatures.json │ └── lilv.spec ├── linuxconsoletools │ ├── linuxconsoletools.signatures.json │ └── linuxconsoletools.spec ├── lksctp-tools │ ├── lib-define-cmsg-array-with-correct-size-in-sendv-and.patch │ ├── lksctp-tools.signatures.json │ ├── lksctp-tools.spec │ ├── man-add-CONTROL-MSGS-and-NOTIFICATIONS-in-sctp.7.patch │ ├── man-add-some-missing-items-in-STATISTICS-in-sctp.7.patch │ ├── man-add-the-missing-description-for-3-flags-in-sctp_.patch │ ├── man-add-the-missing-options-in-SOCKET-OPTIONS-in-sct.patch │ ├── man-improve-the-description-in-SOCKET-OPTIONS-in-sct.patch │ ├── man-update-for-DESCRIPTION-and-SYSCTL-in-sctp.7.patch │ └── sctp_test-check-strdup-return-in-append_addr.patch ├── lockdev │ ├── 0001-major-and-minor-functions-moved-to-sysmacros.h.patch │ ├── lockdev-euidaccess.patch │ ├── lockdev.signatures.json │ └── lockdev.spec ├── logwatch │ ├── dnf-rpm.conf │ ├── logwatch.signatures.json │ └── logwatch.spec ├── lpsolve │ ├── lpsolve-5.5.0.11.cflags.patch │ ├── lpsolve-5.5.2.0.defines.patch │ ├── lpsolve.signatures.json │ └── lpsolve.spec ├── lrzsz │ ├── lrzsz-0.12.20-aarch64.patch │ ├── lrzsz-0.12.20-glibc21.patch │ ├── lrzsz-0.12.20-man.patch │ ├── lrzsz-0.12.20.patch │ ├── lrzsz.signatures.json │ └── lrzsz.spec ├── lua-expat │ ├── lua-expat.signatures.json │ ├── lua-expat.spec │ └── luaexpat-1.3.0.tar.gz.asc ├── lua-filesystem │ ├── lua-filesystem.signatures.json │ └── lua-filesystem.spec ├── lua-json │ ├── 48.patch │ ├── lua-json.signatures.json │ └── lua-json.spec ├── lua-lpeg │ ├── 0001-inject-ldflags.patch │ ├── lua-lpeg.signatures.json │ └── lua-lpeg.spec ├── lua-lunitx │ ├── lua-lunitx.signatures.json │ └── lua-lunitx.spec ├── lua-term │ ├── lua-term.signatures.json │ └── lua-term.spec ├── luksmeta │ ├── Define-log-callback-function-to-use-with-libcryptset.patch │ ├── luksmeta-9-relax-layout-assumptions.patch │ ├── luksmeta-9-tests.patch │ ├── luksmeta.signatures.json │ └── luksmeta.spec ├── lv2 │ ├── lv2.signatures.json │ └── lv2.spec ├── lzip │ ├── lzip.signatures.json │ └── lzip.spec ├── m17n-db │ ├── m17n-db-1.6.5-bn-itrans-bug182227.patch │ ├── m17n-db-1.6.5-kn-inscript-ZWNJ-bug440007.patch │ ├── m17n-db-1.6.5-kn-itrans_key-summary_bug228806.patch │ ├── m17n-db-1.6.5-number_pad_itrans-222634.patch │ ├── m17n-db-1.7.0-fix-e-o-mappings.patch │ ├── m17n-db-1.8.0-inscript2-mni-sat.patch │ ├── m17n-db.signatures.json │ ├── m17n-db.spec │ └── minglish.mim ├── m17n-lib │ ├── Fix-segmentation-fault-when-using-ibus-m17n-with-vi-telex-in-gedit-in-wayland.patch │ ├── m17n-lib-1.8.0-multilib.patch │ ├── m17n-lib.signatures.json │ └── m17n-lib.spec ├── mailx │ ├── get-upstream-tarball.sh │ ├── mailx-12.3-pager.patch │ ├── mailx-12.5-collect.patch │ ├── mailx-12.5-empty-from.patch │ ├── mailx-12.5-encsplit.patch │ ├── mailx-12.5-fio.c-Unconditionally-require-wordexp-support.patch │ ├── mailx-12.5-fname-null.patch │ ├── mailx-12.5-globname-Invoke-wordexp-with-WRDE_NOCMD-CVE-2004-277.patch │ ├── mailx-12.5-lzw.patch │ ├── mailx-12.5-man-page-fixes.patch │ ├── mailx-12.5-nss-hostname-matching.patch │ ├── mailx-12.5-openssl.patch │ ├── mailx-12.5-outof-Introduce-expandaddr-flag.patch │ ├── mailx-12.5-unpack-Disable-option-processing-for-email-addresses.patch │ ├── mailx-12.5-usage.patch │ ├── mailx.signatures.json │ ├── mailx.spec │ └── nail-11.25-config.patch ├── mallard-rng │ ├── mallard-rng.signatures.json │ └── mallard-rng.spec ├── man-pages-cs │ ├── man-pages-cs-0.18.20090209-socket.patch │ ├── man-pages-cs-0.18.20090209-test.patch │ ├── man-pages-cs-01.patch │ ├── man-pages-cs-02.patch │ ├── man-pages-cs-03.patch │ ├── man-pages-cs-04.patch │ ├── man-pages-cs-05.patch │ ├── man-pages-cs-06.patch │ ├── man-pages-cs-07.patch │ ├── man-pages-cs-08.patch │ ├── man-pages-cs-09.patch │ ├── man-pages-cs-10.patch │ ├── man-pages-cs-11.patch │ ├── man-pages-cs.signatures.json │ └── man-pages-cs.spec ├── man-pages-es │ ├── man-pages-es.signatures.json │ └── man-pages-es.spec ├── man-pages-it │ ├── man-pages-it.signatures.json │ └── man-pages-it.spec ├── man-pages-ja │ ├── man-pages-ja-1661363-telnet.1.patch │ ├── man-pages-ja-20090615-vmstat.8.patch │ ├── man-pages-ja-358081-sysctl-warn.patch │ ├── man-pages-ja-433692-printf.1.patch │ ├── man-pages-ja-451238-sysctl.8.patch │ ├── man-pages-ja-454419-echo.1.patch │ ├── man-pages-ja-456263-top.1.patch │ ├── man-pages-ja-457361-wall.1.patch │ ├── man-pages-ja-486655-mkfs.8.patch │ ├── man-pages-ja-493783-edquota.8.patch │ ├── man-pages-ja-509048-less.1.patch │ ├── man-pages-ja-515467-strings.1.patch │ ├── man-pages-ja-527638-chgrp.1.patch │ ├── man-pages-ja-600321-snmpd.conf.5.patch │ ├── man-pages-ja-669646-pmap.1.patch │ ├── man-pages-ja-993511-crontab.1.patch │ ├── man-pages-ja-echo.1 │ ├── man-pages-ja-fix-configure.perl.patch │ ├── man-pages-ja-fix-ebtables.patch │ ├── man-pages-ja-fix-pkgs-list.patch │ ├── man-pages-ja-rpm.pl │ ├── man-pages-ja-snmptrapd.8 │ ├── man-pages-ja-tail.1 │ ├── man-pages-ja-tar.1 │ ├── man-pages-ja.signatures.json │ └── man-pages-ja.spec ├── man-pages-ko │ ├── Man_Page_Copyright │ ├── man-pages-ko-20050219.patch │ ├── man-pages-ko.signatures.json │ └── man-pages-ko.spec ├── man-pages-pl │ ├── man-pages-pl.signatures.json │ └── man-pages-pl.spec ├── man-pages-ru │ ├── man-pages-ru.signatures.json │ └── man-pages-ru.spec ├── man-pages-zh-CN │ ├── man-pages-zh-CN.signatures.json │ └── man-pages-zh-CN.spec ├── mariadb-connector-odbc │ ├── libraries_include_path.patch │ ├── mariadb-connector-odbc.signatures.json │ └── mariadb-connector-odbc.spec ├── marisa │ ├── marisa.signatures.json │ └── marisa.spec ├── maven-parent │ ├── maven-parent.signatures.json │ └── maven-parent.spec ├── mcelog │ ├── mcelog.conf │ ├── mcelog.signatures.json │ └── mcelog.spec ├── mdds │ ├── mdds.signatures.json │ └── mdds.spec ├── meanwhile │ ├── meanwhile-file-transfer.patch │ ├── meanwhile.signatures.json │ └── meanwhile.spec ├── mecab-ipadic │ ├── LICENSE.Fedora │ ├── mecab-ipadic.signatures.json │ ├── mecab-ipadic.spec │ └── terms-and-conditions-for-IFS-J.html ├── mecab │ ├── mecab.signatures.json │ └── mecab.spec ├── media-player-info │ ├── media-player-info.signatures.json │ └── media-player-info.spec ├── memkind │ ├── Makefile.am.patch │ ├── memkind.signatures.json │ └── memkind.spec ├── metis │ ├── metis-GKREGEX-GKRAND-LIBSUFFIX-fix.patch │ ├── metis-libmetis.patch │ ├── metis-pcre2.patch │ ├── metis-shared-GKlib.patch │ ├── metis.signatures.json │ ├── metis.spec │ └── metis_lib64.patch ├── microcode_ctl │ ├── enable-wildcards-in-tar.patch │ ├── microcode_ctl.signatures.json │ └── microcode_ctl.spec ├── microdnf │ ├── microdnf.signatures.json │ └── microdnf.spec ├── minicom │ ├── minicom.signatures.json │ └── minicom.spec ├── minizip-ng │ ├── minizip-2.10.0-use-pkgconfig-for-zstd.patch │ ├── minizip-ng.signatures.json │ └── minizip-ng.spec ├── mksh │ ├── dot-mkshrc │ ├── mksh.signatures.json │ ├── mksh.spec │ └── rtchecks.expected ├── mobile-broadband-provider-info │ ├── mobile-broadband-provider-info.signatures.json │ └── mobile-broadband-provider-info.spec ├── mod_auth_gssapi │ ├── Fix-integer-sizes-used-with-ap_set_flag_slot.patch │ ├── Fix-tests-to-work-with-python3.patch │ ├── In-tests-show-the-exception-on-failure.patch │ ├── mod_auth_gssapi.signatures.json │ ├── mod_auth_gssapi.spec │ └── tests-Test-suite-fixes-for-virtualenv-and-clang.patch ├── mod_auth_mellon │ ├── 10-auth_mellon.conf │ ├── CVE-2021-3639.patch │ ├── README.redhat.rst │ ├── auth_mellon.conf │ ├── mellon_create_metadata.sh │ ├── mod_auth_mellon.conf │ ├── mod_auth_mellon.signatures.json │ └── mod_auth_mellon.spec ├── mod_auth_openidc │ ├── mod_auth_openidc.signatures.json │ └── mod_auth_openidc.spec ├── mod_authnz_pam │ ├── mod_authnz_pam.signatures.json │ └── mod_authnz_pam.spec ├── mod_fcgid │ ├── fcgid.conf │ ├── fcgid24.conf │ ├── mod_fcgid-2.1-README.RPM │ ├── mod_fcgid-2.1-README.SELinux │ ├── mod_fcgid-2.3.4-fixconf-shellbang.patch │ ├── mod_fcgid-tmpfs.conf │ ├── mod_fcgid.signatures.json │ └── mod_fcgid.spec ├── mod_http2 │ ├── mod_http2.signatures.json │ └── mod_http2.spec ├── mod_intercept_form_submit │ ├── mod_intercept_form_submit.signatures.json │ └── mod_intercept_form_submit.spec ├── mod_lookup_identity │ ├── mod_lookup_identity.signatures.json │ └── mod_lookup_identity.spec ├── mod_md │ ├── mod_md.signatures.json │ └── mod_md.spec ├── mod_security │ ├── 10-mod_security.conf │ ├── mod_security-2.9.3-remote-rules-timeout.patch │ ├── mod_security-2.9.7-send_error_bucket.patch │ ├── mod_security.conf │ ├── mod_security.signatures.json │ ├── mod_security.spec │ ├── modsecurity-2.9.3-apulibs.patch │ ├── modsecurity-2.9.3-lua-54.patch │ └── modsecurity_localrules.conf ├── mod_security_crs │ ├── mod_security_crs.signatures.json │ └── mod_security_crs.spec ├── mod_wsgi │ ├── mod_wsgi-4.5.20-exports.patch │ ├── mod_wsgi.signatures.json │ ├── mod_wsgi.spec │ ├── wsgi-python3.conf │ └── wsgi.conf ├── mosh │ ├── mosh.signatures.json │ └── mosh.spec ├── mpage │ ├── mpage.signatures.json │ ├── mpage.spec │ └── mpage25-config.patch ├── mrtg │ ├── filter-provides-mrtg.sh │ ├── filter-requires-mrtg.sh │ ├── mrtg-2.15.0-lib64.patch │ ├── mrtg-2.17.2-socket6-fix.patch │ ├── mrtg-2.17.4-cfgmaker-ifhighspeed.patch │ ├── mrtg-2.17.7-traffic-sum-man-option.patch │ ├── mrtg-2.17.7.tar.gz.md5 │ ├── mrtg-httpd.conf │ ├── mrtg.cfg │ ├── mrtg.service │ ├── mrtg.signatures.json │ ├── mrtg.spec │ ├── mrtg.timer │ └── mrtg.tmpfiles ├── mt-st │ ├── mt-st.signatures.json │ ├── mt-st.spec │ └── stinit.service ├── mtx │ ├── mtx-1.3.12-argc.patch │ ├── mtx-1.3.12-destdir.patch │ ├── mtx.signatures.json │ └── mtx.spec ├── mutt │ ├── mutt-1.10.0-muttrc.patch │ ├── mutt-1.12.1-optusegpgagent.patch │ ├── mutt-1.7.0-syncdebug.patch │ ├── mutt-1.8.0-cabundle.patch │ ├── mutt-1.9.0-ssl_ciphers.patch │ ├── mutt-1.9.5-nodotlock.patch │ ├── mutt-2.2.12-lynx_no_backscapes.patch │ ├── mutt-2.2.12-system_certs.patch │ ├── mutt.signatures.json │ ├── mutt.spec │ ├── mutt_disable_ssl_enforce.patch │ └── mutt_ldap_query ├── mythes-bg │ ├── mythes-bg.signatures.json │ └── mythes-bg.spec ├── mythes-ca │ ├── mythes-ca.signatures.json │ └── mythes-ca.spec ├── mythes-cs │ ├── mythes-cs.signatures.json │ └── mythes-cs.spec ├── mythes-da │ ├── mythes-da-LICENSE.txt │ ├── mythes-da.signatures.json │ └── mythes-da.spec ├── mythes-de │ ├── mythes-de.signatures.json │ └── mythes-de.spec ├── mythes-el │ ├── mythes-el.signatures.json │ └── mythes-el.spec ├── mythes-en │ ├── mythes-en.python3.patch │ ├── mythes-en.signatures.json │ └── mythes-en.spec ├── mythes-eo │ ├── mythes-eo.signatures.json │ └── mythes-eo.spec ├── mythes-es │ ├── mythes-es.signatures.json │ └── mythes-es.spec ├── mythes-fr │ ├── mythes-fr-LICENSE.txt │ ├── mythes-fr.signatures.json │ └── mythes-fr.spec ├── mythes-ga │ ├── mythes-ga.signatures.json │ └── mythes-ga.spec ├── mythes-hu │ ├── mythes-hu.signatures.json │ └── mythes-hu.spec ├── mythes-mi │ ├── mythes-mi.signatures.json │ └── mythes-mi.spec ├── mythes-ne │ ├── mythes-ne-LICENSE.txt │ ├── mythes-ne.signatures.json │ └── mythes-ne.spec ├── mythes-nl │ ├── mythes-nl.signatures.json │ └── mythes-nl.spec ├── mythes-pl │ ├── mythes-pl-LICENSE.txt │ ├── mythes-pl.signatures.json │ └── mythes-pl.spec ├── mythes-pt │ ├── mythes-pt.signatures.json │ └── mythes-pt.spec ├── mythes-ro │ ├── mythes-ro.signatures.json │ └── mythes-ro.spec ├── mythes-ru │ ├── mythes-ru.signatures.json │ └── mythes-ru.spec ├── mythes-sk │ ├── mythes-sk.signatures.json │ └── mythes-sk.spec ├── mythes-sl │ ├── mythes-sl.signatures.json │ └── mythes-sl.spec ├── mythes-sv │ ├── mythes-sv.signatures.json │ └── mythes-sv.spec ├── mythes-uk │ ├── mythes-uk.signatures.json │ └── mythes-uk.spec ├── mythes │ ├── mythes.signatures.json │ └── mythes.spec ├── neon │ ├── neon-0.32.2-multilib.patch │ ├── neon.signatures.json │ └── neon.spec ├── netcdf │ ├── netcdf-plugin.patch │ ├── netcdf.signatures.json │ └── netcdf.spec ├── netcf │ ├── netcf-Properly-classify-bond-devices-with-no-slaves.patch │ ├── netcf-call-aug_load-at-most-once-per-second.patch │ ├── netcf-linux-include-bond-element-for-bonds-with-no-slaves.patch │ ├── netcf-optimize-aug_match-query-for-all-ifcfg-files-related.patch │ ├── netcf.signatures.json │ └── netcf.spec ├── netlabel_tools │ ├── netlabel_tools.signatures.json │ ├── netlabel_tools.spec │ └── rhbz1683434.patch ├── netpbm │ ├── disable-pamx-build.patch │ ├── netpbm-CAN-2005-2471.patch │ ├── netpbm-CVE-2017-2587.patch │ ├── netpbm-bmptopnm.patch │ ├── netpbm-cmuwtopbm.patch │ ├── netpbm-docfix.patch │ ├── netpbm-fiasco-overflow.patch │ ├── netpbm-gcc4.patch │ ├── netpbm-glibc.patch │ ├── netpbm-jasper.patch │ ├── netpbm-libdir-so.patch │ ├── netpbm-manfix.patch │ ├── netpbm-manual-pages.patch │ ├── netpbm-multilib.patch │ ├── netpbm-pamtojpeg2k.patch │ ├── netpbm-ppmfadeusage.patch │ ├── netpbm-python3.patch │ ├── netpbm-security-code.patch │ ├── netpbm-security-scripts.patch │ ├── netpbm-time.patch │ ├── netpbm-userguide.patch │ ├── netpbm-xwdfix.patch │ ├── netpbm.signatures.json │ └── netpbm.spec ├── netsniff-ng │ ├── netsniff-ng.signatures.json │ └── netsniff-ng.spec ├── nilfs-utils │ ├── 8B055AE86DEFF458.asc │ ├── nilfs-utils-2.2.11.tar.bz2.asc │ ├── nilfs-utils.signatures.json │ └── nilfs-utils.spec ├── nkf │ ├── nkf-fix-man.patch │ ├── nkf.1j │ ├── nkf.copyright │ ├── nkf.signatures.json │ └── nkf.spec ├── nload │ ├── nload.signatures.json │ └── nload.spec ├── nodejs-nodemon │ ├── nodejs-nodemon.signatures.json │ └── nodejs-nodemon.spec ├── nodejs-packaging │ ├── nodejs-packaging.signatures.json │ └── nodejs-packaging.spec ├── nss-pam-ldapd │ ├── 0001-Disable-pylint-tests.patch │ ├── 0002-Watch-for-uint32_t-overflows.patch │ ├── nslcd.service │ ├── nslcd.tmpfiles │ ├── nss-pam-ldapd.signatures.json │ └── nss-pam-ldapd.spec ├── numatop │ ├── 0001-common-Use-sym_type_t-in-elf64_binary_read-signature.patch │ ├── 0002-common-Add-format-strings-to-mvwprintw-calls.patch │ ├── 0003-common-Remove-unnecessary-temp-buffer.patch │ ├── 0004-common-Use-memcpy-to-the-process-name-to-a-line.patch │ ├── 0005-common-Replace-malloc-strncpy-with-strdup.patch │ ├── 0006-common-Build-node-string-with-bound-checks.patch │ ├── 0007-common-Increase-node-string-buffer-size.patch │ ├── 0008-x86-Add-missing-fields-to-s_emr_config.patch │ ├── numatop.signatures.json │ └── numatop.spec ├── objectweb-anttask │ ├── objectweb-anttask-LICENSE.txt │ ├── objectweb-anttask-ant17.patch │ ├── objectweb-anttask-java5.patch │ ├── objectweb-anttask.signatures.json │ └── objectweb-anttask.spec ├── objenesis │ ├── objenesis-javadoc.patch │ ├── objenesis.signatures.json │ └── objenesis.spec ├── ocaml-calendar │ ├── calendar-2.03.2-enable-debug.patch │ ├── ocaml-calendar.signatures.json │ └── ocaml-calendar.spec ├── ocaml-camlp5 │ ├── camlp5-6.11-kill-warn-error.patch │ ├── ocaml-camlp5.signatures.json │ └── ocaml-camlp5.spec ├── ocaml-csv │ ├── ocaml-csv-bytes.patch │ ├── ocaml-csv.signatures.json │ └── ocaml-csv.spec ├── ocaml-curses │ ├── ocaml-curses.signatures.json │ └── ocaml-curses.spec ├── ocaml-extlib │ ├── ocaml-extlib.signatures.json │ └── ocaml-extlib.spec ├── ocaml-fpath │ ├── ocaml-fpath.signatures.json │ └── ocaml-fpath.spec ├── ocaml-libvirt │ ├── ocaml-libvirt.signatures.json │ └── ocaml-libvirt.spec ├── ocaml-markup │ ├── ocaml-markup.signatures.json │ └── ocaml-markup.spec ├── ocaml-tyxml │ ├── ocaml-tyxml-seq.patch │ ├── ocaml-tyxml.signatures.json │ └── ocaml-tyxml.spec ├── ocaml-xml-light │ ├── LICENSE.PTR │ ├── ocaml-xml-light.signatures.json │ └── ocaml-xml-light.spec ├── ocaml-zarith │ ├── ocaml-zarith.signatures.json │ └── ocaml-zarith.spec ├── ocl-icd │ ├── ocl-icd.signatures.json │ └── ocl-icd.spec ├── oddjob │ ├── oddjob.signatures.json │ └── oddjob.spec ├── ogdi │ ├── ogdi-4.1.0-sailer.patch │ ├── ogdi.pdf │ ├── ogdi.signatures.json │ └── ogdi.spec ├── omping │ ├── omping.signatures.json │ └── omping.spec ├── opal │ ├── opal-3.10-fix-cflags.patch │ ├── opal.signatures.json │ └── opal.spec ├── opencc │ ├── opencc.signatures.json │ ├── opencc.spec │ └── parallel-build-fix.patch ├── opencl-filesystem │ └── opencl-filesystem.spec ├── opencl-headers │ ├── cl.hpp │ ├── cl2.hpp │ ├── opencl-headers.signatures.json │ └── opencl-headers.spec ├── opencryptoki │ ├── opencryptoki-3.24.0-compile-error-due-to-incompatible-pointer-types.patch │ ├── opencryptoki-3.24.0-p11sak.patch │ ├── opencryptoki.module │ ├── opencryptoki.signatures.json │ └── opencryptoki.spec ├── opendnssec │ ├── conf.xml │ ├── ods-enforcerd.service │ ├── ods-signerd.service │ ├── ods.sysconfig │ ├── opendnssec-2.1.sqlite_convert.sql │ ├── opendnssec-2.1.sqlite_rpmversion.sql │ ├── opendnssec.cron │ ├── opendnssec.signatures.json │ ├── opendnssec.spec │ └── tmpfiles-opendnssec.conf ├── openjade │ ├── config.guess │ ├── config.sub │ ├── openjade-1.3.1-nsl.patch │ ├── openjade-1.3.2-gcc46.patch │ ├── openjade-deplibs.patch │ ├── openjade-getoptperl.patch │ ├── openjade-nola.patch │ ├── openjade-ppc64.patch │ ├── openjade.signatures.json │ └── openjade.spec ├── openjpeg2 │ ├── openjpeg2.signatures.json │ ├── openjpeg2.spec │ ├── openjpeg2_CVE-2020-27814.patch │ ├── openjpeg2_CVE-2020-27823.patch │ ├── openjpeg2_CVE-2020-27824.patch │ ├── openjpeg2_CVE-2020-27841.patch │ ├── openjpeg2_CVE-2020-27842.patch │ ├── openjpeg2_CVE-2020-27843.patch │ ├── openjpeg2_CVE-2020-27845.patch │ ├── openjpeg2_CVE-2020-6851.patch │ ├── openjpeg2_CVE-2020-8112.patch │ └── openjpeg2_opj2.patch ├── openobex │ ├── openobex-1.7-obex_push.patch │ ├── openobex-1.7-strtoul.patch │ ├── openobex-1.7-udev_rule.patch │ ├── openobex-apps-flush.patch │ ├── openobex.signatures.json │ └── openobex.spec ├── openoffice-lv │ ├── openoffice-lv.signatures.json │ └── openoffice-lv.spec ├── openrdate │ ├── openrdate.signatures.json │ ├── openrdate.spec │ └── openrdate_sysctl.patch ├── openslp │ ├── CVE-2016-7567.patch │ ├── CVE-2017-17833.patch │ ├── CVE-2019-5544.patch │ ├── openslp-2.0.0-multicast-set.patch │ ├── openslp-2.0.0-notify-systemd-of-start-up.patch │ ├── openslp-2.0.0-null-pointer-deref.patch │ ├── openslp-2.0.0-openssl-1.1-fix.patch │ ├── openslp.signatures.json │ ├── openslp.spec │ └── slpd.service ├── openssl-ibmpkcs11 │ ├── openssl-ibmpkcs11.signatures.json │ └── openssl-ibmpkcs11.spec ├── openwsman │ ├── openwsman-2.4.0-pamsetup.patch │ ├── openwsman-2.4.12-ruby-binding-build.patch │ ├── openwsman-2.6.2-openssl-1.1-fix.patch │ ├── openwsman-2.6.5-http-status-line.patch │ ├── openwsman-2.6.5-libcurl-error-codes-update.patch │ ├── openwsman-2.6.8-CVE-2019-3816.patch │ ├── openwsman-2.6.8-CVE-2019-3833.patch │ ├── openwsman.signatures.json │ ├── openwsman.spec │ ├── openwsmand.service │ └── owsmantestcert.sh ├── optipng │ ├── optipng.signatures.json │ └── optipng.spec ├── orc │ ├── 0001-powerpc-fix-div255w-which-still-used-the-inexact-sub.patch │ ├── orc.signatures.json │ └── orc.spec ├── oro │ ├── oro-2.0.8.pom │ ├── oro.signatures.json │ └── oro.spec ├── os-prober │ ├── os-prober-arm64-win11.patch │ ├── os-prober-bootpart-name-fix.patch │ ├── os-prober-btrfsfix.patch │ ├── os-prober-efi-shell.patch │ ├── os-prober-factor-out-logger.patch │ ├── os-prober-factored-logger-efi-fix.patch │ ├── os-prober-grepfix.patch │ ├── os-prober-grub2-mount-workaround.patch │ ├── os-prober-grub2-parsefix.patch │ ├── os-prober-mdraidfix.patch │ ├── os-prober-mounted-partitions-fix.patch │ ├── os-prober-no-dummy-mach-kernel.patch │ ├── os-prober-trap_unmount.patch │ ├── os-prober-umount-fix.patch │ ├── os-prober.signatures.json │ └── os-prober.spec ├── osgi-annotation │ ├── LICENSE-2.0 │ ├── osgi-annotation-build.xml │ ├── osgi-annotation.signatures.json │ ├── osgi-annotation.spec │ └── osgi.annotation-8.1.0.pom ├── osgi-compendium │ ├── osgi-compendium-build.xml │ ├── osgi-compendium.signatures.json │ └── osgi-compendium.spec ├── osgi-core │ ├── LICENSE-2.0 │ ├── osgi-core-build.xml │ ├── osgi-core.signatures.json │ ├── osgi-core.spec │ └── osgi.core-7.0.0.pom ├── osinfo-db-tools │ ├── osinfo-db-tools.signatures.json │ └── osinfo-db-tools.spec ├── osinfo-db │ ├── osinfo-db-20240701.tar.xz.asc │ ├── osinfo-db.signatures.json │ └── osinfo-db.spec ├── overpass-fonts │ ├── overpass-fonts-fontconfig.conf │ ├── overpass-fonts.signatures.json │ ├── overpass-fonts.spec │ ├── overpass-mono-fonts-fontconfig.conf │ ├── overpass-mono.metainfo.xml │ └── overpass.metainfo.xml ├── pacemaker │ ├── pacemaker.signatures.json │ └── pacemaker.spec ├── pacrunner │ ├── pacrunner.signatures.json │ └── pacrunner.spec ├── pakchois │ ├── pakchois-LICENSE.txt │ ├── pakchois.signatures.json │ └── pakchois.spec ├── papi │ ├── papi-libsde.patch │ ├── papi-nostatic.patch │ ├── papi-python3.patch │ ├── papi.signatures.json │ └── papi.spec ├── paps │ ├── 29-paps.conf │ ├── paps-0.6.6-lcnumeric.patch │ ├── paps-0.6.8-glib282.patch │ ├── paps-0.6.8-shared.patch │ ├── paps-0.6.8-wordwrap.patch │ ├── paps-854897-manpage.patch │ ├── paps-a3.patch │ ├── paps-autoconf262.patch │ ├── paps-c99.patch │ ├── paps-correct-fsf-address.patch │ ├── paps-cpilpi.patch │ ├── paps-cups.patch │ ├── paps-dsc-compliant.patch │ ├── paps-exitcode.patch │ ├── paps-fix-build.patch │ ├── paps-fix-cpi.patch │ ├── paps-fix-loop-in-split.patch │ ├── paps-fix-non-weak-symbol.patch │ ├── paps-fix-paper-size-truncate.patch │ ├── paps-fix-src-to-paps.patch │ ├── paps-fix-tab-width.patch │ ├── paps-ft-header.patch │ ├── paps-glib282.patch │ ├── paps-langinfo.patch │ ├── paps.convs │ ├── paps.signatures.json │ └── paps.spec ├── parallel │ ├── parallel.signatures.json │ └── parallel.spec ├── passim │ ├── passim.signatures.json │ └── passim.spec ├── pbzip2 │ ├── pbzip2-1.1.12-buildflags.patch │ ├── pbzip2.signatures.json │ └── pbzip2.spec ├── pcp │ ├── pcp-gcc15.patch │ ├── pcp-xsos-fixes.patch │ ├── pcp.signatures.json │ └── pcp.spec ├── perl-Algorithm-Diff │ ├── Algorithm-Diff-1.1903-provides.patch │ ├── perl-Algorithm-Diff.signatures.json │ └── perl-Algorithm-Diff.spec ├── perl-Alien-Build │ ├── Alien-Build-1.96-Remove-redundant-pkgconfig-implementations.patch │ ├── perl-Alien-Build.signatures.json │ └── perl-Alien-Build.spec ├── perl-Alien-pkgconf │ ├── Alien-pkgconf-0.19-Accept-pkgconf-1.9.patch │ ├── perl-Alien-pkgconf.signatures.json │ └── perl-Alien-pkgconf.spec ├── perl-AnyEvent-AIO │ ├── perl-AnyEvent-AIO.signatures.json │ └── perl-AnyEvent-AIO.spec ├── perl-AnyEvent-BDB │ ├── perl-AnyEvent-BDB.signatures.json │ └── perl-AnyEvent-BDB.spec ├── perl-AnyEvent │ ├── perl-AnyEvent.signatures.json │ └── perl-AnyEvent.spec ├── perl-App-FatPacker │ ├── perl-App-FatPacker.signatures.json │ └── perl-App-FatPacker.spec ├── perl-AppConfig │ ├── perl-AppConfig.signatures.json │ └── perl-AppConfig.spec ├── perl-Archive-Extract │ ├── perl-Archive-Extract.signatures.json │ └── perl-Archive-Extract.spec ├── perl-Authen-SASL │ ├── perl-Authen-SASL.signatures.json │ └── perl-Authen-SASL.spec ├── perl-B-Debug │ ├── perl-B-Debug.signatures.json │ └── perl-B-Debug.spec ├── perl-B-Hooks-EndOfScope │ ├── B-Hooks-EndOfScope-0.13-shellbangs.patch │ ├── perl-B-Hooks-EndOfScope.signatures.json │ └── perl-B-Hooks-EndOfScope.spec ├── perl-B-Keywords │ ├── perl-B-Keywords.signatures.json │ └── perl-B-Keywords.spec ├── perl-B-Lint │ ├── B-Lint-1.20-Skip-a-bare-sub-test.patch │ ├── perl-B-Lint.signatures.json │ └── perl-B-Lint.spec ├── perl-BDB │ ├── perl-BDB.signatures.json │ └── perl-BDB.spec ├── perl-BSD-Resource │ ├── perl-BSD-Resource.signatures.json │ └── perl-BSD-Resource.spec ├── perl-Browser-Open │ ├── perl-Browser-Open.signatures.json │ └── perl-Browser-Open.spec ├── perl-Business-ISBN-Data │ ├── Business-ISBN-Data-20120719-shellbang.patch │ ├── perl-Business-ISBN-Data.signatures.json │ └── perl-Business-ISBN-Data.spec ├── perl-Business-ISBN │ ├── perl-Business-ISBN.signatures.json │ └── perl-Business-ISBN.spec ├── perl-CBOR-XS │ ├── CBOR-XS-1.6-Include-ecb.h-from-system.patch │ ├── CBOR-XS-1.84-Cast-char-and-U8-where-needed.patch │ ├── perl-CBOR-XS.signatures.json │ └── perl-CBOR-XS.spec ├── perl-CSS-Tiny │ ├── perl-CSS-Tiny.signatures.json │ └── perl-CSS-Tiny.spec ├── perl-Class-Accessor │ ├── perl-Class-Accessor.signatures.json │ └── perl-Class-Accessor.spec ├── perl-Class-C3-XS │ ├── perl-Class-C3-XS.signatures.json │ └── perl-Class-C3-XS.spec ├── perl-Class-C3 │ ├── perl-Class-C3.signatures.json │ └── perl-Class-C3.spec ├── perl-Class-Data-Inheritable │ ├── perl-Class-Data-Inheritable.signatures.json │ └── perl-Class-Data-Inheritable.spec ├── perl-Class-Factory-Util │ ├── perl-Class-Factory-Util.signatures.json │ └── perl-Class-Factory-Util.spec ├── perl-Class-Inspector │ ├── perl-Class-Inspector.signatures.json │ └── perl-Class-Inspector.spec ├── perl-Class-Load-XS │ ├── perl-Class-Load-XS.signatures.json │ └── perl-Class-Load-XS.spec ├── perl-Class-Load │ ├── perl-Class-Load.signatures.json │ └── perl-Class-Load.spec ├── perl-Class-Singleton │ ├── perl-Class-Singleton.signatures.json │ └── perl-Class-Singleton.spec ├── perl-Class-Tiny │ ├── perl-Class-Tiny.signatures.json │ └── perl-Class-Tiny.spec ├── perl-Color-ANSI-Util │ ├── perl-Color-ANSI-Util.signatures.json │ └── perl-Color-ANSI-Util.spec ├── perl-Color-RGB-Util │ ├── perl-Color-RGB-Util.signatures.json │ └── perl-Color-RGB-Util.spec ├── perl-ColorThemeBase-Static │ ├── perl-ColorThemeBase-Static.signatures.json │ └── perl-ColorThemeBase-Static.spec ├── perl-ColorThemeRole-ANSI │ ├── perl-ColorThemeRole-ANSI.signatures.json │ └── perl-ColorThemeRole-ANSI.spec ├── perl-ColorThemeUtil-ANSI │ ├── perl-ColorThemeUtil-ANSI.signatures.json │ └── perl-ColorThemeUtil-ANSI.spec ├── perl-ColorThemes-Standard │ ├── perl-ColorThemes-Standard.signatures.json │ └── perl-ColorThemes-Standard.spec ├── perl-Compress-LZF │ ├── Compress-LZF-3.8-Unbundle-liblzf.patch │ ├── Compress-LZF-3.8-Unbundle-perlmulticore.patch │ ├── perl-Compress-LZF.signatures.json │ └── perl-Compress-LZF.spec ├── perl-Compress-Raw-Lzma │ ├── LICENSE.PTR │ ├── perl-Compress-Raw-Lzma.signatures.json │ └── perl-Compress-Raw-Lzma.spec ├── perl-Config-AutoConf │ ├── perl-Config-AutoConf.signatures.json │ └── perl-Config-AutoConf.spec ├── perl-Config-INI-Reader-Multiline │ ├── perl-Config-INI-Reader-Multiline.signatures.json │ └── perl-Config-INI-Reader-Multiline.spec ├── perl-Config-INI │ ├── perl-Config-INI.signatures.json │ └── perl-Config-INI.spec ├── perl-Config-IniFiles │ ├── perl-Config-IniFiles.signatures.json │ └── perl-Config-IniFiles.spec ├── perl-Config-Simple │ ├── perl-Config-Simple.signatures.json │ └── perl-Config-Simple.spec ├── perl-Config-Tiny │ ├── perl-Config-Tiny.signatures.json │ └── perl-Config-Tiny.spec ├── perl-Const-Fast │ ├── perl-Const-Fast.signatures.json │ └── perl-Const-Fast.spec ├── perl-Convert-ASN1 │ ├── Convert-ASN1-0.27-Use-temporary-output-files-for-tests.patch │ ├── perl-Convert-ASN1.signatures.json │ └── perl-Convert-ASN1.spec ├── perl-Convert-Bencode │ ├── perl-Convert-Bencode.signatures.json │ └── perl-Convert-Bencode.spec ├── perl-Coro-Multicore │ ├── Coro-Multicore-0.02-Declare-POD-encoding.patch │ ├── Coro-Multicore-1.04-Fix-passing-context.patch │ ├── perl-Coro-Multicore.signatures.json │ └── perl-Coro-Multicore.spec ├── perl-Coro │ ├── Coro-6.512-Disable-disabling-FORTIFY_SOURCE.patch │ ├── perl-Coro-5.25-ucontext-default.patch │ ├── perl-Coro.signatures.json │ └── perl-Coro.spec ├── perl-Cpanel-JSON-XS │ ├── Cpanel-JSON-XS-4.20-signature.patch │ ├── perl-Cpanel-JSON-XS.signatures.json │ └── perl-Cpanel-JSON-XS.spec ├── perl-Crypt-CBC │ ├── perl-Crypt-CBC.signatures.json │ └── perl-Crypt-CBC.spec ├── perl-Crypt-DES │ ├── perl-Crypt-DES.signatures.json │ └── perl-Crypt-DES.spec ├── perl-Crypt-IDEA │ ├── perl-Crypt-IDEA.signatures.json │ └── perl-Crypt-IDEA.spec ├── perl-Crypt-OpenSSL-Bignum │ ├── perl-Crypt-OpenSSL-Bignum.signatures.json │ └── perl-Crypt-OpenSSL-Bignum.spec ├── perl-Crypt-OpenSSL-Guess │ ├── perl-Crypt-OpenSSL-Guess.signatures.json │ └── perl-Crypt-OpenSSL-Guess.spec ├── perl-Crypt-OpenSSL-RSA │ ├── perl-Crypt-OpenSSL-RSA.signatures.json │ └── perl-Crypt-OpenSSL-RSA.spec ├── perl-Crypt-OpenSSL-Random │ ├── perl-Crypt-OpenSSL-Random.signatures.json │ └── perl-Crypt-OpenSSL-Random.spec ├── perl-Crypt-PasswdMD5 │ ├── Crypt-PasswdMD5-1.40-d-md5-version.patch │ ├── perl-Crypt-PasswdMD5.signatures.json │ └── perl-Crypt-PasswdMD5.spec ├── perl-DBD-MySQL │ ├── perl-DBD-MySQL.signatures.json │ └── perl-DBD-MySQL.spec ├── perl-Data-Munge │ ├── perl-Data-Munge.signatures.json │ └── perl-Data-Munge.spec ├── perl-Data-Peek │ ├── perl-Data-Peek.signatures.json │ └── perl-Data-Peek.spec ├── perl-Data-Section │ ├── perl-Data-Section.signatures.json │ └── perl-Data-Section.spec ├── perl-Data-UUID │ ├── perl-Data-UUID.signatures.json │ └── perl-Data-UUID.spec ├── perl-Date-ISO8601 │ ├── perl-Date-ISO8601.signatures.json │ └── perl-Date-ISO8601.spec ├── perl-Date-Manip │ ├── perl-Date-Manip.signatures.json │ └── perl-Date-Manip.spec ├── perl-DateTime-Format-Builder │ ├── perl-DateTime-Format-Builder.signatures.json │ └── perl-DateTime-Format-Builder.spec ├── perl-DateTime-Format-DateParse │ ├── perl-DateTime-Format-DateParse.signatures.json │ └── perl-DateTime-Format-DateParse.spec ├── perl-DateTime-Format-HTTP │ ├── perl-DateTime-Format-HTTP.signatures.json │ └── perl-DateTime-Format-HTTP.spec ├── perl-DateTime-Format-IBeat │ ├── perl-DateTime-Format-IBeat.signatures.json │ └── perl-DateTime-Format-IBeat.spec ├── perl-DateTime-Format-ISO8601 │ ├── perl-DateTime-Format-ISO8601.signatures.json │ └── perl-DateTime-Format-ISO8601.spec ├── perl-DateTime-Format-Mail │ ├── perl-DateTime-Format-Mail.signatures.json │ └── perl-DateTime-Format-Mail.spec ├── perl-DateTime-Format-Strptime │ ├── perl-DateTime-Format-Strptime.signatures.json │ └── perl-DateTime-Format-Strptime.spec ├── perl-DateTime-Locale │ ├── perl-DateTime-Locale.signatures.json │ └── perl-DateTime-Locale.spec ├── perl-DateTime-TimeZone-SystemV │ ├── perl-DateTime-TimeZone-SystemV.signatures.json │ └── perl-DateTime-TimeZone-SystemV.spec ├── perl-DateTime-TimeZone-Tzfile │ ├── perl-DateTime-TimeZone-Tzfile.signatures.json │ └── perl-DateTime-TimeZone-Tzfile.spec ├── perl-DateTime-TimeZone │ ├── DateTime-TimeZone-2.04-Parse-etc-localtime-by-DateTime-TimeZone-Tzfile.patch │ ├── perl-DateTime-TimeZone.signatures.json │ └── perl-DateTime-TimeZone.spec ├── perl-DateTime │ ├── perl-DateTime.signatures.json │ └── perl-DateTime.spec ├── perl-Devel-CallChecker │ ├── perl-Devel-CallChecker.signatures.json │ └── perl-Devel-CallChecker.spec ├── perl-Devel-EnforceEncapsulation │ ├── perl-Devel-EnforceEncapsulation.signatures.json │ └── perl-Devel-EnforceEncapsulation.spec ├── perl-Devel-Leak │ ├── perl-Devel-Leak.signatures.json │ └── perl-Devel-Leak.spec ├── perl-Devel-Size │ ├── perl-Devel-Size.signatures.json │ └── perl-Devel-Size.spec ├── perl-Digest-BubbleBabble │ ├── perl-Digest-BubbleBabble.signatures.json │ └── perl-Digest-BubbleBabble.spec ├── perl-Digest-CRC │ ├── perl-Digest-CRC.signatures.json │ └── perl-Digest-CRC.spec ├── perl-Dist-CheckConflicts │ ├── Dist-CheckConflicts-0.11-old-Test-More.patch │ ├── perl-Dist-CheckConflicts.signatures.json │ └── perl-Dist-CheckConflicts.spec ├── perl-DynaLoader-Functions │ ├── perl-DynaLoader-Functions.signatures.json │ └── perl-DynaLoader-Functions.spec ├── perl-EV │ ├── perl-EV-4.03-Don-t-ask-questions-at-build-time.patch │ ├── perl-EV-4.30-Don-t-check-bundled-libev.patch │ ├── perl-EV.signatures.json │ └── perl-EV.spec ├── perl-Email-Address │ ├── perl-Email-Address.signatures.json │ └── perl-Email-Address.spec ├── perl-Email-Date-Format │ ├── perl-Email-Date-Format.signatures.json │ └── perl-Email-Date-Format.spec ├── perl-Encode-Detect │ ├── perl-Encode-Detect.signatures.json │ └── perl-Encode-Detect.spec ├── perl-Encode-EUCJPASCII │ ├── perl-Encode-EUCJPASCII.signatures.json │ └── perl-Encode-EUCJPASCII.spec ├── perl-Encode-IMAPUTF7 │ ├── perl-Encode-IMAPUTF7.signatures.json │ └── perl-Encode-IMAPUTF7.spec ├── perl-Env-ShellWords │ ├── perl-Env-ShellWords.signatures.json │ └── perl-Env-ShellWords.spec ├── perl-Error │ ├── perl-Error.signatures.json │ └── perl-Error.spec ├── perl-Eval-Closure │ ├── perl-Eval-Closure.signatures.json │ └── perl-Eval-Closure.spec ├── perl-Event │ ├── perl-Event.signatures.json │ └── perl-Event.spec ├── perl-Exception-Class │ ├── perl-Exception-Class.signatures.json │ └── perl-Exception-Class.spec ├── perl-ExtUtils-Config │ ├── perl-ExtUtils-Config.signatures.json │ └── perl-ExtUtils-Config.spec ├── perl-ExtUtils-Helpers │ ├── perl-ExtUtils-Helpers.signatures.json │ └── perl-ExtUtils-Helpers.spec ├── perl-ExtUtils-InstallPaths │ ├── perl-ExtUtils-InstallPaths.signatures.json │ └── perl-ExtUtils-InstallPaths.spec ├── perl-ExtUtils-PkgConfig │ ├── perl-ExtUtils-PkgConfig.signatures.json │ └── perl-ExtUtils-PkgConfig.spec ├── perl-FCGI │ ├── FCGI-0.78-CVE-2012-6687.patch │ ├── perl-FCGI.signatures.json │ └── perl-FCGI.spec ├── perl-FFI-CheckLib │ ├── perl-FFI-CheckLib.signatures.json │ └── perl-FFI-CheckLib.spec ├── perl-File-BOM │ ├── perl-File-BOM.signatures.json │ └── perl-File-BOM.spec ├── perl-File-BaseDir │ ├── perl-File-BaseDir.signatures.json │ └── perl-File-BaseDir.spec ├── perl-File-CheckTree │ ├── perl-File-CheckTree.signatures.json │ └── perl-File-CheckTree.spec ├── perl-File-Copy-Recursive │ ├── perl-File-Copy-Recursive.signatures.json │ └── perl-File-Copy-Recursive.spec ├── perl-File-DesktopEntry │ ├── perl-File-DesktopEntry.signatures.json │ └── perl-File-DesktopEntry.spec ├── perl-File-Find-Object-Rule │ ├── File-Find-Object-Rule-0.0310-shellbang.patch │ ├── perl-File-Find-Object-Rule.signatures.json │ └── perl-File-Find-Object-Rule.spec ├── perl-File-Find-Object │ ├── perl-File-Find-Object.signatures.json │ └── perl-File-Find-Object.spec ├── perl-File-Find-Rule-Perl │ ├── 0001-File-Find-Rule-Perl-1.16-fedora.patch │ ├── perl-File-Find-Rule-Perl.signatures.json │ └── perl-File-Find-Rule-Perl.spec ├── perl-File-Find-Rule │ ├── perl-File-Find-Rule.signatures.json │ └── perl-File-Find-Rule.spec ├── perl-File-Inplace │ ├── perl-File-Inplace.signatures.json │ └── perl-File-Inplace.spec ├── perl-File-MimeInfo │ ├── perl-File-MimeInfo.signatures.json │ └── perl-File-MimeInfo.spec ├── perl-File-ReadBackwards │ ├── perl-File-ReadBackwards.signatures.json │ └── perl-File-ReadBackwards.spec ├── perl-File-Remove │ ├── perl-File-Remove.signatures.json │ └── perl-File-Remove.spec ├── perl-File-ShareDir-Install │ ├── perl-File-ShareDir-Install.signatures.json │ └── perl-File-ShareDir-Install.spec ├── perl-File-ShareDir │ ├── perl-File-ShareDir.signatures.json │ └── perl-File-ShareDir.spec ├── perl-File-Slurp-Tiny │ ├── File-Slurp-Tiny-0.003-old-Test-More.patch │ ├── perl-File-Slurp-Tiny.signatures.json │ └── perl-File-Slurp-Tiny.spec ├── perl-File-Slurp │ ├── perl-File-Slurp.signatures.json │ └── perl-File-Slurp.spec ├── perl-File-Slurper │ ├── perl-File-Slurper.signatures.json │ └── perl-File-Slurper.spec ├── perl-File-TreeCreate │ ├── perl-File-TreeCreate.signatures.json │ └── perl-File-TreeCreate.spec ├── perl-File-Type │ ├── perl-File-Type.signatures.json │ └── perl-File-Type.spec ├── perl-File-chdir │ ├── perl-File-chdir.signatures.json │ └── perl-File-chdir.spec ├── perl-Font-TTF │ ├── perl-Font-TTF.signatures.json │ └── perl-Font-TTF.spec ├── perl-FreezeThaw │ ├── perl-FreezeThaw.signatures.json │ └── perl-FreezeThaw.spec ├── perl-GD-Barcode │ ├── perl-GD-Barcode.signatures.json │ └── perl-GD-Barcode.spec ├── perl-GD │ ├── GD-2.56-utf8.patch │ ├── GD-2.70-cflags.patch │ ├── perl-GD.signatures.json │ └── perl-GD.spec ├── perl-GSSAPI │ ├── perl-GSSAPI.signatures.json │ └── perl-GSSAPI.spec ├── perl-Getopt-ArgvFile │ ├── license.txt │ ├── perl-Getopt-ArgvFile.signatures.json │ └── perl-Getopt-ArgvFile.spec ├── perl-Graphics-ColorNamesLite-WWW │ ├── perl-Graphics-ColorNamesLite-WWW.signatures.json │ └── perl-Graphics-ColorNamesLite-WWW.spec ├── perl-Guard │ ├── perl-Guard.signatures.json │ └── perl-Guard.spec ├── perl-HTML-Tree │ ├── perl-HTML-Tree.signatures.json │ └── perl-HTML-Tree.spec ├── perl-Hook-LexWrap │ ├── perl-Hook-LexWrap.signatures.json │ └── perl-Hook-LexWrap.spec ├── perl-IO-AIO │ ├── IO-AIO-4.4-shellbang.patch │ ├── perl-IO-AIO.signatures.json │ └── perl-IO-AIO.spec ├── perl-IO-All │ ├── perl-IO-All.signatures.json │ └── perl-IO-All.spec ├── perl-IO-CaptureOutput │ ├── perl-IO-CaptureOutput.signatures.json │ └── perl-IO-CaptureOutput.spec ├── perl-IO-Compress-Lzma │ ├── LICENSE.PTR │ ├── perl-IO-Compress-Lzma.signatures.json │ └── perl-IO-Compress-Lzma.spec ├── perl-IO-Multiplex │ ├── perl-IO-Multiplex.signatures.json │ └── perl-IO-Multiplex.spec ├── perl-IO-SessionData │ ├── perl-IO-SessionData.signatures.json │ └── perl-IO-SessionData.spec ├── perl-IO-Socket-INET6 │ ├── IO-Socket-INET6-2.72-bz1207174-fix_random_test_error.patch │ ├── IO-Socket-INET6-2.72-fix_die_in_test.patch │ ├── perl-IO-Socket-INET6.signatures.json │ └── perl-IO-Socket-INET6.spec ├── perl-IPC-Run │ ├── perl-IPC-Run.signatures.json │ └── perl-IPC-Run.spec ├── perl-IPC-Run3 │ ├── perl-IPC-Run3.signatures.json │ └── perl-IPC-Run3.spec ├── perl-IPC-System-Simple │ ├── perl-IPC-System-Simple.signatures.json │ └── perl-IPC-System-Simple.spec ├── perl-Image-Base │ ├── perl-Image-Base.signatures.json │ └── perl-Image-Base.spec ├── perl-Image-Info │ ├── perl-Image-Info.signatures.json │ └── perl-Image-Info.spec ├── perl-Image-Xbm │ ├── perl-Image-Xbm.signatures.json │ └── perl-Image-Xbm.spec ├── perl-Image-Xpm │ ├── perl-Image-Xpm.signatures.json │ └── perl-Image-Xpm.spec ├── perl-Importer │ ├── perl-Importer.signatures.json │ └── perl-Importer.spec ├── perl-Inline-Files │ ├── perl-Inline-Files.signatures.json │ └── perl-Inline-Files.spec ├── perl-JSON-Color │ ├── perl-JSON-Color.signatures.json │ └── perl-JSON-Color.spec ├── perl-JSON-MaybeXS │ ├── perl-JSON-MaybeXS.signatures.json │ └── perl-JSON-MaybeXS.spec ├── perl-LDAP │ ├── LICENSE.PTR │ ├── perl-LDAP.signatures.json │ ├── perl-LDAP.spec │ ├── perl-ldap-0.65-Configure-usr-sbin-slapd-for-tests.patch │ ├── perl-ldap-0.66-Correct-a-shell-bang-in-data-regenerate_cert.sh.patch │ └── perl-ldap-0.66-test-Remove-a-test-for-cancelling-asynchronous-calls.patch ├── perl-LWP-Protocol-https │ ├── LWP-Protocol-https-6.06-Debian-746576-don-t-disale-verification-if-only-host.patch │ ├── LWP-Protocol-https-6.06-Debian-746576-fix-test-make-it-workable-for-Crypt-SS.patch │ ├── perl-LWP-Protocol-https.signatures.json │ └── perl-LWP-Protocol-https.spec ├── perl-Lingua-EN-Inflect │ ├── perl-Lingua-EN-Inflect.signatures.json │ └── perl-Lingua-EN-Inflect.spec ├── perl-List-MoreUtils-XS │ ├── List-MoreUtils-XS-0.428-unbundle.patch │ ├── perl-List-MoreUtils-XS.signatures.json │ └── perl-List-MoreUtils-XS.spec ├── perl-Locale-Codes │ ├── perl-Locale-Codes.signatures.json │ └── perl-Locale-Codes.spec ├── perl-Locale-Maketext-Gettext │ ├── gettexttomakettext.patch │ ├── perl-Locale-Maketext-Gettext.signatures.json │ └── perl-Locale-Maketext-Gettext.spec ├── perl-Locale-Msgfmt │ ├── Artistic │ ├── Locale-Msgfmt-0.15-Remove-using-of-MI-DSL.patch │ ├── perl-Locale-Msgfmt.signatures.json │ └── perl-Locale-Msgfmt.spec ├── perl-Locale-PO │ ├── perl-Locale-PO.signatures.json │ └── perl-Locale-PO.spec ├── perl-Log-Message-Simple │ ├── perl-Log-Message-Simple.signatures.json │ └── perl-Log-Message-Simple.spec ├── perl-Log-Message │ ├── perl-Log-Message.signatures.json │ └── perl-Log-Message.spec ├── perl-MIME-Charset │ ├── MIME-Charset-1.012-Do-not-install-modules-from-the-Internet.patch │ ├── perl-MIME-Charset.signatures.json │ └── perl-MIME-Charset.spec ├── perl-MIME-Lite │ ├── perl-MIME-Lite.signatures.json │ └── perl-MIME-Lite.spec ├── perl-MIME-Types │ ├── perl-MIME-Types.signatures.json │ └── perl-MIME-Types.spec ├── perl-MLDBM │ ├── LICENSE.PTR │ ├── perl-MLDBM.signatures.json │ └── perl-MLDBM.spec ├── perl-MRO-Compat │ ├── perl-MRO-Compat.signatures.json │ └── perl-MRO-Compat.spec ├── perl-Mail-AuthenticationResults │ ├── perl-Mail-AuthenticationResults.signatures.json │ └── perl-Mail-AuthenticationResults.spec ├── perl-Mail-DKIM │ ├── perl-Mail-DKIM.signatures.json │ └── perl-Mail-DKIM.spec ├── perl-Mail-IMAPTalk │ ├── perl-Mail-IMAPTalk.signatures.json │ └── perl-Mail-IMAPTalk.spec ├── perl-Mail-SPF │ ├── Mail-SPF-v2.8.0-POD.patch │ ├── Mail-SPF-v2.8.0-testsuite.patch │ ├── perl-Mail-SPF.signatures.json │ └── perl-Mail-SPF.spec ├── perl-MailTools │ ├── perl-MailTools.signatures.json │ └── perl-MailTools.spec ├── perl-Math-Int64 │ ├── perl-Math-Int64.signatures.json │ └── perl-Math-Int64.spec ├── perl-Mixin-Linewise │ ├── perl-Mixin-Linewise.signatures.json │ └── perl-Mixin-Linewise.spec ├── perl-Module-Build-Tiny │ ├── perl-Module-Build-Tiny.signatures.json │ └── perl-Module-Build-Tiny.spec ├── perl-Module-Install-AuthorRequires │ ├── perl-Module-Install-AuthorRequires.signatures.json │ └── perl-Module-Install-AuthorRequires.spec ├── perl-Module-Install-AutoLicense │ ├── Use-Module-Install-AutoLicense-for-tarball.patch │ ├── perl-Module-Install-AutoLicense.signatures.json │ └── perl-Module-Install-AutoLicense.spec ├── perl-Module-Install-GithubMeta │ ├── perl-Module-Install-GithubMeta.signatures.json │ └── perl-Module-Install-GithubMeta.spec ├── perl-Module-Install-ManifestSkip │ ├── perl-Module-Install-ManifestSkip.signatures.json │ └── perl-Module-Install-ManifestSkip.spec ├── perl-Module-Install-ReadmeFromPod │ ├── Module-Install-ReadmeFromPod-0.26-Regenerate-README-in-UTF-8.patch │ ├── Module-Install-ReadmeFromPod-0.30-Do-not-test-PDF-file-for-new-lines.patch │ ├── perl-Module-Install-ReadmeFromPod.signatures.json │ └── perl-Module-Install-ReadmeFromPod.spec ├── perl-Module-Install-ReadmeMarkdownFromPod │ ├── perl-Module-Install-ReadmeMarkdownFromPod.signatures.json │ └── perl-Module-Install-ReadmeMarkdownFromPod.spec ├── perl-Module-Install-TestBase │ ├── perl-Module-Install-TestBase.signatures.json │ └── perl-Module-Install-TestBase.spec ├── perl-Module-Load-Util │ ├── perl-Module-Load-Util.signatures.json │ └── perl-Module-Load-Util.spec ├── perl-Module-Manifest-Skip │ ├── perl-Module-Manifest-Skip.signatures.json │ └── perl-Module-Manifest-Skip.spec ├── perl-Module-Manifest │ ├── perl-Module-Manifest.signatures.json │ └── perl-Module-Manifest.spec ├── perl-Module-Package-Au │ ├── perl-Module-Package-Au-no-bundle.patch │ ├── perl-Module-Package-Au.signatures.json │ └── perl-Module-Package-Au.spec ├── perl-Module-Package │ ├── Module-Package-0.30-Fix-building-on-Perl-without-.-in-INC.patch │ ├── perl-Module-Package.signatures.json │ └── perl-Module-Package.spec ├── perl-Module-Pluggable │ ├── perl-Module-Pluggable.signatures.json │ └── perl-Module-Pluggable.spec ├── perl-Module-Signature │ ├── perl-Module-Signature.signatures.json │ └── perl-Module-Signature.spec ├── perl-Mojolicious │ ├── perl-Mojolicious.signatures.json │ └── perl-Mojolicious.spec ├── perl-Mozilla-CA │ ├── Mozilla-CA-20240730-Redirect-to-ca-certificates-bundle.patch │ ├── perl-Mozilla-CA.signatures.json │ └── perl-Mozilla-CA.spec ├── perl-Mozilla-LDAP │ ├── Makefile.PL.rpm │ ├── perl-Mozilla-LDAP.signatures.json │ └── perl-Mozilla-LDAP.spec ├── perl-NNTPClient │ ├── NNTPClient-0.37-Perform-network-tests-only-if-EXTENDED_TESTING-1.patch │ ├── NNTPClient-0.37-Skip-tests-with-unportable-commands.patch │ ├── perl-NNTPClient.signatures.json │ └── perl-NNTPClient.spec ├── perl-Net-CIDR-Lite │ ├── perl-Net-CIDR-Lite.signatures.json │ └── perl-Net-CIDR-Lite.spec ├── perl-Net-DNS-Resolver-Mock │ ├── perl-Net-DNS-Resolver-Mock.signatures.json │ └── perl-Net-DNS-Resolver-Mock.spec ├── perl-Net-DNS-Resolver-Programmable │ ├── perl-Net-DNS-Resolver-Programmable.signatures.json │ └── perl-Net-DNS-Resolver-Programmable.spec ├── perl-Net-DNS │ ├── perl-Net-DNS.signatures.json │ └── perl-Net-DNS.spec ├── perl-Net-Daemon │ ├── perl-Net-Daemon.signatures.json │ └── perl-Net-Daemon.spec ├── perl-Net-IMAP-Simple-SSL │ ├── perl-Net-IMAP-Simple-SSL.signatures.json │ └── perl-Net-IMAP-Simple-SSL.spec ├── perl-Net-IMAP-Simple │ ├── perl-Net-IMAP-Simple.signatures.json │ └── perl-Net-IMAP-Simple.spec ├── perl-Net-IP │ ├── Net-IP-1.26-rt60439.patch │ ├── Net-IP-1.26-shellbang.patch │ ├── perl-Net-IP.signatures.json │ └── perl-Net-IP.spec ├── perl-Net-LibIDN2 │ ├── perl-Net-LibIDN2.signatures.json │ └── perl-Net-LibIDN2.spec ├── perl-Net-Patricia │ ├── Net-Patricia-1.22-Do-not-link-to-nsl-library.patch │ ├── perl-Net-Patricia.signatures.json │ └── perl-Net-Patricia.spec ├── perl-Net-SMTP-SSL │ ├── perl-Net-SMTP-SSL.signatures.json │ └── perl-Net-SMTP-SSL.spec ├── perl-Net-SNMP │ ├── perl-Net-SNMP.signatures.json │ └── perl-Net-SNMP.spec ├── perl-Net-Telnet │ ├── perl-Net-Telnet.signatures.json │ └── perl-Net-Telnet.spec ├── perl-Newt │ ├── newt-perl-1.08-debian.patch │ ├── newt-perl-1.08-fix.patch │ ├── newt-perl-1.08-lang.patch │ ├── newt-perl-1.08-typemap.patch │ ├── newt-perl-1.08-xs.patch │ ├── perl-Newt-1.08-export.patch │ ├── perl-Newt-1.08-formdestroy.patch │ ├── perl-Newt-1.08-pod.patch │ ├── perl-Newt-bz385751.patch │ ├── perl-Newt.signatures.json │ └── perl-Newt.spec ├── perl-Number-Compare │ ├── perl-Number-Compare.signatures.json │ └── perl-Number-Compare.spec ├── perl-Object-Deadly │ ├── perl-Object-Deadly.signatures.json │ └── perl-Object-Deadly.spec ├── perl-Object-HashBase │ ├── Object-HashBase-0.008-Normalize-shebang.patch │ ├── perl-Object-HashBase.signatures.json │ └── perl-Object-HashBase.spec ├── perl-PAR-Dist │ ├── perl-PAR-Dist.signatures.json │ └── perl-PAR-Dist.spec ├── perl-PPI-HTML │ ├── perl-PPI-HTML.signatures.json │ └── perl-PPI-HTML.spec ├── perl-PPI │ ├── perl-PPI.signatures.json │ └── perl-PPI.spec ├── perl-PPIx-QuoteLike │ ├── perl-PPIx-QuoteLike.signatures.json │ └── perl-PPIx-QuoteLike.spec ├── perl-PPIx-Regexp │ ├── perl-PPIx-Regexp.signatures.json │ └── perl-PPIx-Regexp.spec ├── perl-PPIx-Utilities │ ├── perl-PPIx-Utilities.signatures.json │ └── perl-PPIx-Utilities.spec ├── perl-Package-Anon │ ├── perl-Package-Anon.signatures.json │ └── perl-Package-Anon.spec ├── perl-Package-Constants │ ├── perl-Package-Constants.signatures.json │ └── perl-Package-Constants.spec ├── perl-Package-DeprecationManager │ ├── perl-Package-DeprecationManager.signatures.json │ └── perl-Package-DeprecationManager.spec ├── perl-Package-Stash-XS │ ├── perl-Package-Stash-XS.signatures.json │ └── perl-Package-Stash-XS.spec ├── perl-Package-Stash │ ├── perl-Package-Stash.signatures.json │ └── perl-Package-Stash.spec ├── perl-Paper-Specs │ ├── perl-Paper-Specs-0.10-fix_Avery_5393.patch │ ├── perl-Paper-Specs.signatures.json │ └── perl-Paper-Specs.spec ├── perl-Parallel-Iterator │ ├── perl-Parallel-Iterator.signatures.json │ └── perl-Parallel-Iterator.spec ├── perl-Params-Classify │ ├── perl-Params-Classify.signatures.json │ └── perl-Params-Classify.spec ├── perl-Params-Validate │ ├── perl-Params-Validate.signatures.json │ └── perl-Params-Validate.spec ├── perl-Params-ValidationCompiler │ ├── perl-Params-ValidationCompiler.signatures.json │ └── perl-Params-ValidationCompiler.spec ├── perl-Parse-RecDescent │ ├── Parse-RecDescent-1.967002-utf8.patch │ ├── perl-Parse-RecDescent.signatures.json │ └── perl-Parse-RecDescent.spec ├── perl-Parse-Yapp │ ├── perl-Parse-Yapp.signatures.json │ └── perl-Parse-Yapp.spec ├── perl-Path-Tiny │ ├── perl-Path-Tiny.signatures.json │ └── perl-Path-Tiny.spec ├── perl-Perl-Critic-More │ ├── perl-Perl-Critic-More.signatures.json │ └── perl-Perl-Critic-More.spec ├── perl-Perl-Critic │ ├── 0001-Change-default-spell-check-tool-from-aspell-to-hunsp.patch │ ├── Perl-Critic-1.136-ppidump-shellbang.patch │ ├── perl-Perl-Critic.signatures.json │ └── perl-Perl-Critic.spec ├── perl-Perl-MinimumVersion │ ├── perl-Perl-MinimumVersion.signatures.json │ └── perl-Perl-MinimumVersion.spec ├── perl-Perl4-CoreLibs │ ├── Perl4-CoreLibs-0.004-y2k20.patch │ ├── perl-Perl4-CoreLibs.signatures.json │ └── perl-Perl4-CoreLibs.spec ├── perl-PerlIO-gzip │ ├── perl-PerlIO-gzip.signatures.json │ └── perl-PerlIO-gzip.spec ├── perl-PerlIO-utf8_strict │ ├── perl-PerlIO-utf8_strict.signatures.json │ └── perl-PerlIO-utf8_strict.spec ├── perl-PkgConfig-LibPkgConf │ ├── perl-PkgConfig-LibPkgConf.signatures.json │ └── perl-PkgConfig-LibPkgConf.spec ├── perl-Pod-Coverage-TrustPod │ ├── perl-Pod-Coverage-TrustPod.signatures.json │ └── perl-Pod-Coverage-TrustPod.spec ├── perl-Pod-Escapes │ ├── perl-Pod-Escapes.signatures.json │ └── perl-Pod-Escapes.spec ├── perl-Pod-Eventual │ ├── perl-Pod-Eventual.signatures.json │ └── perl-Pod-Eventual.spec ├── perl-Pod-LaTeX │ ├── perl-Pod-LaTeX.signatures.json │ └── perl-Pod-LaTeX.spec ├── perl-Pod-Markdown │ ├── perl-Pod-Markdown.signatures.json │ └── perl-Pod-Markdown.spec ├── perl-Pod-POM │ ├── perl-Pod-POM.signatures.json │ └── perl-Pod-POM.spec ├── perl-Pod-Plainer │ ├── perl-Pod-Plainer.signatures.json │ └── perl-Pod-Plainer.spec ├── perl-Pod-Spell │ ├── perl-Pod-Spell.signatures.json │ └── perl-Pod-Spell.spec ├── perl-Probe-Perl │ ├── perl-Probe-Perl.signatures.json │ └── perl-Probe-Perl.spec ├── perl-Razor-Agent │ ├── perl-Razor-Agent-2.86-digest-sha.patch │ ├── perl-Razor-Agent-2.86-parallel-make.patch │ ├── perl-Razor-Agent.signatures.json │ └── perl-Razor-Agent.spec ├── perl-Readonly-XS │ ├── Readonly-XS-1.05-interpreter.patch │ ├── Readonly-XS-1.05-prereq.patch │ ├── perl-Readonly-XS.signatures.json │ └── perl-Readonly-XS.spec ├── perl-Readonly │ ├── Readonly-2.05-interpreter.patch │ ├── perl-Readonly.signatures.json │ └── perl-Readonly.spec ├── perl-Ref-Util-XS │ ├── perl-Ref-Util-XS.signatures.json │ └── perl-Ref-Util-XS.spec ├── perl-Ref-Util │ ├── perl-Ref-Util.signatures.json │ └── perl-Ref-Util.spec ├── perl-Regexp-Pattern-Perl │ ├── perl-Regexp-Pattern-Perl.signatures.json │ └── perl-Regexp-Pattern-Perl.spec ├── perl-Return-MultiLevel │ ├── perl-Return-MultiLevel.signatures.json │ └── perl-Return-MultiLevel.spec ├── perl-SGMLSpm │ ├── perl-SGMLSpm.signatures.json │ └── perl-SGMLSpm.spec ├── perl-SNMP_Session │ ├── SNMP_Session-1.13-fix_ivp6.patch │ ├── perl-SNMP_Session.signatures.json │ └── perl-SNMP_Session.spec ├── perl-Scope-Guard │ ├── perl-Scope-Guard.signatures.json │ └── perl-Scope-Guard.spec ├── perl-Scope-Upper │ ├── perl-Scope-Upper.signatures.json │ └── perl-Scope-Upper.spec ├── perl-Socket6 │ ├── perl-Socket6.signatures.json │ └── perl-Socket6.spec ├── perl-Software-License │ ├── perl-Software-License.signatures.json │ └── perl-Software-License.spec ├── perl-Sort-Versions │ ├── perl-Sort-Versions.signatures.json │ └── perl-Sort-Versions.spec ├── perl-Specio │ ├── perl-Specio.signatures.json │ └── perl-Specio.spec ├── perl-Spiffy │ ├── perl-Spiffy.signatures.json │ └── perl-Spiffy.spec ├── perl-String-CRC32 │ ├── perl-String-CRC32.signatures.json │ └── perl-String-CRC32.spec ├── perl-String-Format │ ├── perl-String-Format.signatures.json │ └── perl-String-Format.spec ├── perl-String-Similarity │ ├── perl-String-Similarity.signatures.json │ └── perl-String-Similarity.spec ├── perl-Sub-Info │ ├── perl-Sub-Info.signatures.json │ └── perl-Sub-Info.spec ├── perl-Sub-Uplevel │ ├── perl-Sub-Uplevel.signatures.json │ └── perl-Sub-Uplevel.spec ├── perl-Switch │ ├── Switch-2.17-Filter-1.50.patch │ ├── perl-Switch.signatures.json │ └── perl-Switch.spec ├── perl-Syntax-Highlight-Engine-Kate │ ├── perl-Syntax-Highlight-Engine-Kate.signatures.json │ └── perl-Syntax-Highlight-Engine-Kate.spec ├── perl-Sys-CPU │ ├── Sys-CPU-0.61-Add-support-for-cpu_type-on-ARM-and-AArch64-Linux-pl.patch │ ├── Sys-CPU-0.61-cpu_clock-can-be-undefined-on-an-ARM.patch │ ├── perl-Sys-CPU.signatures.json │ └── perl-Sys-CPU.spec ├── perl-Sys-MemInfo │ ├── perl-Sys-MemInfo.signatures.json │ └── perl-Sys-MemInfo.spec ├── perl-Taint-Runtime │ ├── perl-Taint-Runtime.signatures.json │ └── perl-Taint-Runtime.spec ├── perl-Task-Weaken │ ├── perl-Task-Weaken.signatures.json │ └── perl-Task-Weaken.spec ├── perl-Term-Size-Any │ ├── perl-Term-Size-Any.signatures.json │ └── perl-Term-Size-Any.spec ├── perl-Term-Size-Perl │ ├── perl-Term-Size-Perl.signatures.json │ └── perl-Term-Size-Perl.spec ├── perl-Term-Table │ ├── Term-Table-0.015-Use-system-Object-HashBase.patch │ ├── perl-Term-Table.signatures.json │ └── perl-Term-Table.spec ├── perl-Term-UI │ ├── perl-Term-UI.signatures.json │ └── perl-Term-UI.spec ├── perl-TermReadKey │ ├── perl-TermReadKey.signatures.json │ └── perl-TermReadKey.spec ├── perl-Test-Base │ ├── perl-Test-Base.signatures.json │ └── perl-Test-Base.spec ├── perl-Test-CPAN-Meta-JSON │ ├── Test-CPAN-Meta-JSON-0.16-utf8.patch │ ├── perl-Test-CPAN-Meta-JSON.signatures.json │ └── perl-Test-CPAN-Meta-JSON.spec ├── perl-Test-CPAN-Meta │ ├── Test-CPAN-Meta-0.25-utf8.patch │ ├── perl-Test-CPAN-Meta.signatures.json │ └── perl-Test-CPAN-Meta.spec ├── perl-Test-ClassAPI │ ├── perl-Test-ClassAPI.signatures.json │ └── perl-Test-ClassAPI.spec ├── perl-Test-Differences │ ├── perl-Test-Differences.signatures.json │ └── perl-Test-Differences.spec ├── perl-Test-DistManifest │ ├── perl-Test-DistManifest.signatures.json │ └── perl-Test-DistManifest.spec ├── perl-Test-Distribution │ ├── Test-Distribution-2.00-utf8.patch │ ├── perl-Test-Distribution.signatures.json │ └── perl-Test-Distribution.spec ├── perl-Test-EOL │ ├── perl-Test-EOL.signatures.json │ └── perl-Test-EOL.spec ├── perl-Test-Exception │ ├── perl-Test-Exception.signatures.json │ └── perl-Test-Exception.spec ├── perl-Test-Exit │ ├── perl-Test-Exit.signatures.json │ └── perl-Test-Exit.spec ├── perl-Test-FailWarnings │ ├── perl-Test-FailWarnings.signatures.json │ └── perl-Test-FailWarnings.spec ├── perl-Test-File-ShareDir │ ├── perl-Test-File-ShareDir.signatures.json │ └── perl-Test-File-ShareDir.spec ├── perl-Test-File │ ├── perl-Test-File.signatures.json │ └── perl-Test-File.spec ├── perl-Test-HasVersion │ ├── perl-Test-HasVersion.signatures.json │ └── perl-Test-HasVersion.spec ├── perl-Test-InDistDir │ ├── perl-Test-InDistDir.signatures.json │ └── perl-Test-InDistDir.spec ├── perl-Test-Inter │ ├── Test-Inter-1.09-Do-not-require-release-test-dependencies.patch │ ├── perl-Test-Inter.signatures.json │ └── perl-Test-Inter.spec ├── perl-Test-LongString │ ├── perl-Test-LongString.signatures.json │ └── perl-Test-LongString.spec ├── perl-Test-Manifest │ ├── perl-Test-Manifest.signatures.json │ └── perl-Test-Manifest.spec ├── perl-Test-MinimumVersion │ ├── perl-Test-MinimumVersion.signatures.json │ └── perl-Test-MinimumVersion.spec ├── perl-Test-MockObject │ ├── perl-Test-MockObject.signatures.json │ └── perl-Test-MockObject.spec ├── perl-Test-MockRandom │ ├── perl-Test-MockRandom.signatures.json │ └── perl-Test-MockRandom.spec ├── perl-Test-NoTabs │ ├── perl-Test-NoTabs.signatures.json │ └── perl-Test-NoTabs.spec ├── perl-Test-Object │ ├── perl-Test-Object.signatures.json │ └── perl-Test-Object.spec ├── perl-Test-Portability-Files │ ├── perl-Test-Portability-Files.signatures.json │ └── perl-Test-Portability-Files.spec ├── perl-Test-RequiresInternet │ ├── perl-Test-RequiresInternet.signatures.json │ └── perl-Test-RequiresInternet.spec ├── perl-Test-Script │ ├── perl-Test-Script.signatures.json │ └── perl-Test-Script.spec ├── perl-Test-Simple │ ├── Test-Simple-1.302200-add_perl.patch │ ├── perl-Test-Simple.signatures.json │ └── perl-Test-Simple.spec ├── perl-Test-SubCalls │ ├── perl-Test-SubCalls.signatures.json │ └── perl-Test-SubCalls.spec ├── perl-Test-Synopsis │ ├── perl-Test-Synopsis.signatures.json │ └── perl-Test-Synopsis.spec ├── perl-Test-TrailingSpace │ ├── perl-Test-TrailingSpace.signatures.json │ └── perl-Test-TrailingSpace.spec ├── perl-Test-Vars │ ├── perl-Test-Vars.signatures.json │ └── perl-Test-Vars.spec ├── perl-Test-Warn │ ├── perl-Test-Warn.signatures.json │ └── perl-Test-Warn.spec ├── perl-Test-utf8 │ ├── LICENSE.PTR │ ├── Test-utf8-1.02-Do-no-regenerate-README.patch │ ├── Test-utf8-1.02-Drop-useless-build-time-dependencies.patch │ ├── perl-Test-utf8.signatures.json │ └── perl-Test-utf8.spec ├── perl-Test2-Plugin-NoWarnings │ ├── perl-Test2-Plugin-NoWarnings.signatures.json │ └── perl-Test2-Plugin-NoWarnings.spec ├── perl-Test2-Suite │ ├── perl-Test2-Suite.signatures.json │ └── perl-Test2-Suite.spec ├── perl-Test2-Tools-Explain │ ├── perl-Test2-Tools-Explain.signatures.json │ └── perl-Test2-Tools-Explain.spec ├── perl-Text-CSV_XS │ ├── perl-Text-CSV_XS.signatures.json │ └── perl-Text-CSV_XS.spec ├── perl-Text-CharWidth │ ├── perl-Text-CharWidth.signatures.json │ └── perl-Text-CharWidth.spec ├── perl-Text-Diff │ ├── perl-Text-Diff.signatures.json │ └── perl-Text-Diff.spec ├── perl-Text-Glob │ ├── perl-Text-Glob.signatures.json │ └── perl-Text-Glob.spec ├── perl-Text-Iconv │ ├── perl-Text-Iconv.signatures.json │ └── perl-Text-Iconv.spec ├── perl-Text-Soundex │ ├── perl-Text-Soundex.signatures.json │ └── perl-Text-Soundex.spec ├── perl-Text-Unidecode │ ├── perl-Text-Unidecode.signatures.json │ └── perl-Text-Unidecode.spec ├── perl-Text-WrapI18N │ ├── perl-Text-WrapI18N.signatures.json │ └── perl-Text-WrapI18N.spec ├── perl-Tie-IxHash │ ├── perl-Tie-IxHash.signatures.json │ └── perl-Tie-IxHash.spec ├── perl-Tree-DAG_Node │ ├── perl-Tree-DAG_Node.signatures.json │ └── perl-Tree-DAG_Node.spec ├── perl-UNIVERSAL-can │ ├── perl-UNIVERSAL-can.signatures.json │ └── perl-UNIVERSAL-can.spec ├── perl-UNIVERSAL-isa │ ├── perl-UNIVERSAL-isa.signatures.json │ └── perl-UNIVERSAL-isa.spec ├── perl-Unicode-EastAsianWidth │ ├── perl-Unicode-EastAsianWidth-no-inc.patch │ ├── perl-Unicode-EastAsianWidth.signatures.json │ └── perl-Unicode-EastAsianWidth.spec ├── perl-Unicode-LineBreak │ ├── perl-Unicode-LineBreak.signatures.json │ └── perl-Unicode-LineBreak.spec ├── perl-Unicode-Map8 │ ├── perl-Unicode-Map8-0.12-declaration.patch │ ├── perl-Unicode-Map8-0.12-type.patch │ ├── perl-Unicode-Map8-0.13-recode.patch │ ├── perl-Unicode-Map8.signatures.json │ └── perl-Unicode-Map8.spec ├── perl-Unicode-String │ ├── perl-Unicode-String-2.09-utf8doc.patch │ ├── perl-Unicode-String.signatures.json │ └── perl-Unicode-String.spec ├── perl-Unicode-UTF8 │ ├── perl-Unicode-UTF8.signatures.json │ └── perl-Unicode-UTF8.spec ├── perl-Unix-Syslog │ ├── perl-Unix-Syslog.signatures.json │ └── perl-Unix-Syslog.spec ├── perl-Variable-Magic │ ├── perl-Variable-Magic.signatures.json │ └── perl-Variable-Magic.spec ├── perl-Version-Requirements │ ├── perl-Version-Requirements.signatures.json │ └── perl-Version-Requirements.spec ├── perl-XML-Catalog │ ├── perl-XML-Catalog.signatures.json │ └── perl-XML-Catalog.spec ├── perl-XML-DOM │ ├── perl-XML-DOM.signatures.json │ └── perl-XML-DOM.spec ├── perl-XML-Dumper │ ├── perl-XML-Dumper.signatures.json │ └── perl-XML-Dumper.spec ├── perl-XML-Filter-BufferText │ ├── perl-XML-Filter-BufferText.signatures.json │ └── perl-XML-Filter-BufferText.spec ├── perl-XML-Generator │ ├── perl-XML-Generator.signatures.json │ └── perl-XML-Generator.spec ├── perl-XML-Grove │ ├── perl-XML-Grove-fix-COPYING.patch │ ├── perl-XML-Grove-test.patch │ ├── perl-XML-Grove.signatures.json │ └── perl-XML-Grove.spec ├── perl-XML-Handler-YAWriter │ ├── perl-XML-Handler-YAWriter-0.23-fix-POD-encoding.patch │ ├── perl-XML-Handler-YAWriter.signatures.json │ └── perl-XML-Handler-YAWriter.spec ├── perl-XML-LibXSLT │ ├── perl-XML-LibXSLT.signatures.json │ └── perl-XML-LibXSLT.spec ├── perl-XML-Parser-Lite │ ├── perl-XML-Parser-Lite.signatures.json │ └── perl-XML-Parser-Lite.spec ├── perl-XML-RegExp │ ├── perl-XML-RegExp.signatures.json │ └── perl-XML-RegExp.spec ├── perl-XML-SAX-Writer │ ├── perl-XML-SAX-Writer.signatures.json │ └── perl-XML-SAX-Writer.spec ├── perl-XML-Simple │ ├── perl-XML-Simple.signatures.json │ └── perl-XML-Simple.spec ├── perl-XML-TokeParser │ ├── perl-XML-TokeParser.signatures.json │ └── perl-XML-TokeParser.spec ├── perl-XML-TreeBuilder │ ├── perl-XML-TreeBuilder.signatures.json │ └── perl-XML-TreeBuilder.spec ├── perl-XML-Twig │ ├── perl-XML-Twig.signatures.json │ └── perl-XML-Twig.spec ├── perl-XML-Writer │ ├── perl-XML-Writer.signatures.json │ └── perl-XML-Writer.spec ├── perl-XML-XPathEngine │ ├── perl-XML-XPathEngine.signatures.json │ └── perl-XML-XPathEngine.spec ├── perl-XString │ ├── perl-XString.signatures.json │ └── perl-XString.spec ├── perl-YAML-LibYAML │ ├── YAML-LibYAML-0.79-Unbundled-libyaml.patch │ ├── perl-YAML-LibYAML.signatures.json │ └── perl-YAML-LibYAML.spec ├── perl-YAML-PP │ ├── perl-YAML-PP.signatures.json │ └── perl-YAML-PP.spec ├── perl-YAML-Syck │ ├── perl-YAML-Syck.signatures.json │ └── perl-YAML-Syck.spec ├── perl-boolean │ ├── perl-boolean.signatures.json │ └── perl-boolean.spec ├── perl-gettext │ ├── perl-gettext.signatures.json │ └── perl-gettext.spec ├── perl-inc-latest │ ├── perl-inc-latest.signatures.json │ └── perl-inc-latest.spec ├── perl-libnet │ ├── libnet-3.08-Do-not-create-Net-libnet.cfg.patch │ ├── libnet-3.09-Normalize-Changes-encoding.patch │ ├── libnetFAQ.pod │ ├── perl-libnet.signatures.json │ ├── perl-libnet.spec │ └── repackage.sh ├── perl-libxml-perl │ ├── perl-libxml-perl.signatures.json │ └── perl-libxml-perl.spec ├── perl-namespace-autoclean │ ├── perl-namespace-autoclean.signatures.json │ └── perl-namespace-autoclean.spec ├── perl-namespace-clean │ ├── perl-namespace-clean.signatures.json │ └── perl-namespace-clean.spec ├── perl-prefork │ ├── perl-prefork.signatures.json │ └── perl-prefork.spec ├── perltidy │ ├── perltidy.signatures.json │ └── perltidy.spec ├── phodav │ ├── phodav.signatures.json │ └── phodav.spec ├── physfs │ ├── physfs.signatures.json │ └── physfs.spec ├── pinfo │ ├── pinfo-0.6.10-gcc10.patch │ ├── pinfo-0.6.10-man.patch │ ├── pinfo-0.6.9-as-needed.patch │ ├── pinfo-0.6.9-infopath.patch │ ├── pinfo-0.6.9-infosuff.patch │ ├── pinfo-0.6.9-mansection.patch │ ├── pinfo-0.6.9-nogroup.patch │ ├── pinfo-0.6.9-xdg.patch │ ├── pinfo.signatures.json │ └── pinfo.spec ├── pipewire │ ├── 0001-Build-media-session-from-local-tarbal.patch │ ├── pipewire.signatures.json │ └── pipewire.spec ├── pkcs11-helper │ ├── pkcs11-helper-rfc7512.patch │ ├── pkcs11-helper.signatures.json │ └── pkcs11-helper.spec ├── plexus-pom │ ├── LICENSE-2.0.txt │ ├── plexus-pom.signatures.json │ └── plexus-pom.spec ├── plotutils │ ├── plotutils-2.6-png15.patch │ ├── plotutils-aarch64.patch │ ├── plotutils-werror-format-security.patch │ ├── plotutils.signatures.json │ └── plotutils.spec ├── pmdk-convert │ ├── pmdk-convert.signatures.json │ └── pmdk-convert.spec ├── pngcrush │ ├── pngcrush.sgml │ ├── pngcrush.signatures.json │ └── pngcrush.spec ├── pngnq │ ├── pngnq-libpng15.patch │ ├── pngnq.signatures.json │ └── pngnq.spec ├── po4a │ ├── po4a.signatures.json │ └── po4a.spec ├── podman │ ├── 0001-Run-selective-tests.patch │ ├── podman.signatures.json │ └── podman.spec ├── polkit-pkla-compat │ ├── polkit-pkla-compat.signatures.json │ └── polkit-pkla-compat.spec ├── portreserve │ ├── portreserve-pid-file.patch │ ├── portreserve.service │ ├── portreserve.signatures.json │ └── portreserve.spec ├── potrace │ ├── potrace.pdf │ ├── potrace.signatures.json │ ├── potrace.spec │ └── potracelib.pdf ├── powertop │ ├── 0001-ncurses.patch │ ├── powertop-2.7-always-create-params.patch │ ├── powertop.service │ ├── powertop.signatures.json │ └── powertop.spec ├── ppp │ ├── ip-down │ ├── ip-down.ipv6to4 │ ├── ip-up │ ├── ip-up.ipv6to4 │ ├── ipv6-down │ ├── ipv6-down.initscripts │ ├── ipv6-up │ ├── ipv6-up.initscripts │ ├── ppp-2.5.0-radiusclient-parser-fix.patch │ ├── ppp-2.5.0-use-change-resolv-function.patch │ ├── ppp-logrotate.conf │ ├── ppp-pam.conf │ ├── ppp-tmpfiles.conf │ ├── ppp.signatures.json │ └── ppp.spec ├── pps-tools │ ├── pps-tools.signatures.json │ └── pps-tools.spec ├── pptp │ ├── pptp-tmpfs.conf │ ├── pptp.signatures.json │ └── pptp.spec ├── procmail │ ├── procmail-3.15.1-man.patch │ ├── procmail-3.22-CVE-2014-3618.patch │ ├── procmail-3.22-CVE-2017-16844.patch │ ├── procmail-3.22-coverity-scan-fixes.patch │ ├── procmail-3.22-crash-fix.patch │ ├── procmail-3.22-getline.patch │ ├── procmail-3.22-ipv6.patch │ ├── procmail-3.22-rhconfig.patch │ ├── procmail-3.22-truncate.patch │ ├── procmail-3.24-coverity-scan-fixes.patch │ ├── procmail-3.24-gcc-14-fix.patch │ ├── procmail-3.24-ipv6.patch │ ├── procmail-3.24-rhconfig.patch │ ├── procmail.signatures.json │ ├── procmail.spec │ ├── procmail_3.22-8.debian.patch │ └── procmailrc ├── proj │ ├── proj.signatures.json │ └── proj.spec ├── ps_mem │ ├── lgpl-2.1.txt │ ├── ps_mem.1 │ ├── ps_mem.py │ ├── ps_mem.signatures.json │ └── ps_mem.spec ├── psacct │ ├── accton-create │ ├── psacct-6.6.1-SEGV-when-record-incomplete.patch │ ├── psacct-6.6.2-unnumberedsubsubsec.patch │ ├── psacct-6.6.4-lastcomm-manpage-pid-twice.patch │ ├── psacct-logrotate.in │ ├── psacct.service │ ├── psacct.signatures.json │ └── psacct.spec ├── psl-make-dafsa │ ├── psl-make-dafsa.signatures.json │ └── psl-make-dafsa.spec ├── psutils │ ├── psutils-paperconf.patch │ ├── psutils.signatures.json │ └── psutils.spec ├── ptlib │ ├── ptlib-2.10.10-mga-bison-parameter.patch │ ├── ptlib-2.10.11-make43.patch │ ├── ptlib-2.10.11-openssl11.patch │ ├── ptlib-2.10.11-signed_int_overflow.patch │ ├── ptlib-gcc5.patch │ ├── ptlib-gcc8.patch │ ├── ptlib-pkgconf-no-ldflags.patch │ ├── ptlib.signatures.json │ └── ptlib.spec ├── publicsuffix-list │ ├── index.txt │ ├── public_suffix_list.dat │ ├── publicsuffix-list.signatures.json │ ├── publicsuffix-list.spec │ └── test_psl.txt ├── publicsuffix │ ├── publicsuffix.signatures.json │ └── publicsuffix.spec ├── pulseaudio │ ├── pulseaudio-11.1-autospawn_disable.patch │ ├── pulseaudio-autostart.patch │ ├── pulseaudio.signatures.json │ └── pulseaudio.spec ├── puppet │ ├── logrotate │ ├── puppet-nm-dispatcher.systemd │ ├── puppet.signatures.json │ ├── puppet.spec │ └── start-puppet-wrapper ├── pyatspi │ ├── pyatspi.signatures.json │ └── pyatspi.spec ├── pykickstart │ ├── pykickstart.signatures.json │ └── pykickstart.spec ├── pylint │ ├── pep639.patch │ ├── pylint.signatures.json │ └── pylint.spec ├── pyparted │ ├── keyring.gpg │ ├── pyparted-3.11.4.tar.gz.asc │ ├── pyparted-3.13.0.tar.gz.asc │ ├── pyparted.signatures.json │ ├── pyparted.spec │ └── trustdb.gpg ├── pyserial │ ├── pyserial.signatures.json │ └── pyserial.spec ├── python-CommonMark │ ├── python-CommonMark.signatures.json │ └── python-CommonMark.spec ├── python-IPy │ ├── python-IPy.signatures.json │ └── python-IPy.spec ├── python-PyMySQL │ ├── python-PyMySQL.signatures.json │ └── python-PyMySQL.spec ├── python-aiodns │ ├── python-aiodns.signatures.json │ └── python-aiodns.spec ├── python-aiohttp │ ├── python-aiohttp.signatures.json │ ├── python-aiohttp.spec │ └── unbundle-http-parser.patch ├── python-alsa │ ├── python-alsa-LICENSE.txt │ ├── python-alsa.signatures.json │ └── python-alsa.spec ├── python-argcomplete │ ├── python-argcomplete.signatures.json │ └── python-argcomplete.spec ├── python-argparse-manpage │ ├── 0001-Fix-setuptools-v60.patch │ ├── python-argparse-manpage.signatures.json │ └── python-argparse-manpage.spec ├── python-astroid │ ├── python-astroid.signatures.json │ └── python-astroid.spec ├── python-augeas │ ├── python-augeas-test-package-installation.patch │ ├── python-augeas.signatures.json │ └── python-augeas.spec ├── python-azure-sdk │ ├── python-azure-sdk-5.0.0-requirements.patch │ ├── python-azure-sdk-5.0.0-tests.patch │ ├── python-azure-sdk.signatures.json │ └── python-azure-sdk.spec ├── python-beautifulsoup4 │ ├── python-beautifulsoup4.signatures.json │ ├── python-beautifulsoup4.spec │ └── soupsieve26.patch ├── python-betamax │ ├── python-betamax.signatures.json │ └── python-betamax.spec ├── python-blivet │ ├── python-blivet.signatures.json │ └── python-blivet.spec ├── python-breathe │ ├── 956.patch │ ├── 964.patch │ ├── breathe-4.35.0.tar.gz.sig │ ├── python-breathe.signatures.json │ ├── python-breathe.spec │ └── vermware.key ├── python-cbor2 │ ├── python-cbor2.signatures.json │ └── python-cbor2.spec ├── python-cheetah │ ├── cheetah3-3.2.6.post1-framelocalsproxy.patch │ ├── cheetah3-3.2.6.post1-loadTestsFromModule.patch │ ├── cheetah3-3.2.6.post1-parse_qs.patch │ ├── cheetah3-3.2.6.post1-protect-cgi.patch │ ├── cheetah3-3.2.6.post1-typeerror.patch │ ├── python-cheetah.signatures.json │ ├── python-cheetah.spec │ └── tox-no-basepython.patch ├── python-cmd2 │ ├── python-cmd2.signatures.json │ └── python-cmd2.spec ├── python-colorama │ ├── python-colorama.signatures.json │ └── python-colorama.spec ├── python-configshell │ ├── python-configshell.signatures.json │ └── python-configshell.spec ├── python-cups │ ├── python-cups.signatures.json │ └── python-cups.spec ├── python-curio │ ├── python-curio.signatures.json │ └── python-curio.spec ├── python-d2to1 │ ├── python-d2to1.signatures.json │ └── python-d2to1.spec ├── python-dbus-client-gen │ ├── python-dbus-client-gen.signatures.json │ └── python-dbus-client-gen.spec ├── python-dbus-python-client-gen │ ├── python-dbus-python-client-gen.signatures.json │ └── python-dbus-python-client-gen.spec ├── python-dbus-signature-pyparsing │ ├── python-dbus-signature-pyparsing.signatures.json │ └── python-dbus-signature-pyparsing.spec ├── python-dbusmock │ ├── python-dbusmock.signatures.json │ └── python-dbusmock.spec ├── python-ddt │ ├── python-ddt.signatures.json │ └── python-ddt.spec ├── python-debtcollector │ ├── python-debtcollector.signatures.json │ └── python-debtcollector.spec ├── python-dmidecode │ ├── python-dmidecode-rhbz2154949.patch │ ├── python-dmidecode.signatures.json │ └── python-dmidecode.spec ├── python-dns │ ├── SOURCES │ │ └── 0001-fix-resolve-chaining.patch │ ├── python-dns.signatures.json │ └── python-dns.spec ├── python-dtopt │ ├── python-dtopt.signatures.json │ └── python-dtopt.spec ├── python-dulwich │ ├── python-dulwich.signatures.json │ └── python-dulwich.spec ├── python-enchant │ ├── python-enchant.signatures.json │ └── python-enchant.spec ├── python-entrypoints │ ├── python-entrypoints.signatures.json │ └── python-entrypoints.spec ├── python-extras │ ├── python-extras.signatures.json │ └── python-extras.spec ├── python-faker │ ├── python-faker.signatures.json │ └── python-faker.spec ├── python-fasteners │ ├── 80a3eaed75276faf21034e7e6c626fd19485ea39.patch │ ├── python-fasteners.signatures.json │ └── python-fasteners.spec ├── python-fixtures │ ├── python-fixtures.signatures.json │ └── python-fixtures.spec ├── python-flake8 │ ├── python-flake8.signatures.json │ └── python-flake8.spec ├── python-flaky │ ├── python-flaky.signatures.json │ └── python-flaky.spec ├── python-flask │ ├── python-flask.signatures.json │ └── python-flask.spec ├── python-fluidity-sm │ ├── python-fluidity-sm.signatures.json │ └── python-fluidity-sm.spec ├── python-funcsigs │ ├── no-unittest2.patch │ ├── python-funcsigs.signatures.json │ └── python-funcsigs.spec ├── python-genshi │ ├── python-genshi.signatures.json │ └── python-genshi.spec ├── python-geomet │ ├── python-geomet.signatures.json │ └── python-geomet.spec ├── python-gssapi │ ├── python-gssapi.signatures.json │ └── python-gssapi.spec ├── python-hs-dbus-signature │ ├── python-hs-dbus-signature.signatures.json │ └── python-hs-dbus-signature.spec ├── python-httplib2 │ ├── python-httplib2.certfile.patch │ ├── python-httplib2.signatures.json │ └── python-httplib2.spec ├── python-humanize │ ├── python-humanize.signatures.json │ └── python-humanize.spec ├── python-hwdata │ ├── python-hwdata.signatures.json │ └── python-hwdata.spec ├── python-inotify │ ├── pyinotify-0.9.6-epoint.patch │ ├── python-inotify.signatures.json │ └── python-inotify.spec ├── python-into-dbus-python │ ├── python-into-dbus-python.signatures.json │ └── python-into-dbus-python.spec ├── python-iso8601 │ ├── python-iso8601.signatures.json │ └── python-iso8601.spec ├── python-isodate │ ├── python-isodate-LICENSE.txt │ ├── python-isodate.signatures.json │ └── python-isodate.spec ├── python-isort │ ├── python-isort.signatures.json │ └── python-isort.spec ├── python-itsdangerous │ ├── python-itsdangerous.signatures.json │ └── python-itsdangerous.spec ├── python-justbases │ ├── python-justbases.signatures.json │ └── python-justbases.spec ├── python-justbytes │ ├── python-justbytes.signatures.json │ └── python-justbytes.spec ├── python-jwcrypto │ ├── python-jwcrypto.signatures.json │ └── python-jwcrypto.spec ├── python-kdcproxy │ ├── Drop-coverage-from-tests.patch │ ├── python-kdcproxy.signatures.json │ └── python-kdcproxy.spec ├── python-kerberos │ ├── LICENSE │ ├── python-kerberos.signatures.json │ └── python-kerberos.spec ├── python-kmod │ ├── python-kmod.signatures.json │ └── python-kmod.spec ├── python-lazy-object-proxy │ ├── python-lazy-object-proxy.signatures.json │ ├── python-lazy-object-proxy.spec │ └── scm-deversion.patch ├── python-ldap │ ├── python-ldap.signatures.json │ └── python-ldap.spec ├── python-lit │ ├── python-lit-LICENSE.txt │ ├── python-lit.signatures.json │ └── python-lit.spec ├── python-mccabe │ ├── python-mccabe.signatures.json │ └── python-mccabe.spec ├── python-memcached │ ├── python-memcached.signatures.json │ └── python-memcached.spec ├── python-mimeparse │ ├── python-mimeparse.signatures.json │ └── python-mimeparse.spec ├── python-monotonic │ ├── python-monotonic.signatures.json │ └── python-monotonic.spec ├── python-msal │ ├── python-msal.signatures.json │ └── python-msal.spec ├── python-msrestazure │ ├── python-msrestazure.signatures.json │ └── python-msrestazure.spec ├── python-mutagen │ ├── python-mutagen.signatures.json │ └── python-mutagen.spec ├── python-ntlm-auth │ ├── python-ntlm-auth.signatures.json │ └── python-ntlm-auth.spec ├── python-oauth2client │ ├── doc-fix.patch │ ├── docs-build-fix.patch │ ├── keyring-remove.patch │ ├── python-oauth2client.signatures.json │ └── python-oauth2client.spec ├── python-openstackdocstheme │ ├── 0001-Remove-all-Google-Analytics-tracking.patch │ ├── python-openstackdocstheme.signatures.json │ └── python-openstackdocstheme.spec ├── python-oslo-i18n │ ├── python-oslo-i18n.signatures.json │ └── python-oslo-i18n.spec ├── python-oslo-sphinx │ ├── python-oslo-sphinx.signatures.json │ ├── python-oslo-sphinx.spec │ └── sphnix-app-info.diff ├── python-paramiko │ ├── 0003-remove-pytest-relaxed-dep.patch │ ├── 0004-remove-mock-dep.patch │ ├── python-paramiko.signatures.json │ └── python-paramiko.spec ├── python-podman-api │ ├── python-podman-api.signatures.json │ └── python-podman-api.spec ├── python-productmd │ ├── python-productmd.signatures.json │ └── python-productmd.spec ├── python-pydbus │ ├── 0001-make-direction-attribute-conforming-to-introspect.dt.patch │ ├── 0002-Support-asynchronous-calls-58.patch │ ├── 0003-Support-transformation-between-D-Bus-errors-and-exce.patch │ ├── python-pydbus.signatures.json │ └── python-pydbus.spec ├── python-pymongo │ ├── python-pymongo.signatures.json │ └── python-pymongo.spec ├── python-pyperclip │ ├── python-pyperclip-LICENSE.txt │ ├── python-pyperclip.signatures.json │ └── python-pyperclip.spec ├── python-pyproject-api │ ├── python-pyproject-api.signatures.json │ └── python-pyproject-api.spec ├── python-pyrsistent │ ├── SOURCES │ │ └── 00-relax-dependencies.patch │ ├── python-pyrsistent.signatures.json │ └── python-pyrsistent.spec ├── python-pytest-flake8 │ ├── python-pytest-flake8.signatures.json │ └── python-pytest-flake8.spec ├── python-pytest-relaxed │ ├── python-pytest-relaxed.signatures.json │ └── python-pytest-relaxed.spec ├── python-pytest-runner │ ├── python-pytest-runner.signatures.json │ └── python-pytest-runner.spec ├── python-pytest-subtests │ ├── python-pytest-subtests.signatures.json │ └── python-pytest-subtests.spec ├── python-pytest-timeout │ ├── python-pytest-timeout.signatures.json │ └── python-pytest-timeout.spec ├── python-pytoml │ ├── python-pytoml.signatures.json │ └── python-pytoml.spec ├── python-qrcode │ ├── python-qrcode.signatures.json │ ├── python-qrcode.spec │ ├── qrcode-optional-pypng.patch │ ├── qrcode_assert-has-calls.patch │ └── qrcode_test.patch ├── python-rdflib │ ├── python-rdflib.signatures.json │ ├── python-rdflib.spec │ ├── rdflib-7.0.0-pytest8.patch │ └── rdflib-py3_13-fix-pickler.diff ├── python-recommonmark │ ├── python-recommonmark.signatures.json │ └── python-recommonmark.spec ├── python-requests-file │ ├── python-requests-file.signatures.json │ └── python-requests-file.spec ├── python-requests-ftp │ ├── PR28-01-Adding-2-tests-and-updated-statud_code-build.patch │ ├── PR28-02-Adding-code-3-to-retr4ieve-status_code.patch │ ├── PR28-03-fix-warning-in-interpreting-ftp-status-codes-minor-d.patch │ ├── PR28-05-Improve-logging-in-status-code-extraction.patch │ ├── python-requests-ftp.signatures.json │ └── python-requests-ftp.spec ├── python-requests-kerberos │ ├── python-requests-kerberos.signatures.json │ └── python-requests-kerberos.spec ├── python-requests-mock │ ├── 0001-tox-add-py39-environment.patch │ ├── 0002-Use-system-urllib3-package.patch │ ├── 0003-Allow-skipping-purl-tests-if-it-is-not-present.patch │ ├── python-requests-mock.signatures.json │ └── python-requests-mock.spec ├── python-requests-toolbelt │ ├── python-requests-toolbelt.signatures.json │ └── python-requests-toolbelt.spec ├── python-requests_ntlm │ ├── python-requests_ntlm.signatures.json │ └── python-requests_ntlm.spec ├── python-rfc3986 │ ├── python-rfc3986.signatures.json │ └── python-rfc3986.spec ├── python-rpmfluff │ ├── python-rpmfluff.signatures.json │ └── python-rpmfluff.spec ├── python-rtslib │ ├── 0001-disable-xen_pvscsi.patch │ ├── python-rtslib.signatures.json │ ├── python-rtslib.spec │ └── target.service ├── python-s3transfer │ ├── python-s3transfer.signatures.json │ └── python-s3transfer.spec ├── python-semantic_version │ ├── python-semantic_version.signatures.json │ └── python-semantic_version.spec ├── python-should_dsl │ ├── python-should_dsl.signatures.json │ └── python-should_dsl.spec ├── python-simpleline │ ├── python-simpleline.signatures.json │ └── python-simpleline.spec ├── python-slip │ ├── python-slip.signatures.json │ └── python-slip.spec ├── python-smartypants │ ├── python-smartypants.signatures.json │ └── python-smartypants.spec ├── python-sniffio │ ├── python-sniffio.signatures.json │ └── python-sniffio.spec ├── python-soupsieve │ ├── python-soupsieve.signatures.json │ └── python-soupsieve.spec ├── python-sphinx-epytext │ ├── python-sphinx-epytext.signatures.json │ └── python-sphinx-epytext.spec ├── python-sphinxcontrib-apidoc │ ├── python-sphinxcontrib-apidoc.signatures.json │ └── python-sphinxcontrib-apidoc.spec ├── python-sphinxcontrib-httpdomain │ ├── 0004-httpdomain-bump-domain-data-version.patch │ ├── python-sphinxcontrib-httpdomain.signatures.json │ └── python-sphinxcontrib-httpdomain.spec ├── python-sphinxcontrib-jquery │ ├── Fix-tests-failures-with-Sphinx-7.2.patch │ ├── python-sphinxcontrib-jquery.signatures.json │ └── python-sphinxcontrib-jquery.spec ├── python-sphinxygen │ ├── anonymous-struct.patch │ ├── python-sphinxygen.signatures.json │ └── python-sphinxygen.spec ├── python-spnego │ ├── python-spnego.signatures.json │ └── python-spnego.spec ├── python-suds │ ├── python-suds.signatures.json │ ├── python-suds.spec │ └── suds-pyname.patch ├── python-systemd │ ├── python-systemd.signatures.json │ └── python-systemd.spec ├── python-tempita │ ├── 0001-Fix-SyntaxError-multiple-exception-types-must-be-par.patch │ ├── python-tempita-LICENSE.txt │ ├── python-tempita.signatures.json │ └── python-tempita.spec ├── python-testpath │ ├── python-testpath.signatures.json │ └── python-testpath.spec ├── python-testresources │ ├── python-testresources.signatures.json │ └── python-testresources.spec ├── python-testscenarios │ ├── python-testscenarios.signatures.json │ └── python-testscenarios.spec ├── python-testtools │ ├── Treat-methodName-runTest-similar-to-unittest.TestCas.patch │ ├── python-testtools.signatures.json │ └── python-testtools.spec ├── python-toml │ ├── python-toml.signatures.json │ └── python-toml.spec ├── python-tornado │ ├── 3374.patch │ ├── Do-not-turn-DeprecationWarning-into-Exception.patch │ ├── python-tornado-Python-3.12.patch │ ├── python-tornado.signatures.json │ └── python-tornado.spec ├── python-tox │ ├── provision-backports.patch │ ├── python-tox.signatures.json │ └── python-tox.spec ├── python-trio │ ├── python-trio.signatures.json │ └── python-trio.spec ├── python-typogrify │ ├── python-typogrify.signatures.json │ └── python-typogrify.spec ├── python-uamqp │ ├── cython3.0-support.patch │ ├── python-uamqp-treat-warnings-as-warnings.patch │ ├── python-uamqp.signatures.json │ ├── python-uamqp.spec │ └── u_OpenSSL3.0-support.patch ├── python-uritemplate │ ├── python-uritemplate.signatures.json │ └── python-uritemplate.spec ├── python-urwid │ ├── python-urwid.signatures.json │ └── python-urwid.spec ├── python-uswid │ ├── python-uswid.signatures.json │ └── python-uswid.spec ├── python-varlink │ ├── python-varlink.signatures.json │ └── python-varlink.spec ├── python-voluptuous │ ├── python-voluptuous.signatures.json │ └── python-voluptuous.spec ├── python-waitress │ ├── generate-tarball.sh │ ├── python-waitress.signatures.json │ └── python-waitress.spec ├── python-webencodings │ ├── python-webencodings.signatures.json │ └── python-webencodings.spec ├── python-webtest │ ├── python-webtest.signatures.json │ └── python-webtest.spec ├── python-whoosh │ ├── python-whoosh.signatures.json │ └── python-whoosh.spec ├── python-winrm │ ├── python-winrm.signatures.json │ └── python-winrm.spec ├── python-xmltodict │ ├── python-xmltodict.signatures.json │ └── python-xmltodict.spec ├── python-yubico │ ├── 0001-literal-comparison.patch │ ├── python-yubico.signatures.json │ └── python-yubico.spec ├── python-zmq │ ├── python-zmq.signatures.json │ └── python-zmq.spec ├── python3-mallard-ducktype │ ├── python3-mallard-ducktype.signatures.json │ └── python3-mallard-ducktype.spec ├── python3-pycares │ ├── python3-pycares.signatures.json │ └── python3-pycares.spec ├── python3-typed_ast │ ├── python3-typed_ast.signatures.json │ └── python3-typed_ast.spec ├── pyusb │ ├── pyusb.signatures.json │ └── pyusb.spec ├── pywbem │ ├── 0001-use-unittest-mock.patch │ ├── 0002-coverity-deadcode.patch │ ├── 0003-coverity-forward-null.patch │ ├── 0004-coverity-identifier-typo.patch │ ├── 0005-python3_12.patch │ ├── pywbem.signatures.json │ └── pywbem.spec ├── pyxattr │ ├── key.asc │ ├── pyxattr-0.7.2.tar.gz.asc │ ├── pyxattr.signatures.json │ └── pyxattr.spec ├── qhull │ ├── qhull-install.patch │ ├── qhull-lib64.patch │ ├── qhull-staticr-pic.patch │ ├── qhull.signatures.json │ └── qhull.spec ├── qpdf │ ├── qpdf-relax.patch │ ├── qpdf.signatures.json │ └── qpdf.spec ├── qperf │ ├── qperf.signatures.json │ └── qperf.spec ├── qr-code-generator │ ├── qr-code-generator-build-fixes.patch │ ├── qr-code-generator.signatures.json │ └── qr-code-generator.spec ├── qt5-qtconnectivity │ ├── qt5-qtconnectivity.signatures.json │ └── qt5-qtconnectivity.spec ├── qt5-qtsensors │ ├── qt5-qtsensors.signatures.json │ └── qt5-qtsensors.spec ├── qt5-qtserialport │ ├── qt5-qtserialport.signatures.json │ └── qt5-qtserialport.spec ├── quagga │ ├── 0001-service-file-braces.patch │ ├── quagga-filter-perl-requires.sh │ ├── quagga-tmpfs.conf │ ├── quagga.signatures.json │ └── quagga.spec ├── raptor2 │ ├── 0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch │ ├── 0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch │ ├── raptor2-c99.patch │ ├── raptor2-configure-c99.patch │ ├── raptor2-libxml2.patch │ ├── raptor2.signatures.json │ └── raptor2.spec ├── rarian │ ├── rarian-0.8.1-categories.patch │ ├── rarian.signatures.json │ ├── rarian.spec │ └── scrollkeeper-omf.dtd ├── rasqal │ ├── define-printf.patch │ ├── rasqal-configure-c99-2.patch │ ├── rasqal.signatures.json │ └── rasqal.spec ├── rcs │ ├── rcs.signatures.json │ └── rcs.spec ├── rdist │ ├── rdist-6.1.5-bison.patch │ ├── rdist-6.1.5-cleanup.patch │ ├── rdist-6.1.5-fix-msgsndnotify-loop.patch │ ├── rdist-6.1.5-hardlink.patch │ ├── rdist-6.1.5-lfs.patch │ ├── rdist-6.1.5-license-fix.patch │ ├── rdist-6.1.5-links.patch │ ├── rdist-6.1.5-linux.patch │ ├── rdist-6.1.5-maxargs.patch │ ├── rdist-6.1.5-mkstemp.patch │ ├── rdist-6.1.5-oldpath.patch │ ├── rdist-6.1.5-re_args.patch │ ├── rdist-6.1.5-ssh.patch │ ├── rdist-6.1.5-stat64.patch │ ├── rdist-6.1.5-svr4.patch │ ├── rdist-6.1.5-varargs.patch │ ├── rdist-eu-license.txt │ ├── rdist-licensing-email.txt │ ├── rdist.signatures.json │ └── rdist.spec ├── rdma-core │ ├── rdma-core.signatures.json │ └── rdma-core.spec ├── re2c │ ├── re2c.signatures.json │ └── re2c.spec ├── realmd │ ├── 0001-ipa-Propagate-hostname-error.patch │ ├── 0001-service-allow-multiple-names-and-_srv_-ad_server-opt.patch │ ├── 0001-sssd-package-fix.patch │ ├── 0001-tools-fix-ccache-handling-for-leave-operation.patch │ ├── 0002-service-fix-error-message-when-removing-host-from-AD.patch │ ├── 0003-doc-fix-reference-in-realmd.conf-man-page.patch │ ├── realmd.signatures.json │ └── realmd.spec ├── rear │ ├── rear.signatures.json │ └── rear.spec ├── recode │ ├── 0001-src-task.c-only-close-input-stream-when-we-opened-it.patch │ ├── recode-3.7.13-Rename-coliding-hash-functions.patch │ ├── recode.signatures.json │ └── recode.spec ├── regexp │ ├── regexp-1.5.pom │ ├── regexp.signatures.json │ └── regexp.spec ├── relaxngDatatype │ ├── copying.txt │ ├── relaxngDatatype.signatures.json │ └── relaxngDatatype.spec ├── resource-agents │ ├── resource-agents.signatures.json │ └── resource-agents.spec ├── rhash │ ├── rhash.signatures.json │ └── rhash.spec ├── rhino │ ├── rhino-1.7.7.1.pom │ ├── rhino-addOrbitManifest.patch │ ├── rhino-build.patch │ ├── rhino-debugger.script │ ├── rhino-idswitch.script │ ├── rhino-jsc.script │ ├── rhino.script │ ├── rhino.signatures.json │ └── rhino.spec ├── rhnlib │ ├── rhnlib-2.8.6-1-to-rhnlib-2.8.6-2-el8.patch │ ├── rhnlib-2.8.6-2-el8-to-rhnlib-2.8.6-3-el8.patch │ ├── rhnlib-2.8.6-3-el8-to-rhnlib-2.8.6-4-el8.patch │ ├── rhnlib-2.8.6-4-el8-to-rhnlib-2.8.6-5-el8.patch │ ├── rhnlib-2.8.6-5-el8-to-rhnlib-2.8.6-6-el8.patch │ ├── rhnlib-2.8.6-6-el8-to-rhnlib-2.8.6-7-el8.patch │ ├── rhnlib-2.8.6-7-el8-to-rhnlib-2.8.6-8-el8.patch │ ├── rhnlib.signatures.json │ └── rhnlib.spec ├── ripgrep │ ├── cargo_config │ ├── ripgrep.signatures.json │ └── ripgrep.spec ├── rp-pppoe │ ├── rp-pppoe.signatures.json │ └── rp-pppoe.spec ├── rpmlint │ ├── rpmlint-1.10-suppress-locale-error.patch │ ├── rpmlint-1.11-rpm4.15.patch │ ├── rpmlint-etc.config │ ├── rpmlint.config │ ├── rpmlint.signatures.json │ └── rpmlint.spec ├── rr │ ├── rr.signatures.json │ └── rr.spec ├── rtkit │ ├── 0001-SECURITY-Pass-uid-of-caller-to-polkit.patch │ ├── format-security.patch │ ├── rtkit-controlgroup.patch │ ├── rtkit-mq_getattr.patch │ ├── rtkit.signatures.json │ └── rtkit.spec ├── ruby-augeas │ ├── ruby-augeas.signatures.json │ └── ruby-augeas.spec ├── rubygem-bson │ ├── rubygem-bson.signatures.json │ └── rubygem-bson.spec ├── rubygem-coderay │ ├── rubygem-coderay.signatures.json │ └── rubygem-coderay.spec ├── rubygem-deep_merge │ ├── rubygem-deep_merge.signatures.json │ └── rubygem-deep_merge.spec ├── rubygem-diff-lcs │ ├── rubygem-diff-lcs.signatures.json │ └── rubygem-diff-lcs.spec ├── rubygem-eventmachine │ ├── rubygem-eventmachine.signatures.json │ └── rubygem-eventmachine.spec ├── rubygem-flexmock │ ├── rubygem-flexmock.signatures.json │ └── rubygem-flexmock.spec ├── rubygem-hocon │ ├── rubygem-hocon.signatures.json │ └── rubygem-hocon.spec ├── rubygem-liquid │ ├── rubygem-liquid.signatures.json │ └── rubygem-liquid.spec ├── rubygem-maruku │ ├── rubygem-maruku.signatures.json │ └── rubygem-maruku.spec ├── rubygem-mongo │ ├── rubygem-mongo.signatures.json │ └── rubygem-mongo.spec ├── rubygem-mysql2 │ ├── rubygem-mysql2.signatures.json │ └── rubygem-mysql2.spec ├── rubygem-pkg-config │ ├── rubygem-pkg-config-1.4.4-cflags-result-sort.patch │ ├── rubygem-pkg-config.signatures.json │ └── rubygem-pkg-config.spec ├── rubygem-puppet-resource_api │ ├── rubygem-puppet-resource_api.signatures.json │ └── rubygem-puppet-resource_api.spec ├── rubygem-rouge │ ├── bundler.rb │ ├── rubygem-rouge.signatures.json │ ├── rubygem-rouge.spec │ └── spec_helper_assert.rb ├── rubygem-rspec-expectations │ ├── rspec-related-create-full-tarball.sh │ ├── rubygem-rspec-expectations.signatures.json │ └── rubygem-rspec-expectations.spec ├── rubygem-rspec-mocks │ ├── rspec-related-create-full-tarball.sh │ ├── rubygem-rspec-mocks.signatures.json │ └── rubygem-rspec-mocks.spec ├── rubygem-rspec-support │ ├── rspec-related-create-full-tarball.sh │ ├── rubygem-rspec-support.signatures.json │ └── rubygem-rspec-support.spec ├── rubygem-scanf │ ├── LICENSE.txt │ ├── data.txt │ ├── rubygem-scanf.signatures.json │ ├── rubygem-scanf.spec │ ├── test_scanf.rb │ ├── test_scanfblocks.rb │ └── test_scanfio.rb ├── rubygem-sys-filesystem │ ├── rubygem-sys-filesystem.signatures.json │ └── rubygem-sys-filesystem.spec ├── rubygem-thor │ ├── rubygem-thor.signatures.json │ └── rubygem-thor.spec ├── rubygem-thread_order │ ├── rubygem-thread_order.signatures.json │ └── rubygem-thread_order.spec ├── rusers │ ├── netkit-rusers-0.15-numusers.patch │ ├── rstatd-jbj.patch │ ├── rstatd-man.patch │ ├── rstatd.service │ ├── rusers-0.17-2.4.patch │ ├── rusers-0.17-bigendian.patch │ ├── rusers-0.17-freerpc.patch │ ├── rusers-0.17-includes.patch │ ├── rusers-0.17-license.patch │ ├── rusers-0.17-manhelp.patch │ ├── rusers-0.17-new-rpc-license.patch │ ├── rusers-0.17-procdiskstats.patch │ ├── rusers-0.17-procps.patch │ ├── rusers-0.17-return.patch │ ├── rusers-0.17-rstatd-no-static-buffer.patch │ ├── rusers-0.17-rup-stack.patch │ ├── rusers-0.17-rup-timeout.patch │ ├── rusers-0.17-rup.patch │ ├── rusers-0.17-rusersd-droppriv.patch │ ├── rusers-0.17-stats.patch │ ├── rusers-0.17-strip.patch │ ├── rusers-0.17-truncate.patch │ ├── rusers.signatures.json │ ├── rusers.spec │ └── rusersd.service ├── rust-cbindgen │ ├── cargo_config │ ├── disable-static-library.patch │ ├── rust-cbindgen.signatures.json │ └── rust-cbindgen.spec ├── s-nail │ ├── s-nail-14.9.25-test-sha256.patch │ ├── s-nail-14.9.25.tar.xz.asc │ ├── s-nail-makeflags.patch │ ├── s-nail.signatures.json │ ├── s-nail.spec │ └── steffen.asc ├── samba │ ├── 0001-Disable-building-smb.conf.5-in-docs-xml-wscript.patch │ ├── 0002-CVE-2025-49716-netlogon.patch │ ├── README.downgrade │ ├── pam_winbind.conf │ ├── samba.logrotate │ ├── samba.pamd │ ├── samba.signatures.json │ ├── samba.spec │ ├── smb.conf.example │ └── smb.conf.vendor ├── sassist │ ├── sassist.signatures.json │ └── sassist.spec ├── satyr │ ├── satyr.signatures.json │ └── satyr.spec ├── sbc │ ├── sbc.signatures.json │ └── sbc.spec ├── sblim-cim-client2 │ ├── sblim-cim-client2-2.2.5-fix-for-java-11-openjdk.patch │ ├── sblim-cim-client2.signatures.json │ └── sblim-cim-client2.spec ├── sblim-cmpi-base │ ├── sblim-cmpi-base-1.6.0-methods-enable.patch │ ├── sblim-cmpi-base-1.6.0-missing-fclose.patch │ ├── sblim-cmpi-base-1.6.1-double-fclose.patch │ ├── sblim-cmpi-base-1.6.2-docdir.patch │ ├── sblim-cmpi-base-1.6.2-pegasus-interop.patch │ ├── sblim-cmpi-base-1.6.4-dont-install-license.patch │ ├── sblim-cmpi-base-1.6.4-fix-get-os-install-date.patch │ ├── sblim-cmpi-base-1.6.4-fix-possible-null-dereference.patch │ ├── sblim-cmpi-base-1.6.4-list-lib-dependencies.patch │ ├── sblim-cmpi-base-1.6.4-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-base.signatures.json │ └── sblim-cmpi-base.spec ├── sblim-cmpi-devel │ ├── macros.sblim-cmpi-devel │ ├── sblim-cmpi-devel-2.0.3-docdir.patch │ ├── sblim-cmpi-devel.signatures.json │ └── sblim-cmpi-devel.spec ├── sblim-cmpi-fsvol │ ├── sblim-cmpi-fsvol-1.5.0-ext4-support.patch │ ├── sblim-cmpi-fsvol-1.5.1-docdir.patch │ ├── sblim-cmpi-fsvol-1.5.1-mounted-dm-fs-shown-as-disabled.patch │ ├── sblim-cmpi-fsvol-1.5.1-mounted-fs-shown-as-disabled.patch │ ├── sblim-cmpi-fsvol-1.5.1-pegasus-interop.patch │ ├── sblim-cmpi-fsvol-1.5.1-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-fsvol.signatures.json │ └── sblim-cmpi-fsvol.spec ├── sblim-cmpi-network │ ├── sblim-cmpi-network-1.4.0-docdir.patch │ ├── sblim-cmpi-network-1.4.0-network-devices-arbitrary-names-support.patch │ ├── sblim-cmpi-network-1.4.0-pegasus-interop.patch │ ├── sblim-cmpi-network-1.4.0-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-network.signatures.json │ └── sblim-cmpi-network.spec ├── sblim-cmpi-nfsv3 │ ├── sblim-cmpi-nfsv3-1.1.1-docdir.patch │ ├── sblim-cmpi-nfsv3-1.1.1-pegasus-interop.patch │ ├── sblim-cmpi-nfsv3-1.1.1-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-nfsv3.signatures.json │ └── sblim-cmpi-nfsv3.spec ├── sblim-cmpi-nfsv4 │ ├── sblim-cmpi-nfsv4-1.1.0-docdir.patch │ ├── sblim-cmpi-nfsv4-1.1.0-pegasus-interop.patch │ ├── sblim-cmpi-nfsv4-1.1.0-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-nfsv4.signatures.json │ └── sblim-cmpi-nfsv4.spec ├── sblim-cmpi-params │ ├── sblim-cmpi-params-1.2.4-no-abi-params.patch │ ├── sblim-cmpi-params-1.3.0-docdir.patch │ ├── sblim-cmpi-params-1.3.0-pegasus-interop.patch │ ├── sblim-cmpi-params-1.3.0-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-params.signatures.json │ └── sblim-cmpi-params.spec ├── sblim-cmpi-sysfs │ ├── sblim-cmpi-sysfs-1.2.0-docdir.patch │ ├── sblim-cmpi-sysfs-1.2.0-pegasus-interop.patch │ ├── sblim-cmpi-sysfs-1.2.0-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-sysfs-1.2.0-provider-segfault.patch │ ├── sblim-cmpi-sysfs-1.2.0-sysfs-links.patch │ ├── sblim-cmpi-sysfs.signatures.json │ └── sblim-cmpi-sysfs.spec ├── sblim-cmpi-syslog │ ├── sblim-cmpi-syslog-0.9.0-buffer-overflow-remove-tmpnam.patch │ ├── sblim-cmpi-syslog-0.9.0-docdir.patch │ ├── sblim-cmpi-syslog-0.9.0-format-security.patch │ ├── sblim-cmpi-syslog-0.9.0-pegasus-interop.patch │ ├── sblim-cmpi-syslog-0.9.0-prov-reg-sfcb-systemd.patch │ ├── sblim-cmpi-syslog.signatures.json │ └── sblim-cmpi-syslog.spec ├── sblim-indication_helper │ ├── sblim-indication_helper.signatures.json │ └── sblim-indication_helper.spec ├── sblim-sfcCommon │ ├── sblim-sfcCommon.signatures.json │ └── sblim-sfcCommon.spec ├── sblim-sfcb │ ├── sblim-sfcb-1.3.15-fix-provider-debugging.patch │ ├── sblim-sfcb-1.3.16-maxMsgLen.patch │ ├── sblim-sfcb-1.3.16-multilib-man-cfg.patch │ ├── sblim-sfcb-1.3.9-sfcbrepos-schema-location.patch │ ├── sblim-sfcb-1.4.5-service.patch │ ├── sblim-sfcb-1.4.8-default-ecdh-curve-name.patch │ ├── sblim-sfcb-1.4.9-docdir-license.patch │ ├── sblim-sfcb-1.4.9-fix-ftbfs.patch │ ├── sblim-sfcb-1.4.9-fix-multiple-definition.patch │ ├── sblim-sfcb-1.4.9-fix-null-content-type-crash.patch │ ├── sblim-sfcb-1.4.9-fix-null-deref.patch │ ├── sblim-sfcb-1.4.9-fix-ppc-optimization-level.patch │ ├── sblim-sfcb.signatures.json │ ├── sblim-sfcb.spec │ └── sfcb.service ├── sblim-sfcc │ ├── sblim-sfcc-2.2.8-docdir-license.patch │ ├── sblim-sfcc.signatures.json │ └── sblim-sfcc.spec ├── sblim-testsuite │ ├── sblim-testsuite-1.3.0-docdir.patch │ ├── sblim-testsuite-1.3.0-perl-errors.patch │ ├── sblim-testsuite-1.3.0-unescaped-left-brace-warning-fix.patch │ ├── sblim-testsuite.signatures.json │ └── sblim-testsuite.spec ├── sblim-wbemcli │ ├── sblim-wbemcli-1.5.1-gcc43.patch │ ├── sblim-wbemcli-1.6.1-ssl-proto-option.patch │ ├── sblim-wbemcli-1.6.2-https-segfaults.patch │ ├── sblim-wbemcli-1.6.3-covscan-fixes.patch │ ├── sblim-wbemcli-1.6.3-fix-exit-status.patch │ ├── sblim-wbemcli.signatures.json │ └── sblim-wbemcli.spec ├── scl-utils │ ├── 0003-Scl-utils-layout-patch-from-fedora-famillecollet.com.patch │ ├── BZ-2056462-do-not-error-out-on-SIGINT.patch │ ├── BZ-2091000-remove-tmp-file.patch │ ├── brp-python-hardlink.patch │ ├── macros.scl-filesystem │ ├── rpm-bare-words.patch │ ├── scl-utils.signatures.json │ └── scl-utils.spec ├── scotch │ ├── scotch-Makefile.shared.inc.in │ ├── scotch-gfortran.patch │ ├── scotch-ldflags.patch │ ├── scotch.signatures.json │ └── scotch.spec ├── screen │ ├── screen-4.3.1-crypt.patch │ ├── screen-4.3.1-libs.patch │ ├── screen-4.3.1-screenrc.patch │ ├── screen-4.3.1-suppress_remap.patch │ ├── screen-E3.patch │ ├── screen.pam │ ├── screen.signatures.json │ └── screen.spec ├── sdl12-compat │ ├── SDL_config.h │ ├── sdl12-compat-sdlconfig-multilib.patch │ ├── sdl12-compat.signatures.json │ └── sdl12-compat.spec ├── sdparm │ ├── sdparm.signatures.json │ └── sdparm.spec ├── serd │ ├── drobilla.gpg │ ├── serd-0.32.4.tar.xz.sig │ ├── serd.signatures.json │ └── serd.spec ├── servletapi4 │ ├── java160_build.patch │ ├── servletapi4.signatures.json │ └── servletapi4.spec ├── servletapi5 │ ├── servletapi5.signatures.json │ └── servletapi5.spec ├── setserial │ ├── setserial-2.17-fhs.patch │ ├── setserial-2.17-rc.patch │ ├── setserial-2.17-readme.patch │ ├── setserial-2.17-spelling.patch │ ├── setserial-LICENSE.txt │ ├── setserial-aarch64.patch │ ├── setserial-hayesesp.patch │ ├── setserial.signatures.json │ └── setserial.spec ├── setup │ └── setup.signatures.json ├── setuptool │ ├── setuptool.signatures.json │ └── setuptool.spec ├── sgpio │ ├── sgpio-1.2-coverity.patch │ ├── sgpio-1.2-makefile.patch │ ├── sgpio.signatures.json │ └── sgpio.spec ├── shapelib │ ├── CVE-2022-0699.patch │ ├── c75b9281a5b9452d92e1682bdfe6019a13ed819f.diff │ ├── rpmlint-errors.patch │ ├── shapelib.signatures.json │ └── shapelib.spec ├── sip │ ├── macros.sip │ ├── sip-4.18-no_rpath.patch │ ├── sip-4.18-no_strip.patch │ ├── sip-4.19.18-no_hardcode_sip_so.patch │ ├── sip-4.19.25-py_ssize_t_clean.patch │ ├── sip-4.19.25-pyframe_getback.patch │ ├── sip-wrapper.sh │ ├── sip.signatures.json │ └── sip.spec ├── skkdic │ ├── README-skkdic.rh.ja │ ├── license-investigation.txt │ ├── skkdic-LICENSE.txt │ ├── skkdic.signatures.json │ ├── skkdic.spec │ └── unannotation.awk ├── slirp4netns │ ├── slirp4netns.signatures.json │ └── slirp4netns.spec ├── smc-tools │ ├── smc-tools-gcc15.patch │ ├── smc-tools.signatures.json │ └── smc-tools.spec ├── sombok │ ├── sombok.signatures.json │ └── sombok.spec ├── sord │ ├── drobilla.gpg │ ├── sord-0.16.18.tar.xz.sig │ ├── sord.signatures.json │ └── sord.spec ├── sound-theme-freedesktop │ ├── sound-theme-freedesktop.signatures.json │ └── sound-theme-freedesktop.spec ├── soundtouch │ ├── soundtouch.signatures.json │ └── soundtouch.spec ├── sox │ ├── sox-14.4.2-bug_1226675_fix.patch │ ├── sox-14.4.2-bug_1480678_fix.patch │ ├── sox-14.4.2-bug_1500553_fix.patch │ ├── sox-14.4.2-bug_1500554_fix.patch │ ├── sox-14.4.2-bug_1500570_fix.patch │ ├── sox-14.4.2-bug_1510923_fix.patch │ ├── sox-14.4.2-bug_1545867_fix.patch │ ├── sox-14.4.2-fsf_address_fix.patch │ ├── sox-14.4.2-hcom_stopwrite_big_endian_bug_fix.patch │ ├── sox-14.4.2-installcheck_fix.patch │ ├── sox-14.4.2-lpc10.patch │ ├── sox-14.4.2-lsx_symbols.patch │ ├── sox.signatures.json │ └── sox.spec ├── soxr │ ├── soxr.signatures.json │ └── soxr.spec ├── sparsehash │ ├── sparsehash.signatures.json │ └── sparsehash.spec ├── spausedd │ ├── spausedd.signatures.json │ └── spausedd.spec ├── speex │ ├── speex.signatures.json │ └── speex.spec ├── speexdsp │ ├── speexdsp.signatures.json │ └── speexdsp.spec ├── spice-protocol │ ├── spice-protocol.signatures.json │ └── spice-protocol.spec ├── spice-vdagent │ ├── spice-vdagent.signatures.json │ └── spice-vdagent.spec ├── splix │ ├── splix-deviceID.patch │ ├── splix-ldflags.patch │ ├── splix.signatures.json │ └── splix.spec ├── sratom │ ├── drobilla.gpg │ ├── sratom-0.6.16.tar.xz.sig │ ├── sratom.signatures.json │ └── sratom.spec ├── star │ ├── star-1.5.2-bufferoverflow.patch │ ├── star-1.5.2-rmt-rh-access.patch │ ├── star-1.5.2-use-ssh-by-default.patch │ ├── star-1.6-manpagereferences.patch │ ├── star-1.6-star-mk.patch │ ├── star.signatures.json │ └── star.spec ├── startup-notification │ ├── startup-notification.signatures.json │ └── startup-notification.spec ├── stress-ng │ ├── stress-ng.signatures.json │ └── stress-ng.spec ├── subscription-manager │ ├── subscription-manager.signatures.json │ └── subscription-manager.spec ├── suitesparse │ ├── suitesparse.signatures.json │ └── suitesparse.spec ├── switcheroo-control │ ├── switcheroo-control.signatures.json │ └── switcheroo-control.spec ├── systemd-bootchart │ ├── systemd-bootchart.signatures.json │ └── systemd-bootchart.spec ├── t1lib │ ├── t1lib-5.1.2-aarch64.patch │ ├── t1lib-5.1.2-afm-fix.patch │ ├── t1lib-5.1.2-format-security.patch │ ├── t1lib-5.1.2-segf.patch │ ├── t1lib-5.1.2-type1-inv-rw-fix.patch │ ├── t1lib.signatures.json │ ├── t1lib.spec │ └── t1lib_5.1.2-3.patch ├── t1utils │ ├── t1utils.signatures.json │ └── t1utils.spec ├── taglib │ ├── taglib-1.13.1-multilib.patch │ ├── taglib-snapshot.sh │ ├── taglib.signatures.json │ └── taglib.spec ├── tang │ ├── tang.signatures.json │ ├── tang.spec │ └── tang.sysusers ├── tardev-snapshotter │ ├── regenerate-archives.sh │ ├── tardev-snapshotter.signatures.json │ └── tardev-snapshotter.spec ├── targetcli │ ├── Do-not-install-systemd-files-in-setup.py.patch │ ├── targetcli.signatures.json │ └── targetcli.spec ├── tbb │ ├── tbb-2021-Werror.patch │ ├── tbb.signatures.json │ ├── tbb.spec │ ├── tbbmalloc.pc │ └── tbbmalloc_proxy.pc ├── tcl-pgtcl │ ├── pgtcl-no-rpath.patch │ ├── tcl-pgtcl.signatures.json │ └── tcl-pgtcl.spec ├── tclx │ ├── tclx-8.4-man.patch │ ├── tclx-8.4-relid.patch │ ├── tclx-8.4-tcl86.patch │ ├── tclx-8.4-varinit.patch │ ├── tclx.signatures.json │ └── tclx.spec ├── teckit │ ├── gpgkey-15D41BC02EB807D405EFFAF6C9183BEA0288CDEE.gpg │ ├── teckit-2.5.12.tar.gz.asc │ ├── teckit.signatures.json │ └── teckit.spec ├── telnet │ ├── netkit-telnet-0.17-core-dump.patch │ ├── netkit-telnet-0.17-gcc7.patch │ ├── netkit-telnet-0.17-ipv6.diff │ ├── netkit-telnet-0.17-manpage.patch │ ├── netkit-telnet-0.17-nodns.patch │ ├── netkit-telnet-0.17-reallynodns.patch │ ├── netkit-telnet-0.17-telnetrc.patch │ ├── telnet-0.17-8bit.patch │ ├── telnet-0.17-CAN-2005-468_469.patch │ ├── telnet-0.17-argv.patch │ ├── telnet-0.17-cleanup_race.patch │ ├── telnet-0.17-conf.patch │ ├── telnet-0.17-env.patch │ ├── telnet-0.17-errno_test_sys_bsd.patch │ ├── telnet-0.17-force-ipv6-ipv4.patch │ ├── telnet-0.17-issue.patch │ ├── telnet-0.17-overflow-exploit.patch │ ├── telnet-0.17-pek.patch │ ├── telnet-0.17-sa-01-49.patch │ ├── telnet-client-cvs.patch │ ├── telnet-gethostbyname.patch │ ├── telnet-log-address.patch │ ├── telnet-rh674942.patch │ ├── telnet-rh678324.patch │ ├── telnet-rh704604.patch │ ├── telnet-rh825946.patch │ ├── telnet.signatures.json │ ├── telnet.socket │ ├── telnet.spec │ ├── telnet.wmconfig │ ├── telnet@.service │ ├── telnetd-0.17-pty_read.patch │ └── telnetd-0.17.diff ├── tix │ ├── tix-8.4.2-link.patch │ ├── tix-8.4.3-covscan-fixes.patch │ ├── tix-8.4.3-tcl86.patch │ ├── tix.signatures.json │ └── tix.spec ├── tk │ ├── tk-8.6.10-conf.patch │ ├── tk-8.6.10-font-sizes-fix.patch │ ├── tk-8.6.10-make.patch │ ├── tk-8.6.12-conf.patch │ ├── tk-8.6.12-make.patch │ ├── tk-8.6.7-no-fonts-fix.patch │ ├── tk.signatures.json │ └── tk.spec ├── tlog │ ├── tlog.signatures.json │ ├── tlog.spec │ └── tlog.sysusers ├── tmpwatch │ ├── tmpwatch.signatures.json │ └── tmpwatch.spec ├── tn5250 │ ├── tn5250-0.17.4-fedora.patch │ ├── tn5250.signatures.json │ ├── tn5250.spec │ └── xt5250.desktop ├── tofrodos │ ├── tofrodos.signatures.json │ └── tofrodos.spec ├── trilead-ssh2 │ ├── trilead-ssh2.signatures.json │ └── trilead-ssh2.spec ├── tss2 │ ├── flags-fixup.patch │ ├── hash_generate.patch │ ├── picfix.patch │ ├── tss2.signatures.json │ └── tss2.spec ├── ttmkfdir │ ├── ttmkfdir-3.0.9-bug434301.patch │ ├── ttmkfdir-3.0.9-cpp.patch │ ├── ttmkfdir-3.0.9-encoding-dir.patch │ ├── ttmkfdir-3.0.9-fedora-ldflags.patch │ ├── ttmkfdir-3.0.9-fix-crash.patch │ ├── ttmkfdir-3.0.9-fix-freetype217.patch │ ├── ttmkfdir-3.0.9-font-scale.patch │ ├── ttmkfdir-3.0.9-freetype-header-fix2.patch │ ├── ttmkfdir-3.0.9-namespace.patch │ ├── ttmkfdir-3.0.9-segfaults.patch │ ├── ttmkfdir-3.0.9-warnings.patch │ ├── ttmkfdir-3.0.9-zlib.patch │ ├── ttmkfdir-LICENSE.txt │ ├── ttmkfdir.1 │ ├── ttmkfdir.signatures.json │ └── ttmkfdir.spec ├── twolame │ ├── twolame.signatures.json │ └── twolame.spec ├── uchardet │ ├── uchardet.signatures.json │ └── uchardet.spec ├── ucpp │ ├── ucpp.signatures.json │ └── ucpp.spec ├── ucs-miscfixed-fonts │ ├── 66-ucs-miscfixed.conf │ ├── ucs-miscfixed-fonts.signatures.json │ └── ucs-miscfixed-fonts.spec ├── ucx │ ├── ucx.signatures.json │ └── ucx.spec ├── udftools │ ├── udftools-2.3-backported_fixes.patch │ ├── udftools.signatures.json │ └── udftools.spec ├── udica │ ├── 0001-Add-option-to-generate-custom-policy-for-a-confined-.patch │ ├── 0002-Add-tests-covering-confined-user-policy-generation.patch │ ├── 0003-confined-make-l-non-optional.patch │ ├── 0004-confined-allow-asynchronous-I-O-operations.patch │ ├── udica.signatures.json │ └── udica.spec ├── udisks2 │ ├── ignore-apple-boot-part.patch │ ├── udisks-2.10.0-doc_annotations.patch │ ├── udisks2.signatures.json │ └── udisks2.spec ├── uglify-js │ ├── uglify-js.signatures.json │ └── uglify-js.spec ├── umoci │ ├── umoci.signatures.json │ └── umoci.spec ├── umockdev │ ├── umockdev.signatures.json │ └── umockdev.spec ├── unicode-emoji │ ├── ReadMe.txt │ ├── copyright.html │ ├── emoji-data.txt │ ├── emoji-sequences.txt │ ├── emoji-test.txt │ ├── emoji-variation-sequences.txt │ ├── emoji-zwj-sequences.txt │ ├── unicode-emoji.signatures.json │ └── unicode-emoji.spec ├── unicode-ucd │ ├── copyright.html │ ├── unicode-ucd.signatures.json │ └── unicode-ucd.spec ├── unique3 │ ├── unique3.signatures.json │ └── unique3.spec ├── units │ ├── 0100-units-2.22-no-network.patch │ ├── 0101-fix-make-less-default-pager.patch │ ├── units.signatures.json │ └── units.spec ├── upower │ ├── upower.signatures.json │ └── upower.spec ├── uriparser │ ├── uriparser-inet-ntop.patch │ ├── uriparser.signatures.json │ └── uriparser.spec ├── urlview │ ├── urlview-default.patch │ ├── urlview.signatures.json │ └── urlview.spec ├── usb_modeswitch-data │ ├── usb_modeswitch-data.signatures.json │ └── usb_modeswitch-data.spec ├── usb_modeswitch │ ├── 0001-usb_modeswitch-count-the-target-devices-from-zero.patch │ ├── device_reference-utf8.patch │ ├── device_reference.txt │ ├── usb_modeswitch.signatures.json │ └── usb_modeswitch.spec ├── usbguard │ ├── usbguard-daemon.conf │ ├── usbguard-revert-catch.patch │ ├── usbguard.signatures.json │ └── usbguard.spec ├── usbmuxd │ ├── upgrade-fix-1.1.1.patch │ ├── usbmuxd.signatures.json │ └── usbmuxd.spec ├── ustr │ ├── c99-inline.patch │ ├── ustr.signatures.json │ └── ustr.spec ├── uthash │ ├── uthash.signatures.json │ └── uthash.spec ├── uw-imap │ ├── 1006_openssl1.1_autoverify.patch │ ├── imap-2004a-doc.patch │ ├── imap-2007-paths.patch │ ├── imap-2007e-authmd5.patch │ ├── imap-2007e-overflow.patch │ ├── imap-2007e-poll.patch │ ├── imap-2007e-shared.patch │ ├── imap-2007e-system_c_client.patch │ ├── imap-2007f-format-security.patch │ ├── imap-2007f-ldflags.patch │ ├── imap-legacy.pam │ ├── imap-password.pam │ ├── imap-xinetd │ ├── imap.pam │ ├── imaps-xinetd │ ├── ipop2-xinetd │ ├── ipop3-xinetd │ ├── pop3s-xinetd │ ├── uw-imap.signatures.json │ └── uw-imap.spec ├── v4l-utils │ ├── 0001-utils-v4l2-TPG-Update-use-of-typeof.patch │ ├── 0002-libv4lconvert-Fix-v4lconvert_yuv420_to_rgb-bgr24-not.patch │ ├── 0003-libv4lconvert-Fix-v4lconvert_rgb565_to_rgb-bgr24-not.patch │ ├── 0004-libv4lconvert-Fix-v4lconvert_nv12_-not-taking-stride.patch │ ├── 0005-libv4lconvert-Fix-v4lconvert_nv16_to_yuyv-not-taking.patch │ ├── v4l-utils.signatures.json │ └── v4l-utils.spec ├── vhostmd │ ├── vhostmd.conf │ ├── vhostmd.signatures.json │ └── vhostmd.spec ├── vino │ ├── Do-not-listen-all-if-invalid-interface-is-provided.patch │ ├── Do-not-restart-service-after-unclean-exit-code.patch │ ├── Prevent-monitoring-all-interfaces-after-change-of-ot.patch │ ├── Properly-remove-watches-when-changing-server-props.patch │ ├── Return-error-if-X11-is-not-detected.patch │ ├── vino.signatures.json │ └── vino.spec ├── virt-p2v │ ├── libguestfs.keyring │ ├── virt-p2v-1.42.4.tar.gz.sig │ ├── virt-p2v.signatures.json │ └── virt-p2v.spec ├── virt-top │ ├── 0001-virt-top-fix-to-explicitly-disconnect-from-libvirtd.patch │ ├── 0002-virt-top-fix-to-parse-init-file-correctly.patch │ ├── 0003-src-Include-libxml-parser.h.patch │ ├── virt-top.signatures.json │ └── virt-top.spec ├── virt-who │ ├── virt-who.signatures.json │ └── virt-who.spec ├── vmem │ ├── vmem.signatures.json │ └── vmem.spec ├── volume_key │ ├── volume_key-0.3.12-fix_resource_leaks.patch │ ├── volume_key-0.3.12-support_LUKS2_and_more.patch │ ├── volume_key.signatures.json │ └── volume_key.spec ├── vorbis-tools │ ├── vorbis-tools-1.4.2-man-page.patch │ ├── vorbis-tools.signatures.json │ └── vorbis-tools.spec ├── watchdog │ ├── 0001-Include-linux-param.h-for-EXEC_PAGESIZE-definition.patch │ ├── 0002-Generalize-and-make-watchdog-refresh-settimeout-work.patch │ ├── 0003-Ignore-build-products-in-GIT.patch │ ├── 0004-Compile-with-musl-when-nfs-is-disabled.patch │ ├── 0004-watchdog-5.13-rhseldoc.patch │ ├── 0005-Rename-READ_ENUM-to-READ_YESNO.patch │ ├── 0006-Make-IT87-fix-up-automatic-by-default.patch │ ├── 0007-Synced-Debian-files-with-5.15-2.patch │ ├── 0008-Fix-automated-CentOS-7-build.patch │ ├── 0009-Bugfix-against-watchdog-configuration-file-corruptio.patch │ ├── 0010-Choose-libtirpc-or-another-RPC-library-for-XDR-heade.patch │ ├── README.Fedora │ ├── README.watchdog.ipmi │ ├── watchdog-ping.service │ ├── watchdog.service │ ├── watchdog.signatures.json │ └── watchdog.spec ├── wavpack │ ├── wavpack.signatures.json │ └── wavpack.spec ├── web-assets │ ├── LICENSE │ ├── README.devel │ ├── macros.web-assets │ ├── web-assets.conf │ ├── web-assets.signatures.json │ └── web-assets.spec ├── webrtc-audio-processing │ ├── webrtc-audio-processing-0.2-big-endian.patch │ ├── webrtc-audio-processing.signatures.json │ ├── webrtc-audio-processing.spec │ └── webrtc-fix-typedefs-on-other-arches.patch ├── whois │ ├── whois.signatures.json │ └── whois.spec ├── wireshark │ ├── 90-wireshark-usbmon.rules │ ├── wireshark-01-pkgconfig.patch │ ├── wireshark.signatures.json │ ├── wireshark.spec │ └── wireshark.sysusers ├── woff2 │ ├── woff2.signatures.json │ └── woff2.spec ├── wordnet │ ├── wordnet-3.0-CVE-2008-2149.patch │ ├── wordnet-3.0-CVE-2008-3908.patch │ ├── wordnet-3.0-Pass-compilation-with-Werror-format-security.patch │ ├── wordnet-3.0-error_message.patch │ ├── wordnet-3.0-fix_man.patch │ ├── wordnet-3.0-fix_resourcedir_path.patch │ ├── wordnet-3.0-libtool.patch │ ├── wordnet-3.0-src_stubs_c.patch │ ├── wordnet-3.0-use_system_tk_headers.patch │ ├── wordnet-3.0-wishwn_manpage.patch │ ├── wordnet.signatures.json │ └── wordnet.spec ├── wpebackend-fdo │ ├── wpebackend-fdo.signatures.json │ └── wpebackend-fdo.spec ├── wsmancli │ ├── AUTHORS │ ├── COPYING │ ├── README │ ├── missing-pthread-symbols.patch │ ├── wsmancli.signatures.json │ └── wsmancli.spec ├── wvdial │ ├── wvdial-1.54-9nums.patch │ ├── wvdial-1.60-compuserve.patch │ ├── wvdial-1.60-remotename.patch │ ├── wvdial-1.61-ftbfs_with_gcc_4.5.patch │ ├── wvdial-1.61-typo_pon.wvdial.1.patch │ ├── wvdial-1.61-use_DEFAULT_SOURCE.patch │ ├── wvdial-manpages.patch │ ├── wvdial.signatures.json │ └── wvdial.spec ├── x3270 │ ├── x3270-3.5-ibmhostpath.patch │ ├── x3270-3.5-paths.patch │ ├── x3270.desktop │ ├── x3270.png │ ├── x3270.signatures.json │ └── x3270.spec ├── xalan-j2 │ ├── openjdk-build.patch │ ├── optional-xerces-req.patch │ ├── serializer-2.7.2.pom │ ├── xalan-2.7.2.pom │ ├── xalan-j2-MANIFEST.MF │ ├── xalan-j2-crosslink.patch │ ├── xalan-j2-manifest.patch │ ├── xalan-j2-noxsltcdeps.patch │ ├── xalan-j2-serializer-MANIFEST.MF │ ├── xalan-j2.signatures.json │ ├── xalan-j2.spec │ └── xsltc-2.7.2.pom ├── xapian-core │ ├── xapian-core.signatures.json │ └── xapian-core.spec ├── xbean │ ├── 0001-Remove-unused-import.patch │ ├── 0002-Unbundle-ASM.patch │ ├── 0003-Remove-dependency-on-log4j-and-commons-logging.patch │ ├── downgrading-asm-version.patch │ ├── jdk-11-fix.patch │ ├── xbean.signatures.json │ └── xbean.spec ├── xcb-util-wm │ ├── xcb-util-wm.signatures.json │ └── xcb-util-wm.spec ├── xdelta │ ├── xdelta-3.0.6-man-page-day.patch │ ├── xdelta.signatures.json │ └── xdelta.spec ├── xdg-dbus-proxy │ ├── xdg-dbus-proxy.signatures.json │ └── xdg-dbus-proxy.spec ├── xdg-utils │ ├── xdg-utils.signatures.json │ └── xdg-utils.spec ├── xerces-j2 │ ├── ant-build-fix.patch │ ├── xerces-2_11_0-jdk7.patch │ ├── xerces-j2-build.patch │ ├── xerces-j2-constants.1 │ ├── xerces-j2-constants.sh │ ├── xerces-j2-manifest.patch │ ├── xerces-j2-version.1 │ ├── xerces-j2-version.sh │ ├── xerces-j2.signatures.json │ ├── xerces-j2.spec │ └── xercesImpl-2.12.0.pom ├── xfconf │ ├── xfconf.signatures.json │ └── xfconf.spec ├── xfsdump │ ├── 13F703E6C11CF6F0.asc │ ├── xfsdump-3.1.12.tar.sign │ ├── xfsdump.signatures.json │ └── xfsdump.spec ├── xhtml1-dtds │ ├── LICENSE.PTR │ ├── xhtml1-dtds-prepare-tarball.sh │ ├── xhtml1-dtds-sgml-catalog.patch │ ├── xhtml1-dtds-sgml-dcl.patch │ ├── xhtml1-dtds.catalog.xml │ ├── xhtml1-dtds.signatures.json │ └── xhtml1-dtds.spec ├── xmldb-api │ ├── xmldb-api-java5-enum.patch │ ├── xmldb-api.signatures.json │ └── xmldb-api.spec ├── xmlrpc-c │ ├── 0002-Use-proper-datatypes-for-long-long.patch │ ├── 0003-allow-30x-redirections.patch │ ├── xmlrpc-c.signatures.json │ └── xmlrpc-c.spec ├── xmlunit │ ├── xmlunit-1.6.pom │ ├── xmlunit.signatures.json │ └── xmlunit.spec ├── xorg-x11-drv-libinput │ ├── 0001-Add-a-DPIScaleFactor-option-as-temporary-solution-to.patch │ ├── 71-libinput-overrides-wacom.conf │ ├── xorg-x11-drv-libinput.signatures.json │ └── xorg-x11-drv-libinput.spec ├── xorg-x11-fonts │ ├── xorg-x11-fonts.signatures.json │ └── xorg-x11-fonts.spec ├── xorg-x11-server │ ├── 0001-Fedora-hack-Make-the-suid-root-wrapper-always-start-.patch │ ├── 0001-autobind-GPUs-to-the-screen.patch │ ├── 0001-dix-Add-GetCurrentClient-helper.patch │ ├── 0001-hw-Rename-boolean-config-value-field-from-bool-to-bo.patch │ ├── 0001-render-Fix-build-with-gcc-12.patch │ ├── 0001-xf86-dri2-Use-va_gl-as-vdpau_driver-for-Intel-i965-G.patch │ ├── 0001-xfree86-use-modesetting-driver-by-default-on-GeForce.patch │ ├── 0002-xwayland-Add-wp_viewport-wayland-extension-support.patch │ ├── 0003-xwayland-Use-buffer_damage-instead-of-surface-damage.patch │ ├── 0004-xwayland-Add-fake-output-modes-to-xrandr-output-mode.patch │ ├── 0005-xwayland-Use-RandR-1.2-interface-rev-2.patch │ ├── 0006-xwayland-Add-per-client-private-data.patch │ ├── 0007-xwayland-Add-support-for-storing-per-client-per-outp.patch │ ├── 0008-xwayland-Add-support-for-randr-resolution-change-emu.patch │ ├── 0009-xwayland-Add-xwlRRModeToDisplayMode-helper-function.patch │ ├── 0010-xwayland-Add-xwlVidModeGetCurrentRRMode-helper-to-th.patch │ ├── 0011-xwayland-Add-vidmode-mode-changing-emulation-support.patch │ ├── 0012-xwayland-xwl_window_should_enable_viewport-Add-extra.patch │ ├── 0013-xwayland-Set-_XWAYLAND_RANDR_EMU_MONITOR_RECTS-prope.patch │ ├── 0014-xwayland-Cache-client-id-for-the-window-manager-clie.patch │ ├── 0015-xwayland-Reuse-viewport-instead-of-recreating.patch │ ├── 0016-xwayland-Recurse-on-finding-the-none-wm-owner.patch │ ├── 0017-xwayland-Make-window_get_none_wm_owner-return-a-Wind.patch │ ├── 0018-xwayland-Check-emulation-on-client-toplevel-resize.patch │ ├── 0019-xwayland-Also-check-resolution-change-emulation-when.patch │ ├── 0020-xwayland-Also-hook-screen-s-MoveWindow-method.patch │ ├── 0021-xwayland-Fix-emulated-modes-not-being-removed-when-s.patch │ ├── 0022-xwayland-Call-xwl_window_check_resolution_change_emu.patch │ ├── 0023-xwayland-Fix-setting-of-_XWAYLAND_RANDR_EMU_MONITOR_.patch │ ├── 0024-xwayland-Remove-unnecessary-xwl_window_is_toplevel-c.patch │ ├── 0025-xwayland-Make-window_get_client_toplevel-non-recursi.patch │ ├── 06_use-intel-only-on-pre-gen4.diff │ ├── 10-quirks.conf │ ├── CVE-2023-1594.patch │ ├── driver-abi-rebuild.sh │ ├── gitignore │ ├── xorg-x11-server.signatures.json │ ├── xorg-x11-server.spec │ ├── xserver-sdk-abi-requires.git │ ├── xserver-sdk-abi-requires.release │ ├── xserver.pamd │ └── xvfb-run.sh ├── xorg-x11-utils │ ├── xorg-x11-utils.signatures.json │ └── xorg-x11-utils.spec ├── xpp3 │ ├── xpp3-1.1.4c-OSGI-MANIFEST.MF │ ├── xpp3-1.1.4c.pom │ ├── xpp3-link-docs-locally.patch │ ├── xpp3.signatures.json │ ├── xpp3.spec │ ├── xpp3_min-1.1.4c.pom │ └── xpp3_xpath-1.1.4c.pom ├── xrestop │ ├── xrestop.signatures.json │ └── xrestop.spec ├── xterm │ ├── 16colors.txt │ ├── dickey@invisible-island.net-rsa3072.asc │ ├── xterm-395.tgz.asc │ ├── xterm-defaults.patch │ ├── xterm-desktop.patch │ ├── xterm-man-paths.patch │ ├── xterm.signatures.json │ └── xterm.spec ├── xz-java │ ├── xz-java-source-version.patch │ ├── xz-java.signatures.json │ └── xz-java.spec ├── yelp-tools │ ├── yelp-tools.signatures.json │ └── yelp-tools.spec ├── yelp-xsl │ ├── yelp-xsl.signatures.json │ └── yelp-xsl.spec ├── ykclient │ ├── ykclient.signatures.json │ └── ykclient.spec ├── ypserv │ ├── rpc.yppasswdd.env │ ├── yppasswdd-pre-setdomain │ ├── yppasswdd.service │ ├── ypserv-2.13-nonedomain.patch │ ├── ypserv-2.13-ypxfr-zeroresp.patch │ ├── ypserv-2.19-slp-warning.patch │ ├── ypserv-2.24-aliases.patch │ ├── ypserv-2.27-confpost.patch │ ├── ypserv-2.31-netgrprecur.patch │ ├── ypserv-2.5-nfsnobody2.patch │ ├── ypserv-2.5-redhat.patch │ ├── ypserv-4.0-headers.patch │ ├── ypserv-4.0-manfix.patch │ ├── ypserv-4.0-selinux-context.patch │ ├── ypserv-4.2-implicit-int.patch │ ├── ypserv.service │ ├── ypserv.signatures.json │ ├── ypserv.spec │ └── ypxfrd.service ├── yq │ ├── yq.signatures.json │ └── yq.spec ├── z3 │ ├── z3-ocaml.patch │ ├── z3.signatures.json │ └── z3.spec ├── zenity │ ├── zenity.signatures.json │ └── zenity.spec ├── zix │ ├── drobilla.gpg │ ├── zix-0.6.2.tar.xz.sig │ ├── zix.signatures.json │ └── zix.spec ├── zopfli │ ├── zopfli.signatures.json │ └── zopfli.spec └── zziplib │ ├── zziplib.signatures.json │ └── zziplib.spec ├── SPECS-SIGNED ├── edk2-hvloader-signed │ └── edk2-hvloader-signed.spec ├── fwctl-hwe-signed │ └── fwctl-hwe-signed.spec ├── fwctl-signed │ └── fwctl-signed.spec ├── grub2-efi-binary-signed │ └── grub2-efi-binary-signed.spec ├── iser-hwe-signed │ └── iser-hwe-signed.spec ├── iser-signed │ └── iser-signed.spec ├── isert-hwe-signed │ └── isert-hwe-signed.spec ├── isert-signed │ └── isert-signed.spec ├── kernel-64k-signed │ ├── kernel-64k-signed.spec │ └── sha512hmac-openssl.sh ├── kernel-hwe-signed │ └── kernel-hwe-signed.spec ├── kernel-mshv-signed │ └── kernel-mshv-signed.spec ├── kernel-signed │ ├── kernel-signed.spec │ └── sha512hmac-openssl.sh ├── kernel-uki-signed │ └── kernel-uki-signed.spec ├── knem-hwe-modules-signed │ └── knem-hwe-modules-signed.spec ├── knem-modules-signed │ └── knem-modules-signed.spec ├── mft_kernel-hwe-signed │ └── mft_kernel-hwe-signed.spec ├── mft_kernel-signed │ └── mft_kernel-signed.spec ├── mlnx-nfsrdma-hwe-signed │ └── mlnx-nfsrdma-hwe-signed.spec ├── mlnx-nfsrdma-signed │ └── mlnx-nfsrdma-signed.spec ├── mlnx-ofa_kernel-hwe-modules-signed │ └── mlnx-ofa_kernel-hwe-modules-signed.spec ├── mlnx-ofa_kernel-modules-signed │ └── mlnx-ofa_kernel-modules-signed.spec ├── srp-hwe-signed │ └── srp-hwe-signed.spec ├── srp-signed │ └── srp-signed.spec ├── systemd-boot-signed │ └── systemd-boot-signed.spec ├── xpmem-hwe-modules-signed │ └── xpmem-hwe-modules-signed.spec └── xpmem-modules-signed │ └── xpmem-modules-signed.spec ├── SPECS ├── CUnit │ ├── CUnit.signatures.json │ └── CUnit.spec ├── Cython │ ├── Cython.signatures.json │ ├── Cython.spec │ └── fix_testcycache.patch ├── GSL │ ├── GSL.signatures.json │ └── GSL.spec ├── IP2Location │ ├── IP2Location.signatures.json │ └── IP2Location.spec ├── ModemManager │ ├── ModemManager.signatures.json │ └── ModemManager.spec ├── OpenIPMI │ ├── OpenIPMI.signatures.json │ ├── OpenIPMI.spec │ ├── ipmi.service │ └── openipmi-helper ├── PyYAML │ ├── PyYAML.signatures.json │ └── PyYAML.spec ├── R │ ├── R.signatures.json │ └── R.spec ├── SymCrypt-OpenSSL │ ├── SymCrypt-OpenSSL.signatures.json │ └── SymCrypt-OpenSSL.spec ├── SymCrypt │ ├── SymCrypt.signatures.json │ ├── SymCrypt.spec │ ├── find-debuginfo │ ├── generate-env-file.sh │ └── symcrypt-build-environment-variables-v103.8.0.sh ├── WALinuxAgent │ ├── 0001-add-azurelinux-support.patch │ ├── 0002-fix-bump-version-to-2.11.8.8.patch │ ├── WALinuxAgent.signatures.json │ ├── WALinuxAgent.spec │ ├── ephemeral-disk-warning │ ├── ephemeral-disk-warning.conf │ ├── ephemeral-disk-warning.service │ ├── fix-argument-to-goalstate.patch │ ├── module-setup.sh │ └── update-setup.patch ├── abseil-cpp │ ├── abseil-cpp.signatures.json │ └── abseil-cpp.spec ├── acl │ ├── acl.signatures.json │ └── acl.spec ├── acpica-tools │ ├── COPYING │ ├── OPT_LDFLAGS.patch │ ├── README.Fedora │ ├── acpibin.1 │ ├── acpica-tools.signatures.json │ ├── acpica-tools.spec │ ├── acpidump.1 │ ├── acpiexamples.1 │ ├── acpiexec.1 │ ├── acpihelp.1 │ ├── acpinames.1 │ ├── acpisrc.1 │ ├── acpixtract.1 │ ├── arm7hl.patch │ ├── aslcodegen.patch │ ├── badcode.asl.result │ ├── big-endian-v2.patch │ ├── big-endian.patch │ ├── converterSample.asl.result │ ├── cve-2017-13693.patch │ ├── cve-2017-13694.patch │ ├── cve-2017-13695.patch │ ├── f23-harden.patch │ ├── facp.patch │ ├── gcc-fix-dangling-pointer-error.patch │ ├── grammar.asl.result │ ├── iasl.1 │ ├── int-format.patch │ ├── mips-be-fix.patch │ ├── ppc64le.patch │ ├── ptr-cast.patch │ ├── run-misc-tests.sh │ ├── simple-64bit.patch │ ├── str-trunc-warn.patch │ ├── template.patch │ └── unaligned.patch ├── adwaita-icon-theme │ ├── adwaita-icon-theme.signatures.json │ └── adwaita-icon-theme.spec ├── afflib │ ├── afflib.signatures.json │ └── afflib.spec ├── aide │ ├── CVE-2025-54389.patch │ ├── CVE-2025-54409.patch │ ├── README.quickstart │ ├── aide.conf │ ├── aide.logrotate │ ├── aide.signatures.json │ └── aide.spec ├── alsa-lib │ ├── alsa-lib.signatures.json │ └── alsa-lib.spec ├── alsa-utils │ ├── alsa-utils.signatures.json │ ├── alsa-utils.spec │ └── ens1371.patch ├── annobin │ ├── annobin.signatures.json │ └── annobin.spec ├── ansible │ ├── ansible.signatures.json │ └── ansible.spec ├── ant-junit │ ├── ant-bootstrap.pom.in │ ├── ant-junit.signatures.json │ ├── ant-junit.spec │ ├── apache-ant-1.8.ant.conf │ ├── apache-ant-bootstrap.patch │ ├── apache-ant-class-path-in-manifest.patch │ ├── apache-ant-no-test-jar.patch │ ├── apache-ant-xml-apis.patch │ ├── reproducible-build-date.patch │ └── reproducible-build-manifest.patch ├── ant │ ├── ant-bootstrap.pom.in │ ├── ant.conf │ ├── ant.signatures.json │ ├── ant.spec │ ├── apache-ant-bootstrap.patch │ └── apache-ant-no-test-jar.patch ├── antlr │ ├── antlr-2.7.7.pom │ ├── antlr-build.xml │ ├── antlr-jedit.patch │ ├── antlr-rpmlintrc │ ├── antlr-script │ ├── antlr.signatures.json │ ├── antlr.spec │ ├── fix-docpath.diff │ └── gcc45fix.diff ├── apache-commons-cli │ ├── apache-commons-cli.signatures.json │ └── apache-commons-cli.spec ├── apache-commons-lang3 │ ├── CVE-2025-48924.patch │ ├── apache-commons-lang3.signatures.json │ ├── apache-commons-lang3.spec │ ├── build.xml │ └── default.properties ├── apache-commons-logging │ ├── apache-commons-logging.signatures.json │ ├── apache-commons-logging.spec │ ├── commons-logging-1.1.3-src-junit.diff │ ├── commons-logging-1.2-sourcetarget.patch │ ├── commons-logging-api-1.1.pom │ └── commons-logging-manifests.patch ├── apparmor │ ├── CVE-2023-50471.patch │ ├── CVE-2023-53154.patch │ ├── CVE-2024-31755.patch │ ├── apparmor-service-start-fix.patch │ ├── apparmor.signatures.json │ ├── apparmor.spec │ ├── parser-set-DISTRO-suse-if-built-on-Azure-Linux.patch │ └── removed_unused_global_variables_fix_test-aa.patch ├── application-gateway-kubernetes-ingress │ ├── CVE-2025-30204.patch │ ├── application-gateway-kubernetes-ingress.signatures.json │ ├── application-gateway-kubernetes-ingress.spec │ └── generate_source_tarball.sh ├── apr-util │ ├── apr-util-1.6.3-lmdb-support.patch │ ├── apr-util.signatures.json │ └── apr-util.spec ├── apr │ ├── apr.signatures.json │ ├── apr.spec │ └── skip-known-test-failure.patch ├── archivemount │ ├── archivemount.signatures.json │ └── archivemount.spec ├── asc │ └── asc.spec ├── asciidoc │ ├── asciidoc.signatures.json │ └── asciidoc.spec ├── aspell │ ├── aspell-0.60.7-fileconflict.patch │ ├── aspell-0.60.7-pspell_conf.patch │ ├── aspell.signatures.json │ └── aspell.spec ├── at-spi2-atk │ ├── at-spi2-atk.signatures.json │ └── at-spi2-atk.spec ├── at-spi2-core │ ├── at-spi2-core.signatures.json │ ├── at-spi2-core.spec │ └── fix-login-screen-a11y.patch ├── at │ ├── at-3.1.14-fix_no_export.patch │ ├── at-3.1.14-opt_V.patch │ ├── at-3.1.16-clear-nonjobs.patch │ ├── at-3.1.16-fclose-error.patch │ ├── at-3.1.20-log-jobs.patch │ ├── at-3.1.23-document-n.patch │ ├── at-3.2.2-lock-locks.patch │ ├── at-3.2.2-shell.patch │ ├── at-3.2.5-aborted-jobs.patch │ ├── at-3.2.5-mailwithhostname.patch │ ├── at-3.2.5-make.patch │ ├── at-3.2.5-nitpicks.patch │ ├── at-3.2.5-noabort.patch │ ├── at-3.2.5-pam.patch │ ├── at-aarch64.patch │ ├── at.signatures.json │ ├── at.spec │ ├── atd.sysconf │ ├── atd.systemd │ └── pam_atd ├── atf │ ├── README │ ├── atf.signatures.json │ └── atf.spec ├── atftp │ ├── atftp.signatures.json │ └── atftp.spec ├── atinject │ ├── LICENSE-2.0.txt │ ├── MANIFEST-TCK.MF │ ├── MANIFEST.MF │ ├── atinject.signatures.json │ └── atinject.spec ├── atk │ ├── atk.signatures.json │ └── atk.spec ├── atop │ ├── CVE-2025-31160.patch │ ├── atop-sysconfig.patch │ ├── atop.d │ ├── atop.signatures.json │ ├── atop.spec │ └── format.patch ├── attr │ ├── attr.signatures.json │ └── attr.spec ├── audit │ ├── audit.signatures.json │ ├── audit.spec │ └── refuse-manual-stop.patch ├── augeas │ ├── CVE-2025-2588.patch │ ├── augeas.signatures.json │ └── augeas.spec ├── authbind │ ├── authbind-makefile-fixes.patch │ ├── authbind.signatures.json │ └── authbind.spec ├── authd │ ├── auth.socket │ ├── auth@.service │ ├── authd.signatures.json │ └── authd.spec ├── authselect │ ├── authselect.signatures.json │ └── authselect.spec ├── autoconf-archive │ ├── autoconf-archive.signatures.json │ └── autoconf-archive.spec ├── autoconf │ ├── autoconf.signatures.json │ └── autoconf.spec ├── autoconf213 │ ├── autoconf-2.13-versioning.patch │ ├── autoconf213-destdir.patch │ ├── autoconf213-info.patch │ ├── autoconf213.signatures.json │ └── autoconf213.spec ├── autofs │ ├── autofs.signatures.json │ └── autofs.spec ├── autogen │ ├── allow-guile-3.0.patch │ ├── autogen.signatures.json │ └── autogen.spec ├── automake │ ├── automake.signatures.json │ └── automake.spec ├── avahi │ ├── CVE-2021-26720.nopatch │ ├── CVE-2021-3468.patch │ ├── CVE-2021-3502.patch │ ├── CVE-2023-1981.patch │ ├── CVE-2023-38469.patch │ ├── CVE-2023-38470.patch │ ├── CVE-2023-38471.patch │ ├── CVE-2023-38472.patch │ ├── CVE-2023-38473.patch │ ├── CVE-2024-52616.patch │ ├── avahi-libevent-pc-fix.patch │ ├── avahi.signatures.json │ └── avahi.spec ├── azcopy │ ├── CVE-2024-51744.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22870.patch │ ├── CVE-2025-30204.patch │ ├── azcopy.signatures.json │ ├── azcopy.spec │ └── generate_source_tarball.sh ├── azure-iot-sdk-c │ ├── azure-iot-sdk-c.signatures.json │ └── azure-iot-sdk-c.spec ├── azure-nvme-utils │ ├── azure-nvme-utils.signatures.json │ └── azure-nvme-utils.spec ├── azure-storage-cpp │ ├── azure-storage-cpp.signatures.json │ └── azure-storage-cpp.spec ├── azurelinux-image-tools │ ├── azurelinux-image-tools.signatures.json │ ├── azurelinux-image-tools.spec │ └── generate_source_tarball.sh ├── azurelinux-release │ ├── 15-azurelinux-default.conf │ ├── 90-default-user.preset │ ├── 90-default.preset │ ├── 99-default-disable.preset │ ├── azurelinux-release.signatures.json │ └── azurelinux-release.spec ├── azurelinux-repos │ ├── MICROSOFT-RPM-GPG-KEY │ ├── azurelinux-amd-preview.repo │ ├── azurelinux-amd.repo │ ├── azurelinux-cloud-native-preview.repo │ ├── azurelinux-cloud-native.repo │ ├── azurelinux-debuginfo-preview.repo │ ├── azurelinux-debuginfo.repo │ ├── azurelinux-extended-debuginfo-preview.repo │ ├── azurelinux-extended-debuginfo.repo │ ├── azurelinux-extended-preview.repo │ ├── azurelinux-extended.repo │ ├── azurelinux-ms-non-oss-preview.repo │ ├── azurelinux-ms-non-oss.repo │ ├── azurelinux-ms-oss-preview.repo │ ├── azurelinux-ms-oss.repo │ ├── azurelinux-official-base.repo │ ├── azurelinux-official-preview.repo │ ├── azurelinux-repos.signatures.json │ └── azurelinux-repos.spec ├── azurelinux-rpm-macros │ ├── azurelinux-rpm-macros.signatures.json │ ├── azurelinux-rpm-macros.spec │ ├── brp-fix-pyc-reproducibility │ ├── brp-python-bytecompile │ ├── brp-python-hardlink │ ├── clamp_source_mtime.py │ ├── common.lua │ ├── compileall2.py │ ├── default-annobin-cc1 │ ├── default-hardened-cc1 │ ├── default-hardened-ld │ ├── forge.lua │ ├── gen-ld-script.sh │ ├── generate-package-note.py │ ├── gpgverify │ ├── import_all_modules.py │ ├── macros │ ├── macros.check │ ├── macros.fonts │ ├── macros.forge │ ├── macros.grub2 │ ├── macros.mono-srpm │ ├── macros.nodejs-srpm │ ├── macros.openblas-srpm │ ├── macros.perl-srpm │ ├── macros.pybytecompile │ ├── macros.python │ ├── macros.python-srpm │ ├── macros.python3 │ ├── macros.rust-srpm │ ├── macros.suse │ ├── pathfix.py │ ├── python.lua │ ├── rpmrc │ └── verify-package-notes.sh ├── azurelinux-sysinfo │ ├── azurelinux-sysinfo.service │ ├── azurelinux-sysinfo.signatures.json │ ├── azurelinux-sysinfo.spec │ ├── collect-sysinfo │ ├── sysinfo-schema-v1.json │ └── sysinfo-selinuxpolicies.cil ├── babel │ ├── babel.signatures.json │ └── babel.spec ├── babeltrace2 │ ├── 00-fix-lttng-live-array-access.patch │ ├── babeltrace2.signatures.json │ └── babeltrace2.spec ├── bash-completion │ ├── bash-completion.signatures.json │ └── bash-completion.spec ├── bash │ ├── bash-2.03-profile.patch │ ├── bash-5.1.patch │ ├── bash-tty-tests.patch │ ├── bash.signatures.json │ ├── bash.spec │ └── bash_completion ├── bazel │ ├── 0001-JDK17.patch │ ├── bazel.signatures.json │ ├── bazel.spec │ └── fix-bazel-version-check.patch ├── bc │ ├── bc.signatures.json │ └── bc.spec ├── bcc │ ├── CVE-2024-2314.patch │ ├── CVE-2025-29481.patch │ ├── bcc.signatures.json │ └── bcc.spec ├── bind │ ├── CVE-2019-6470.nopatch │ ├── bind.signatures.json │ ├── bind.spec │ ├── fix-maybe-uninitialized-warning-in-dlz_mysqldyn_mod.patch │ ├── generate-rndc-key.sh │ ├── named-chroot.files │ ├── named.conf.sample │ ├── named.empty │ ├── named.localhost │ ├── named.logrotate │ ├── named.loopback │ ├── named.rfc1912.zones │ ├── named.root │ ├── named.root.key │ ├── named.rwtab │ ├── named.sysconfig │ ├── nongit-fix.patch │ └── setup-named-chroot.sh ├── binutils │ ├── CVE-2025-0840.patch │ ├── CVE-2025-11082.patch │ ├── CVE-2025-11083.patch │ ├── CVE-2025-11412.patch │ ├── CVE-2025-11414.patch │ ├── CVE-2025-1176.patch │ ├── CVE-2025-1178.patch │ ├── CVE-2025-1181.patch │ ├── CVE-2025-1182.patch │ ├── CVE-2025-1744.patch │ ├── CVE-2025-5244.patch │ ├── CVE-2025-5245.patch │ ├── CVE-2025-7545.patch │ ├── CVE-2025-7546.patch │ ├── CVE-2025-8225.patch │ ├── binutils.signatures.json │ ├── binutils.spec │ ├── disable_gold_test.patch │ └── export-demangle-header.patch ├── bison │ ├── bison.signatures.json │ └── bison.spec ├── blktrace │ ├── blktrace.signatures.json │ └── blktrace.spec ├── bluez │ ├── 0001-build-Always-define-confdir-and-statedir.patch │ ├── 0001-hog-Fix-read-order-of-attributes-rediffed.patch │ ├── 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch │ ├── 0002-Use-g_memdup2-everywhere.patch │ ├── 0002-hog-Add-input-queue-while-uhid-device-has-not-been-c-rediffed.patch │ ├── 0002-systemd-Add-PrivateTmp-and-NoNewPrivileges-options.patch │ ├── 0003-systemd-Add-more-filesystem-lockdown.patch │ ├── 0004-systemd-More-lockdown.patch │ ├── CVE-2022-3563.patch │ ├── CVE-2023-45866.patch │ ├── CVE-2023-50229-CVE-2023-50230.patch │ ├── bluez.gitignore │ ├── bluez.signatures.json │ └── bluez.spec ├── bmake │ ├── bmake.signatures.json │ ├── bmake.spec │ ├── do-not-run-tests-on-install.patch │ └── remove-inconsistent-time-tests.patch ├── bmon │ ├── bmon.signatures.json │ └── bmon.spec ├── boost │ ├── boost-1.81-phoenix-multiple-defn.patch │ ├── boost.signatures.json │ └── boost.spec ├── bpftrace │ ├── 0001-Remove-cstring_view.patch │ ├── bpftrace.signatures.json │ └── bpftrace.spec ├── brotli │ ├── brotli.signatures.json │ └── brotli.spec ├── btrfs-progs │ ├── btrfs-progs.signatures.json │ └── btrfs-progs.spec ├── bubblewrap │ ├── bubblewrap.signatures.json │ └── bubblewrap.spec ├── build-essential │ └── build-essential.spec ├── busybox │ ├── CVE-2021-42380.patch │ ├── CVE-2022-28391.patch │ ├── CVE-2022-48174.patch │ ├── CVE-2023-39810.patch │ ├── CVE-2023-42363.patch │ ├── CVE-2023-42365.patch │ ├── CVE-2023-42366.patch │ ├── busybox-1.31.1-stime-fix.patch │ ├── busybox-petitboot.config │ ├── busybox-static.config │ ├── busybox.signatures.json │ └── busybox.spec ├── byacc │ ├── byacc.signatures.json │ └── byacc.spec ├── byaccj │ ├── byaccj.signatures.json │ └── byaccj.spec ├── bzip2 │ ├── bzip2-1.0.8-install_docs-1.patch │ ├── bzip2.signatures.json │ ├── bzip2.spec │ └── cflags-fix.patch ├── c-ares │ ├── c-ares.signatures.json │ └── c-ares.spec ├── ca-certificates │ ├── LICENSE │ ├── README.edk2 │ ├── README.etc │ ├── README.extr │ ├── README.java │ ├── README.openssl │ ├── README.pem │ ├── README.src │ ├── README.usr │ ├── bundle2pem.sh │ ├── ca-certificates.signatures.json │ ├── ca-certificates.spec │ ├── cert2certdata.sh │ ├── certdata.base.txt │ ├── certdata.distrusted.txt │ ├── certdata.microsoft.txt │ ├── certdata2pem.py │ ├── check_certs.sh │ ├── fetch.sh │ ├── nssckbi.h │ ├── pem2bundle.sh │ ├── sort-blocks.py │ ├── sources │ ├── trust-fixes │ ├── update-ca-trust │ └── update-ca-trust.8.txt ├── cairo │ ├── cairo.signatures.json │ └── cairo.spec ├── cal10n │ ├── cal10n.signatures.json │ └── cal10n.spec ├── calamares │ ├── Azure-Linux-Calamares-Conf-Patch-3.3.1.patch │ ├── azl-eula │ ├── azl-logo.png │ ├── azl-welcome.png │ ├── branding.desc │ ├── calamares-auto_de.ts │ ├── calamares-auto_fr.ts │ ├── calamares-auto_it.ts │ ├── calamares.signatures.json │ ├── calamares.spec │ ├── install-progress-bar-fix.patch │ ├── license.conf │ ├── round-to-full-disk-size.patch │ ├── serialize-read-access.patch │ ├── settings.conf │ ├── show.qml │ ├── stylesheet.qss │ └── users.conf ├── catch │ ├── catch.signatures.json │ └── catch.spec ├── ccache │ ├── ccache.signatures.json │ └── ccache.spec ├── cdrkit │ ├── cdrkit-1.1.9-efi-boot.patch │ ├── cdrkit-fix-format-security.patch │ ├── cdrkit.signatures.json │ └── cdrkit.spec ├── ceph │ ├── 0032-cmake-modules-BuildBoost.cmake.patch │ ├── 0034-src-pybind-rbd-rbd.pyx.patch │ ├── CVE-2012-2677.patch │ ├── CVE-2012-6708.patch │ ├── CVE-2014-5461.patch │ ├── CVE-2015-9251.patch │ ├── CVE-2020-10722.patch │ ├── CVE-2020-10723.patch │ ├── CVE-2020-10724.patch │ ├── CVE-2020-14378.patch │ ├── CVE-2020-22217.patch │ ├── CVE-2021-24032.patch │ ├── CVE-2021-28361.patch │ ├── CVE-2021-3672.patch │ ├── CVE-2024-25629.patch │ ├── CVE-2024-47866.patch │ ├── CVE-2024-48916.patch │ ├── CVE-2024-52338.patch │ ├── CVE-2025-1744.patch │ ├── CVE-2025-52555.patch │ ├── CVE-2025-9648.patch │ ├── ceph.signatures.json │ └── ceph.spec ├── cereal │ ├── cereal.signatures.json │ └── cereal.spec ├── cert-manager │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-32386.patch │ ├── cert-manager.signatures.json │ ├── cert-manager.spec │ └── generate_source_tarball.sh ├── cf-cli │ ├── CVE-2024-45337.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── cf-cli.signatures.json │ └── cf-cli.spec ├── check-restart │ ├── check-restart.service │ ├── check-restart.sh │ ├── check-restart.signatures.json │ ├── check-restart.spec │ └── check-restart.timer ├── check │ ├── check.signatures.json │ └── check.spec ├── checkpolicy │ ├── checkpolicy.signatures.json │ └── checkpolicy.spec ├── checksec │ ├── checksec.signatures.json │ └── checksec.spec ├── chkconfig │ ├── chkconfig.signatures.json │ └── chkconfig.spec ├── chrony │ ├── chrony-dnssrv@.service │ ├── chrony-dnssrv@.timer │ ├── chrony-service-helper.patch │ ├── chrony.dhclient │ ├── chrony.helper │ ├── chrony.signatures.json │ └── chrony.spec ├── chrpath │ ├── chrpath.signatures.json │ └── chrpath.spec ├── cifs-utils │ ├── cifs-utils.signatures.json │ └── cifs-utils.spec ├── ck │ ├── ck-nogettid.patch │ ├── ck-register-constraint.patch │ ├── ck-unit-sequence.patch │ ├── ck-unit-time.patch │ ├── ck.signatures.json │ ├── ck.spec │ └── ck_disable_ck_hclh_test.patch ├── clamav │ ├── clamav.signatures.json │ └── clamav.spec ├── clang │ ├── CVE-2024-7883.patch │ ├── clang-format-fix.patch │ ├── clang.signatures.json │ └── clang.spec ├── cloud-hypervisor │ ├── cloud-hypervisor.signatures.json │ └── cloud-hypervisor.spec ├── cloud-init │ ├── 10-azure-kvp.cfg │ ├── Add-Network-Interface-Renaming-Support-for-CAPM3-Met.patch │ ├── CVE-2024-11584.patch │ ├── CVE-2024-6174.patch │ ├── cloud-init.signatures.json │ ├── cloud-init.spec │ └── no-single-process.patch ├── cloud-provider-kubevirt │ ├── cloud-provider-kubevirt.signatures.json │ ├── cloud-provider-kubevirt.spec │ ├── generate-source-tarball.sh │ ├── golang-version-upgrade.patch │ ├── initialization-and-configuration-handling.patch │ ├── instanceexists-watches-vms-instead-of-vmis.patch │ └── single-ip-address-for-node.patch ├── cloud-utils-growpart │ ├── cloud-utils-growpart.signatures.json │ └── cloud-utils-growpart.spec ├── cmake │ ├── 0001-manually-recreating-patches.patch │ ├── CVE-2023-35945.patch │ ├── CVE-2023-44487.patch │ ├── CVE-2024-11053.patch │ ├── CVE-2024-48615.patch │ ├── CVE-2024-6197.patch │ ├── CVE-2024-6874.patch │ ├── CVE-2024-7264.patch │ ├── CVE-2024-8096.patch │ ├── CVE-2024-9681.patch │ ├── CVE-2025-10148.patch │ ├── CVE-2025-4947.patch │ ├── CVE-2025-5916.patch │ ├── CVE-2025-5917.patch │ ├── CVE-2025-5918.patch │ ├── CVE-2025-9301.patch │ ├── cmake.signatures.json │ ├── cmake.spec │ └── macros.cmake ├── cmocka │ ├── cmocka-1.1.5.tar.xz.asc │ ├── cmocka.signatures.json │ └── cmocka.spec ├── cni-plugins │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── cni-plugins.signatures.json │ └── cni-plugins.spec ├── cni │ ├── 99-loopback.conf │ ├── CVE-2021-38561.patch │ ├── CVE-2022-29526.patch │ ├── CVE-2022-32149.patch │ ├── CVE-2024-45338.patch │ ├── build.sh │ ├── cni.signatures.json │ └── cni.spec ├── collectd │ ├── apache.conf │ ├── collectd-gcc11.patch │ ├── collectd-httpd.conf │ ├── collectd-include-collectd.d.patch │ ├── collectd.service │ ├── collectd.signatures.json │ ├── collectd.spec │ ├── email.conf │ ├── fix_missing_longintrepr_header.patch │ ├── mysql.conf │ ├── nginx.conf │ ├── onewire.conf │ ├── rrdtool.conf │ ├── sensors.conf │ └── snmp.conf ├── colm │ ├── Colm-NoStatic.patch │ ├── colm.signatures.json │ └── colm.spec ├── color-filesystem │ └── color-filesystem.spec ├── colord │ ├── colord-LGPLv2.txt │ ├── colord.signatures.json │ └── colord.spec ├── compiler-rt │ ├── compiler-rt.signatures.json │ └── compiler-rt.spec ├── conda │ ├── 0001-Use-main-entry-point-for-conda-and-re-add-conda-env-.patch │ ├── 0004-Do-not-try-to-run-usr-bin-python.patch │ ├── 0005-Fix-failing-tests-in-test_api.py.patch │ ├── 0006-shell-assume-shell-plugins-are-in-etc.patch │ ├── conda │ ├── conda-cpuinfo.patch │ ├── conda.signatures.json │ ├── conda.spec │ └── conda_sys_prefix.patch ├── conmon │ ├── conmon.signatures.json │ └── conmon.spec ├── conntrack-tools │ ├── conntrack-tools.signatures.json │ ├── conntrack-tools.spec │ ├── conntrackd.conf │ └── conntrackd.service ├── containerd2 │ ├── CVE-2024-25621.patch │ ├── CVE-2024-40635.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-47291.patch │ ├── CVE-2025-64329.patch │ ├── containerd.service │ ├── containerd.toml │ ├── containerd2.signatures.json │ ├── containerd2.spec │ ├── multi-snapshotters-support.patch │ └── tardev-support.patch ├── containerized-data-importer │ ├── CVE-2022-2879.patch │ ├── CVE-2023-39325.patch │ ├── CVE-2023-3978.patch │ ├── CVE-2023-44487.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-3727.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-58058.patch │ ├── CVE-2025-58183.patch │ ├── containerized-data-importer.signatures.json │ └── containerized-data-importer.spec ├── core-packages │ └── core-packages.spec ├── coredns │ ├── CVE-2024-53259.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-29786.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-47950.patch │ ├── CVE-2025-58063.patch │ ├── CVE-2025-59530.patch │ ├── coredns-example-net-test.patch │ ├── coredns.signatures.json │ ├── coredns.spec │ └── generate_source_tarball.sh ├── coreutils │ ├── CVE-2013-0221.nopatch │ ├── CVE-2013-0222.nopatch │ ├── CVE-2013-0223.nopatch │ ├── CVE-2016-2781.nopatch │ ├── CVE-2024-0684.patch │ ├── coreutils-9.4-i18n-1.patch │ ├── coreutils-9.4-uname-1.patch │ ├── coreutils.signatures.json │ ├── coreutils.spec │ └── serial-console.sh ├── cpio │ ├── cpio.signatures.json │ └── cpio.spec ├── cpprest │ ├── cpprest-2.10.17-disable-outside-and-failing-tests.patch │ ├── cpprest-2.10.9-disable-test-extract_floating_point.patch │ ├── cpprest-2.10.9-disable-tests-long-timeouts.patch │ ├── cpprest.signatures.json │ └── cpprest.spec ├── cppunit │ ├── cppunit.signatures.json │ └── cppunit.spec ├── cpufrequtils │ ├── cpufrequtils-008-aperf-32bit.patch │ ├── cpufrequtils-008-no-aperf-on-ppc.patch │ ├── cpufrequtils-multilib.patch │ ├── cpufrequtils.signatures.json │ ├── cpufrequtils.spec │ └── disable-gsic.patch ├── cpulimit │ ├── cpulimit-2.8-do_not_forget_version.patch │ ├── cpulimit.signatures.json │ └── cpulimit.spec ├── cracklib │ ├── cracklib.signatures.json │ └── cracklib.spec ├── crash-gcore-command │ ├── crash-gcore-command.signatures.json │ ├── crash-gcore-command.spec │ └── gcore_defs.patch ├── crash │ ├── crash.signatures.json │ ├── crash.spec │ └── lzo_snappy_zstd.patch ├── createrepo_c │ ├── bashcomp-detection-fix.patch │ ├── createrepo_c.signatures.json │ └── createrepo_c.spec ├── cri-tools │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── cri-tools.signatures.json │ └── cri-tools.spec ├── cronie │ ├── cronie.signatures.json │ ├── cronie.spec │ └── run-parts.sh ├── cryptsetup │ ├── cryptsetup-add-system-library-paths.patch │ ├── cryptsetup.signatures.json │ └── cryptsetup.spec ├── ctags │ ├── CVE-2022-4515.nopatch │ ├── ctags.signatures.json │ └── ctags.spec ├── cups │ ├── cups-banners.patch │ ├── cups-direct-usb.patch │ ├── cups-driverd-timeout.patch │ ├── cups-dymo-deviceid.patch │ ├── cups-failover-backend.patch │ ├── cups-freebind.patch │ ├── cups-ipp-multifile.patch │ ├── cups-lspp.patch │ ├── cups-multilib.patch │ ├── cups-no-export-ssllibs.patch │ ├── cups-system-auth.patch │ ├── cups-uri-compat.patch │ ├── cups-usb-paperout.patch │ ├── cups-web-devices-timeout.patch │ ├── cups.signatures.json │ ├── cups.spec │ ├── cupsprinter.png │ └── macros.cups ├── curl │ ├── CVE-2025-0167.patch │ ├── CVE-2025-0665.patch │ ├── CVE-2025-0725.patch │ ├── CVE-2025-10148.patch │ ├── curl.signatures.json │ └── curl.spec ├── cyrus-sasl-bootstrap │ ├── cyrus-sasl-bootstrap.signatures.json │ └── cyrus-sasl-bootstrap.spec ├── cyrus-sasl │ ├── cyrus-sasl.signatures.json │ └── cyrus-sasl.spec ├── dasel │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── dasel.signatures.json │ ├── dasel.spec │ └── generate_source_tarball.sh ├── dbus-glib │ ├── dbus-glib.signatures.json │ └── dbus-glib.spec ├── dbus-python │ ├── 0001-Move-python-modules-to-architecture-specific-directo.patch │ ├── dbus-python.signatures.json │ └── dbus-python.spec ├── dbus │ ├── dbus.signatures.json │ └── dbus.spec ├── dconf │ ├── dconf-override.patch │ ├── dconf.signatures.json │ └── dconf.spec ├── dcos-cli │ ├── CVE-2020-26160.patch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2025-27144.patch │ ├── dcos-cli.signatures.json │ └── dcos-cli.spec ├── debootstrap │ ├── debootstrap.signatures.json │ └── debootstrap.spec ├── debugedit │ ├── debugedit.signatures.json │ └── debugedit.spec ├── dejagnu │ ├── dejagnu.signatures.json │ └── dejagnu.spec ├── dejavu-fonts │ ├── dejavu-fonts.signatures.json │ └── dejavu-fonts.spec ├── desktop-file-utils │ ├── desktop-file-utils.signatures.json │ └── desktop-file-utils.spec ├── device-mapper-multipath │ ├── device-mapper-multipath.signatures.json │ └── device-mapper-multipath.spec ├── dhcpcd │ ├── dhcpcd.service │ ├── dhcpcd.signatures.json │ ├── dhcpcd.spec │ ├── dhcpcd@.service │ └── systemd-sysusers.conf ├── dialog │ ├── dialog-incdir.patch │ ├── dialog-libs.patch │ ├── dialog-multilib.patch │ ├── dialog.signatures.json │ └── dialog.spec ├── dietlibc │ ├── CVE-2015-1473.patch │ ├── dietlibc-insecure-defpath.patch │ ├── dietlibc.signatures.json │ └── dietlibc.spec ├── diffutils │ ├── diffutils.signatures.json │ └── diffutils.spec ├── ding-libs │ ├── ding-libs.signatures.json │ └── ding-libs.spec ├── distribution-gpg-keys │ ├── distribution-gpg-keys.signatures.json │ └── distribution-gpg-keys.spec ├── distroless-packages │ └── distroless-packages.spec ├── dkms │ ├── dkms.signatures.json │ └── dkms.spec ├── dmidecode │ ├── dmidecode.signatures.json │ └── dmidecode.spec ├── dnf-plugins-core │ ├── dnf-plugins-core.signatures.json │ └── dnf-plugins-core.spec ├── dnf │ ├── dnf.signatures.json │ └── dnf.spec ├── dnf5 │ ├── CVE-2024-1929.patch │ ├── CVE-2024-1930.patch │ ├── CVE-2024-2746.patch │ ├── dnf5-repo-snapshot.patch │ ├── dnf5.signatures.json │ └── dnf5.spec ├── dnsmasq │ ├── dnsmasq.signatures.json │ ├── dnsmasq.spec │ └── fix-missing-ioctl-SIOCGSTAMP-add-sockios-header-linux-5.2.patch ├── docbook-dtd-xml │ ├── docbook-dtd-xml.signatures.json │ └── docbook-dtd-xml.spec ├── docbook-dtds │ ├── LICENSE.PTR │ ├── docbook-4.2-euro.patch │ ├── docbook-dtd30-sgml-1.0.catalog.patch │ ├── docbook-dtd31-sgml-1.0.catalog.patch │ ├── docbook-dtd40-sgml-1.0.catalog.patch │ ├── docbook-dtd41-sgml-1.0.catalog.patch │ ├── docbook-dtd412-entities.patch │ ├── docbook-dtd42-sgml-1.0.catalog.patch │ ├── docbook-dtds-ents.patch │ ├── docbook-dtds.signatures.json │ ├── docbook-dtds.spec │ └── docbook-sgml-systemrewrite.patch ├── docbook-style-xsl │ ├── docbook-style-xsl.signatures.json │ └── docbook-style-xsl.spec ├── docbook5-schemas │ ├── docbook5-schemas.signatures.json │ └── docbook5-schemas.spec ├── docker-buildx │ ├── CVE-2024-45337.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-0495.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-47913.patch │ ├── docker-buildx.signatures.json │ └── docker-buildx.spec ├── docker-cli │ ├── CVE-2024-24786.patch │ ├── disable_manpage_vendor.patch │ ├── docker-cli.signatures.json │ ├── docker-cli.spec │ └── generate_source_tarball.sh ├── docker-compose │ ├── CVE-2024-10846.patch │ ├── CVE-2024-45337.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-47913.patch │ ├── docker-compose.signatures.json │ ├── docker-compose.spec │ └── generate_source_tarball.sh ├── dos2unix │ ├── dos2unix.signatures.json │ └── dos2unix.spec ├── dosfstools │ ├── dosfstools.signatures.json │ └── dosfstools.spec ├── doxygen │ ├── CVE-2025-6140.patch │ ├── doxygen.signatures.json │ └── doxygen.spec ├── dpdk │ ├── dpdk.signatures.json │ └── dpdk.spec ├── dracut │ ├── 00-hostonly.conf │ ├── 00-hyperv.conf │ ├── 00-virtio.conf │ ├── 00-vrf.conf │ ├── 00-xen.conf │ ├── 0006-dracut.sh-validate-instmods-calls.patch │ ├── 0011-Remove-reference-to-kernel-module-zlib-in-fips-module.patch │ ├── 0012-fix-dracut-functions-avoid-awk-in-get_maj_min.patch │ ├── 0013-revert-fix-crypt-unlock-encrypted-devices-by-default.patch │ ├── 0014-fix-systemd-pcrphase-in-hostonly-mode-do-not-try-to-include-systemd-pcrphase.patch │ ├── 0015-fix-systemd-pcrphase-make-tpm2-tss-an-optional-dependency.patch │ ├── 0016-Handle-SELinux-configuration-for-overlayfs-folders.patch │ ├── 20overlayfs │ │ ├── module-setup.sh │ │ └── overlayfs-mount.sh │ ├── 50-noxattr.conf │ ├── 90livenet │ │ ├── azl-liveos-artifacts-download.service │ │ └── azl-liveos-artifacts-download.sh │ ├── 90overlayfs │ │ └── azl-configure-selinux.sh │ ├── add-livenet-download-service.patch │ ├── allow-liveos-overlay-no-user-confirmation-prompt.patch │ ├── avoid-mktemp-collisions-with-find-not-path.patch │ ├── dracut.signatures.json │ ├── dracut.spec │ ├── fix-dracut-systemd-include-systemd-cryptsetup.patch │ ├── lgpl-2.1.txt │ └── megaraid.conf ├── dstat │ ├── dstat.signatures.json │ └── dstat.spec ├── dtc │ ├── dtc.signatures.json │ └── dtc.spec ├── duktape │ ├── duktape-2.7.0-link-against-libm.patch │ ├── duktape.signatures.json │ └── duktape.spec ├── dwarves │ ├── CVE-2025-29481.patch │ ├── dwarves.signatures.json │ └── dwarves.spec ├── dwz │ ├── dwz.signatures.json │ └── dwz.spec ├── e2fsprogs │ ├── e2fsprogs.signatures.json │ ├── e2fsprogs.spec │ └── libsupport-add-checks-to-prevent-buffer-overrun-bugs-CVE-2019-5094.patch ├── ebtables │ ├── ebtables-config │ ├── ebtables-helper │ ├── ebtables-legacy-save │ ├── ebtables.service │ ├── ebtables.signatures.json │ └── ebtables.spec ├── ed │ ├── CVE-2015-2987.nopatch │ ├── ed.signatures.json │ └── ed.spec ├── edk2 │ ├── 0001-BaseTools-do-not-build-BrotliCompress-RH-only.patch │ ├── 0002-MdeModulePkg-remove-package-private-Brotli-include-p.patch │ ├── 0003-MdeModulePkg-TerminalDxe-set-xterm-resolution-on-mod.patch │ ├── 0004-OvmfPkg-take-PcdResizeXterm-from-the-QEMU-command-li.patch │ ├── 0005-ArmVirtPkg-take-PcdResizeXterm-from-the-QEMU-command.patch │ ├── 0006-OvmfPkg-enable-DEBUG_VERBOSE-RHEL-only.patch │ ├── 0007-OvmfPkg-silence-DEBUG_VERBOSE-0x00400000-in-QemuVide.patch │ ├── 0008-ArmVirtPkg-silence-DEBUG_VERBOSE-0x00400000-in-QemuR.patch │ ├── 0009-OvmfPkg-QemuRamfbDxe-Do-not-report-DXE-failure-on-Aa.patch │ ├── 0010-OvmfPkg-silence-EFI_D_VERBOSE-0x00400000-in-NvmExpre.patch │ ├── 0011-OvmfPkg-QemuKernelLoaderFsDxe-suppress-error-on-no-k.patch │ ├── 0012-SecurityPkg-Tcg2Dxe-suppress-error-on-no-swtpm-in-si.patch │ ├── 0013-UefiCpuPkg-MpInitLib-fix-apic-mode-for-cpu-hotplug.patch │ ├── 0014-CryptoPkg-CrtLib-add-stat.h.patch │ ├── 0015-CryptoPkg-CrtLib-add-access-open-read-write-close-sy.patch │ ├── 0016-OvmfPkg-set-PcdVariableStoreSize-PcdMaxVolatileVaria.patch │ ├── 0017-silence-.-has-a-LOAD-segment-with-RWX-permissions-wa.patch │ ├── 0018-NetworkPkg-TcpDxe-Fixed-system-stuck-on-PXE-boot-flo.patch │ ├── 0019-NetworkPkg-DxeNetLib-adjust-PseudoRandom-error-loggi.patch │ ├── 30-edk2-ovmf-4m-qcow2-x64-sb-enrolled.json │ ├── 30-edk2-ovmf-ia32-sb-enrolled.json │ ├── 31-edk2-ovmf-2m-raw-x64-sb-enrolled.json │ ├── 40-edk2-ovmf-4m-qcow2-x64-sb.json │ ├── 40-edk2-ovmf-ia32-sb.json │ ├── 41-edk2-ovmf-2m-raw-x64-sb.json │ ├── 50-edk2-aarch64-qcow2.json │ ├── 50-edk2-arm-verbose.json │ ├── 50-edk2-loongarch64.json │ ├── 50-edk2-ovmf-4m-qcow2-x64-nosb.json │ ├── 50-edk2-ovmf-ia32-nosb.json │ ├── 50-edk2-ovmf-x64-microvm.json │ ├── 50-edk2-riscv-qcow2.json │ ├── 51-edk2-aarch64-raw.json │ ├── 51-edk2-ovmf-2m-raw-x64-nosb.json │ ├── 52-edk2-aarch64-verbose-qcow2.json │ ├── 53-edk2-aarch64-verbose-raw.json │ ├── 60-edk2-ovmf-x64-amdsev.json │ ├── 60-edk2-ovmf-x64-inteltdx.json │ ├── CVE-2022-3996.patch │ ├── CVE-2024-13176.patch │ ├── CVE-2024-2511.patch │ ├── CVE-2024-38796.patch │ ├── CVE-2024-4603.patch │ ├── CVE-2024-4741.patch │ ├── CVE-2024-6119.patch │ ├── CVE-2025-3770.patch │ ├── CVE-2025-9230.patch │ ├── DBXUpdate-20220812.ia32.bin │ ├── DBXUpdate-20220812.x64.bin │ ├── DBXUpdate-20230314.ia32.bin │ ├── DBXUpdate-20230314.x64.bin │ ├── DBXUpdate-20230509.ia32.bin │ ├── DBXUpdate-20230509.x64.bin │ ├── README.experimental │ ├── edk2-build.fedora │ ├── edk2-build.fedora.platforms │ ├── edk2-build.py │ ├── edk2-build.rhel-9 │ ├── edk2.signatures.json │ ├── edk2.spec │ ├── hvloader-target.txt │ ├── make-tarball.sh │ └── ovmf-whitepaper-c770f8c.txt ├── efibootmgr │ ├── efibootmgr.signatures.json │ └── efibootmgr.spec ├── efivar │ ├── efivar.signatures.json │ └── efivar.spec ├── egl-wayland │ ├── 10_nvidia_wayland.json │ ├── egl-wayland.signatures.json │ └── egl-wayland.spec ├── eglexternalplatform │ ├── eglexternalplatform.signatures.json │ └── eglexternalplatform.spec ├── elfutils │ ├── 10-ptrace-yama.conf │ ├── CVE-2024-25260.patch │ ├── CVE-2025-1352.patch │ ├── CVE-2025-1372.patch │ ├── CVE-2025-1376.patch │ ├── CVE-2025-1377.patch │ ├── elfutils.signatures.json │ └── elfutils.spec ├── elixir │ ├── elixir.signatures.json │ └── elixir.spec ├── emacs │ ├── CVE-2024-53920.patch │ ├── CVE-2025-1244.patch │ ├── default.el │ ├── emacs.signatures.json │ ├── emacs.spec │ └── site-start.el ├── enchant2 │ ├── enchant2.signatures.json │ ├── enchant2.spec │ └── enchant_aspell.patch ├── environment-modules │ ├── environment-modules.signatures.json │ └── environment-modules.spec ├── erlang │ ├── erlang.signatures.json │ └── erlang.spec ├── erofs-utils │ ├── 0001-erofs-utils-mkfs-fragment-gracefully-exit-if-tempora.patch │ ├── 0002-erofs-utils-mkfs-reduce-default-dict-size-for-LZMA.patch │ ├── 0003-erofs-utils-mkfs-add-missing-errno-0-before-strto-u-.patch │ ├── 0004-erofs-utils-lib-get-rid-of-tmpfile.patch │ ├── 0005-erofs-utils-mkfs-add-per-segment-reaper-for-multi-th.patch │ ├── 0006-erofs-utils-avoid-overly-large-temporary-buffers-for.patch │ ├── 0007-erofs-utils-lib-shorten-EROFS_FRAGMENT_INMEM_SZ_MAX.patch │ ├── erofs-utils.signatures.json │ └── erofs-utils.spec ├── espeak-ng │ ├── espeak-ng.signatures.json │ └── espeak-ng.spec ├── espeakup │ ├── espeakup.conf │ ├── espeakup.service │ ├── espeakup.signatures.json │ └── espeakup.spec ├── etcd │ ├── etcd.service │ ├── etcd.signatures.json │ ├── etcd.spec │ └── generate_source_tarball.sh ├── ethtool │ ├── ethtool.signatures.json │ └── ethtool.spec ├── execstack │ ├── Add-PL_ARCH-for-AArch64.patch │ ├── execstack.signatures.json │ └── execstack.spec ├── expat │ ├── CVE-2024-8176.patch │ ├── CVE-2025-59375.patch │ ├── expat.signatures.json │ └── expat.spec ├── expect │ ├── expect-fix-format-security.patch │ ├── expect.signatures.json │ └── expect.spec ├── expected │ ├── expected-1.1.0-version-fix.patch │ ├── expected.signatures.json │ └── expected.spec ├── extra-cmake-modules │ ├── extra-cmake-modules.signatures.json │ └── extra-cmake-modules.spec ├── fakeroot │ ├── debian_fix-shell-in-fakeroot.patch │ ├── fakeroot-multilib.patch │ ├── fakeroot.signatures.json │ ├── fakeroot.spec │ └── relax_tartest.patch ├── fcgi │ ├── fcgi.signatures.json │ └── fcgi.spec ├── fdupes │ ├── fdupes.signatures.json │ ├── fdupes.spec │ └── macros.fdupes ├── file │ ├── file.signatures.json │ ├── file.spec │ └── fix_xz_mime_type_reporting.patch ├── filesystem │ └── filesystem.spec ├── fillup │ ├── fillup-1.42-cloexec.patch │ ├── fillup-1.42.dif │ ├── fillup-fno-common.patch │ ├── fillup-nodate.patch │ ├── fillup-optflags.patch │ ├── fillup-retval.dif │ ├── fillup-test-create-DIFFERENCE-dir-before-testing.patch │ ├── fillup-warnings.dif │ ├── fillup.signatures.json │ └── fillup.spec ├── findutils │ ├── findutils.signatures.json │ └── findutils.spec ├── fio │ ├── CVE-2025-10823.patch │ ├── fio.signatures.json │ └── fio.spec ├── firewalld │ ├── FedoraServer.xml │ ├── FedoraWorkstation.xml │ ├── firewalld-only-MDNS-default.patch │ ├── firewalld.signatures.json │ ├── firewalld.spec │ └── firewalld_fix_testsuite.patch ├── flannel │ ├── CVE-2023-44487.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2025-30204.patch │ ├── flannel.signatures.json │ └── flannel.spec ├── flatbuffers │ ├── flatbuffers.signatures.json │ └── flatbuffers.spec ├── flex │ ├── CVE-2019-6293.nopatch │ ├── flex.signatures.json │ ├── flex.spec │ └── lex ├── fluent-bit │ ├── CVE-2024-25431.patch │ ├── CVE-2024-27532.patch │ ├── CVE-2024-34250.patch │ ├── CVE-2024-50608.patch │ ├── CVE-2024-50609.patch │ ├── CVE-2025-12970.patch │ ├── CVE-2025-31498.patch │ ├── CVE-2025-54126.patch │ ├── CVE-2025-58749.patch │ ├── fluent-bit.signatures.json │ └── fluent-bit.spec ├── flux │ ├── CVE-2024-43806.patch │ ├── cargo_config │ ├── disable-static-library.patch │ ├── fix-build-warnings.patch │ ├── fix-unsigned-char.patch │ ├── flux.signatures.json │ ├── flux.spec │ └── generate_source_tarball.sh ├── fmt │ ├── address-libfmt-issue-with-mariadb.patch │ ├── doc-_templates-layout-stripped-Google-Analytics.patch │ ├── doc-_templates-layout-stripped-download-links.patch │ ├── doc-build-do-not-create-virtual-environment.patch │ ├── doc-build-removed-all-pip-internet-stuff.patch │ ├── doc-build-use-python3.patch │ ├── doc-build-use-sphinx-build-3.patch │ ├── doc-index-removed-GitHub-iframe.patch │ ├── fmt.signatures.json │ └── fmt.spec ├── fontawesome-fonts │ ├── 60-fontawesome-6-free-fonts.conf │ ├── README-Trademarks.txt │ ├── fontawesome-fonts.signatures.json │ └── fontawesome-fonts.spec ├── fontawesome4-fonts │ ├── README-Trademarks.txt │ ├── fontawesome4-fonts-fontconfig.conf │ ├── fontawesome4-fonts.signatures.json │ └── fontawesome4-fonts.spec ├── fontconfig │ ├── fontconfig.signatures.json │ └── fontconfig.spec ├── fontpackages │ ├── dnf.patch │ ├── fontpackages-add-ghost-uuid.patch │ ├── fontpackages-drop-fccache.patch │ ├── fontpackages.signatures.json │ └── fontpackages.spec ├── fping │ ├── fping.signatures.json │ └── fping.spec ├── freefont │ ├── freefont.signatures.json │ └── freefont.spec ├── freeglut │ ├── 155.patch │ ├── common.patch │ ├── freeglut.signatures.json │ └── freeglut.spec ├── freeipmi │ ├── bmc-watchdog.service │ ├── freeipmi.signatures.json │ ├── freeipmi.spec │ ├── ipmidetectd.service │ └── ipmiseld.service ├── freetds │ ├── freetds-tds_sysdep_public.h │ ├── freetds.signatures.json │ └── freetds.spec ├── freetype │ ├── freetype.signatures.json │ └── freetype.spec ├── fribidi │ ├── fribidi-drop-bundled-gnulib.patch │ ├── fribidi.signatures.json │ └── fribidi.spec ├── frr │ ├── 0000-remove-babeld-and-ldpd.patch │ ├── 0001-enable-openssl.patch │ ├── 0002-disable-eigrp-crypto.patch │ ├── 0003-fips-mode.patch │ ├── 0004-remove-grpc-test.patch │ ├── CVE-2024-44070.patch │ ├── CVE-2024-55553.patch │ ├── frr-sysusers.conf │ ├── frr-tmpfiles.conf │ ├── frr.signatures.json │ └── frr.spec ├── fsverity-utils │ ├── fsverity-utils.signatures.json │ └── fsverity-utils.spec ├── fuse-zip │ ├── fuse-zip.signatures.json │ └── fuse-zip.spec ├── fuse │ ├── fuse-bailout-transient-config-read-failure.patch │ ├── fuse-escaped-commas-CVE-2018-10906.patch │ ├── fuse-gcc11.patch │ ├── fuse-prevent-silent-truncation.patch │ ├── fuse-refuse-unknown-options-CVE-2018-10906.patch │ ├── fuse-types.patch │ ├── fuse-whitelist-known-good-filesystems.patch │ ├── fuse.signatures.json │ └── fuse.spec ├── fuse3 │ ├── fuse.conf │ ├── fuse3-gcc11.patch │ ├── fuse3.signatures.json │ └── fuse3.spec ├── future │ ├── future-fix_tests.patch │ ├── future-python311.patch │ ├── future-python312.patch │ ├── future-skip_tests_with_connection_errors.patch │ ├── future.signatures.json │ └── future.spec ├── fwctl-hwe │ ├── fwctl-hwe.signatures.json │ └── fwctl-hwe.spec ├── fwctl │ ├── fwctl.signatures.json │ └── fwctl.spec ├── gawk │ ├── gawk.signatures.json │ └── gawk.spec ├── gbenchmark │ ├── gbenchmark.signatures.json │ └── gbenchmark.spec ├── gc │ ├── gc.signatures.json │ └── gc.spec ├── gcc │ ├── 0011-libsanitizer-Remove-crypt-and-crypt_r-interceptors.patch │ ├── CVE-2019-15847.nopatch │ ├── CVE-2023-4039.patch │ ├── gcc.signatures.json │ └── gcc.spec ├── gcovr │ ├── gcovr.signatures.json │ └── gcovr.spec ├── gd │ ├── baselibs.conf │ ├── gd-aliasing.patch │ ├── gd-fontpath.patch │ ├── gd-format.patch │ ├── gd.signatures.json │ └── gd.spec ├── gdb │ ├── CVE-2023-39128.patch │ ├── CVE-2023-39129.patch │ ├── CVE-2023-39130.patch │ ├── CVE-2025-11082.patch │ ├── CVE-2025-7546.patch │ ├── gdb.signatures.json │ └── gdb.spec ├── gdbm │ ├── gdbm.signatures.json │ └── gdbm.spec ├── gdk-pixbuf2 │ ├── CVE-2022-48622.patch │ ├── CVE-2025-6199.patch │ ├── CVE-2025-7345.patch │ ├── gdk-pixbuf2.signatures.json │ └── gdk-pixbuf2.spec ├── geos │ ├── geos.signatures.json │ └── geos.spec ├── gettext │ ├── gettext.signatures.json │ └── gettext.spec ├── gflags │ ├── gflags.signatures.json │ └── gflags.spec ├── gfs2-utils │ ├── gfs2-utils.signatures.json │ └── gfs2-utils.spec ├── gh │ ├── 0001-Fix-false-negative-in-TestMigrationWriteErrors-when-.patch │ ├── CVE-2024-45337.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2024-53858.nopatch │ ├── CVE-2024-53859.patch │ ├── CVE-2024-54132.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-25204.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-48938.patch │ ├── CVE-2025-58183.patch │ ├── generate_source_tarball.sh │ ├── gh.signatures.json │ └── gh.spec ├── giflib │ ├── CVE-2021-40633.patch │ ├── CVE-2022-28506.patch │ ├── CVE-2023-39742.patch │ ├── CVE-2023-48161.patch │ ├── CVE-2025-31344.patch │ ├── giflib.signatures.json │ ├── giflib.spec │ └── giflib_quantize.patch ├── git-lfs │ ├── CVE-2025-22870.patch │ ├── git-lfs.signatures.json │ └── git-lfs.spec ├── git │ ├── Ptest-fix-git-config-syntax.patch │ ├── git.signatures.json │ └── git.spec ├── glib-networking │ ├── CVE-2020-13645.patch │ ├── glib-networking.signatures.json │ └── glib-networking.spec ├── glib │ ├── CVE-2024-52533.patch │ ├── CVE-2025-13601.patch │ ├── CVE-2025-3360.patch │ ├── CVE-2025-4373.patch │ ├── CVE-2025-6052.patch │ ├── CVE-2025-7039.patch │ ├── glib.signatures.json │ └── glib.spec ├── glibc │ ├── 0001-Remove-Wno-format-cflag-from-tests.patch │ ├── CVE-2018-20796.nopatch │ ├── CVE-2019-6488.nopatch │ ├── CVE-2020-1751.nopatch │ ├── CVE-2020-6096.nopatch │ ├── CVE-2023-4527.patch │ ├── CVE-2023-4806.patch │ ├── CVE-2023-4911.patch │ ├── CVE-2023-5156.patch │ ├── CVE-2023-6246.patch │ ├── CVE-2023-6779.patch │ ├── CVE-2023-6780.patch │ ├── CVE-2024-33599.patch │ ├── CVE-2024-33600.patch │ ├── CVE-2024-33601.patch │ ├── CVE-2025-0395.patch │ ├── CVE-2025-4802.patch │ ├── CVE-2025-8058.patch │ ├── add_support_record_failure_barrier.patch │ ├── glibc-2.34_pthread_cond_wait.patch │ ├── glibc-2.38-fhs-1.patch │ ├── glibc-2.38-memalign_fix-1.patch │ ├── glibc-2.38_pthread_lost_wakeup_fix.patch │ ├── glibc.signatures.json │ ├── glibc.spec │ ├── locale-gen.conf │ ├── locale-gen.sh │ ├── nscd-Do-not-rebuild-getaddrinfo-bug-30709.patch │ └── test-CVE-2025-4802.patch ├── glibmm │ ├── glibmm.signatures.json │ └── glibmm.spec ├── glslang │ ├── 0001-pkg-config-compatibility.patch │ ├── glslang.signatures.json │ └── glslang.spec ├── glusterfs │ ├── 0001-rpc-rpc-lib-src-Makefile.am.patch │ ├── CVE-2023-26253.patch │ ├── glusterd.sysconfig │ ├── glusterfs.signatures.json │ ├── glusterfs.spec │ ├── glusterfsd.init │ ├── glusterfsd.service │ ├── glusterfsd.sysconfig │ └── include-eventtypes-always.patch ├── gmp │ ├── gmp.signatures.json │ └── gmp.spec ├── gnome-common │ ├── gnome-common.signatures.json │ └── gnome-common.spec ├── gnu-efi │ ├── 0001-PATCH-Disable-AVX-instruction-set-on-IA32-and-x86_64.patch │ ├── LICENSE.PTR │ ├── gnu-efi.signatures.json │ └── gnu-efi.spec ├── gnupg2 │ ├── gnupg2.signatures.json │ └── gnupg2.spec ├── gnuplot │ ├── gnuplot.signatures.json │ └── gnuplot.spec ├── gnutls │ ├── CVE-2024-12133.patch │ ├── CVE-2024-12243.patch │ ├── CVE-2024-28834.patch │ ├── CVE-2024-28835.patch │ ├── CVE-2025-32988.patch │ ├── CVE-2025-32989.patch │ ├── CVE-2025-32990.patch │ ├── CVE-2025-6395.patch │ ├── gnutls.signatures.json │ └── gnutls.spec ├── go-md2man │ ├── go-md2man.signatures.json │ └── go-md2man.spec ├── gobject-introspection │ ├── disableFaultyTest.patch │ ├── gobject-introspection.signatures.json │ ├── gobject-introspection.spec │ └── testWorkaround.patch ├── golang-packaging │ ├── golang-packaging.signatures.json │ └── golang-packaging.spec ├── golang │ ├── go14_bootstrap_aarch64.patch │ ├── golang-1.23.signatures.json │ ├── golang-1.23.spec │ ├── golang-1.24.signatures.json │ ├── golang-1.24.spec │ ├── golang.signatures.json │ └── golang.spec ├── google-guice │ ├── create_source_tarball.sh │ ├── google-guice.signatures.json │ └── google-guice.spec ├── google-roboto-slab-fonts │ ├── google-roboto-slab-fontconfig.conf │ ├── google-roboto-slab-fonts.signatures.json │ ├── google-roboto-slab-fonts.spec │ └── google-roboto-slab.metainfo.xml ├── gperf │ ├── gperf.signatures.json │ └── gperf.spec ├── gperftools │ ├── CVE-2018-13420.nopatch │ ├── gperftools.signatures.json │ └── gperftools.spec ├── gpgme │ ├── gpgme.signatures.json │ └── gpgme.spec ├── gptfdisk │ ├── gptfdisk.signatures.json │ └── gptfdisk.spec ├── graphviz │ ├── CVE-2020-18032.patch │ ├── CVE-2023-46045.patch │ ├── graphviz-2.42.2-coverity-scan-fixes.patch │ ├── graphviz-2.42.2-dotty-menu-fix.patch │ ├── graphviz.signatures.json │ └── graphviz.spec ├── grep │ ├── grep-3.1-glibc-2.28-fix.patch │ ├── grep-3.31-help-align.patch │ ├── grep-3.31-man-fix-gs.patch │ ├── grep.signatures.json │ └── grep.spec ├── groff │ ├── CVE-2000-0803.nopatch │ ├── groff.signatures.json │ └── groff.spec ├── grpc │ ├── CVE-2024-11407.patch │ ├── generate_source_tarball.sh │ ├── grpc.signatures.json │ ├── grpc.spec │ └── grpcio-cython3.patch ├── grub2 │ ├── 0001-Add-support-for-Linux-EFI-stub-loading.patch │ ├── 0002-Rework-linux-command.patch │ ├── 0003-Rework-linux16-command.patch │ ├── 0004-Add-secureboot-support-on-efi-chainloader.patch │ ├── 0005-Make-any-of-the-loaders-that-link-in-efi-mode-honor-.patch │ ├── 0006-Handle-multi-arch-64-on-32-boot-in-linuxefi-loader.patch │ ├── 0017-Pass-x-hex-hex-straight-through-unmolested.patch │ ├── 0037-Replace-a-lot-of-man-pages-with-slightly-nicer-ones.patch │ ├── 0052-Make-our-info-pages-say-grub2-where-appropriate.patch │ ├── 0069-Make-pmtimer-tsc-calibration-not-take-51-seconds-to-.patch │ ├── 0104-Rework-how-the-fdt-command-builds.patch │ ├── 0112-Try-to-pick-better-locations-for-kernel-and-initrd.patch │ ├── 0115-x86-efi-Use-bounce-buffers-for-reading-to-addresses-.patch │ ├── 0116-x86-efi-Re-arrange-grub_cmd_linux-a-little-bit.patch │ ├── 0117-x86-efi-Make-our-own-allocator-for-kernel-stuff.patch │ ├── 0118-x86-efi-Allow-initrd-params-cmdline-allocations-abov.patch │ ├── 0148-efi-Set-image-base-address-before-jumping-to-the-PE-.patch │ ├── 0149-tpm-Don-t-propagate-TPM-measurement-errors-to-the-ve.patch │ ├── 0150-x86-efi-Reduce-maximum-bounce-buffer-size-to-16-MiB.patch │ ├── 0156-efilinux-Fix-integer-overflows-in-grub_cmd_initrd.patch │ ├── 0157-linuxefi-fail-kernel-validation-without-shim-protoco.patch │ ├── 0166-grub-install-disable-support-for-EFI-platforms.patch │ ├── 0167-restore-umask-for-grub-config.patch │ ├── 0170-fix-memory-alloc-errno-reset.patch │ ├── 0173-loader-efi-chainloader-Simplify-the-loader-state.patch │ ├── 0174-commands-boot-Add-API-to-pass-context-to-loader.patch │ ├── 0175-loader-efi-chainloader-Use-grub_loader_set_ex.patch │ ├── 0176-kern-efi-sb-Reject-non-kernel-files-in-the-shim_lock.patch │ ├── 0177-kern-file-Do-not-leak-device_name-on-error-in-grub_f.patch │ ├── 0178-video-readers-png-Abort-sooner-if-a-read-operation-f.patch │ ├── 0179-video-readers-png-Refuse-to-handle-multiple-image-he.patch │ ├── 0180-video-readers-png-Drop-greyscale-support-to-fix-heap.patch │ ├── 0181-video-readers-png-Avoid-heap-OOB-R-W-inserting-huff-.patch │ ├── 0182-video-readers-png-Sanity-check-some-huffman-codes.patch │ ├── 0183-video-readers-jpeg-Abort-sooner-if-a-read-operation-.patch │ ├── 0184-video-readers-jpeg-Do-not-reallocate-a-given-huff-ta.patch │ ├── 0185-video-readers-jpeg-Refuse-to-handle-multiple-start-o.patch │ ├── 0186-video-readers-jpeg-Block-int-underflow-wild-pointer-.patch │ ├── 0187-normal-charset-Fix-array-out-of-bounds-formatting-un.patch │ ├── 0188-net-ip-Do-IP-fragment-maths-safely.patch │ ├── 0189-net-netbuff-Block-overly-large-netbuff-allocs.patch │ ├── 0190-net-dns-Fix-double-free-addresses-on-corrupt-DNS-res.patch │ ├── 0191-net-dns-Don-t-read-past-the-end-of-the-string-we-re-.patch │ ├── 0192-net-tftp-Prevent-a-UAF-and-double-free-from-a-failed.patch │ ├── 0193-net-tftp-Avoid-a-trivial-UAF.patch │ ├── 0194-net-http-Do-not-tear-down-socket-if-it-s-already-bee.patch │ ├── 0195-net-http-Fix-OOB-write-for-split-http-headers.patch │ ├── 0196-net-http-Error-out-on-headers-with-LF-without-CR.patch │ ├── 0197-fs-f2fs-Do-not-read-past-the-end-of-nat-journal-entr.patch │ ├── 0198-fs-f2fs-Do-not-read-past-the-end-of-nat-bitmap.patch │ ├── 0199-fs-f2fs-Do-not-copy-file-names-that-are-too-long.patch │ ├── 0200-fs-btrfs-Fix-several-fuzz-issues-with-invalid-dir-it.patch │ ├── 0201-fs-btrfs-Fix-more-ASAN-and-SEGV-issues-found-with-fu.patch │ ├── 0202-fs-btrfs-Fix-more-fuzz-issues-related-to-chunks.patch │ ├── 0203-replace-fgrep-with-grep.patch │ ├── CVE-2014-3591.patch │ ├── CVE-2017-7526.patch │ ├── CVE-2019-13627.patch │ ├── CVE-2020-10713.nopatch │ ├── CVE-2020-14308.nopatch │ ├── CVE-2020-14309.nopatch │ ├── CVE-2020-14310.nopatch │ ├── CVE-2020-14311.nopatch │ ├── CVE-2020-14372.nopatch │ ├── CVE-2020-25632.nopatch │ ├── CVE-2020-25647.nopatch │ ├── CVE-2020-27749.nopatch │ ├── CVE-2020-27779.nopatch │ ├── CVE-2021-20225.nopatch │ ├── CVE-2021-20233.nopatch │ ├── CVE-2021-3418.nopatch │ ├── CVE-2022-2601.patch │ ├── CVE-2022-3775.patch │ ├── CVE-2024-45774.patch │ ├── CVE-2024-45775.patch │ ├── CVE-2024-45776.patch │ ├── CVE-2024-45777.patch │ ├── CVE-2024-45778.patch │ ├── CVE-2024-45779.nopatch │ ├── CVE-2024-45780.patch │ ├── CVE-2024-45781.patch │ ├── CVE-2024-45782.nopatch │ ├── CVE-2024-45783.patch │ ├── CVE-2024-56737.patch │ ├── CVE-2025-0624.patch │ ├── CVE-2025-0677.patch │ ├── CVE-2025-0678.patch │ ├── CVE-2025-0684.nopatch │ ├── CVE-2025-0685.nopatch │ ├── CVE-2025-0686.nopatch │ ├── CVE-2025-0689.nopatch │ ├── CVE-2025-0690.patch │ ├── CVE-2025-1118.patch │ ├── CVE-2025-1125.nopatch │ ├── disable-checksum-code-optimization.patch │ ├── grub2.signatures.json │ ├── grub2.spec │ ├── sbat-3-0001-font-Reject-glyphs-exceeds-font-max_glyph_width-or-f.patch │ ├── sbat-3-0004-font-Remove-grub_font_dup_glyph.patch │ ├── sbat-3-0005-font-Fix-integer-overflow-in-ensure_comb_space.patch │ ├── sbat-3-0006-font-Fix-integer-overflow-in-BMP-index.patch │ ├── sbat-3-0007-font-Fix-integer-underflow-in-binary-search-of-char-.patch │ ├── sbat-3-0008-kern-efi-sb-Enforce-verification-of-font-files.patch │ ├── sbat-3-0009-fbutil-Fix-integer-overflow.patch │ ├── sbat-3-0011-font-Harden-grub_font_blit_glyph-and-grub_font_blit_.patch │ ├── sbat-3-0012-font-Assign-null_font-to-glyphs-in-ascii_font_glyph.patch │ ├── sbat-3-0013-normal-charset-Fix-an-integer-overflow-in-grub_unico.patch │ ├── sbat-4-0001-fs-ntfs-Fix-an-OOB-write-when-parsing-the-ATTRIBUTE_.patch │ ├── sbat-4-0002-fs-ntfs-Fix-an-OOB-read-when-reading-data-from-the-r.patch │ ├── sbat-4-0003-fs-ntfs-Fix-an-OOB-read-when-parsing-directory-entri.patch │ ├── sbat-4-0004-fs-ntfs-Fix-an-OOB-read-when-parsing-bitmaps-for-ind.patch │ ├── sbat-4-0005-fs-ntfs-Fix-an-OOB-read-when-parsing-a-volume-label.patch │ ├── sbat-4-0006-fs-ntfs-Make-code-more-readable.patch │ └── sbat.csv.in ├── grubby │ ├── 0001-remove-the-old-crufty-u-boot-support.patch │ ├── 0002-Change-return-type-in-getRootSpecifier.patch │ ├── 0003-Add-btrfs-subvolume-support-for-grub2.patch │ ├── 0004-Add-tests-for-btrfs-support.patch │ ├── 0005-Use-system-LDFLAGS.patch │ ├── 0006-Honor-sbindir.patch │ ├── 0007-Make-installkernel-to-use-kernel-install-scripts-on-.patch │ ├── 0008-Add-usr-libexec-rpm-sort.patch │ ├── 0009-Improve-man-page-for-info-option.patch │ ├── 0010-Fix-GCC-warnings-about-possible-string-truncations-a.patch │ ├── 0011-Fix-stringop-overflow-warning.patch │ ├── 0012-Fix-maybe-uninitialized-warning.patch │ ├── 0013-Fix-build-RPM-416.patch │ ├── 0014-Fix-build-RPM-418.patch │ ├── 95-kernel-hooks.install │ ├── grubby-bls │ ├── grubby.in │ ├── grubby.signatures.json │ └── grubby.spec ├── gsettings-desktop-schemas │ ├── gsettings-desktop-schemas.signatures.json │ └── gsettings-desktop-schemas.spec ├── gsm │ ├── gsm-makefile.patch │ ├── gsm-warnings.patch │ ├── gsm.signatures.json │ └── gsm.spec ├── gtest │ ├── gtest.signatures.json │ └── gtest.spec ├── gtk-doc │ ├── gtk-doc.signatures.json │ └── gtk-doc.spec ├── gtk-update-icon-cache │ ├── gtk-update-icon-cache.signatures.json │ └── gtk-update-icon-cache.spec ├── gtk2 │ ├── 0001-Fix-compiler-warnings-with-GCC-8.1.patch │ ├── 0001-calendar-Use-the-new-OB-format-if-supported.patch │ ├── CVE-2024-6655.patch │ ├── gtk2.signatures.json │ ├── gtk2.spec │ ├── icon-padding.patch │ ├── im-cedilla.conf │ ├── python3.patch │ ├── tooltip-positioning.patch │ ├── update-gtk-immodules │ ├── update-gtk-immodules.1 │ └── window-dragging.patch ├── gtk3 │ ├── 3387.patch │ ├── CVE-2024-6655.patch │ ├── gtk3.signatures.json │ └── gtk3.spec ├── guava │ ├── guava.signatures.json │ └── guava.spec ├── guile │ ├── guile.signatures.json │ └── guile.spec ├── gzip │ ├── gzip.signatures.json │ └── gzip.spec ├── hamcrest │ ├── 0001-Fix-build-with-OpenJDK-11.patch │ ├── hamcrest-2.2.pom │ ├── hamcrest.signatures.json │ └── hamcrest.spec ├── haproxy │ ├── CVE-2022-0711.nopatch │ ├── CVE-2025-11230.patch │ ├── CVE-2025-32464.patch │ ├── haproxy.signatures.json │ └── haproxy.spec ├── hardening-check │ ├── hardening-check.signatures.json │ └── hardening-check.spec ├── harfbuzz │ ├── CVE-2024-56732.patch │ ├── harfbuzz.signatures.json │ └── harfbuzz.spec ├── haveged │ ├── haveged.service │ ├── haveged.signatures.json │ └── haveged.spec ├── hdf5 │ ├── h5comp │ ├── hdf5-build.patch │ ├── hdf5-wrappers.patch │ ├── hdf5.signatures.json │ └── hdf5.spec ├── hdparm │ ├── hdparm.signatures.json │ └── hdparm.spec ├── heimdal │ ├── 0001-lib-krb5-krb5_pac_parse-mem-leak-if-pac_header_size-.patch │ ├── 0002-kdc-Check-generate_pac-return-code.patch │ ├── 0003-kdc-avoid-re-encoding-KDC-REQ-BODY.patch │ ├── CVE-2022-45142.patch │ ├── fixautoconf.patch │ ├── heimdal-1.6.0-c25f45a-rename-commands.patch │ ├── heimdal-bashrc │ ├── heimdal-configure.patch │ ├── heimdal-ipropd-master.init │ ├── heimdal-ipropd-master.service │ ├── heimdal-ipropd-slave-wrapper │ ├── heimdal-ipropd-slave.init │ ├── heimdal-ipropd-slave.service │ ├── heimdal-kadmind.init │ ├── heimdal-kadmind.service │ ├── heimdal-kdc.conf │ ├── heimdal-kdc.init │ ├── heimdal-kdc.service │ ├── heimdal-kpasswdd.init │ ├── heimdal-kpasswdd.service │ ├── heimdal.csh │ ├── heimdal.logrotate │ ├── heimdal.sh │ ├── heimdal.signatures.json │ ├── heimdal.spec │ ├── heimdal.sysconfig │ └── krb5.conf.sample ├── help2man │ ├── help2man.signatures.json │ └── help2man.spec ├── hexedit │ ├── hexedit-1.2.13-config.patch │ ├── hexedit-man-page-color.patch │ ├── hexedit.signatures.json │ └── hexedit.spec ├── hicolor-icon-theme │ ├── hicolor-icon-theme.signatures.json │ └── hicolor-icon-theme.spec ├── hivex │ ├── 0001-ruby-Replace-MiniTest-with-Minitest.patch │ ├── 0002-ruby-Get-rid-of-old-Test-Unit-compatibility.patch │ ├── 0003-build-Go-back-to-gettext-0.19.patch │ ├── hivex.signatures.json │ └── hivex.spec ├── hostname │ ├── gpl-2.0.txt │ ├── hostname-rh.patch │ ├── hostname.signatures.json │ ├── hostname.spec │ ├── nis-domainname │ └── nis-domainname.service ├── htop │ ├── htop.signatures.json │ └── htop.spec ├── http-parser │ ├── http-parser.signatures.json │ └── http-parser.spec ├── httpd │ ├── 00-proxyhtml.conf │ ├── 00-ssl.conf │ ├── 01-ldap.conf │ ├── 01-session.conf │ ├── 10-listen443.conf │ ├── CVE-1999-0236.nopatch │ ├── CVE-1999-1412.nopatch │ ├── CVE-2007-0086.nopatch │ ├── httpd-2.4.53-blfs_layout-3.patch │ ├── httpd-fix-apache-layout-log-path.patch │ ├── httpd-init.service │ ├── httpd-ssl-gencerts │ ├── httpd-ssl-pass-dialog │ ├── httpd-uncomment-ServerName.patch │ ├── httpd.signatures.json │ ├── httpd.spec │ ├── macros.httpd │ └── ssl.conf ├── hunspell-en │ ├── en_GB-singleletters.patch │ ├── en_GB.etc.patch │ ├── en_GB.two_initial_caps.patch │ ├── en_IE.supplemental.patch │ ├── en_US-strippedabbrevs.patch │ ├── hunspell-en-SI_and_IEC.patch │ ├── hunspell-en-allow-non-typographical.marks.patch │ ├── hunspell-en-buildfix.patch │ ├── hunspell-en-calender.patch │ ├── hunspell-en-dont-call-git-during-build.patch │ ├── hunspell-en.signatures.json │ ├── hunspell-en.spec │ └── mozilla_words.patch ├── hunspell │ ├── hunspell.signatures.json │ └── hunspell.spec ├── hwdata │ ├── hwdata.signatures.json │ └── hwdata.spec ├── hwloc │ ├── CVE-2022-47022.patch │ ├── fix-test-gather-topology.patch │ ├── hwloc.signatures.json │ └── hwloc.spec ├── hyperscan │ ├── hyperscan.signatures.json │ └── hyperscan.spec ├── hyperv-daemons │ ├── CVE-2019-10638.nopatch │ ├── CVE-2019-19076.nopatch │ ├── CVE-2019-25160.nopatch │ ├── CVE-2021-45480.nopatch │ ├── CVE-2022-27666.nopatch │ ├── CVE-2023-1989.nopatch │ ├── CVE-2023-1998.nopatch │ ├── CVE-2023-21102.nopatch │ ├── CVE-2023-25012.nopatch │ ├── CVE-2023-31084.nopatch │ ├── CVE-2023-3338.nopatch │ ├── CVE-2023-3359.nopatch │ ├── CVE-2023-3439.nopatch │ ├── CVE-2023-38409.nopatch │ ├── CVE-2023-38432.nopatch │ ├── CVE-2023-4622.nopatch │ ├── CVE-2023-5345.nopatch │ ├── CVE-2024-26602.nopatch │ ├── CVE-2024-35848.nopatch │ ├── CVE-2024-35849.nopatch │ ├── CVE-2024-35852.nopatch │ ├── CVE-2024-35853.nopatch │ ├── CVE-2024-35854.nopatch │ ├── CVE-2024-35857.nopatch │ ├── CVE-2024-36008.nopatch │ ├── CVE-2024-36009.nopatch │ ├── bondvf.sh │ ├── hv_set_ifconfig │ ├── hyperv-daemons.signatures.json │ ├── hyperv-daemons.spec │ ├── hypervfcopy.rules │ ├── hypervfcopyd.service │ ├── hypervkvp.rules │ ├── hypervkvpd.service │ ├── hypervvss.rules │ └── hypervvssd.service ├── i2c-tools │ ├── i2c-tools.signatures.json │ └── i2c-tools.spec ├── iana-etc │ ├── iana-etc-LICENSE │ ├── iana-etc.signatures.json │ └── iana-etc.spec ├── ibarr │ ├── ibarr.signatures.json │ └── ibarr.spec ├── ibsim │ ├── ibsim.signatures.json │ └── ibsim.spec ├── icoutils │ ├── 0001-wrestool-Fix-get_resource_id_quoted-to-return-heap-a.patch │ ├── icoutils.signatures.json │ └── icoutils.spec ├── icu │ ├── CVE-2025-5222.patch │ ├── icu.signatures.json │ └── icu.spec ├── im-chooser │ ├── im-chooser-LGPLv2.txt │ ├── im-chooser-hide-desktop-in-gnome.patch │ ├── im-chooser.signatures.json │ └── im-chooser.spec ├── imsettings │ ├── imsettings-constraint-of-language.patch │ ├── imsettings-disable-xim.patch │ ├── imsettings-force-enable-for-cinnamon.patch │ ├── imsettings-gcc10.patch │ ├── imsettings-xinput-xcompose.patch │ ├── imsettings.signatures.json │ └── imsettings.spec ├── infinipath-psm │ ├── 0001-Extend-buffer-for-uvalue-and-pvalue.patch │ ├── 0001-Include-sysmacros.h.patch │ ├── 0001-fix-a-compilation-issue.patch │ ├── 3.3_upstream_fixes_for_gcc6.patch │ ├── adjust-base-cflags.patch │ ├── extend-fdesc-array.patch │ ├── infinipath-psm-gcc11.patch │ ├── infinipath-psm.signatures.json │ ├── infinipath-psm.spec │ ├── ipath.rules │ ├── psm-multiple-definition.patch │ └── remove-executable-permissions-for-header-files.patch ├── influx-cli │ ├── generate_source_tarball.sh │ ├── influx-cli.signatures.json │ └── influx-cli.spec ├── influxdb │ ├── CVE-2019-0205.patch │ ├── CVE-2021-4238.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2024-6104.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22870.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── config.yaml │ ├── generate_source_tarball.sh │ ├── influxdb-user.conf │ ├── influxdb.service │ ├── influxdb.signatures.json │ ├── influxdb.spec │ └── influxdb.tmpfiles ├── inih │ ├── inih.signatures.json │ └── inih.spec ├── iniparser │ ├── CVE-2023-33461.patch │ ├── CVE-2025-0633.patch │ ├── iniparser.signatures.json │ └── iniparser.spec ├── initramfs │ ├── fscks.conf │ ├── initramfs.signatures.json │ └── initramfs.spec ├── initscripts │ ├── fix_return_code_during_set_error.patch │ ├── initscripts.signatures.json │ ├── initscripts.spec │ └── service.patch ├── inotify-tools │ ├── inotify-tools.signatures.json │ └── inotify-tools.spec ├── intel-ipsec-mb │ ├── intel-ipsec-mb.signatures.json │ └── intel-ipsec-mb.spec ├── intel-pf-bb-config │ ├── intel-pf-bb-config.signatures.json │ └── intel-pf-bb-config.spec ├── intltool │ ├── intltool.signatures.json │ └── intltool.spec ├── iotop │ ├── iotop.signatures.json │ └── iotop.spec ├── iperf3 │ ├── CVE-2024-53580.patch │ ├── CVE-2025-54349.patch │ ├── CVE-2025-54350.patch │ ├── disablepg.patch │ ├── iperf3.signatures.json │ ├── iperf3.spec │ └── openssl_encrypt_buffer_size.patch ├── ipmitool │ ├── 0003-ipmitool-1.8.11-set-kg-key.patch │ ├── 0004-slowswid.patch │ ├── 0005-sensor-id-length.patch │ ├── 0007-check-input.patch │ ├── enterprise-numbers │ ├── exchange-bmc-os-info │ ├── exchange-bmc-os-info.service │ ├── exchange-bmc-os-info.sysconf │ ├── ipmievd.service │ ├── ipmitool-1.8.19-set-kg-key.patch │ ├── ipmitool.signatures.json │ ├── ipmitool.spec │ ├── openipmi-ipmievd.sysconf │ └── set-bmc-url.sh ├── iproute │ ├── iproute.signatures.json │ └── iproute.spec ├── ipset │ ├── ipset.service │ ├── ipset.signatures.json │ ├── ipset.spec │ └── ipset.start-stop ├── iptables │ ├── ip4save │ ├── ip6save │ ├── iptables │ ├── iptables.conf │ ├── iptables.service │ ├── iptables.signatures.json │ ├── iptables.spec │ └── iptables.stop ├── iptraf-ng │ ├── iptraf-ng-logrotate.conf │ ├── iptraf-ng-tmpfiles.conf │ ├── iptraf-ng.signatures.json │ └── iptraf-ng.spec ├── iputils │ ├── CVE-2025-47268.patch │ ├── CVE-2025-48964.patch │ ├── iputils.signatures.json │ └── iputils.spec ├── ipvsadm │ ├── ipvsadm.signatures.json │ └── ipvsadm.spec ├── ipxe │ ├── ipxe.signatures.json │ └── ipxe.spec ├── irqbalance │ ├── 0001-define-IRQBALANCE_ARGS-as-empty-string.patch │ ├── irqbalance.signatures.json │ └── irqbalance.spec ├── iscsi-initiator-utils │ ├── 0001-meson-don-t-hide-things-with-Wno-all.patch │ ├── 0002-Currently-when-iscsi.service-is-installed-it-creates.patch │ ├── 0003-Use-DBROOT-in-iscsi-starter.-Include-iscsi-starter-i.patch │ ├── 0004-fix-systemctl-path-in-iscsi-starter.service.patch │ ├── 0005-improved-onboot-and-shutdown-services.patch │ ├── 0006-iscsid.conf-Fedora-Red-Hat-defaults.patch │ ├── 0007-Disable-Data-Digests.patch │ ├── 0008-Revert-iscsiadm-return-error-when-login-fails.patch │ ├── 0009-Coverity-scan-fixes.patch │ ├── 0010-use-Red-Hat-version-string-to-match-RPM-package-vers.patch │ ├── 0024-minor-service-file-updates.patch │ ├── 0101-libiscsi.patch │ ├── 0102-libiscsi-introduce-sessions-API.patch │ ├── 0103-fix-libiscsi-firmware-discovery-issue-with-NULL-drec.patch │ ├── 0104-libiscsi-build-fixes.patch │ ├── 0201-mariner-fixes.patch │ ├── 04-iscsi │ ├── iscsi-initiator-utils.signatures.json │ ├── iscsi-initiator-utils.spec │ └── iscsi-tmpfiles.conf ├── iser-hwe │ ├── iser-hwe.signatures.json │ └── iser-hwe.spec ├── iser │ ├── iser.signatures.json │ └── iser.spec ├── isert-hwe │ ├── isert-hwe.signatures.json │ └── isert-hwe.spec ├── isert │ ├── isert.signatures.json │ └── isert.spec ├── isns-utils │ ├── isns-utils.signatures.json │ ├── isns-utils.spec │ └── isnsd.service ├── itstool │ ├── itstool.signatures.json │ └── itstool.spec ├── ivykis │ ├── ivykis.signatures.json │ └── ivykis.spec ├── iw │ ├── iw.signatures.json │ └── iw.spec ├── jakarta-servlet │ ├── jakarta-servlet.signatures.json │ └── jakarta-servlet.spec ├── jansson │ ├── jansson.signatures.json │ └── jansson.spec ├── jasper │ ├── CVE-2024-31744.patch │ ├── CVE-2025-8835.patch │ ├── CVE-2025-8836.patch │ ├── CVE-2025-8837.patch │ ├── jasper-2.0.2-test-ppc64-disable.patch │ ├── jasper-2.0.2-test-ppc64le-disable.patch │ ├── jasper-4.1.0-test-i686-disable.patch │ ├── jasper.signatures.json │ └── jasper.spec ├── java-cup │ ├── java-cup-bootstrap.signatures.json │ ├── java-cup-bootstrap.spec │ ├── java-cup-classpath.patch │ ├── java-cup-lr_parser-constructor.patch │ ├── java-cup-no-classpath-in-manifest.patch │ ├── java-cup-no-cup-no-jflex.patch │ ├── java-cup.license │ ├── java-cup.signatures.json │ └── java-cup.spec ├── javapackages-bootstrap │ ├── CVE-2024-25710.patch │ ├── ignore.upstream.patch.txt │ ├── javapackages-bootstrap-PACKAGE-LICENSING │ ├── javapackages-bootstrap.signatures.json │ └── javapackages-bootstrap.spec ├── javapackages-tools │ ├── javapackages-tools.signatures.json │ ├── javapackages-tools.spec │ ├── remove-epoch-from-java-requires.patch │ ├── remove-headless-from-java-requires.patch │ └── undeprecate_add_maven_depmap.patch ├── javassist │ ├── javassist.signatures.json │ └── javassist.spec ├── jemalloc │ ├── jemalloc.signatures.json │ └── jemalloc.spec ├── jflex │ ├── jflex-bootstrap.signatures.json │ ├── jflex-bootstrap.spec │ ├── jflex-byaccj-utl.patch │ ├── jflex-classpath.patch │ ├── jflex-javac-no-target.patch │ ├── jflex-junit4.patch │ ├── jflex-no-cup-no-jflex.patch │ ├── jflex.script │ ├── jflex.signatures.json │ ├── jflex.spec │ └── jpackage-bootstrap-prepare.sh ├── jna │ ├── ant_tools_arbitrary_ow2.patch │ ├── jna.signatures.json │ ├── jna.spec │ └── jna_remove_clover_and_win32_native_jar.patch ├── jq │ ├── CVE-2024-23337.patch │ ├── CVE-2024-53427.patch │ ├── CVE-2025-48060.patch │ ├── jq.signatures.json │ └── jq.spec ├── json-c │ ├── json-c.signatures.json │ └── json-c.spec ├── json-glib │ ├── json-glib.signatures.json │ └── json-glib.spec ├── jsonbuilder │ ├── catch-ver3.patch │ ├── jsonbuilder.signatures.json │ └── jsonbuilder.spec ├── jsr-305 │ ├── NOTICE-CC-BY.txt │ ├── jsr-305-ri-build.xml │ ├── jsr-305.signatures.json │ └── jsr-305.spec ├── junit │ ├── 0001-Port-to-hamcrest-2.2.patch │ ├── CVE-2020-15250.patch │ ├── build.xml │ ├── junit.signatures.json │ └── junit.spec ├── jurand │ ├── jurand.signatures.json │ └── jurand.spec ├── jx │ ├── CVE-2025-58058.patch │ ├── jx.signatures.json │ └── jx.spec ├── kata-containers-cc │ ├── kata-containers-cc.signatures.json │ └── kata-containers-cc.spec ├── kata-containers │ ├── kata-containers.signatures.json │ └── kata-containers.spec ├── kata-packages-uvm │ └── kata-packages-uvm.spec ├── kbd │ ├── kbd-2.0.4-backspace-1.patch │ ├── kbd.signatures.json │ └── kbd.spec ├── kde-settings │ ├── COPYING │ ├── kde-settings.signatures.json │ └── kde-settings.spec ├── keda │ ├── CVE-2024-45338.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2024-6104.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22870.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-29786.patch │ ├── CVE-2025-29923.patch │ ├── CVE-2025-30204.patch │ ├── keda.signatures.json │ └── keda.spec ├── keepalived │ ├── CVE-2024-41184.patch │ ├── keepalived.service │ ├── keepalived.signatures.json │ └── keepalived.spec ├── keras │ ├── 0001-Add-Keras-3.3.3.patch │ ├── CVE-2025-12060.patch │ ├── CVE-2025-1550.patch │ ├── CVE-2025-8747.patch │ ├── CVE-2025-9905.patch │ ├── CVE-2025-9906.nopatch │ ├── keras.signatures.json │ └── keras.spec ├── kernel-64k │ ├── 0001-add-mstflint-kernel-4.28.0.patch │ ├── 0002-efi-Added-efi-cmdline-line-option-to-dynamically-adj.patch │ ├── azurelinux-ca-20230216.pem │ ├── config_aarch64 │ ├── cpupower │ ├── cpupower.service │ ├── kernel-64k.signatures.json │ ├── kernel-64k.spec │ └── sha512hmac-openssl.sh ├── kernel-headers │ ├── kernel-headers.signatures.json │ └── kernel-headers.spec ├── kernel-hwe-headers │ ├── kernel-hwe-headers.signatures.json │ └── kernel-hwe-headers.spec ├── kernel-hwe │ ├── azurelinux-ca-20230216.pem │ ├── config │ ├── config_aarch64 │ ├── cpupower │ ├── cpupower.service │ ├── kernel-hwe.signatures.json │ └── kernel-hwe.spec ├── kernel-mshv │ ├── 50_mariner_mshv.cfg │ ├── 50_mariner_mshv_menuentry │ ├── cbl-mariner-ca-20211013.pem │ ├── config │ ├── config_aarch64 │ ├── kernel-mshv.signatures.json │ └── kernel-mshv.spec ├── kernel-srpm-macros │ ├── brp-kmod-restore-perms │ ├── brp-kmod-set-exec-bit │ ├── find-provides.ksyms │ ├── find-requires.ksyms │ ├── firmware.prov │ ├── kabi.attr │ ├── kabi.sh │ ├── kernel-srpm-macros.signatures.json │ ├── kernel-srpm-macros.spec │ ├── kmod.attr │ ├── kmodtool │ ├── macros.kernel-srpm │ ├── macros.kmp │ ├── modalias.attr │ ├── modalias.prov │ ├── provided_ksyms.attr │ ├── required_ksyms.attr │ ├── rpmsort │ └── symset-table ├── kernel-uvm │ ├── config │ ├── config_aarch64 │ ├── kernel-uvm.signatures.json │ └── kernel-uvm.spec ├── kernel │ ├── 0001-add-mstflint-kernel-4.28.0.patch │ ├── CVE-1999-0656.nopatch │ ├── CVE-2007-4998.nopatch │ ├── CVE-2010-0298.nopatch │ ├── CVE-2010-0309.nopatch │ ├── CVE-2010-4563.nopatch │ ├── CVE-2014-0069.nopatch │ ├── CVE-2019-3016.nopatch │ ├── CVE-2019-3819.nopatch │ ├── CVE-2019-3887.nopatch │ ├── CVE-2020-25672.nopatch │ ├── CVE-2020-27815.nopatch │ ├── CVE-2021-20194.nopatch │ ├── CVE-2021-3564.nopatch │ ├── CVE-2021-3669.nopatch │ ├── CVE-2022-2785.nopatch │ ├── CVE-2022-38096.nopatch │ ├── CVE-2023-46838.nopatch │ ├── CVE-2023-6111.nopatch │ ├── CVE-2023-6200.nopatch │ ├── CVE-2023-6531.nopatch │ ├── CVE-2023-6915.nopatch │ ├── CVE-2023-6931.nopatch │ ├── CVE-2023-6932.nopatch │ ├── CVE-2024-0565.nopatch │ ├── CVE-2024-0607.nopatch │ ├── CVE-2024-0646.nopatch │ ├── CVE-2024-21803.nopatch │ ├── CVE-2024-23307.nopatch │ ├── CVE-2024-23849.nopatch │ ├── CVE-2024-23850.nopatch │ ├── CVE-2024-23851.nopatch │ ├── CVE-2024-24857.nopatch │ ├── CVE-2024-24858.nopatch │ ├── CVE-2024-24859.nopatch │ ├── CVE-2024-24860.nopatch │ ├── CVE-2024-24861.nopatch │ ├── CVE-2024-25739.nopatch │ ├── CVE-2024-26596.nopatch │ ├── CVE-2024-26900.nopatch │ ├── CVE-2024-26913.nopatch │ ├── CVE-2024-26949.nopatch │ ├── CVE-2024-26952.nopatch │ ├── CVE-2024-27012.nopatch │ ├── CVE-2024-27017.nopatch │ ├── CVE-2024-27022.nopatch │ ├── CVE-2024-35984.nopatch │ ├── CVE-2024-35990.nopatch │ ├── CVE-2024-35992.nopatch │ ├── CVE-2024-35997.nopatch │ ├── CVE-2024-36008.nopatch │ ├── CVE-2024-36288.nopatch │ ├── CVE-2024-36478.nopatch │ ├── CVE-2024-36891.nopatch │ ├── CVE-2024-36893.nopatch │ ├── CVE-2024-36897.nopatch │ ├── CVE-2024-36901.nopatch │ ├── CVE-2024-36902.nopatch │ ├── CVE-2024-36925.nopatch │ ├── CVE-2024-36926.nopatch │ ├── CVE-2024-36930.nopatch │ ├── CVE-2024-36938.nopatch │ ├── CVE-2024-36971.nopatch │ ├── CVE-2024-38381.nopatch │ ├── CVE-2024-39472.nopatch │ ├── CVE-2024-42071.nopatch │ ├── CVE-2024-42072.nopatch │ ├── CVE-2024-42075.nopatch │ ├── CVE-2024-42078.nopatch │ ├── CVE-2024-42083.nopatch │ ├── CVE-2024-42226.nopatch │ ├── CVE-2024-43884.nopatch │ ├── CVE-2024-43891.nopatch │ ├── CVE-2024-44946.nopatch │ ├── CVE-2024-44947.nopatch │ ├── CVE-2024-44974.nopatch │ ├── CVE-2024-44983.nopatch │ ├── CVE-2024-44985.nopatch │ ├── CVE-2024-44986.nopatch │ ├── CVE-2024-44987.nopatch │ ├── CVE-2024-44989.nopatch │ ├── CVE-2024-44990.nopatch │ ├── CVE-2024-44995.nopatch │ ├── CVE-2024-44996.nopatch │ ├── CVE-2024-44997.nopatch │ ├── CVE-2024-44998.nopatch │ ├── CVE-2024-44999.nopatch │ ├── CVE-2024-45000.nopatch │ ├── CVE-2024-45002.nopatch │ ├── CVE-2024-45006.nopatch │ ├── CVE-2024-45009.nopatch │ ├── CVE-2024-45010.nopatch │ ├── CVE-2024-45011.nopatch │ ├── CVE-2024-45012.nopatch │ ├── CVE-2024-45015.nopatch │ ├── CVE-2024-45016.nopatch │ ├── CVE-2024-45018.nopatch │ ├── CVE-2024-45019.nopatch │ ├── CVE-2024-45020.nopatch │ ├── CVE-2024-45021.nopatch │ ├── CVE-2024-45022.nopatch │ ├── CVE-2024-45025.nopatch │ ├── CVE-2024-45026.nopatch │ ├── CVE-2024-45028.nopatch │ ├── CVE-2024-45029.nopatch │ ├── CVE-2024-45030.nopatch │ ├── CVE-2024-46672.nopatch │ ├── CVE-2024-46673.nopatch │ ├── CVE-2024-46674.nopatch │ ├── CVE-2024-46677.nopatch │ ├── CVE-2024-46685.nopatch │ ├── CVE-2024-46686.nopatch │ ├── CVE-2024-46687.nopatch │ ├── CVE-2024-46692.nopatch │ ├── CVE-2024-46693.nopatch │ ├── CVE-2024-46710.nopatch │ ├── CVE-2024-46863.nopatch │ ├── azurelinux-ca-20230216.pem │ ├── config │ ├── config_aarch64 │ ├── cpupower │ ├── cpupower.service │ ├── kernel-uki-dracut.conf │ ├── kernel-uki.signatures.json │ ├── kernel-uki.spec │ ├── kernel.signatures.json │ ├── kernel.spec │ └── sha512hmac-openssl.sh ├── kexec-tools │ ├── 51_kexec_tools.cfg │ ├── 98-kexec.rules │ ├── dracut-early-kdump-module-setup.sh │ ├── dracut-early-kdump.sh │ ├── dracut-kdump-capture.service │ ├── dracut-kdump-emergency.service │ ├── dracut-kdump-emergency.target │ ├── dracut-kdump-error-handler.service │ ├── dracut-kdump-error-handler.sh │ ├── dracut-kdump.sh │ ├── dracut-module-setup.sh │ ├── dracut-monitor_dd_progress │ ├── early-kdump-howto.txt │ ├── fadump-howto.txt │ ├── kdump-dep-generator.sh │ ├── kdump-in-cluster-environment.txt │ ├── kdump-lib-initramfs.sh │ ├── kdump-lib.sh │ ├── kdump-udev-throttler │ ├── kdump.conf │ ├── kdump.conf.5 │ ├── kdump.service │ ├── kdump.sysconfig │ ├── kdump.sysconfig.aarch64 │ ├── kdump.sysconfig.i386 │ ├── kdump.sysconfig.x86_64 │ ├── kdumpctl │ ├── kdumpctl.8 │ ├── kexec-kdump-howto.txt │ ├── kexec-tools-disable-test.patch │ ├── kexec-tools.signatures.json │ ├── kexec-tools.spec │ ├── live-image-kdump-howto.txt │ ├── mkdumprd │ └── mkdumprd.8 ├── keyutils │ ├── keyutils.signatures.json │ └── keyutils.spec ├── kf-kconfig │ ├── kf-kconfig.signatures.json │ └── kf-kconfig.spec ├── kf-kcoreaddons │ ├── kf-kcoreaddons.signatures.json │ └── kf-kcoreaddons.spec ├── kf-ki18n │ ├── kf-ki18n.signatures.json │ └── kf-ki18n.spec ├── kf-kwidgetsaddons │ ├── kf-kwidgetsaddons.signatures.json │ └── kf-kwidgetsaddons.spec ├── kf │ ├── kf.signatures.json │ ├── kf.spec │ └── macros.kf ├── kmod │ ├── kmod.signatures.json │ └── kmod.spec ├── knem-hwe │ ├── knem-hwe.signatures.json │ └── knem-hwe.spec ├── knem │ ├── knem.signatures.json │ └── knem.spec ├── kpatch │ ├── azurelinux_update.patch │ ├── kpatch.signatures.json │ └── kpatch.spec ├── kpmcore │ ├── kpmcore.signatures.json │ └── kpmcore.spec ├── krb5 │ ├── CVE-2024-26461.patch │ ├── krb5.conf │ ├── krb5.signatures.json │ └── krb5.spec ├── ksh │ ├── dotkshrc │ ├── ksh.signatures.json │ ├── ksh.spec │ ├── kshcomp.conf │ └── kshrc.rhs ├── kube-vip-cloud-provider │ ├── CVE-2023-47108.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── kube-vip-cloud-provider.signatures.json │ └── kube-vip-cloud-provider.spec ├── kubernetes │ ├── CVE-2020-8554.nopatch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-31133.patch │ ├── CVE-2025-4563.patch │ ├── CVE-2025-52565.patch │ ├── kubelet.service │ ├── kubernetes.signatures.json │ └── kubernetes.spec ├── kubevirt │ ├── CVE-2025-22872.patch │ ├── CVE-2025-47913.patch │ ├── kubevirt.signatures.json │ └── kubevirt.spec ├── kured │ ├── CVE-2023-45288.patch │ ├── kured-imagePullPolicy.patch │ ├── kured.signatures.json │ └── kured.spec ├── kyua │ ├── kyua.signatures.json │ └── kyua.spec ├── lapack │ ├── blasqr.ps │ ├── lapack.signatures.json │ ├── lapack.spec │ └── lapackqref.ps ├── lato-fonts │ ├── lato-fonts-fontconfig.conf │ ├── lato-fonts.signatures.json │ ├── lato-fonts.spec │ └── lato.metainfo.xml ├── lcms2 │ ├── lcms2.signatures.json │ └── lcms2.spec ├── ldns │ ├── fix-intermittent-build-failure-with-milti-job-build.patch │ ├── ldns-swig-4.2.patch │ ├── ldns.signatures.json │ └── ldns.spec ├── less │ ├── CVE-2024-32487.patch │ ├── less.signatures.json │ └── less.spec ├── leveldb │ ├── 0001-Allow-leveldbjni-build.patch │ ├── 0002-Added-a-DB-SuspendCompations-and-DB-ResumeCompaction.patch │ ├── 0003-allow-Get-calls-to-avoid-copies-into-std-string.patch │ ├── 0004-bloom_test-failure-on-big-endian-archs.patch │ ├── 0006-revert-no-rtti.patch │ ├── 0007-detect-system-gtest.patch │ ├── leveldb.signatures.json │ └── leveldb.spec ├── libICE │ ├── libICE.signatures.json │ └── libICE.spec ├── libSM │ ├── libSM.signatures.json │ └── libSM.spec ├── libX11 │ ├── dont-forward-keycode-0.patch │ ├── libX11.signatures.json │ └── libX11.spec ├── libXau │ ├── libXau.signatures.json │ └── libXau.spec ├── libXaw │ ├── libXaw.signatures.json │ └── libXaw.spec ├── libXcomposite │ ├── libXcomposite.signatures.json │ └── libXcomposite.spec ├── libXcursor │ ├── index.theme │ ├── libXcursor.signatures.json │ └── libXcursor.spec ├── libXdamage │ ├── libXdamage.signatures.json │ └── libXdamage.spec ├── libXdmcp │ ├── libXdmcp.signatures.json │ └── libXdmcp.spec ├── libXext │ ├── libXext.signatures.json │ └── libXext.spec ├── libXfixes │ ├── libXfixes.signatures.json │ └── libXfixes.spec ├── libXfont2 │ ├── libXfont2.signatures.json │ └── libXfont2.spec ├── libXft │ ├── libXft.signatures.json │ └── libXft.spec ├── libXi │ ├── libXi.signatures.json │ └── libXi.spec ├── libXinerama │ ├── libXinerama.signatures.json │ └── libXinerama.spec ├── libXmu │ ├── libXmu.signatures.json │ └── libXmu.spec ├── libXpm │ ├── libXpm.signatures.json │ └── libXpm.spec ├── libXrandr │ ├── libXrandr.signatures.json │ └── libXrandr.spec ├── libXrender │ ├── libXrender.signatures.json │ └── libXrender.spec ├── libXres │ ├── libXres.signatures.json │ └── libXres.spec ├── libXt │ ├── libXt.signatures.json │ └── libXt.spec ├── libXtst │ ├── libXtst.signatures.json │ └── libXtst.spec ├── libXv │ ├── libXv.signatures.json │ └── libXv.spec ├── libXxf86vm │ ├── libXxf86vm.signatures.json │ └── libXxf86vm.spec ├── libacvp │ ├── libacvp.signatures.json │ └── libacvp.spec ├── libaec │ ├── libaec.signatures.json │ └── libaec.spec ├── libaio │ ├── libaio-install-to-destdir-slash-usr.patch │ ├── libaio.signatures.json │ └── libaio.spec ├── libarchive │ ├── CVE-2025-1632.patch │ ├── CVE-2025-25724.patch │ ├── CVE-2025-5914.patch │ ├── CVE-2025-5915.patch │ ├── CVE-2025-5916.patch │ ├── CVE-2025-5917.patch │ ├── CVE-2025-5918.patch │ ├── libarchive.signatures.json │ └── libarchive.spec ├── libarrow │ ├── 0001-python-pyproject.toml.patch │ ├── CVE-2024-52338.patch │ ├── libarrow.signatures.json │ └── libarrow.spec ├── libassuan │ ├── libassuan.signatures.json │ └── libassuan.spec ├── libatasmart │ ├── libatasmart-0.19-wd-fix.patch │ ├── libatasmart.signatures.json │ └── libatasmart.spec ├── libatomic_ops │ ├── libatomic_ops.signatures.json │ └── libatomic_ops.spec ├── libbpf │ ├── 0001-libbpf-Fix-buffer-overflow-in-bpf_object__init_prog.patch │ ├── libbpf.signatures.json │ └── libbpf.spec ├── libburn │ ├── libburn-0.6.16-multilib.patch │ ├── libburn.signatures.json │ └── libburn.spec ├── libcacard │ ├── libcacard.signatures.json │ └── libcacard.spec ├── libcap-ng │ ├── libcap-ng-0.8.5-python-exception.patch │ ├── libcap-ng.signatures.json │ └── libcap-ng.spec ├── libcap │ ├── CVE-2025-1390.patch │ ├── libcap.signatures.json │ └── libcap.spec ├── libcgroup │ ├── cgconfig.service │ ├── fedora-config.patch │ ├── fix-libcgroup-tests.patch │ ├── libcgroup-0.37-chmod.patch │ ├── libcgroup-0.40.rc1-coverity.patch │ ├── libcgroup-0.40.rc1-fread.patch │ ├── libcgroup-0.40.rc1-templates-fix.patch │ ├── libcgroup.signatures.json │ ├── libcgroup.spec │ └── test.patch ├── libcomps │ ├── libcomps.signatures.json │ └── libcomps.spec ├── libconfig │ ├── libconfig.signatures.json │ └── libconfig.spec ├── libconfini │ ├── libconfini.signatures.json │ └── libconfini.spec ├── libconfuse │ ├── CVE-2022-40320.patch │ ├── libconfuse.signatures.json │ └── libconfuse.spec ├── libcontainers-common │ ├── CVE-2022-2879.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-1753.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-3727.patch │ ├── CVE-2024-37298.patch │ ├── CVE-2024-6104.patch │ ├── LICENSE │ ├── containers.conf │ ├── default.yaml │ ├── libcontainers-common.signatures.json │ ├── libcontainers-common.spec │ ├── mounts.conf │ ├── policy.json │ ├── registries.conf │ └── storage.conf ├── libcxx │ ├── libcxx.signatures.json │ └── libcxx.spec ├── libdaemon │ ├── libdaemon.signatures.json │ └── libdaemon.spec ├── libdb │ ├── CVE-2017-3604.nopatch │ ├── CVE-2017-3605.nopatch │ ├── CVE-2017-3606.nopatch │ ├── CVE-2017-3607.nopatch │ ├── CVE-2017-3608.nopatch │ ├── CVE-2017-3609.nopatch │ ├── CVE-2017-3610.nopatch │ ├── CVE-2017-3611.nopatch │ ├── CVE-2017-3612.nopatch │ ├── CVE-2017-3613.nopatch │ ├── CVE-2017-3614.nopatch │ ├── CVE-2017-3615.nopatch │ ├── CVE-2017-3616.nopatch │ ├── CVE-2017-3617.nopatch │ ├── CVE-2019-2708.patch │ ├── CVE-2020-13435.patch │ ├── CVE-2020-2981.nopatch │ ├── libdb.signatures.json │ └── libdb.spec ├── libdecor │ ├── libdecor.signatures.json │ └── libdecor.spec ├── libdnet │ ├── libdnet.signatures.json │ └── libdnet.spec ├── libdnf │ ├── libdnf.signatures.json │ └── libdnf.spec ├── libdrm │ ├── 91-drm-modeset.rules │ ├── LICENSE.PTR │ ├── README.rst │ ├── libdrm-2.4.0-no-bc.patch │ ├── libdrm-make-dri-perms-okay.patch │ ├── libdrm.signatures.json │ └── libdrm.spec ├── libdwarf │ ├── libdwarf.signatures.json │ ├── libdwarf.spec │ └── libdwarf_skip_test.patch ├── libecap │ ├── autoconf.h │ ├── libecap.signatures.json │ └── libecap.spec ├── libedit │ ├── libedit.signatures.json │ └── libedit.spec ├── libei │ ├── libei.signatures.json │ └── libei.spec ├── libell │ ├── libell.signatures.json │ └── libell.spec ├── libepoxy │ ├── libepoxy.signatures.json │ └── libepoxy.spec ├── libestr │ ├── libestr.signatures.json │ └── libestr.spec ├── libev │ ├── libev.signatures.json │ └── libev.spec ├── libevdev │ ├── libevdev.signatures.json │ └── libevdev.spec ├── libevent │ ├── libevent.signatures.json │ └── libevent.spec ├── libexif │ ├── libexif.signatures.json │ └── libexif.spec ├── libfabric │ ├── libfabric.signatures.json │ └── libfabric.spec ├── libfastjson │ ├── libfastjson.signatures.json │ └── libfastjson.spec ├── libffi │ ├── libffi.signatures.json │ └── libffi.spec ├── libfontenc │ ├── libfontenc.signatures.json │ └── libfontenc.spec ├── libgcrypt │ ├── libgcrypt.signatures.json │ └── libgcrypt.spec ├── libgdiplus │ ├── libgdiplus.signatures.json │ └── libgdiplus.spec ├── libgit2 │ ├── libgit2.signatures.json │ └── libgit2.spec ├── libglvnd │ ├── 0001-glx-Add-another-fallback-library-name.patch │ ├── 0002-Adding-a-separate-conditional-to-disable-running-GLX.patch │ ├── CVE-2019-11834.patch │ ├── CVE-2023-26819.patch │ ├── libglvnd-python3.patch │ ├── libglvnd.signatures.json │ └── libglvnd.spec ├── libgpg-error │ ├── libgpg-error.signatures.json │ └── libgpg-error.spec ├── libgssglue │ ├── libgssglue.signatures.json │ └── libgssglue.spec ├── libgudev │ ├── libgudev.signatures.json │ └── libgudev.spec ├── libguestfs │ ├── README-replacement.in │ ├── copy-patches.sh │ ├── guestfish.sh │ ├── libguestfs.signatures.json │ ├── libguestfs.spec │ └── yum.conf.in ├── libgusb │ ├── libgusb.signatures.json │ └── libgusb.spec ├── libgxim │ ├── libgxim-fix-build.patch │ ├── libgxim.signatures.json │ └── libgxim.spec ├── libhugetlbfs │ ├── 0000-build_flags.patch │ ├── 0001-testutils-fix-range_is_mapped.patch │ ├── 0002-stack_grow_into_huge-don-t-clobber-existing-mappings.patch │ ├── 0003-tests_shm-perms_adjust_max_segment_size_for_bigger_hugepages.patch │ ├── 0004-tests-makefile-fix.patch │ ├── 0005-tests-run_tests-fix-hugeadm-path.patch │ ├── 0007-tests-fix-covscan-SHELLCHECK_WARNING-complaints.patch │ ├── 0008-tests-include-missing-LDFLAGS-to-make-targets.patch │ ├── 0009-Disable-hugepage-backed-malloc-if-__morecore-is-not-.patch │ ├── 0010-only-link-libhugetlbfs-statically.patch │ ├── libhugetlbfs.signatures.json │ └── libhugetlbfs.spec ├── libical │ ├── libical.signatures.json │ └── libical.spec ├── libidn2 │ ├── B1D2BD1375BECB784CF4F8C4D73CF638C53C06BE │ ├── libidn2.signatures.json │ └── libidn2.spec ├── libinput │ ├── libinput.signatures.json │ └── libinput.spec ├── libiscsi │ ├── libiscsi.signatures.json │ └── libiscsi.spec ├── libisoburn │ ├── libisoburn-1.0.8-multilib.patch │ ├── libisoburn.signatures.json │ └── libisoburn.spec ├── libisofs │ ├── libisofs.signatures.json │ └── libisofs.spec ├── libjpeg-turbo │ ├── libjpeg-turbo.signatures.json │ └── libjpeg-turbo.spec ├── libkcapi │ ├── libkcapi.signatures.json │ └── libkcapi.spec ├── libksba │ ├── libksba.signatures.json │ └── libksba.spec ├── libldm │ ├── libldm.signatures.json │ └── libldm.spec ├── liblogging │ ├── liblogging.signatures.json │ └── liblogging.spec ├── liblognorm │ ├── liblognorm-2.0.6-pcre2.patch │ ├── liblognorm-2.0.6-rhbz2105934-sphinx5.patch │ ├── liblognorm.signatures.json │ └── liblognorm.spec ├── liblzf │ ├── liblzf-3.6-autoconf-20140314.patch │ ├── liblzf.signatures.json │ └── liblzf.spec ├── libmamba │ ├── libmamba-csh.patch │ ├── libmamba-deps.patch │ ├── libmamba-fedora.patch │ ├── libmamba.signatures.json │ ├── libmamba.spec │ └── setup.py ├── libmaxminddb │ ├── libmaxminddb.signatures.json │ └── libmaxminddb.spec ├── libmbim │ ├── libmbim.signatures.json │ └── libmbim.spec ├── libmd │ ├── 4F3E74F436050C10F5696574B972BF3EA4AE57A3 │ ├── libmd-1.1.0.tar.xz.asc │ ├── libmd.signatures.json │ └── libmd.spec ├── libmemcached-awesome │ ├── libmemcached-awesome.signatures.json │ └── libmemcached-awesome.spec ├── libmetalink │ ├── libmetalink-0.1.3-ns_uri.patch │ ├── libmetalink.signatures.json │ └── libmetalink.spec ├── libmicrohttpd │ ├── CVE-2025-59777.patch │ ├── gnutls-utilize-system-crypto-policy.patch │ ├── libmicrohttpd.signatures.json │ └── libmicrohttpd.spec ├── libmnl │ ├── libmnl.signatures.json │ └── libmnl.spec ├── libmodulemd │ ├── libmodulemd.signatures.json │ └── libmodulemd.spec ├── libmpc │ ├── libmpc.signatures.json │ └── libmpc.spec ├── libmspack │ ├── libmspack.signatures.json │ └── libmspack.spec ├── libnbd │ ├── CVE-2024-7383.patch │ ├── libnbd.signatures.json │ └── libnbd.spec ├── libndp │ ├── CVE-2024-5564.patch │ ├── libndp.signatures.json │ └── libndp.spec ├── libnetfilter_conntrack │ ├── libnetfilter_conntrack.signatures.json │ └── libnetfilter_conntrack.spec ├── libnetfilter_cthelper │ ├── libnetfilter_cthelper.signatures.json │ └── libnetfilter_cthelper.spec ├── libnetfilter_cttimeout │ ├── libnetfilter_cttimeout.signatures.json │ └── libnetfilter_cttimeout.spec ├── libnetfilter_log │ ├── libnetfilter_log.signatures.json │ └── libnetfilter_log.spec ├── libnetfilter_queue │ ├── libnetfilter_queue.signatures.json │ └── libnetfilter_queue.spec ├── libnfnetlink │ ├── libnfnetlink.signatures.json │ └── libnfnetlink.spec ├── libnfs │ ├── libnfs.signatures.json │ └── libnfs.spec ├── libnftnl │ ├── libnftnl.signatures.json │ └── libnftnl.spec ├── libnl3 │ ├── libnl3.signatures.json │ └── libnl3.spec ├── libnotify │ ├── disable-gtk.patch │ ├── libnotify.signatures.json │ └── libnotify.spec ├── libnsl2 │ ├── libnsl2.signatures.json │ └── libnsl2.spec ├── libnvidia-container │ ├── common.mk.patch │ ├── libnvidia-container.signatures.json │ ├── libnvidia-container.spec │ ├── libtirpc.patch │ └── nvidia-modprobe.patch ├── libnvme │ ├── libnvme.signatures.json │ └── libnvme.spec ├── libpcap │ ├── libpcap.signatures.json │ └── libpcap.spec ├── libpciaccess │ ├── libpciaccess-rom-size.patch │ ├── libpciaccess.signatures.json │ └── libpciaccess.spec ├── libpipeline │ ├── libpipeline.signatures.json │ └── libpipeline.spec ├── libpng │ ├── libpng.signatures.json │ └── libpng.spec ├── libpsl │ ├── libpsl.signatures.json │ └── libpsl.spec ├── libpsm2 │ ├── libpsm2.signatures.json │ └── libpsm2.spec ├── libpwquality │ ├── libpwquality.signatures.json │ ├── libpwquality.spec │ └── setuptools.patch ├── libqmi │ ├── libqmi.signatures.json │ └── libqmi.spec ├── librdkafka │ ├── librdkafka.signatures.json │ └── librdkafka.spec ├── librelp │ ├── librelp.signatures.json │ └── librelp.spec ├── librepo │ ├── librepo.signatures.json │ └── librepo.spec ├── libreswan │ ├── libreswan.signatures.json │ └── libreswan.spec ├── librsvg2 │ ├── librsvg2.signatures.json │ └── librsvg2.spec ├── librsync │ ├── librsync.signatures.json │ └── librsync.spec ├── libsafec │ ├── libsafec.signatures.json │ └── libsafec.spec ├── libseccomp │ ├── libseccomp.signatures.json │ └── libseccomp.spec ├── libselinux │ ├── libselinux-usr-etc-selinux-path.patch │ ├── libselinux.signatures.json │ └── libselinux.spec ├── libsemanage │ ├── libsemanage-Fix-RESOURCE_LEAK-and-USE_AFTER_FREE-cov.patch │ ├── libsemanage.signatures.json │ ├── libsemanage.spec │ └── semanage.conf ├── libsepol │ ├── libsepol.signatures.json │ └── libsepol.spec ├── libserf │ ├── libserf.signatures.json │ └── libserf.spec ├── libsigc++30 │ ├── libsigc++30.signatures.json │ └── libsigc++30.spec ├── libslirp │ ├── libslirp.signatures.json │ └── libslirp.spec ├── libsmi │ ├── CVE-2010-2891.patch │ ├── IETF-MIB-LICENSE.txt │ ├── libsmi-0.4.8-format-security-fix.patch │ ├── libsmi-0.4.8-symbols-clash.patch │ ├── libsmi-0.4.8-wget111.patch │ ├── libsmi.signatures.json │ ├── libsmi.spec │ └── smi.conf ├── libsndfile │ ├── CVE-2018-13419.nopatch │ ├── CVE-2022-33065.patch │ ├── CVE-2024-50612.patch │ ├── libsndfile-1.2.2-system-gsm.patch │ ├── libsndfile.signatures.json │ ├── libsndfile.spec │ └── revert.patch ├── libsodium │ ├── libsodium.signatures.json │ └── libsodium.spec ├── libsolv │ ├── libsolv.signatures.json │ └── libsolv.spec ├── libsoup │ ├── CVE-2024-52530.patch │ ├── CVE-2024-52531.patch │ ├── CVE-2024-52532.patch │ ├── CVE-2025-11021.patch │ ├── CVE-2025-2784.patch │ ├── CVE-2025-32050.patch │ ├── CVE-2025-32051.patch │ ├── CVE-2025-32052.patch │ ├── CVE-2025-32053.patch │ ├── CVE-2025-32906.patch │ ├── CVE-2025-32907.patch │ ├── CVE-2025-32908.patch │ ├── CVE-2025-32909.patch │ ├── CVE-2025-32910.patch │ ├── CVE-2025-32912.patch │ ├── CVE-2025-32913.patch │ ├── CVE-2025-32914.patch │ ├── CVE-2025-4476.patch │ ├── CVE-2025-46420.patch │ ├── CVE-2025-46421.patch │ ├── CVE-2025-4948.patch │ ├── CVE-2025-4969.patch │ ├── libsoup.signatures.json │ └── libsoup.spec ├── libssh │ ├── CVE-2025-4878.patch │ ├── CVE-2025-5318.patch │ ├── CVE-2025-5351.patch │ ├── CVE-2025-5372.patch │ ├── CVE-2025-5987.patch │ ├── CVE-2025-8114.patch │ ├── CVE-2025-8277.patch │ ├── libssh-0.10.5.tar.xz.asc │ ├── libssh.keyring │ ├── libssh.signatures.json │ ├── libssh.spec │ ├── libssh_client.config │ └── libssh_server.config ├── libssh2 │ ├── libssh2.signatures.json │ └── libssh2.spec ├── libstoragemgmt │ ├── libstoragemgmt.signatures.json │ └── libstoragemgmt.spec ├── libtalloc │ ├── LICENSE.PTR │ ├── libtalloc.signatures.json │ └── libtalloc.spec ├── libtar │ ├── CVE-2021-33640.patch │ ├── CVE-2021-33644.nopatch │ ├── CVE-2021-33645.nopatch │ ├── CVE-2021-33646.nopatch │ ├── libtar-1.2.11-mem-deref.patch │ ├── libtar-1.2.20-CVE-2021-33643-CVE-2021-33644.patch │ ├── libtar-1.2.20-fix-resource-leaks.patch │ ├── libtar-1.2.20-no-static-buffer.patch │ ├── libtar-1.2.20-static-analysis.patch │ ├── libtar-CVE-2013-4420.patch │ ├── libtar-gen-debuginfo.patch │ ├── libtar.signatures.json │ └── libtar.spec ├── libtasn1 │ ├── CVE-2024-12133.patch │ ├── libtasn1.signatures.json │ └── libtasn1.spec ├── libtdb │ ├── libtdb.signatures.json │ ├── libtdb.spec │ ├── tdb-1.4.12.tar.asc │ └── tdb.keyring ├── libtiff │ ├── CVE-2022-2057.nopatch │ ├── CVE-2022-2058.nopatch │ ├── CVE-2022-3598.nopatch │ ├── CVE-2022-3626.nopatch │ ├── CVE-2022-3627.nopatch │ ├── CVE-2023-0796.nopatch │ ├── CVE-2023-0797.nopatch │ ├── CVE-2023-0798.nopatch │ ├── CVE-2023-0799.nopatch │ ├── CVE-2023-0800.nopatch │ ├── CVE-2023-0802.nopatch │ ├── CVE-2023-0803.nopatch │ ├── CVE-2023-0804.nopatch │ ├── CVE-2023-3164.patch │ ├── CVE-2023-52356.patch │ ├── CVE-2023-6228.patch │ ├── CVE-2023-6277.patch │ ├── CVE-2024-13978.patch │ ├── CVE-2024-7006.patch │ ├── CVE-2025-8176.patch │ ├── CVE-2025-8177.patch │ ├── CVE-2025-8534.patch │ ├── CVE-2025-8851.patch │ ├── CVE-2025-8961.patch │ ├── CVE-2025-9165.patch │ ├── CVE-2025-9900.patch │ ├── libtiff.signatures.json │ └── libtiff.spec ├── libtirpc │ ├── CVE-2021-46828.nopatch │ ├── libtirpc.signatures.json │ └── libtirpc.spec ├── libtool │ ├── libtool.signatures.json │ └── libtool.spec ├── libtpms │ ├── 0001-Export-RSA-private-key-primes-to-OpenSSL.patch │ ├── CVE-2025-49133.patch │ ├── gpgkey-B818B9CADF9089C2D5CEC66B75AD65802A0B4211.asc │ ├── libtpms-0.9.6.tar.gz.asc │ ├── libtpms.signatures.json │ └── libtpms.spec ├── libtracecmd │ ├── libtracecmd.signatures.json │ └── libtracecmd.spec ├── libtraceevent │ ├── libtraceevent.signatures.json │ └── libtraceevent.spec ├── libtracefs │ ├── libtracefs.signatures.json │ └── libtracefs.spec ├── libunistring │ ├── libunistring.signatures.json │ └── libunistring.spec ├── libunwind │ ├── libunwind.signatures.json │ └── libunwind.spec ├── liburing │ ├── liburing.signatures.json │ └── liburing.spec ├── libusb │ ├── libusb.signatures.json │ └── libusb.spec ├── libuser │ ├── libuser.signatures.json │ └── libuser.spec ├── libuv │ ├── libuv.signatures.json │ └── libuv.spec ├── libva │ ├── baselibs.conf │ ├── libva.signatures.json │ ├── libva.spec │ └── propagate-dpy.patch ├── libvirt-dbus │ ├── libvirt-dbus.signatures.json │ └── libvirt-dbus.spec ├── libvirt-glib │ ├── libvirt-glib-4.0.0-cast-align.patch │ ├── libvirt-glib.signatures.json │ └── libvirt-glib.spec ├── libvirt-java │ ├── libvirt-java.signatures.json │ └── libvirt-java.spec ├── libvirt-python │ ├── libvirt-python.signatures.json │ └── libvirt-python.spec ├── libvirt │ ├── CVE-2024-1441.patch │ ├── CVE-2024-2494.patch │ ├── CVE-2024-4418.patch │ ├── CVE-2025-13193.patch │ ├── libvirt-conf.patch │ ├── libvirt.signatures.json │ └── libvirt.spec ├── libvoikko │ ├── libvoikko.signatures.json │ └── libvoikko.spec ├── libwacom │ ├── libwacom.signatures.json │ └── libwacom.spec ├── libwebp │ ├── libwebp.signatures.json │ └── libwebp.spec ├── libxcb │ ├── libxcb.signatures.json │ ├── libxcb.spec │ └── pthread-stubs.pc.in ├── libxcrypt │ ├── libxcrypt.signatures.json │ └── libxcrypt.spec ├── libxcvt │ ├── libxcvt.signatures.json │ └── libxcvt.spec ├── libxfce4util │ ├── libxfce4util.signatures.json │ └── libxfce4util.spec ├── libxkbcommon │ ├── libxkbcommon.signatures.json │ └── libxkbcommon.spec ├── libxkbfile │ ├── libxkbfile.signatures.json │ └── libxkbfile.spec ├── libxml++ │ ├── libxml++.signatures.json │ └── libxml++.spec ├── libxml2 │ ├── CVE-2023-45322.patch │ ├── CVE-2024-25062.patch │ ├── CVE-2024-34459.patch │ ├── CVE-2024-40896.patch │ ├── CVE-2024-56171.patch │ ├── CVE-2025-24928.patch │ ├── CVE-2025-27113.patch │ ├── CVE-2025-32414.patch │ ├── CVE-2025-32415.patch │ ├── CVE-2025-49794_CVE-2025-49796.patch │ ├── CVE-2025-49795.patch │ ├── CVE-2025-6021.patch │ ├── CVE-2025-6170.patch │ ├── libxml2.signatures.json │ └── libxml2.spec ├── libxshmfence │ ├── libxshmfence.signatures.json │ └── libxshmfence.spec ├── libxslt │ ├── CVE-2025-11731.patch │ ├── CVE-2025-7424.patch │ ├── libxslt.signatures.json │ └── libxslt.spec ├── libyaml │ ├── libyaml.signatures.json │ └── libyaml.spec ├── libyang │ ├── libyang.signatures.json │ └── libyang.spec ├── libzip │ ├── always_generate_regression_tests.patch │ ├── libzip.signatures.json │ └── libzip.spec ├── linux-firmware │ ├── linux-firmware.signatures.json │ └── linux-firmware.spec ├── linuxptp │ ├── clknetsim-phc2sys.patch │ ├── enable-ha.patch │ ├── linuxptp-zerolength.patch │ ├── linuxptp.signatures.json │ ├── linuxptp.spec │ ├── phc2sys.service │ ├── ptp4l.conf │ ├── ptp4l.service │ ├── timemaster.conf │ └── timemaster.service ├── lld │ ├── lld.signatures.json │ └── lld.spec ├── lldb │ ├── lldb.signatures.json │ └── lldb.spec ├── lldpad │ ├── lldpad.signatures.json │ └── lldpad.spec ├── lldpd │ ├── lldpd-el6.init │ ├── lldpd-el7.service │ ├── lldpd-fedora.service │ ├── lldpd-fedora.sysconfig │ ├── lldpd-tmpfiles │ ├── lldpd.signatures.json │ └── lldpd.spec ├── llvm │ ├── llvm.signatures.json │ └── llvm.spec ├── lm-sensors │ ├── lm-sensors.signatures.json │ └── lm-sensors.spec ├── lmdb │ ├── lmdb.pc │ ├── lmdb.signatures.json │ └── lmdb.spec ├── log4cpp │ ├── log4cpp.signatures.json │ └── log4cpp.spec ├── logrotate │ ├── logrotate.signatures.json │ └── logrotate.spec ├── lsb-release │ ├── LICENSE.PTR │ ├── lsb-release.signatures.json │ └── lsb-release.spec ├── lshw │ ├── lshw.signatures.json │ └── lshw.spec ├── lsof │ ├── lsof.signatures.json │ └── lsof.spec ├── lsscsi │ ├── lsscsi.signatures.json │ └── lsscsi.spec ├── ltp │ ├── ltp.signatures.json │ └── ltp.spec ├── ltrace │ ├── Add-missing-include-stdio.h.patch │ ├── Implement-aarch64-support.patch │ ├── Move-get_hfa_type-from-IA64-backend-to-type.c-name-i.patch │ ├── Set-child-stack-alignment-in-trace-clone.c.patch │ ├── add-missing-stdint.h-include.patch │ ├── ltrace.signatures.json │ └── ltrace.spec ├── lttng-consume │ ├── lttng-consume.signatures.json │ └── lttng-consume.spec ├── lttng-tools │ ├── lttng-tools.signatures.json │ └── lttng-tools.spec ├── lttng-ust │ ├── lttng-ust.signatures.json │ └── lttng-ust.spec ├── lua-rpm-macros │ ├── LICENSE │ ├── lua-rpm-macros.signatures.json │ ├── lua-rpm-macros.spec │ ├── lua.attr │ ├── macros.lua │ └── macros.lua-srpm ├── lua │ ├── lua-5.2.2-configure-linux.patch │ ├── lua-5.3.0-autotoolize.patch │ ├── lua-5.3.0-configure-compat-module.patch │ ├── lua-5.3.0-idsize.patch │ ├── lua-5.3.5-CVE-2020-24370.patch │ ├── lua-5.3.5-luac-shared-link-fix.patch │ ├── lua-5.4.0-beta-autotoolize.patch │ ├── lua-5.4.6-idsize.patch │ ├── lua.signatures.json │ ├── lua.spec │ ├── luaconf.h │ └── mit.txt ├── luajit │ ├── luajit-make-check.patch │ ├── luajit.signatures.json │ ├── luajit.spec │ └── update-release.sh ├── lujavrite │ ├── lujavrite.signatures.json │ └── lujavrite.spec ├── lutok │ ├── README │ ├── lutok.signatures.json │ └── lutok.spec ├── lvm2 │ ├── lvm2-activate.service │ ├── lvm2-set-default-preferred_names.patch │ ├── lvm2.signatures.json │ └── lvm2.spec ├── lynx │ ├── lynx-charset.patch │ ├── lynx-enable_xli.patch │ ├── lynx-proxy-empty-string.patch │ ├── lynx.signatures.json │ └── lynx.spec ├── lz4 │ ├── CVE-2014-4715.nopatch │ ├── CVE-2025-62813.patch │ ├── lz4.signatures.json │ └── lz4.spec ├── lzo │ ├── lzo.signatures.json │ └── lzo.spec ├── lzop │ ├── lzop.signatures.json │ └── lzop.spec ├── m2crypto │ ├── 0001-skip-test_tls1_nok-which-cant-be-run-in-FIPS.patch │ ├── CVE-2019-11358.patch │ ├── CVE-2020-25657.patch │ ├── m2crypto.signatures.json │ └── m2crypto.spec ├── m4 │ ├── m4.signatures.json │ └── m4.spec ├── mac-robber │ ├── mac-robber.signatures.json │ └── mac-robber.spec ├── mailcap │ ├── mailcap.signatures.json │ └── mailcap.spec ├── make │ ├── make.signatures.json │ └── make.spec ├── malaga-suomi-voikko │ ├── make-it-work-with-python-3.patch │ ├── malaga-suomi-voikko.signatures.json │ └── malaga-suomi-voikko.spec ├── malaga │ ├── disable_gtk2.patch │ ├── malaga-aarch64.patch │ ├── malaga-malshow-lm.patch │ ├── malaga-rename-map_file.patch │ ├── malaga.signatures.json │ └── malaga.spec ├── man-db │ ├── man-db.signatures.json │ └── man-db.spec ├── man-pages │ ├── man-pages.signatures.json │ └── man-pages.spec ├── mandoc │ ├── mandoc.signatures.json │ └── mandoc.spec ├── mariadb-connector-c │ ├── client.cnf │ ├── lto-type-mismatch.patch │ ├── mariadb-connector-c.signatures.json │ ├── mariadb-connector-c.spec │ ├── my.cnf │ └── testsuite.patch ├── mariadb │ ├── CVE-2022-27448.nopatch │ ├── CVE-2022-27449.nopatch │ ├── CVE-2022-27451.nopatch │ ├── CVE-2022-27457.nopatch │ ├── CVE-2022-27458.nopatch │ ├── CVE-2023-52971.patch │ ├── LICENSE.clustercheck │ ├── README.mariadb-docs │ ├── README.md │ ├── README.wsrep_sst_rsync_tunnel │ ├── clustercheck.sh │ ├── generate_source_tarball.sh │ ├── mariadb-check-socket.sh │ ├── mariadb-check-upgrade.sh │ ├── mariadb-libfmt.patch │ ├── mariadb-logrotate.patch │ ├── mariadb-mtr.patch │ ├── mariadb-ownsetup.patch │ ├── mariadb-prepare-db-dir.sh │ ├── mariadb-scripts-common.sh │ ├── mariadb-scripts.patch │ ├── mariadb-server-galera.te │ ├── mariadb-ssl-cypher.patch │ ├── mariadb.rpmlintrc │ ├── mariadb.signatures.json │ ├── mariadb.spec │ ├── mariadb.tmpfiles.d.in │ ├── my.cnf.in │ ├── mysql.service.in │ ├── mysql@.service.in │ ├── mysql_config_multilib.sh │ ├── rh-skipped-tests-arm.list │ ├── rh-skipped-tests-base.list │ ├── rh-skipped-tests-ppc.list │ ├── rh-skipped-tests-s390.list │ ├── rocksdb-6.8-gcc13.patch │ └── wsrep_sst_rsync_tunnel ├── maven-compiler-plugin │ ├── maven-compiler-plugin.signatures.json │ └── maven-compiler-plugin.spec ├── maven-jar-plugin │ ├── maven-jar-plugin.signatures.json │ └── maven-jar-plugin.spec ├── maven-resolver │ ├── maven-resolver.signatures.json │ └── maven-resolver.spec ├── maven-resources-plugin │ ├── maven-resources-plugin.signatures.json │ └── maven-resources-plugin.spec ├── maven-surefire │ ├── 0001-Port-to-TestNG-7.4.0.patch │ ├── 0002-Disable-JUnit-4.8-test-grouping.patch │ ├── cpl-v10.html │ ├── generate_source_tarball.sh │ ├── maven-surefire.signatures.json │ └── maven-surefire.spec ├── maven-wagon │ ├── maven-wagon.signatures.json │ └── maven-wagon.spec ├── maven │ ├── generate_source_tarball.sh │ ├── maven.signatures.json │ ├── maven.spec │ └── maven_build_caches.sh ├── mc │ ├── disable-extfs-test.patch │ ├── mc.signatures.json │ └── mc.spec ├── mcpp │ ├── CVE-2019-14274.nopatch │ ├── mcpp-man.patch │ ├── mcpp-manual.html.patch │ ├── mcpp.signatures.json │ ├── mcpp.spec │ └── patch.mcpp.2.7.2 ├── mcstrans │ ├── mcstrans.signatures.json │ ├── mcstrans.spec │ └── secolor.conf.8 ├── mdadm │ ├── mdadm-2.5.2-static.patch │ ├── mdadm-raid-check-sysconfig │ ├── mdadm-udev.patch │ ├── mdadm.conf │ ├── mdadm.signatures.json │ ├── mdadm.spec │ ├── mdadm_event.conf │ ├── mdcheck │ ├── mdmonitor.service │ ├── raid-check │ ├── raid-check.service │ └── raid-check.timer ├── mdevctl │ ├── mdevctl.signatures.json │ └── mdevctl.spec ├── memcached │ ├── CVE-2021-43519.patch │ ├── CVE-2021-44647.patch │ ├── memcached-unit.patch │ ├── memcached.signatures.json │ ├── memcached.spec │ └── memcached.sysconfig ├── mercurial │ ├── mercurial.signatures.json │ └── mercurial.spec ├── mesa-libGLU │ ├── LICENSE.PTR │ ├── make-git-snapshot.sh │ ├── mesa-libGLU.signatures.json │ └── mesa-libGLU.spec ├── mesa │ ├── LICENSE.PTR │ ├── Mesa-MLAA-License-Clarification-Email.txt │ ├── gnome-shell-glthread-disable.patch │ ├── mesa.signatures.json │ └── mesa.spec ├── meson │ ├── meson.signatures.json │ └── meson.spec ├── mft_kernel-hwe │ ├── mft_kernel-hwe.signatures.json │ └── mft_kernel-hwe.spec ├── mft_kernel │ ├── mft_kernel.signatures.json │ └── mft_kernel.spec ├── mlnx-ethtool │ ├── mlnx-ethtool.signatures.json │ └── mlnx-ethtool.spec ├── mlnx-iproute2 │ ├── mlnx-iproute2.signatures.json │ └── mlnx-iproute2.spec ├── mlnx-nfsrdma-hwe │ ├── mlnx-nfsrdma-hwe.signatures.json │ └── mlnx-nfsrdma-hwe.spec ├── mlnx-nfsrdma │ ├── mlnx-nfsrdma.signatures.json │ └── mlnx-nfsrdma.spec ├── mlnx-ofa_kernel-hwe │ ├── 001-fix-module-init-for-ibt.patch │ ├── mlnx-ofa_kernel-hwe.signatures.json │ └── mlnx-ofa_kernel-hwe.spec ├── mlnx-ofa_kernel │ ├── 001-fix-module-init-for-ibt.patch │ ├── mlnx-ofa_kernel.signatures.json │ └── mlnx-ofa_kernel.spec ├── mlnx-tools │ ├── mlnx-tools.signatures.json │ └── mlnx-tools.spec ├── mlocate │ ├── mlocate.signatures.json │ └── mlocate.spec ├── mlx-bootctl │ ├── mlx-bootctl.signatures.json │ └── mlx-bootctl.spec ├── mlx-steering-dump │ ├── mlx-steering-dump.signatures.json │ └── mlx-steering-dump.spec ├── mm-common │ ├── mm-common.signatures.json │ └── mm-common.spec ├── moby-containerd-cc │ ├── CVE-2023-39325.patch │ ├── CVE-2023-44487.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2023-47108.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-25621.patch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-40635.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-64329.patch │ ├── containerd.service │ ├── containerd.toml │ ├── fix_cc_tests_for_golang1.21.patch │ ├── moby-containerd-cc.signatures.json │ └── moby-containerd-cc.spec ├── moby-engine │ ├── CVE-2022-2879.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-29018.patch │ ├── CVE-2024-36620.patch │ ├── CVE-2024-36621.patch │ ├── CVE-2024-36623.patch │ ├── CVE-2024-41110.patch │ ├── CVE-2024-45337.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-58183.patch │ ├── docker.service │ ├── docker.socket │ ├── enable-docker-proxy-libexec-search.patch │ ├── moby-engine.signatures.json │ └── moby-engine.spec ├── mock-core-configs │ ├── mock-core-configs.signatures.json │ └── mock-core-configs.spec ├── mock │ ├── disable-copying-ca-trust-dirs.patch │ ├── mock.signatures.json │ └── mock.spec ├── mokutil │ ├── mokutil.signatures.json │ └── mokutil.spec ├── mpfr │ ├── mpfr.signatures.json │ └── mpfr.spec ├── msgpack │ ├── msgpack.signatures.json │ └── msgpack.spec ├── msr-tools │ ├── LICENSE.PTR │ ├── msr-tools.signatures.json │ └── msr-tools.spec ├── mstflint │ ├── 0001-update-tool-name-in-error-message.patch │ ├── mstflint.signatures.json │ └── mstflint.spec ├── mtdev │ ├── mtdev.signatures.json │ └── mtdev.spec ├── mtools │ ├── mtools-3.9.6-config.patch │ ├── mtools.signatures.json │ └── mtools.spec ├── mtr │ ├── CVE-2025-49809.patch │ ├── mtr-gtk-pkexec-wrapper.sh │ ├── mtr.signatures.json │ ├── mtr.spec │ ├── net-xmtr.desktop │ └── org.fedoraproject.mtr.policy ├── multiperf │ ├── multiperf.signatures.json │ └── multiperf.spec ├── multus │ ├── CVE-2023-3978.patch │ ├── CVE-2023-44487.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── multus.signatures.json │ └── multus.spec ├── munge │ ├── create-munge-key │ ├── munge.logrotate │ ├── munge.signatures.json │ └── munge.spec ├── mysql │ ├── CVE-2012-2677.patch │ ├── CVE-2012-5627.nopatch │ ├── CVE-2025-62813.patch │ ├── fix-tests-for-unsupported-chacha-ciphers.patch │ ├── mysql.signatures.json │ └── mysql.spec ├── nano │ ├── CVE-2024-5742.patch │ ├── nano.signatures.json │ └── nano.spec ├── nasm │ ├── nasm.signatures.json │ └── nasm.spec ├── nbd │ ├── nbd-server.service │ ├── nbd-server.sysconfig │ ├── nbd.signatures.json │ └── nbd.spec ├── nbdkit │ ├── CVE-2025-47711.patch │ ├── CVE-2025-47712.patch │ ├── nbdkit.signatures.json │ └── nbdkit.spec ├── ncompress │ ├── ncompress.signatures.json │ └── ncompress.spec ├── ncurses │ ├── CVE-2022-29458.nopatch │ ├── ncurses.signatures.json │ └── ncurses.spec ├── ndctl │ ├── ndctl.signatures.json │ └── ndctl.spec ├── net-snmp │ ├── net-snmp.signatures.json │ ├── net-snmp.spec │ ├── snmpd.service │ └── snmptrapd.service ├── net-tools │ ├── CVE-2025-46836.patch │ ├── net-tools.signatures.json │ └── net-tools.spec ├── netavark │ ├── netavark.signatures.json │ └── netavark.spec ├── netplan │ ├── disable-broken-tests.patch │ ├── netplan.signatures.json │ └── netplan.spec ├── nettle │ ├── nettle.signatures.json │ └── nettle.spec ├── networkd-dispatcher │ ├── networkd-dispatcher.signatures.json │ └── networkd-dispatcher.spec ├── newt │ ├── newt.signatures.json │ └── newt.spec ├── nfs-utils │ ├── nfs-client.service │ ├── nfs-client.target │ ├── nfs-mountd.service │ ├── nfs-server.service │ ├── nfs-utils-fix-format-security.patch │ ├── nfs-utils.defaults │ ├── nfs-utils.signatures.json │ ├── nfs-utils.spec │ ├── rpc-statd-notify.service │ └── rpc-statd.service ├── nfs4-acl-tools │ ├── nfs4-acl-tools.signatures.json │ └── nfs4-acl-tools.spec ├── nftables │ ├── main.nft │ ├── nat.nft │ ├── nftables.conf │ ├── nftables.service │ ├── nftables.signatures.json │ ├── nftables.spec │ └── router.nft ├── nghttp2 │ ├── nghttp2.signatures.json │ └── nghttp2.spec ├── nginx │ ├── CVE-2024-7347.patch │ ├── CVE-2025-23419.patch │ ├── CVE-2025-53859.patch │ ├── nginx.service │ ├── nginx.signatures.json │ └── nginx.spec ├── ninja-build │ ├── macros.ninja │ ├── ninja-build.signatures.json │ └── ninja-build.spec ├── nlohmann-json │ ├── nlohmann-json.signatures.json │ └── nlohmann-json.spec ├── nlopt │ ├── 0001-CMake-Fix-guile-detection-in-Fedora.patch │ ├── nlopt-2.6.2-kill_rpath.patch │ ├── nlopt.signatures.json │ └── nlopt.spec ├── nmap │ ├── CVE-2023-7256.patch │ ├── CVE-2024-8006.patch │ ├── nmap.signatures.json │ ├── nmap.spec │ └── remove_openssl_macro.patch ├── nodejs │ ├── CVE-2019-10906.patch │ ├── CVE-2020-28493.patch │ ├── CVE-2024-21538.patch │ ├── CVE-2024-22020.patch │ ├── CVE-2024-22195.patch │ ├── CVE-2024-34064.patch │ ├── CVE-2025-22150.patch │ ├── CVE-2025-23083.patch │ ├── CVE-2025-23085.patch │ ├── CVE-2025-23165.patch │ ├── CVE-2025-23166.patch │ ├── CVE-2025-27516.patch │ ├── CVE-2025-47279.patch │ ├── CVE-2025-5222.patch │ ├── disable-tlsv1-tlsv1-1.patch │ ├── generate_source_tarball.sh │ ├── nodejs.signatures.json │ └── nodejs.spec ├── npth │ ├── npth.signatures.json │ └── npth.spec ├── nspr │ ├── nspr.signatures.json │ └── nspr.spec ├── nss-altfiles │ ├── nss-altfiles.signatures.json │ └── nss-altfiles.spec ├── nss-mdns │ ├── nss-mdns-local-heuristic-unit.patch │ ├── nss-mdns-local-heuristic.patch │ ├── nss-mdns.signatures.json │ └── nss-mdns.spec ├── nss │ ├── nss-config.in │ ├── nss-util-config.in │ ├── nss-util.pc.in │ ├── nss.pc.in │ ├── nss.signatures.json │ └── nss.spec ├── nss_nis │ ├── nss_nis.conf │ ├── nss_nis.signatures.json │ └── nss_nis.spec ├── nss_wrapper │ ├── nss_wrapper.signatures.json │ └── nss_wrapper.spec ├── ntfs-3g-system-compression │ ├── ntfs-3g-system-compression.signatures.json │ └── ntfs-3g-system-compression.spec ├── ntfs-3g │ ├── CVE-2023-52890.patch │ ├── ntfs-3g.signatures.json │ ├── ntfs-3g.spec │ └── ntfs-3g_ntfsprogs-2011.10.9-RC-ntfsck-unsupported-return-0.patch ├── ntopng │ ├── CVE-2017-18214.patch │ ├── CVE-2021-43519.patch │ ├── CVE-2021-44647.patch │ ├── CVE-2021-45985.patch │ ├── CVE-2022-28805.patch │ ├── CVE-2022-33099.patch │ ├── ntopng.signatures.json │ └── ntopng.spec ├── ntp │ ├── LICENSE.PTR │ ├── ntp.signatures.json │ ├── ntp.spec │ ├── ntp.step-tickers │ ├── ntp.sysconfig │ ├── ntpd.service │ ├── ntpdate.service │ ├── ntpdate.sysconfig │ └── ntpdate.wrapper ├── numactl │ ├── numactl.signatures.json │ └── numactl.spec ├── numad │ ├── 0000-remove-conf.patch │ ├── 0001-numad_log-fix-buffer-overflow.patch │ ├── LICENSE.PTR │ ├── numad.signatures.json │ └── numad.spec ├── numpy │ ├── CVE-2018-1999024.patch │ ├── generate_source_tarball.sh │ ├── numpy.signatures.json │ └── numpy.spec ├── nvidia-container-toolkit │ ├── CVE-2025-22872.patch │ ├── nvidia-container-toolkit.signatures.json │ └── nvidia-container-toolkit.spec ├── nvme-cli │ ├── nvme-cli.signatures.json │ └── nvme-cli.spec ├── nvml │ ├── nvml.signatures.json │ └── nvml.spec ├── oath-toolkit │ ├── CVE-2024-47191.patch │ ├── oath-toolkit-2.6.9-lockfile.patch │ ├── oath-toolkit.signatures.json │ └── oath-toolkit.spec ├── objectweb-asm │ ├── aggregator.pom │ ├── asm-9.6.pom │ ├── asm-analysis-9.6.pom │ ├── asm-commons-9.6.pom │ ├── asm-test-9.6.pom │ ├── asm-tree-9.6.pom │ ├── asm-util-9.6.pom │ ├── generate-tarball.sh │ ├── objectweb-asm.signatures.json │ ├── objectweb-asm.spec │ └── tools-retrofitter.pom ├── ocaml-alcotest │ ├── 0001-Drop-the-stdlib-shims-subpackage.patch │ ├── ocaml-alcotest.signatures.json │ └── ocaml-alcotest.spec ├── ocaml-astring │ ├── ocaml-astring-ocaml5.patch │ ├── ocaml-astring.signatures.json │ └── ocaml-astring.spec ├── ocaml-augeas │ ├── 0001-Use-ocamlopt-g-option.patch │ ├── 0002-caml_named_value-returns-const-value-pointer-in-OCam.patch │ ├── ocaml-augeas.signatures.json │ └── ocaml-augeas.spec ├── ocaml-base │ ├── ocaml-base-mathlib.patch │ ├── ocaml-base-ocaml413compat.patch │ ├── ocaml-base.signatures.json │ └── ocaml-base.spec ├── ocaml-bigarray-compat │ ├── LICENSE.md │ ├── ocaml-bigarray-compat.signatures.json │ └── ocaml-bigarray-compat.spec ├── ocaml-bisect-ppx │ ├── ocaml-bisect-ppx.signatures.json │ └── ocaml-bisect-ppx.spec ├── ocaml-camlp-streams │ ├── ocaml-camlp-streams.signatures.json │ └── ocaml-camlp-streams.spec ├── ocaml-camomile │ ├── 0001-Camomile-locales-eo.txt-Fix-license-by-importing-dat.patch │ ├── ocaml-camomile.signatures.json │ └── ocaml-camomile.spec ├── ocaml-cinaps │ ├── ocaml-cinaps.signatures.json │ └── ocaml-cinaps.spec ├── ocaml-cmdliner │ ├── ocaml-cmdliner.signatures.json │ └── ocaml-cmdliner.spec ├── ocaml-compiler-libs-janestreet │ ├── ocaml-compiler-libs-janestreet.signatures.json │ └── ocaml-compiler-libs-janestreet.spec ├── ocaml-cppo │ ├── ocaml-cppo.signatures.json │ └── ocaml-cppo.spec ├── ocaml-csexp │ ├── 07eb898.patch │ ├── ocaml-csexp-result.patch │ ├── ocaml-csexp.signatures.json │ └── ocaml-csexp.spec ├── ocaml-ctypes │ ├── ocaml-ctypes-stdlib-shims.patch │ ├── ocaml-ctypes.signatures.json │ └── ocaml-ctypes.spec ├── ocaml-dune │ ├── ocaml-dune-debuginfo.patch │ ├── ocaml-dune-no-lwt.patch │ ├── ocaml-dune.signatures.json │ └── ocaml-dune.spec ├── ocaml-fileutils │ ├── fileutils-0.5.2-fix-bytes.patch │ ├── ocaml-fileutils-0.5.2-ounit2.patch │ ├── ocaml-fileutils-0.6.4-cmp.patch │ ├── ocaml-fileutils-0.6.4-forward-compat.patch │ ├── ocaml-fileutils.signatures.json │ └── ocaml-fileutils.spec ├── ocaml-findlib │ ├── bytes-lib-detection.patch │ ├── ocaml-findlib-toolbox.patch │ ├── ocaml-findlib.signatures.json │ └── ocaml-findlib.spec ├── ocaml-fmt │ ├── ocaml-fmt.signatures.json │ └── ocaml-fmt.spec ├── ocaml-gettext │ ├── ocaml-gettext-camomile2.patch │ ├── ocaml-gettext-ocaml5.patch │ ├── ocaml-gettext.signatures.json │ └── ocaml-gettext.spec ├── ocaml-integers │ ├── ocaml-integers-stdlib-shims.patch │ ├── ocaml-integers.signatures.json │ └── ocaml-integers.spec ├── ocaml-luv │ ├── ocaml-luv.signatures.json │ └── ocaml-luv.spec ├── ocaml-lwt │ ├── 0001-Prepare-for-stricter-checking-in-GCC-14.patch │ ├── ocaml-lwt.signatures.json │ └── ocaml-lwt.spec ├── ocaml-mmap │ ├── ocaml-mmap.signatures.json │ └── ocaml-mmap.spec ├── ocaml-num │ ├── 0001-Bump-version.patch │ ├── 0001-src-Add-g-flag-to-mklib.patch │ ├── 0002-Fix-usage-of-bytes-vs-string.patch │ ├── 0003-Get-rid-of-Bytes.unsafe_of_string.patch │ ├── 0004-toplevel-Add-g-flag.patch │ ├── 0005-src-Add-g-flag-to-mklib.patch │ ├── ocaml-num.signatures.json │ └── ocaml-num.spec ├── ocaml-ocamlbuild │ ├── ocaml-ocamlbuild.signatures.json │ └── ocaml-ocamlbuild.spec ├── ocaml-ocplib-endian │ ├── ocaml-ocplib-endian.signatures.json │ ├── ocaml-ocplib-endian.spec │ └── remove-base-byte.patch ├── ocaml-ounit │ ├── 0001-Remove-stdlib-shims.patch │ ├── ocaml-ounit-stdlib-shims.patch │ ├── ocaml-ounit.signatures.json │ ├── ocaml-ounit.spec │ └── remove-thread-kill.patch ├── ocaml-parsexp │ ├── ocaml-parsexp.signatures.json │ └── ocaml-parsexp.spec ├── ocaml-pp │ ├── ocaml-pp.signatures.json │ └── ocaml-pp.spec ├── ocaml-ppx-derivers │ ├── ocaml-ppx-derivers.signatures.json │ └── ocaml-ppx-derivers.spec ├── ocaml-ppx-here │ ├── ocaml-ppx-here.signatures.json │ └── ocaml-ppx-here.spec ├── ocaml-ppx-let │ ├── ocaml-ppx-let.signatures.json │ └── ocaml-ppx-let.spec ├── ocaml-ppxlib │ ├── ocaml-ppxlib-stdlib-shims.patch │ ├── ocaml-ppxlib.signatures.json │ ├── ocaml-ppxlib.spec │ └── test-fix-sexplib0-0.15.0.patch ├── ocaml-re │ ├── ocaml-re-remove-seq.patch │ ├── ocaml-re.signatures.json │ └── ocaml-re.spec ├── ocaml-react │ ├── ocaml-react.signatures.json │ └── ocaml-react.spec ├── ocaml-result │ ├── ocaml-result.signatures.json │ └── ocaml-result.spec ├── ocaml-seq │ ├── ocaml-seq.signatures.json │ └── ocaml-seq.spec ├── ocaml-sexplib │ ├── ocaml-sexplib.signatures.json │ └── ocaml-sexplib.spec ├── ocaml-sexplib0 │ ├── ocaml-sexplib0.signatures.json │ └── ocaml-sexplib0.spec ├── ocaml-srpm-macros │ ├── macros.ocaml-srpm │ ├── ocaml-srpm-macros.signatures.json │ └── ocaml-srpm-macros.spec ├── ocaml-stdio │ ├── ocaml-stdio.signatures.json │ └── ocaml-stdio.spec ├── ocaml-stdlib-random │ ├── ocaml-stdlib-random.signatures.json │ └── ocaml-stdlib-random.spec ├── ocaml-topkg │ ├── ocaml-topkg.signatures.json │ └── ocaml-topkg.spec ├── ocaml-uutf │ ├── ocaml-uutf.signatures.json │ └── ocaml-uutf.spec ├── ocaml │ ├── 0001-Don-t-add-rpaths-to-libraries.patch │ ├── 0002-configure-Allow-user-defined-C-compiler-flags.patch │ ├── 0003-Update-framepointers-tests-to-avoid-false-positive-w.patch │ ├── 0003-configure-Remove-incorrect-assumption-about-cross-co.patch │ ├── 0004-Fix-s390x-stack-reallocation-code-in-PIC-mode.patch │ ├── 0004-remove-unused-var-in-alloc_aync_stubs.patch │ ├── macros.ocaml-rpm │ ├── ocaml.signatures.json │ ├── ocaml.spec │ └── ocaml_files.py ├── ofed-docs │ ├── ofed-docs.signatures.json │ └── ofed-docs.spec ├── ofed-scripts │ ├── ofed-scripts.signatures.json │ └── ofed-scripts.spec ├── oniguruma │ ├── oniguruma.signatures.json │ └── oniguruma.spec ├── opa │ ├── 0001-Make-telemetry-opt-out.patch │ ├── 0001-Skip-tests-requiring-network.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2025-46569.patch │ ├── opa.signatures.json │ └── opa.spec ├── open-vm-tools │ ├── CVE-2025-22247.patch │ ├── open-vm-tools.conf │ ├── open-vm-tools.signatures.json │ ├── open-vm-tools.spec │ ├── vgauthd.service │ ├── vmblock.mount │ ├── vmtoolsd.pam │ └── vmtoolsd.service ├── openblas │ ├── No-Fortran-Build.patch │ ├── openblas-0.2.15-system_lapack.patch │ ├── openblas-0.2.5-libname.patch │ ├── openblas-0.3.11-tests.patch │ ├── openblas.signatures.json │ └── openblas.spec ├── opencsd │ ├── opencsd.signatures.json │ └── opencsd.spec ├── openldap │ ├── liblber-add-ber_sockbuf_io_udp-to-symbol-ma.patch │ ├── openldap.signatures.json │ └── openldap.spec ├── openmpi │ ├── CVE-2022-47022.patch │ ├── macros.openmpi │ ├── openmpi.module.in │ ├── openmpi.pth.py3 │ ├── openmpi.signatures.json │ └── openmpi.spec ├── opensc │ ├── opensc-0.19.0-pinpad.patch │ ├── opensc-0.22.0-file-cache.patch │ ├── opensc.module │ ├── opensc.signatures.json │ ├── opensc.spec │ └── tests │ │ ├── pkcs11-tool │ │ ├── Makefile │ │ ├── PURPOSE │ │ ├── cert.cfg │ │ ├── runtest.sh │ │ └── virtcacard.cil │ │ └── tests.yml ├── openscap │ ├── openscap.signatures.json │ └── openscap.spec ├── opensm │ ├── opensm.launch │ ├── opensm.logrotate │ ├── opensm.partitions │ ├── opensm.rwtab │ ├── opensm.service │ ├── opensm.signatures.json │ ├── opensm.spec │ └── opensm.sysconfig ├── opensp │ ├── opensp-manpage.patch │ ├── opensp-multilib.patch │ ├── opensp-nodeids.patch │ ├── opensp-sigsegv.patch │ ├── opensp.signatures.json │ └── opensp.spec ├── openssh │ ├── CVE-2007-2768.nopatch │ ├── CVE-2019-16905.patch │ ├── CVE-2023-38408.patch │ ├── CVE-2025-26465.patch │ ├── CVE-2025-26466.nopatch │ ├── CVE-2025-32728.patch │ ├── CVE-2025-61984.patch │ ├── CVE-2025-61985.patch │ ├── openssh-8.2p1-visibility.patch │ ├── openssh.signatures.json │ ├── openssh.spec │ ├── pam_ssh_agent-rmheaders │ ├── pam_ssh_agent_auth-0.10.2-compat.patch │ ├── pam_ssh_agent_auth-0.10.2-dereference.patch │ ├── pam_ssh_agent_auth-0.10.3-seteuid.patch │ ├── pam_ssh_agent_auth-0.9.2-visibility.patch │ ├── pam_ssh_agent_auth-0.9.3-agent_structure.patch │ ├── pam_ssh_agent_auth-0.9.3-build.patch │ ├── sshd-keygen.service │ └── sshd.service ├── openssl-pkcs11 │ ├── openssl-pkcs11-0.4.10-set-rsa-fips-method-flag.patch │ ├── openssl-pkcs11-ec-copy.patch │ ├── openssl-pkcs11-ossl3.patch │ ├── openssl-pkcs11.signatures.json │ └── openssl-pkcs11.spec ├── openssl │ ├── 0001-Replacing-deprecated-functions-with-NULL-or-highest.patch │ ├── 0002-Use-more-general-default-values-in-openssl.cnf.patch │ ├── 0003-Do-not-install-html-docs.patch │ ├── 0004-Override-default-paths-for-the-CA-directory-tree.patch │ ├── 0005-apps-ca-fix-md-option-help-text.patch │ ├── 0006-Disable-signature-verification-with-totally-unsafe-h.patch │ ├── 0007-Add-support-for-PROFILE-SYSTEM-system-default-cipher.patch │ ├── 0008-Add-FIPS_mode-compatibility-macro.patch │ ├── 0009-Add-Kernel-FIPS-mode-flag-support.patch │ ├── 0010-Add-changes-to-ectest-and-eccurve.patch │ ├── 0011-Remove-EC-curves.patch │ ├── 0012-Disable-explicit-ec.patch │ ├── 0013-skipped-tests-EC-curves.patch │ ├── 0024-load-legacy-prov.patch │ ├── 0025-for-tests.patch │ ├── 0032-Force-fips.patch │ ├── 0035-speed-skip-unavailable-dgst.patch │ ├── 0049-Allow-disabling-of-SHA1-signatures.patch │ ├── 0052-Allow-SHA1-in-seclevel-1-if-rh-allow-sha1-signatures.patch │ ├── 0079-RSA-PKCS15-implicit-rejection.patch │ ├── Makefile.certificate │ ├── ci.fmf │ ├── configuration-prefix.h │ ├── configuration-switch.h │ ├── fixpatch │ ├── genpatches │ ├── openssl.signatures.json │ ├── openssl.spec │ ├── opensslconf-new-warning.h │ ├── opensslconf-new.h │ └── prevent-unsupported-calls-into-symcrypt-in-speed.patch ├── opentelemetry-cpp │ ├── opentelemetry-cpp.signatures.json │ └── opentelemetry-cpp.spec ├── openvswitch │ ├── openvswitch.signatures.json │ ├── openvswitch.spec │ └── openvswitch.sysusers ├── orangefs │ ├── orangefs-autotools-2.71.patch │ ├── orangefs-client.service │ ├── orangefs-genconfig.patch │ ├── orangefs-lmdb.patch │ ├── orangefs-no-start-stop.patch │ ├── orangefs-server.service │ ├── orangefs.conf │ ├── orangefs.signatures.json │ ├── orangefs.spec │ └── pvfs2tab ├── ostree │ ├── 0001-ostree-Copying-photon-config-to-boot-directory.patch │ ├── 0002-ostree-Adding-load-env-to-menuentry.patch │ ├── 0003-ostree-converting-osname-to-azurelinux.patch │ ├── 91-ostree.preset │ ├── dualboot-support.patch │ ├── ostree.signatures.json │ └── ostree.spec ├── p11-kit │ ├── p11-kit-client.service │ ├── p11-kit.signatures.json │ ├── p11-kit.spec │ └── trust-extract-compat ├── p7zip │ ├── 0001-fix-data-null-pointer.patch │ ├── 0001-fix-out-of-mem.patch │ ├── 02-man.patch │ ├── 05-hardening-flags.patch │ ├── 14-Fix-g++-warning.patch │ ├── CVE-2016-9296.patch │ ├── CVE-2017-17969.patch │ ├── CVE-2018-5996.nopatch │ ├── gcc10-conversion.patch │ ├── p7zip-manpages.patch │ ├── p7zip.signatures.json │ ├── p7zip.spec │ └── p7zip_15.14-norar_cmake.patch ├── packer │ ├── CVE-2022-3064.patch │ ├── CVE-2024-24786.patch │ ├── CVE-2024-28180.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2024-6104.patch │ ├── CVE-2025-21613.patch │ ├── CVE-2025-21614.nopatch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22870.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-47913.patch │ ├── CVE-2025-58058.patch │ ├── packer.signatures.json │ └── packer.spec ├── pam │ ├── CVE-2024-10041.patch │ ├── CVE-2024-10963.patch │ ├── CVE-2024-22365.patch │ ├── CVE-2025-6020.patch │ ├── pam.signatures.json │ ├── pam.spec │ └── sync_pam_namespace_module_to_version_1.7.0.patch ├── pam_krb5 │ ├── 0001-Drop-module-long-test.patch │ ├── pam_krb5.signatures.json │ └── pam_krb5.spec ├── pam_wrapper │ ├── pam_wrapper.signatures.json │ └── pam_wrapper.spec ├── pango │ ├── 0001-skip-tests-which-are-known-to-fail.patch │ ├── pango.signatures.json │ └── pango.spec ├── parted │ ├── 0001-freelocale-bug-fix.patch │ ├── parted.signatures.json │ └── parted.spec ├── patch │ ├── CVE-2018-1000156.patch │ ├── CVE-2018-20969.patch │ ├── CVE-2018-6951.patch │ ├── CVE-2018-6952.patch │ ├── CVE-2019-13636.patch │ ├── CVE-2019-13638.nopatch │ ├── patch.signatures.json │ └── patch.spec ├── patchelf │ ├── disable-set-interpreter-long-test.patch │ ├── patchelf.signatures.json │ └── patchelf.spec ├── patchutils │ ├── patchutils.signatures.json │ └── patchutils.spec ├── patterns-ceph-containers │ ├── patterns-ceph-containers.signatures.json │ └── patterns-ceph-containers.spec ├── pcaudiolib │ ├── pcaudiolib.signatures.json │ └── pcaudiolib.spec ├── pciutils │ ├── pciutils.signatures.json │ └── pciutils.spec ├── pcre2 │ ├── pcre2.signatures.json │ └── pcre2.spec ├── pcsc-lite-ccid │ ├── ccid-1.4.26-omnikey-3121.patch │ ├── pcsc-lite-ccid.signatures.json │ └── pcsc-lite-ccid.spec ├── pcsc-lite │ ├── org.debian.pcsc-lite.policy │ ├── pcsc-lite.signatures.json │ └── pcsc-lite.spec ├── perftest │ ├── perftest.signatures.json │ └── perftest.spec ├── perl-Algorithm-C3 │ ├── perl-Algorithm-C3.signatures.json │ └── perl-Algorithm-C3.spec ├── perl-App-cpanminus │ ├── fatunpack │ ├── perl-App-cpanminus.signatures.json │ └── perl-App-cpanminus.spec ├── perl-Archive-Zip │ ├── perl-Archive-Zip.signatures.json │ └── perl-Archive-Zip.spec ├── perl-B-COW │ ├── perl-B-COW.signatures.json │ └── perl-B-COW.spec ├── perl-B-Hooks-OP-Check │ ├── perl-B-Hooks-OP-Check.signatures.json │ └── perl-B-Hooks-OP-Check.spec ├── perl-Bit-Vector │ ├── perl-Bit-Vector.signatures.json │ └── perl-Bit-Vector.spec ├── perl-Bytes-Random-Secure │ ├── perl-Bytes-Random-Secure.signatures.json │ └── perl-Bytes-Random-Secure.spec ├── perl-CGI │ ├── perl-CGI.signatures.json │ └── perl-CGI.spec ├── perl-CPAN-Changes │ ├── perl-CPAN-Changes.signatures.json │ └── perl-CPAN-Changes.spec ├── perl-CPAN-DistnameInfo │ ├── perl-CPAN-DistnameInfo.signatures.json │ └── perl-CPAN-DistnameInfo.spec ├── perl-CPAN-Meta-Check │ ├── perl-CPAN-Meta-Check.signatures.json │ └── perl-CPAN-Meta-Check.spec ├── perl-Canary-Stability │ ├── perl-Canary-Stability.signatures.json │ └── perl-Canary-Stability.spec ├── perl-Capture-Tiny │ ├── perl-Capture-Tiny.signatures.json │ └── perl-Capture-Tiny.spec ├── perl-Carp-Clan │ ├── perl-Carp-Clan.signatures.json │ └── perl-Carp-Clan.spec ├── perl-Class-ISA │ ├── perl-Class-ISA.signatures.json │ └── perl-Class-ISA.spec ├── perl-Class-Method-Modifiers │ ├── perl-Class-Method-Modifiers.signatures.json │ └── perl-Class-Method-Modifiers.spec ├── perl-Class-XSAccessor │ ├── perl-Class-XSAccessor.signatures.json │ └── perl-Class-XSAccessor.spec ├── perl-Clone │ ├── perl-Clone.signatures.json │ └── perl-Clone.spec ├── perl-Compress-Bzip2 │ ├── perl-Compress-Bzip2.signatures.json │ └── perl-Compress-Bzip2.spec ├── perl-Crypt-Random-Seed │ ├── perl-Crypt-Random-Seed.signatures.json │ └── perl-Crypt-Random-Seed.spec ├── perl-Crypt-SSLeay │ ├── LICENSE.PTR │ ├── perl-Crypt-SSLeay.signatures.json │ └── perl-Crypt-SSLeay.spec ├── perl-DBD-SQLite │ ├── perl-DBD-SQLite.signatures.json │ └── perl-DBD-SQLite.spec ├── perl-DBI │ ├── perl-DBI.signatures.json │ └── perl-DBI.spec ├── perl-DBIx-Simple │ ├── perl-DBIx-Simple.signatures.json │ └── perl-DBIx-Simple.spec ├── perl-Data-Dump │ ├── perl-Data-Dump.signatures.json │ └── perl-Data-Dump.spec ├── perl-Data-OptList │ ├── perl-Data-OptList.signatures.json │ └── perl-Data-OptList.spec ├── perl-Date-Calc │ ├── perl-Date-Calc.signatures.json │ └── perl-Date-Calc.spec ├── perl-Devel-Caller │ ├── perl-Devel-Caller.signatures.json │ └── perl-Devel-Caller.spec ├── perl-Devel-CheckBin │ ├── perl-Devel-CheckBin.signatures.json │ └── perl-Devel-CheckBin.spec ├── perl-Devel-CheckLib │ ├── perl-Devel-CheckLib.signatures.json │ └── perl-Devel-CheckLib.spec ├── perl-Devel-Cycle │ ├── Devel-Cycle-1.11-512.patch │ ├── perl-Devel-Cycle.signatures.json │ └── perl-Devel-Cycle.spec ├── perl-Devel-GlobalDestruction-XS │ ├── perl-Devel-GlobalDestruction-XS.signatures.json │ └── perl-Devel-GlobalDestruction-XS.spec ├── perl-Devel-GlobalDestruction │ ├── perl-Devel-GlobalDestruction.signatures.json │ └── perl-Devel-GlobalDestruction.spec ├── perl-Devel-Hide │ ├── perl-Devel-Hide.signatures.json │ └── perl-Devel-Hide.spec ├── perl-Devel-LexAlias │ ├── perl-Devel-LexAlias.signatures.json │ └── perl-Devel-LexAlias.spec ├── perl-Devel-Refcount │ ├── perl-Devel-Refcount.signatures.json │ └── perl-Devel-Refcount.spec ├── perl-Devel-StackTrace │ ├── perl-Devel-StackTrace.signatures.json │ └── perl-Devel-StackTrace.spec ├── perl-Devel-Symdump │ ├── perl-Devel-Symdump.signatures.json │ └── perl-Devel-Symdump.spec ├── perl-Digest-HMAC │ ├── perl-Digest-HMAC.signatures.json │ └── perl-Digest-HMAC.spec ├── perl-Digest-SHA1 │ ├── perl-Digest-SHA1.signatures.json │ └── perl-Digest-SHA1.spec ├── perl-Encode-Locale │ ├── perl-Encode-Locale.signatures.json │ └── perl-Encode-Locale.spec ├── perl-Expect │ ├── perl-Expect.signatures.json │ └── perl-Expect.spec ├── perl-Exporter-Tiny │ ├── perl-Exporter-Tiny.signatures.json │ └── perl-Exporter-Tiny.spec ├── perl-ExtUtils-Depends │ ├── perl-ExtUtils-Depends.signatures.json │ └── perl-ExtUtils-Depends.spec ├── perl-Fedora-VSP │ ├── perl-Fedora-VSP.signatures.json │ └── perl-Fedora-VSP.spec ├── perl-File-HomeDir │ ├── perl-File-HomeDir.signatures.json │ └── perl-File-HomeDir.spec ├── perl-File-Listing │ ├── perl-File-Listing.signatures.json │ └── perl-File-Listing.spec ├── perl-File-Which │ ├── perl-File-Which.signatures.json │ └── perl-File-Which.spec ├── perl-File-pushd │ ├── perl-File-pushd.signatures.json │ └── perl-File-pushd.spec ├── perl-HTML-Parser │ ├── perl-HTML-Parser.signatures.json │ └── perl-HTML-Parser.spec ├── perl-HTML-Tagset │ ├── perl-HTML-Tagset.signatures.json │ └── perl-HTML-Tagset.spec ├── perl-HTTP-Cookies │ ├── perl-HTTP-Cookies.signatures.json │ └── perl-HTTP-Cookies.spec ├── perl-HTTP-Daemon │ ├── HTTP-Daemon-6.04-EU-MM-is-not-deprecated.patch │ ├── perl-HTTP-Daemon.signatures.json │ └── perl-HTTP-Daemon.spec ├── perl-HTTP-Date │ ├── perl-HTTP-Date.signatures.json │ └── perl-HTTP-Date.spec ├── perl-HTTP-Message │ ├── perl-HTTP-Message.signatures.json │ └── perl-HTTP-Message.spec ├── perl-HTTP-Negotiate │ ├── perl-HTTP-Negotiate.signatures.json │ └── perl-HTTP-Negotiate.spec ├── perl-IO-HTML │ ├── perl-IO-HTML.signatures.json │ └── perl-IO-HTML.spec ├── perl-IO-Socket-SSL │ ├── LICENSE.PTR │ ├── perl-IO-Socket-SSL.signatures.json │ └── perl-IO-Socket-SSL.spec ├── perl-IO-String │ ├── perl-IO-String.signatures.json │ └── perl-IO-String.spec ├── perl-IO-Tty │ ├── perl-IO-Tty.signatures.json │ └── perl-IO-Tty.spec ├── perl-IO-stringy │ ├── perl-IO-stringy.signatures.json │ └── perl-IO-stringy.spec ├── perl-Import-Into │ ├── perl-Import-Into.signatures.json │ └── perl-Import-Into.spec ├── perl-JSON-Any │ ├── perl-JSON-Any.signatures.json │ └── perl-JSON-Any.spec ├── perl-JSON-XS │ ├── perl-JSON-XS.signatures.json │ └── perl-JSON-XS.spec ├── perl-JSON │ ├── perl-JSON.signatures.json │ └── perl-JSON.spec ├── perl-LWP-MediaTypes │ ├── perl-LWP-MediaTypes.signatures.json │ └── perl-LWP-MediaTypes.spec ├── perl-List-MoreUtils │ ├── perl-List-MoreUtils.signatures.json │ └── perl-List-MoreUtils.spec ├── perl-Match-Simple │ ├── perl-Match-Simple.signatures.json │ └── perl-Match-Simple.spec ├── perl-Math-Random-ISAAC │ ├── perl-Math-Random-ISAAC.signatures.json │ └── perl-Math-Random-ISAAC.spec ├── perl-Mock-Config │ ├── perl-Mock-Config.signatures.json │ └── perl-Mock-Config.spec ├── perl-Module-Build │ ├── LICENSE.PTR │ ├── perl-Module-Build.signatures.json │ └── perl-Module-Build.spec ├── perl-Module-CPANfile │ ├── perl-Module-CPANfile.signatures.json │ └── perl-Module-CPANfile.spec ├── perl-Module-Implementation │ ├── perl-Module-Implementation.signatures.json │ └── perl-Module-Implementation.spec ├── perl-Module-Install-AuthorTests │ ├── LICENSE.PTR │ ├── perl-Module-Install-AuthorTests.signatures.json │ └── perl-Module-Install-AuthorTests.spec ├── perl-Module-Install-Repository │ ├── LICENSE.PTR │ ├── Module-Install-Repository-0.06-Fix-building-on-Perl-without-dot-in-INC.patch │ ├── perl-Module-Install-Repository.signatures.json │ └── perl-Module-Install-Repository.spec ├── perl-Module-Install │ ├── LICENSE.PTR │ ├── perl-Module-Install.signatures.json │ └── perl-Module-Install.spec ├── perl-Module-Runtime │ ├── perl-Module-Runtime.signatures.json │ └── perl-Module-Runtime.spec ├── perl-Module-ScanDeps │ ├── CVE-2024-10224.patch │ ├── perl-Module-ScanDeps.signatures.json │ └── perl-Module-ScanDeps.spec ├── perl-Moo │ ├── perl-Moo.signatures.json │ └── perl-Moo.spec ├── perl-NTLM │ ├── perl-NTLM.signatures.json │ └── perl-NTLM.spec ├── perl-Net-HTTP │ ├── perl-Net-HTTP.signatures.json │ └── perl-Net-HTTP.spec ├── perl-Net-SSLeay │ ├── 0001-local-tests-skip-2-failing-tests.patch │ ├── compatible-openssl.patch │ ├── perl-Net-SSLeay.signatures.json │ └── perl-Net-SSLeay.spec ├── perl-NetAddr-IP │ ├── perl-NetAddr-IP.signatures.json │ └── perl-NetAddr-IP.spec ├── perl-Object-Accessor │ ├── LICENSE.PTR │ ├── perl-Object-Accessor.signatures.json │ └── perl-Object-Accessor.spec ├── perl-Package-Generator │ ├── Package-Generator-1.106-old-Test-More.patch │ ├── perl-Package-Generator.signatures.json │ └── perl-Package-Generator.spec ├── perl-PadWalker │ ├── perl-PadWalker.signatures.json │ └── perl-PadWalker.spec ├── perl-Params-Util │ ├── perl-Params-Util.signatures.json │ └── perl-Params-Util.spec ├── perl-Parse-PMFile │ ├── Parse-PMFile-0.41-Do-not-use-ExtUtils-MakeMaker-CPANfile.patch │ ├── perl-Parse-PMFile.signatures.json │ └── perl-Parse-PMFile.spec ├── perl-Path-Class │ ├── perl-Path-Class.signatures.json │ └── perl-Path-Class.spec ├── perl-Perl-Destruct-Level │ ├── perl-Perl-Destruct-Level.signatures.json │ └── perl-Perl-Destruct-Level.spec ├── perl-Pod-Coverage │ ├── LICENSE.PTR │ ├── Pod-Coverage-0.23-Do-not-search-.-lib-by-pod_cover.patch │ ├── perl-Pod-Coverage.signatures.json │ └── perl-Pod-Coverage.spec ├── perl-Pod-Parser │ ├── perl-Pod-Parser.signatures.json │ └── perl-Pod-Parser.spec ├── perl-Role-Tiny │ ├── perl-Role-Tiny.signatures.json │ └── perl-Role-Tiny.spec ├── perl-SUPER │ ├── perl-SUPER.signatures.json │ └── perl-SUPER.spec ├── perl-String-ShellQuote │ ├── perl-String-ShellQuote.signatures.json │ └── perl-String-ShellQuote.spec ├── perl-Sub-Exporter-Progressive │ ├── Sub-Exporter-Progressive-0.001013-old-Test-More.patch │ ├── perl-Sub-Exporter-Progressive.signatures.json │ └── perl-Sub-Exporter-Progressive.spec ├── perl-Sub-Exporter │ ├── perl-Sub-Exporter.signatures.json │ └── perl-Sub-Exporter.spec ├── perl-Sub-Identify │ ├── perl-Sub-Identify.signatures.json │ └── perl-Sub-Identify.spec ├── perl-Sub-Infix │ ├── perl-Sub-Infix.signatures.json │ └── perl-Sub-Infix.spec ├── perl-Sub-Install │ ├── perl-Sub-Install.signatures.json │ └── perl-Sub-Install.spec ├── perl-Sub-Name │ ├── perl-Sub-Name.signatures.json │ └── perl-Sub-Name.spec ├── perl-Sub-Quote │ ├── perl-Sub-Quote.signatures.json │ └── perl-Sub-Quote.spec ├── perl-Sys-Virt │ ├── perl-Sys-Virt.signatures.json │ └── perl-Sys-Virt.spec ├── perl-Test-Deep │ ├── LICENSE.PTR │ ├── perl-Test-Deep.signatures.json │ └── perl-Test-Deep.spec ├── perl-Test-Fatal │ ├── perl-Test-Fatal.signatures.json │ └── perl-Test-Fatal.spec ├── perl-Test-Harness │ ├── Test-Harness-3.38-Remove-shell-bangs.patch │ ├── perl-Test-Harness.signatures.json │ └── perl-Test-Harness.spec ├── perl-Test-LeakTrace │ ├── LICENSE.PTR │ ├── perl-Test-LeakTrace.signatures.json │ └── perl-Test-LeakTrace.spec ├── perl-Test-Memory-Cycle │ ├── perl-Test-Memory-Cycle.signatures.json │ └── perl-Test-Memory-Cycle.spec ├── perl-Test-Needs │ ├── perl-Test-Needs.signatures.json │ └── perl-Test-Needs.spec ├── perl-Test-NoWarnings │ ├── perl-Test-NoWarnings.signatures.json │ └── perl-Test-NoWarnings.spec ├── perl-Test-Output │ ├── perl-Test-Output.signatures.json │ └── perl-Test-Output.spec ├── perl-Test-Pod-Coverage │ ├── LICENSE.PTR │ ├── perl-Test-Pod-Coverage.signatures.json │ └── perl-Test-Pod-Coverage.spec ├── perl-Test-Pod │ ├── perl-Test-Pod.signatures.json │ └── perl-Test-Pod.spec ├── perl-Test-Requires │ ├── perl-Test-Requires.signatures.json │ └── perl-Test-Requires.spec ├── perl-Test-Taint │ ├── perl-Test-Taint.signatures.json │ └── perl-Test-Taint.spec ├── perl-Test-Warnings │ ├── perl-Test-Warnings.signatures.json │ └── perl-Test-Warnings.spec ├── perl-Test-Without-Module │ ├── perl-Test-Without-Module.signatures.json │ └── perl-Test-Without-Module.spec ├── perl-Text-Template │ ├── perl-Text-Template.signatures.json │ └── perl-Text-Template.spec ├── perl-TimeDate │ ├── perl-TimeDate.signatures.json │ └── perl-TimeDate.spec ├── perl-Try-Tiny │ ├── perl-Try-Tiny.signatures.json │ └── perl-Try-Tiny.spec ├── perl-Type-Tiny │ ├── perl-Type-Tiny.signatures.json │ └── perl-Type-Tiny.spec ├── perl-Types-Serialiser │ ├── perl-Types-Serialiser.signatures.json │ └── perl-Types-Serialiser.spec ├── perl-URI │ ├── perl-URI.signatures.json │ └── perl-URI.spec ├── perl-WWW-Curl │ ├── 0001-Curl-macros-fix.patch │ ├── WWW-Curl-4.17-Adapt-to-changes-in-cURL-7.69.0.patch │ ├── WWW-Curl-4.17-Adapt-to-curl-7.87.0.patch │ ├── WWW-Curl-4.17-Work-around-a-macro-bug-in-curl-7.87.0.patch │ ├── perl-WWW-Curl.signatures.json │ └── perl-WWW-Curl.spec ├── perl-WWW-RobotRules │ ├── perl-WWW-RobotRules.signatures.json │ └── perl-WWW-RobotRules.spec ├── perl-XML-LibXML │ ├── XML-LibXML-2.0202-Parse-an-ampersand-entity-in-SAX-interface.patch │ ├── XML-LibXML-2.0208-Use-pkgconfig-instead-of-Alien-Libxml2.patch │ ├── perl-XML-LibXML.signatures.json │ └── perl-XML-LibXML.spec ├── perl-XML-NamespaceSupport │ ├── perl-XML-NamespaceSupport.signatures.json │ └── perl-XML-NamespaceSupport.spec ├── perl-XML-Parser │ ├── perl-XML-Parser.signatures.json │ └── perl-XML-Parser.spec ├── perl-XML-SAX-Base │ ├── perl-XML-SAX-Base.signatures.json │ └── perl-XML-SAX-Base.spec ├── perl-XML-SAX │ ├── generate_source_tarball.sh │ ├── perl-XML-SAX-0.99-rt20126.patch │ ├── perl-XML-SAX.signatures.json │ └── perl-XML-SAX.spec ├── perl-XML-XPath │ ├── perl-XML-XPath.signatures.json │ └── perl-XML-XPath.spec ├── perl-YAML-Tiny │ ├── perl-YAML-Tiny.signatures.json │ └── perl-YAML-Tiny.spec ├── perl-YAML │ ├── perl-YAML.signatures.json │ └── perl-YAML.spec ├── perl-bareword-filehandles │ ├── perl-bareword-filehandles.signatures.json │ └── perl-bareword-filehandles.spec ├── perl-common-sense │ ├── common-sense-3.71-podenc.patch │ ├── perl-common-sense.signatures.json │ └── perl-common-sense.spec ├── perl-generators │ ├── LICENSE.PTR │ ├── perl-generators.signatures.json │ └── perl-generators.spec ├── perl-indirect │ ├── perl-indirect.signatures.json │ └── perl-indirect.spec ├── perl-libintl-perl │ ├── perl-libintl-perl.signatures.json │ └── perl-libintl-perl.spec ├── perl-libwww-perl │ ├── libwww-perl-6.39-Normalize-shebangs-in-examples.patch │ ├── perl-libwww-perl.signatures.json │ └── perl-libwww-perl.spec ├── perl-local-lib │ ├── perl-homedir.csh │ ├── perl-homedir.sh │ ├── perl-local-lib.signatures.json │ └── perl-local-lib.spec ├── perl-multidimensional │ ├── perl-multidimensional.signatures.json │ └── perl-multidimensional.spec ├── perl-strictures │ ├── perl-strictures.signatures.json │ └── perl-strictures.spec ├── perl │ ├── CVE-2024-56406.patch │ ├── CVE-2025-40909.patch │ ├── Pod-Html-license-clarification │ ├── gendep.macros │ ├── macros.perl │ ├── perl-5.16.3-Link-XS-modules-to-libperl.so-with-EU-CBuilder-on-Li.patch │ ├── perl-5.16.3-Link-XS-modules-to-libperl.so-with-EU-MM-on-Linux.patch │ ├── perl-5.16.3-create_libperl_soname.patch │ ├── perl-5.22.0-Install-libperl.so-to-shrpdir-on-Linux.patch │ ├── perl-5.22.1-Provide-ExtUtils-MM-methods-as-standalone-ExtUtils-M.patch │ ├── perl-5.22.1-Replace-EU-MM-dependnecy-with-EU-MM-Utils-in-IPC-Cmd.patch │ ├── perl-5.27.8-hints-linux-Add-lphtread-to-lddlflags.patch │ ├── perl-5.28.0-Pass-CFLAGS-to-dtrace.patch │ ├── perl-5.34.0-Destroy-GDBM-NDBM-ODBM-SDBM-_File-objects-only-from-.patch │ ├── perl-5.36.0-Add-definition-of-OPTIMIZE-to-.ph-files.patch │ ├── perl-5.38.0-Revert-Do-uselocale-earlier-in-init-process.patch │ ├── perl-remove-psw-protected-zip.patch │ ├── perl.signatures.json │ └── perl.spec ├── pesign │ ├── 0001-cms_common-Fixed-Segmentation-fault.patch │ ├── certs.tar.xz │ ├── pesign.patches │ ├── pesign.py │ ├── pesign.signatures.json │ └── pesign.spec ├── pgbouncer │ ├── pgbouncer.service │ ├── pgbouncer.signatures.json │ └── pgbouncer.spec ├── php-pear │ ├── cleanup.php │ ├── install-pear.php │ ├── macros.pear │ ├── pear.sh │ ├── peardev.sh │ ├── pecl.sh │ ├── php-pear.signatures.json │ └── php-pear.spec ├── php-pecl-apcu │ ├── apcu-panel.conf │ ├── apcu.conf.php │ ├── apcu.ini │ ├── php-pecl-apcu.signatures.json │ └── php-pecl-apcu.spec ├── php-pecl-zip │ ├── php-pecl-zip.signatures.json │ └── php-pecl-zip.spec ├── php │ ├── 10-opcache.ini │ ├── 20-ffi.ini │ ├── CVE-test.patch │ ├── macros.php │ ├── nginx-fpm.conf │ ├── nginx-php.conf │ ├── opcache-default.blacklist │ ├── php-7.2.0-includedir.patch │ ├── php-7.4.0-datetests.patch │ ├── php-7.4.0-httpd.patch │ ├── php-7.4.0-ldap_r.patch │ ├── php-7.4.0-phpize.patch │ ├── php-8.1.0-libdb.patch │ ├── php-8.1.0-parser.patch │ ├── php-8.3.12-systzdata-v25.patch │ ├── php-8.3.13-phpinfo.patch │ ├── php-8.3.14-phpinfo.patch │ ├── php-8.3.20-embed.patch │ ├── php-8.3.3-parser.patch │ ├── php-fpm-www.conf │ ├── php-fpm.conf │ ├── php-fpm.logrotate │ ├── php-fpm.service │ ├── php-fpm.wants │ ├── php.conf │ ├── php.ini │ ├── php.modconf │ ├── php.signatures.json │ └── php.spec ├── picosat │ ├── picomus.1 │ ├── picosat-trace.patch │ ├── picosat.1 │ ├── picosat.signatures.json │ ├── picosat.spec │ └── picosat.trace.1 ├── pigz │ ├── pigz.signatures.json │ └── pigz.spec ├── pinentry │ ├── pinentry.signatures.json │ └── pinentry.spec ├── pixman │ ├── pixman.signatures.json │ └── pixman.spec ├── pkgconf │ ├── pkgconf.signatures.json │ ├── pkgconf.spec │ └── platform-pkg-config.in ├── plexus-cipher │ ├── plexus-cipher.signatures.json │ └── plexus-cipher.spec ├── plexus-classworlds │ ├── plexus-classworlds-build.xml │ ├── plexus-classworlds.signatures.json │ └── plexus-classworlds.spec ├── plexus-containers │ ├── LICENSE-2.0.txt │ ├── LICENSE.MIT │ ├── plexus-containers.signatures.json │ └── plexus-containers.spec ├── plexus-interpolation │ ├── 0001-Use-PATH-env-variable-instead-of-JAVA_HOME.patch │ ├── plexus-interpolation-build.xml │ ├── plexus-interpolation.signatures.json │ └── plexus-interpolation.spec ├── plexus-sec-dispatcher │ ├── LICENSE-2.0.txt │ ├── plexus-sec-dispatcher.signatures.json │ └── plexus-sec-dispatcher.spec ├── plexus-utils │ ├── LICENSE-2.0.txt │ ├── plexus-utils.signatures.json │ └── plexus-utils.spec ├── pmix │ ├── pmix.signatures.json │ └── pmix.spec ├── poetry │ ├── poetry.signatures.json │ └── poetry.spec ├── policycoreutils │ ├── policycoreutils.signatures.json │ ├── policycoreutils.spec │ ├── selinux-autorelabel │ ├── selinux-autorelabel-generator.sh │ ├── selinux-autorelabel-mark.service │ ├── selinux-autorelabel.service │ └── selinux-autorelabel.target ├── polkit-qt-1 │ ├── polkit-qt-1.signatures.json │ └── polkit-qt-1.spec ├── polkit │ ├── CVE-2025-7519.patch │ ├── polkit.signatures.json │ └── polkit.spec ├── popt │ ├── popt.signatures.json │ └── popt.spec ├── postfix │ ├── README-Postfix-SASL-RedHat.txt │ ├── pflogsumm-1.1.5-datecalc.patch │ ├── pflogsumm-1.1.5-ipv6-warnings-fix.patch │ ├── pflogsumm-1.1.5-syslog-name-underscore-fix.patch │ ├── postfix-3.3.3-alternatives.patch │ ├── postfix-3.4.0-files.patch │ ├── postfix-3.4.0-large-fs.patch │ ├── postfix-3.4.4-chroot-example-fix.patch │ ├── postfix-3.5.0-config.patch │ ├── postfix-3.6.2-glibc-234-build-fix.patch │ ├── postfix-3.6.2-whitespace-name-fix.patch │ ├── postfix-chroot-update │ ├── postfix-etc-init.d-postfix │ ├── postfix-pam.conf │ ├── postfix-sasl.conf │ ├── postfix.aliasesdb │ ├── postfix.service │ ├── postfix.signatures.json │ └── postfix.spec ├── postgresql │ ├── postgresql.service │ ├── postgresql.signatures.json │ └── postgresql.spec ├── prebuilt-ca-certificates-base │ └── prebuilt-ca-certificates-base.spec ├── prebuilt-ca-certificates │ └── prebuilt-ca-certificates.spec ├── priv_wrapper │ ├── priv_wrapper-1.0.1.tar.gz.asc │ ├── priv_wrapper-fix-cmocka-1.1.6+-support.patch │ ├── priv_wrapper.keyring │ ├── priv_wrapper.signatures.json │ └── priv_wrapper.spec ├── procps-ng │ ├── procps-ng.signatures.json │ └── procps-ng.spec ├── prometheus-adapter │ ├── CVE-2024-45338.patch │ ├── CVE-2025-22872.patch │ ├── generate_source_tarball.sh │ ├── prometheus-adapter.signatures.json │ └── prometheus-adapter.spec ├── prometheus-node-exporter │ ├── CVE-2023-45288.patch │ ├── CVE-2025-22870.patch │ ├── defaults-paths.patch │ ├── prometheus-node-exporter.conf │ ├── prometheus-node-exporter.logrotate │ ├── prometheus-node-exporter.service │ ├── prometheus-node-exporter.signatures.json │ ├── prometheus-node-exporter.spec │ └── prometheus-node-exporter.sysusers ├── prometheus-process-exporter │ ├── 01-fix-RSS-test-on-non4K-pagesize-systems.patch │ ├── 03-disable-fakescraper.patch │ ├── CVE-2025-22870.patch │ ├── prometheus-process-exporter.conf │ ├── prometheus-process-exporter.logrotate │ ├── prometheus-process-exporter.service │ ├── prometheus-process-exporter.signatures.json │ └── prometheus-process-exporter.spec ├── protobuf-c │ ├── protobuf-c.signatures.json │ └── protobuf-c.spec ├── protobuf │ ├── CVE-2025-4565.patch │ ├── protobuf.signatures.json │ └── protobuf.spec ├── psmisc │ ├── psmisc.signatures.json │ └── psmisc.spec ├── pssh │ ├── pssh.signatures.json │ └── pssh.spec ├── pth │ ├── pth.signatures.json │ └── pth.spec ├── pugixml │ ├── pugixml.signatures.json │ └── pugixml.spec ├── pwgen │ ├── pwgen.signatures.json │ └── pwgen.spec ├── pyOpenSSL │ ├── pyOpenSSL.signatures.json │ └── pyOpenSSL.spec ├── pyasn1-modules │ ├── pyasn1-modules.signatures.json │ └── pyasn1-modules.spec ├── pybind11 │ ├── pybind11-2.10.11-hpath.patch │ ├── pybind11.signatures.json │ └── pybind11.spec ├── pycairo │ ├── pycairo.signatures.json │ └── pycairo.spec ├── pyelftools │ ├── pyelftools.signatures.json │ └── pyelftools.spec ├── pyflakes │ ├── pyflakes.signatures.json │ └── pyflakes.spec ├── pygobject3 │ ├── make-tests-work-without-gtk.patch │ ├── pygobject3.signatures.json │ └── pygobject3.spec ├── pyparsing │ ├── pyparsing.signatures.json │ └── pyparsing.spec ├── pyproject-rpm-macros │ ├── LICENSE │ ├── README.md │ ├── compare_mandata.py │ ├── macros.pyproject │ ├── pyproject-rpm-macros.signatures.json │ ├── pyproject-rpm-macros.spec │ ├── pyproject_buildrequires.py │ ├── pyproject_buildrequires_testcases.yaml │ ├── pyproject_construct_toxenv.py │ ├── pyproject_convert.py │ ├── pyproject_preprocess_record.py │ ├── pyproject_requirements_txt.py │ ├── pyproject_save_files.py │ ├── pyproject_save_files_test_data.yaml │ ├── pyproject_wheel.py │ ├── test_RECORD │ ├── test_pyproject_buildrequires.py │ ├── test_pyproject_requirements_txt.py │ └── test_pyproject_save_files.py ├── pytest │ ├── pytest.signatures.json │ └── pytest.spec ├── python-absl-py │ ├── python-absl-py.signatures.json │ └── python-absl-py.spec ├── python-appdirs │ ├── python-appdirs.signatures.json │ └── python-appdirs.spec ├── python-archspec │ ├── python-archspec.signatures.json │ └── python-archspec.spec ├── python-asn1crypto │ ├── python-asn1crypto.signatures.json │ ├── python-asn1crypto.spec │ └── remove-import.patch ├── python-astunparse │ ├── python-astunparse.signatures.json │ ├── python-astunparse.spec │ └── python3.9.patch ├── python-async-generator │ ├── python-async-generator.signatures.json │ └── python-async-generator.spec ├── python-atomicwrites │ ├── python-atomicwrites.signatures.json │ └── python-atomicwrites.spec ├── python-attrs │ ├── 0001-Add-version-limit-to-pytest-dep.patch │ ├── 0001-add-version-limits.patch │ ├── python-attrs.signatures.json │ └── python-attrs.spec ├── python-backoff │ ├── python-backoff.signatures.json │ └── python-backoff.spec ├── python-bcrypt │ ├── python-bcrypt.signatures.json │ └── python-bcrypt.spec ├── python-blinker │ ├── python-blinker.signatures.json │ └── python-blinker.spec ├── python-boltons │ ├── python-boltons.signatures.json │ └── python-boltons.spec ├── python-cached_property │ ├── 0001-Disable-checks-broken-with-freezegun-0.3.11-131.patch │ ├── 267.patch │ ├── python-cached_property.signatures.json │ └── python-cached_property.spec ├── python-cachetools │ ├── python-cachetools.signatures.json │ └── python-cachetools.spec ├── python-certifi │ ├── certifi-2022.12.07-use-system-cert.patch │ ├── python-certifi.signatures.json │ └── python-certifi.spec ├── python-cffi │ ├── python-cffi.signatures.json │ └── python-cffi.spec ├── python-chardet │ ├── chardetect.1 │ ├── python-chardet.signatures.json │ └── python-chardet.spec ├── python-charset-normalizer │ ├── python-charset-normalizer.signatures.json │ └── python-charset-normalizer.spec ├── python-cherrypy │ ├── python-cherrypy.signatures.json │ ├── python-cherrypy.spec │ └── test-session-py3.8above.patch ├── python-click │ ├── python-click.signatures.json │ └── python-click.spec ├── python-conda-libmamba-solver │ ├── python-conda-libmamba-solver.signatures.json │ └── python-conda-libmamba-solver.spec ├── python-conda-package-handling │ ├── python-conda-package-handling.signatures.json │ └── python-conda-package-handling.spec ├── python-conda-package-streaming │ ├── python-conda-package-streaming.signatures.json │ └── python-conda-package-streaming.spec ├── python-configobj │ ├── LICENSE.BSD │ ├── python-configobj.signatures.json │ └── python-configobj.spec ├── python-constantly │ ├── python-constantly.signatures.json │ └── python-constantly.spec ├── python-coverage │ ├── python-coverage.signatures.json │ └── python-coverage.spec ├── python-cpuinfo │ ├── python-cpuinfo.signatures.json │ └── python-cpuinfo.spec ├── python-cryptography │ ├── 0001-remove-openssl-cipher-Cipher-chacha20_poly1305.patch │ ├── 0002-remove-poly1305-tests.patch │ ├── python-cryptography.signatures.json │ └── python-cryptography.spec ├── python-cstruct │ ├── python-cstruct.signatures.json │ └── python-cstruct.spec ├── python-cytoolz │ ├── cytoolz-test-py313.patch │ ├── python-cytoolz.signatures.json │ └── python-cytoolz.spec ├── python-daemon │ ├── python-daemon.signatures.json │ └── python-daemon.spec ├── python-dateutil │ ├── python-dateutil.signatures.json │ └── python-dateutil.spec ├── python-decorator │ ├── python-decorator.signatures.json │ └── python-decorator.spec ├── python-defusedxml │ ├── python-defusedxml.signatures.json │ └── python-defusedxml.spec ├── python-distlib │ ├── python-distlib.signatures.json │ └── python-distlib.spec ├── python-distro │ ├── python-distro.signatures.json │ └── python-distro.spec ├── python-docopt │ ├── python-docopt.signatures.json │ └── python-docopt.spec ├── python-docutils │ ├── python-docutils.signatures.json │ └── python-docutils.spec ├── python-ecdsa │ ├── 308.patch │ ├── python-ecdsa.signatures.json │ └── python-ecdsa.spec ├── python-editables │ ├── python-editables.signatures.json │ └── python-editables.spec ├── python-ethtool │ ├── python-ethtool.signatures.json │ └── python-ethtool.spec ├── python-evdev │ ├── python-evdev.signatures.json │ └── python-evdev.spec ├── python-execnet │ ├── python-execnet.signatures.json │ └── python-execnet.spec ├── python-fastjsonschema │ ├── python-fastjsonschema.signatures.json │ └── python-fastjsonschema.spec ├── python-fields │ ├── python-fields-5.0.0-sphinx-1.3.patch │ ├── python-fields.signatures.json │ └── python-fields.spec ├── python-filelock │ ├── python-filelock.signatures.json │ └── python-filelock.spec ├── python-flit-core │ ├── python-flit-core.signatures.json │ └── python-flit-core.spec ├── python-flit │ ├── classifiers.lst │ ├── python-flit.signatures.json │ └── python-flit.spec ├── python-frozendict │ ├── python-frozendict.signatures.json │ └── python-frozendict.spec ├── python-gast │ ├── python-gast.signatures.json │ └── python-gast.spec ├── python-gevent │ ├── CVE-2024-24806.patch │ ├── CVE-2024-25629.patch │ ├── python-gevent.signatures.json │ ├── python-gevent.spec │ └── skip-irrelevant-tests.patch ├── python-google-auth-oauthlib │ ├── python-google-auth-oauthlib.signatures.json │ └── python-google-auth-oauthlib.spec ├── python-google-auth │ ├── python-google-auth.signatures.json │ └── python-google-auth.spec ├── python-google-pasta │ ├── python-google-pasta.signatures.json │ └── python-google-pasta.spec ├── python-greenlet │ ├── python-greenlet.signatures.json │ ├── python-greenlet.spec │ └── skip-leak-checks.patch ├── python-h5py │ ├── Cython-3-support.patch │ ├── h5py-3.7.0-ppc-float128.patch │ ├── python-h5py.signatures.json │ └── python-h5py.spec ├── python-hatch-fancy-pypi-readme │ ├── python-hatch-fancy-pypi-readme.signatures.json │ └── python-hatch-fancy-pypi-readme.spec ├── python-hatch-vcs │ ├── python-hatch-vcs.signatures.json │ └── python-hatch-vcs.spec ├── python-hatchling │ ├── hatchling-build.1 │ ├── hatchling-dep-synced.1 │ ├── hatchling-dep.1 │ ├── hatchling-metadata.1 │ ├── hatchling-version.1 │ ├── hatchling.1 │ ├── python-hatchling.signatures.json │ └── python-hatchling.spec ├── python-html5lib │ ├── 506.patch │ ├── ptest-python-3.12-fix.patch │ ├── python-html5lib.signatures.json │ └── python-html5lib.spec ├── python-hyperlink │ ├── python-hyperlink.signatures.json │ └── python-hyperlink.spec ├── python-hypothesis │ ├── python-hypothesis.signatures.json │ └── python-hypothesis.spec ├── python-idna │ ├── python-idna.signatures.json │ └── python-idna.spec ├── python-imagesize │ ├── python-imagesize.signatures.json │ └── python-imagesize.spec ├── python-importlib-metadata │ ├── python-importlib-metadata.signatures.json │ └── python-importlib-metadata.spec ├── python-incremental │ ├── python-incremental.signatures.json │ └── python-incremental.spec ├── python-iniconfig │ ├── python-iniconfig.signatures.json │ └── python-iniconfig.spec ├── python-iniparse │ ├── 0001-Fix-tests-with-python-3.12.1.patch │ ├── python-3.11-test-compat.patch │ ├── python-iniparse.signatures.json │ └── python-iniparse.spec ├── python-ipaddr │ ├── ipaddr-python3-compatibility.patch │ ├── python-ipaddr.signatures.json │ └── python-ipaddr.spec ├── python-jinja2 │ ├── CVE-2024-22195.patch │ ├── CVE-2024-34064.patch │ ├── CVE-2024-56201.patch │ ├── CVE-2024-56326.patch │ ├── CVE-2025-27516.patch │ ├── python-jinja2-testing-deps.patch │ ├── python-jinja2.signatures.json │ └── python-jinja2.spec ├── python-jmespath │ ├── python-jmespath.signatures.json │ └── python-jmespath.spec ├── python-jsonpatch │ ├── python-jsonpatch.signatures.json │ └── python-jsonpatch.spec ├── python-jsonpointer │ ├── python-jsonpointer.signatures.json │ └── python-jsonpointer.spec ├── python-jsonschema │ ├── python-jsonschema.signatures.json │ ├── python-jsonschema.spec │ └── tox-test.patch ├── python-junit_xml │ ├── python-junit_xml.signatures.json │ └── python-junit_xml.spec ├── python-junitxml │ ├── python-junitxml.signatures.json │ └── python-junitxml.spec ├── python-jwt │ ├── CVE-2022-39227.nopatch │ ├── python-jwt.signatures.json │ └── python-jwt.spec ├── python-kubernetes │ ├── python-kubernetes.signatures.json │ └── python-kubernetes.spec ├── python-lark │ ├── python-lark.signatures.json │ └── python-lark.spec ├── python-libclang │ ├── python-libclang.signatures.json │ └── python-libclang.spec ├── python-libevdev │ ├── python-libevdev.signatures.json │ └── python-libevdev.spec ├── python-linux-procfs │ ├── python-linux-procfs.signatures.json │ └── python-linux-procfs.spec ├── python-lockfile │ ├── python-lockfile.signatures.json │ └── python-lockfile.spec ├── python-logutils │ ├── python-logutils.signatures.json │ └── python-logutils.spec ├── python-looseversion │ ├── python-looseversion.signatures.json │ └── python-looseversion.spec ├── python-lxml │ ├── noexcept.patch │ ├── python-lxml.signatures.json │ └── python-lxml.spec ├── python-mako │ ├── python-mako.signatures.json │ └── python-mako.spec ├── python-markdown-it-py │ ├── python-markdown-it-py.signatures.json │ └── python-markdown-it-py.spec ├── python-markdown │ ├── python-markdown.signatures.json │ └── python-markdown.spec ├── python-markupsafe │ ├── python-markupsafe.signatures.json │ └── python-markupsafe.spec ├── python-mdurl │ ├── python-mdurl.signatures.json │ └── python-mdurl.spec ├── python-menuinst │ ├── python-menuinst.signatures.json │ └── python-menuinst.spec ├── python-mistune │ ├── CVE-2022-34749.nopatch │ ├── python-mistune.signatures.json │ └── python-mistune.spec ├── python-ml-dtypes │ ├── generate_source_tar.sh │ ├── python-ml-dtypes.signatures.json │ └── python-ml-dtypes.spec ├── python-mock │ ├── python-mock.signatures.json │ └── python-mock.spec ├── python-more-itertools │ ├── python-more-itertools.signatures.json │ └── python-more-itertools.spec ├── python-mpmath │ ├── python-mpmath-1.0.0-sphinx.patch │ ├── python-mpmath.signatures.json │ └── python-mpmath.spec ├── python-msgpack │ ├── python-msgpack.signatures.json │ └── python-msgpack.spec ├── python-namex │ ├── python-namex.signatures.json │ └── python-namex.spec ├── python-netaddr │ ├── python-netaddr.signatures.json │ └── python-netaddr.spec ├── python-netifaces │ ├── python-netifaces.signatures.json │ └── python-netifaces.spec ├── python-networkx │ ├── python-networkx-doc.patch │ ├── python-networkx-pyproject.patch │ ├── python-networkx-test.patch │ ├── python-networkx.signatures.json │ └── python-networkx.spec ├── python-nocasedict │ ├── python-nocasedict.signatures.json │ └── python-nocasedict.spec ├── python-nocaselist │ ├── python-nocaselist.signatures.json │ └── python-nocaselist.spec ├── python-nose2 │ ├── pyproject-use-flit-core.patch │ ├── python-nose2.signatures.json │ └── python-nose2.spec ├── python-ntplib │ ├── python-ntplib.signatures.json │ └── python-ntplib.spec ├── python-oauthlib │ ├── python-oauthlib.signatures.json │ └── python-oauthlib.spec ├── python-omegaconf │ ├── python-omegaconf.signatures.json │ └── python-omegaconf.spec ├── python-openpyxl │ ├── python-openpyxl.signatures.json │ └── python-openpyxl.spec ├── python-opt-einsum │ ├── einsum_fix_python312.patch │ ├── python-opt-einsum.signatures.json │ └── python-opt-einsum.spec ├── python-optree │ ├── python-optree.signatures.json │ └── python-optree.spec ├── python-packaging │ ├── python-packaging.signatures.json │ └── python-packaging.spec ├── python-pam │ ├── fix-pyproject.patch │ ├── python-pam.signatures.json │ └── python-pam.spec ├── python-pathspec │ ├── python-pathspec.signatures.json │ └── python-pathspec.spec ├── python-pbr │ ├── disable-test-wsgi.patch │ ├── python-pbr.signatures.json │ ├── python-pbr.spec │ └── test-pin-sphinx.patch ├── python-pecan │ ├── python-pecan.signatures.json │ └── python-pecan.spec ├── python-pefile │ ├── python-pefile.signatures.json │ └── python-pefile.spec ├── python-pexpect │ ├── python-pexpect.signatures.json │ ├── python-pexpect.spec │ └── sys_executable.patch ├── python-pip │ ├── CVE-2024-37891.patch │ ├── CVE-2025-50181.patch │ ├── CVE-2025-8869.patch │ ├── python-pip.signatures.json │ └── python-pip.spec ├── python-pkgconfig │ ├── python-pkgconfig.signatures.json │ └── python-pkgconfig.spec ├── python-platformdirs │ ├── python-platformdirs.signatures.json │ └── python-platformdirs.spec ├── python-pluggy │ ├── python-pluggy.signatures.json │ └── python-pluggy.spec ├── python-ply │ ├── LICENSE.PTR │ ├── python-ply.signatures.json │ └── python-ply.spec ├── python-poetry-core │ ├── poetry-core-1.9.0-devendor.patch │ ├── python-poetry-core.signatures.json │ └── python-poetry-core.spec ├── python-prettytable │ ├── 0001-replace-to-flit.patch │ ├── python-prettytable.signatures.json │ └── python-prettytable.spec ├── python-process-tests │ ├── python-process-tests.signatures.json │ └── python-process-tests.spec ├── python-prometheus_client │ ├── 0001-Remove-the-bundled-decorator-package.patch │ ├── python-prometheus_client.signatures.json │ └── python-prometheus_client.spec ├── python-psutil │ ├── python-psutil.signatures.json │ └── python-psutil.spec ├── python-psycopg2 │ ├── psycopg2-py38.patch │ ├── python-psycopg2.signatures.json │ └── python-psycopg2.spec ├── python-ptyprocess │ ├── python-ptyprocess.signatures.json │ └── python-ptyprocess.spec ├── python-py │ ├── python-py.signatures.json │ └── python-py.spec ├── python-pyasn1 │ ├── python-pyasn1.signatures.json │ └── python-pyasn1.spec ├── python-pycodestyle │ ├── python-pycodestyle.signatures.json │ └── python-pycodestyle.spec ├── python-pycosat │ ├── python-pycosat.signatures.json │ └── python-pycosat.spec ├── python-pycparser │ ├── python-pycparser.signatures.json │ └── python-pycparser.spec ├── python-pycurl │ ├── python-pycurl.signatures.json │ ├── python-pycurl.spec │ └── skip-incompatible-libcurl-tests.patch ├── python-pygments │ ├── python-pygments.signatures.json │ └── python-pygments.spec ├── python-pynacl │ ├── fix_average_value_hypothesis_error.patch │ ├── fix_import_unlimited_error.patch │ ├── python-pynacl.signatures.json │ └── python-pynacl.spec ├── python-pyproject-metadata │ ├── python-pyproject-metadata.signatures.json │ └── python-pyproject-metadata.spec ├── python-pyroute2 │ ├── python-pyroute2.signatures.json │ └── python-pyroute2.spec ├── python-pyrpm │ ├── python-pyrpm.signatures.json │ └── python-pyrpm.spec ├── python-pytest-benchmark │ ├── python-pytest-benchmark.signatures.json │ └── python-pytest-benchmark.spec ├── python-pytest-cov │ ├── 0001-skip-tests-that-are-expected-to-fail.patch │ ├── python-pytest-cov.signatures.json │ └── python-pytest-cov.spec ├── python-pytest-expect │ ├── LICENSE │ ├── python-pytest-expect.signatures.json │ └── python-pytest-expect.spec ├── python-pytest-flakes │ ├── python-pytest-flakes.signatures.json │ └── python-pytest-flakes.spec ├── python-pytest-forked │ ├── Pytest-Output-Fix.patch │ ├── python-pytest-forked.signatures.json │ └── python-pytest-forked.spec ├── python-pytest-mock │ ├── fix__test_failure_message.patch │ ├── python-pytest-mock.signatures.json │ ├── python-pytest-mock.spec │ └── skip_broken_tests_since_3.6.1.patch ├── python-pytest-xdist │ ├── python-pytest-xdist.signatures.json │ └── python-pytest-xdist.spec ├── python-pyudev │ ├── python-pyudev.signatures.json │ └── python-pyudev.spec ├── python-pywbem │ ├── python-pywbem.signatures.json │ └── python-pywbem.spec ├── python-remoto │ ├── python-remoto.signatures.json │ └── python-remoto.spec ├── python-repoze-lru │ ├── python-repoze-lru.signatures.json │ └── python-repoze-lru.spec ├── python-requests-oauthlib │ ├── python-requests-oauthlib.signatures.json │ └── python-requests-oauthlib.spec ├── python-requests │ ├── CVE-2024-35195.patch │ ├── CVE-2024-47081.patch │ ├── python-requests.signatures.json │ └── python-requests.spec ├── python-resolvelib │ ├── python-resolvelib.signatures.json │ └── python-resolvelib.spec ├── python-responses │ ├── python-responses.signatures.json │ └── python-responses.spec ├── python-retrying │ ├── python-retrying.signatures.json │ ├── python-retrying.spec │ └── test_retrying.py ├── python-rich │ ├── 0001-Skip-tests-for-mariner.patch │ ├── 3229.patch │ ├── ptest-warning.patch │ ├── python-rich.signatures.json │ └── python-rich.spec ├── python-routes │ ├── python-routes.signatures.json │ └── python-routes.spec ├── python-rpm-generators │ ├── COPYING │ ├── python-rpm-generators.signatures.json │ ├── python-rpm-generators.spec │ ├── python.attr │ ├── pythonbundles.py │ ├── pythondist.attr │ ├── pythondistdeps.py │ └── pythonname.attr ├── python-rpmautospec-core │ ├── python-rpmautospec-core.signatures.json │ └── python-rpmautospec-core.spec ├── python-rsa │ ├── python-rsa.signatures.json │ └── python-rsa.spec ├── python-ruamel-yaml-clib │ ├── python-ruamel-yaml-clib.signatures.json │ └── python-ruamel-yaml-clib.spec ├── python-ruamel-yaml │ ├── python-ruamel-yaml.signatures.json │ └── python-ruamel-yaml.spec ├── python-schedutils │ ├── python-schedutils.signatures.json │ └── python-schedutils.spec ├── python-setuptools │ ├── CVE-2024-6345.patch │ ├── CVE-2025-47273.patch │ ├── python-setuptools.signatures.json │ └── python-setuptools.spec ├── python-setuptools_scm │ ├── python-setuptools_scm.signatures.json │ └── python-setuptools_scm.spec ├── python-simplejson │ ├── python-simplejson.signatures.json │ └── python-simplejson.spec ├── python-six │ ├── python-six.signatures.json │ └── python-six.spec ├── python-snowballstemmer │ ├── python-snowballstemmer.signatures.json │ └── python-snowballstemmer.spec ├── python-sortedcontainers │ ├── python-sortedcontainers.signatures.json │ └── python-sortedcontainers.spec ├── python-sphinx-theme-alabaster │ ├── python-sphinx-theme-alabaster.signatures.json │ └── python-sphinx-theme-alabaster.spec ├── python-sphinx-theme-py3doc-enhanced │ ├── python-sphinx-theme-py3doc-enhanced.signatures.json │ └── python-sphinx-theme-py3doc-enhanced.spec ├── python-sphinx │ ├── python-sphinx.signatures.json │ └── python-sphinx.spec ├── python-sphinx_rtd_theme │ ├── python-sphinx_rtd_theme-html5shiv.patch │ ├── python-sphinx_rtd_theme.signatures.json │ └── python-sphinx_rtd_theme.spec ├── python-sphinxcontrib-applehelp │ ├── python-sphinxcontrib-applehelp.signatures.json │ └── python-sphinxcontrib-applehelp.spec ├── python-sphinxcontrib-devhelp │ ├── python-sphinxcontrib-devhelp.signatures.json │ └── python-sphinxcontrib-devhelp.spec ├── python-sphinxcontrib-htmlhelp │ ├── python-sphinxcontrib-htmlhelp.signatures.json │ └── python-sphinxcontrib-htmlhelp.spec ├── python-sphinxcontrib-jsmath │ ├── python-sphinxcontrib-jsmath.signatures.json │ ├── python-sphinxcontrib-jsmath.spec │ └── test_jsmath_path_fix.patch ├── python-sphinxcontrib-qthelp │ ├── python-sphinxcontrib-qthelp.signatures.json │ └── python-sphinxcontrib-qthelp.spec ├── python-sphinxcontrib-serializinghtml │ ├── python-sphinxcontrib-serializinghtml.signatures.json │ └── python-sphinxcontrib-serializinghtml.spec ├── python-sphinxcontrib-websupport │ ├── python-sphinxcontrib-websupport.signatures.json │ └── python-sphinxcontrib-websupport.spec ├── python-sqlalchemy │ ├── python-sqlalchemy.signatures.json │ └── python-sqlalchemy.spec ├── python-templated-dictionary │ ├── python-templated-dictionary.signatures.json │ └── python-templated-dictionary.spec ├── python-tensorboard-plugin-wit │ ├── python-tensorboard-plugin-wit.signatures.json │ └── python-tensorboard-plugin-wit.spec ├── python-tensorboard │ ├── 0000-Use-system-package.patch │ ├── CVE-2024-43788.patch │ ├── CVE-2024-43796.patch │ ├── CVE-2024-45590.patch │ ├── dockerfile │ ├── genereate_source_tarball.sh │ ├── python-tensorboard.signatures.json │ └── python-tensorboard.spec ├── python-termcolor │ ├── python-termcolor.signatures.json │ └── python-termcolor.spec ├── python-tidy │ ├── python-tidy.signatures.json │ └── python-tidy.spec ├── python-tomli │ ├── python-tomli.signatures.json │ └── python-tomli.spec ├── python-toolz │ ├── python-toolz.signatures.json │ └── python-toolz.spec ├── python-tox-current-env │ ├── python-tox-current-env.signatures.json │ └── python-tox-current-env.spec ├── python-tqdm │ ├── CVE-2024-34062.patch │ ├── python-tqdm.signatures.json │ └── python-tqdm.spec ├── python-trove-classifiers │ ├── Move-to-PEP-621-declarative-metadata.patch │ ├── python-trove-classifiers.signatures.json │ └── python-trove-classifiers.spec ├── python-twisted │ ├── CVE-2023-46137.patch │ ├── CVE-2024-41671.patch │ ├── CVE-2024-41810.patch │ ├── disable_multicast_test.patch │ ├── python-twisted.signatures.json │ └── python-twisted.spec ├── python-typing-extensions │ ├── python-typing-extensions.signatures.json │ ├── python-typing-extensions.spec │ └── test_generic_protocols_special_from_protocol.patch ├── python-urllib3 │ ├── CVE-2024-37891.patch │ ├── CVE-2025-50181.patch │ ├── change-backend-to-flit_core.patch │ ├── python-urllib3.signatures.json │ ├── python-urllib3.spec │ └── urllib3_test_recent_date.patch ├── python-vcversioner │ ├── COPYING │ ├── python-vcversioner.signatures.json │ └── python-vcversioner.spec ├── python-versioneer │ ├── python-versioneer.signatures.json │ └── python-versioneer.spec ├── python-virt-firmware │ ├── python-virt-firmware.signatures.json │ └── python-virt-firmware.spec ├── python-virtualenv │ ├── 0001-replace-to-flit.patch │ ├── CVE-2024-53899.patch │ ├── python-virtualenv.signatures.json │ └── python-virtualenv.spec ├── python-wcwidth │ ├── python-wcwidth.signatures.json │ └── python-wcwidth.spec ├── python-webob │ ├── python-webob.signatures.json │ └── python-webob.spec ├── python-websocket-client │ ├── python-websocket-client.signatures.json │ └── python-websocket-client.spec ├── python-werkzeug │ ├── CVE-2024-49767.patch │ ├── preserve-any-existing-PYTHONPATH-in-tests.patch │ ├── python-werkzeug.signatures.json │ └── python-werkzeug.spec ├── python-wheel │ ├── python-wheel.signatures.json │ └── python-wheel.spec ├── python-wrapt │ ├── python-wrapt.signatures.json │ └── python-wrapt.spec ├── python-xlrd │ ├── python-xlrd.signatures.json │ └── python-xlrd.spec ├── python-xlsxwriter │ ├── python-xlsxwriter.signatures.json │ └── python-xlsxwriter.spec ├── python-yamlloader │ ├── python-yamlloader.signatures.json │ └── python-yamlloader.spec ├── python-zipp │ ├── CVE-2024-5569.patch │ ├── python-zipp.signatures.json │ └── python-zipp.spec ├── python-zope-event │ ├── python-zope-event.signatures.json │ └── python-zope-event.spec ├── python-zope-interface │ ├── python-zope-interface.signatures.json │ └── python-zope-interface.spec ├── python-zstandard │ ├── python-zstandard.signatures.json │ └── python-zstandard.spec ├── python-zstd │ ├── python-zstd-1.5.5.1-test-external.patch │ ├── python-zstd.signatures.json │ └── python-zstd.spec ├── python3-pytest-asyncio │ ├── python3-pytest-asyncio.signatures.json │ └── python3-pytest-asyncio.spec ├── python3 │ ├── CVE-2025-4516.patch │ ├── CVE-2025-4517.patch │ ├── CVE-2025-6069.patch │ ├── CVE-2025-6075.patch │ ├── CVE-2025-8194.patch │ ├── CVE-2025-8291.patch │ ├── cgi3.patch │ ├── pathfix.py │ ├── python3.signatures.json │ └── python3.spec ├── pytorch │ ├── CVE-2021-22569.patch │ ├── CVE-2021-22918.patch │ ├── CVE-2022-1941.patch │ ├── CVE-2024-27318.patch │ ├── CVE-2024-27319.patch │ ├── CVE-2024-5187.patch │ ├── CVE-2024-7776.patch │ ├── CVE-2025-2953.patch │ ├── CVE-2025-32434.patch │ ├── CVE-2025-3730.patch │ ├── CVE-2025-46152.patch │ ├── CVE-2025-55552.patch │ ├── CVE-2025-55560.patch │ ├── pytorch.signatures.json │ └── pytorch.spec ├── pytz │ ├── pytz.signatures.json │ └── pytz.spec ├── qdox │ ├── Port-to-JFlex-1.7.0.patch │ ├── qdox-build.xml │ ├── qdox.signatures.json │ └── qdox.spec ├── qemu │ ├── 0001-pc-bios-optionrom-Fix-pvh.img-ld-build-failure-on-fe.patch │ ├── 0002-Disable-failing-tests-on-azl.patch │ ├── 95-kvm-memlock.conf │ ├── 99-qemu-guest-agent.rules │ ├── CVE-2021-20255.patch │ ├── CVE-2023-6683.patch │ ├── CVE-2023-6693.patch │ ├── CVE-2024-26327.patch │ ├── CVE-2024-26328.patch │ ├── CVE-2024-3447.patch │ ├── CVE-2024-3567.patch │ ├── CVE-2024-4467.patch │ ├── CVE-2024-4693.patch │ ├── CVE-2024-6505.patch │ ├── CVE-2024-7409.patch │ ├── CVE-2024-7730.patch │ ├── CVE-2025-11234.patch │ ├── CVE-2025-12464.patch │ ├── README.tests │ ├── bridge.conf │ ├── kvm-s390x.conf │ ├── kvm-x86.conf │ ├── kvm.conf │ ├── qemu-ga.sysconfig │ ├── qemu-guest-agent.service │ ├── qemu.signatures.json │ ├── qemu.spec │ └── vhost.conf ├── qt-rpm-macros │ ├── macros.qt │ ├── qmake-qt.sh │ ├── qt-rpm-macros.signatures.json │ └── qt-rpm-macros.spec ├── qtbase │ ├── CVE-2024-56732.patch │ ├── CVE-2025-30348.patch │ ├── CVE-2025-5455.patch │ ├── macros.qtbase │ ├── qconfig-multilib.h │ ├── qtbase-QT_VERSION_CHECK.patch │ ├── qtbase-cxxflag.patch │ ├── qtbase-multilib_optflags.patch │ ├── qtbase-mysql.patch │ ├── qtbase.signatures.json │ ├── qtbase.spec │ ├── qtlogging.ini │ └── tell-the-truth-about-private-api.patch ├── qtdeclarative │ ├── qtdeclarative.signatures.json │ └── qtdeclarative.spec ├── qtsvg │ ├── CVE-2025-10729.patch │ ├── qtsvg.signatures.json │ └── qtsvg.spec ├── qttools │ ├── qttools.signatures.json │ └── qttools.spec ├── quota │ ├── quota-4.03-Validate-upper-bound-of-RPC-port.patch │ ├── quota-4.06-warnquota-configuration-tunes.patch │ ├── quota.signatures.json │ ├── quota.spec │ ├── quota_nld.service │ ├── quota_nld.sysconfig │ ├── rpc-rquotad.service │ └── rpc-rquotad.sysconfig ├── rabbitmq-server │ ├── CVE-2025-30219.patch │ ├── CVE-2025-50200.patch │ ├── executeRabbitMQTests.sh │ ├── generate-rabbitmq-server-tarball.sh │ ├── rabbitmq-server.signatures.json │ ├── rabbitmq-server.spec │ └── rabbitmqHexCacheMakefile ├── radvd │ ├── radvd-double_free_ifacelist.patch │ ├── radvd-endianess.patch │ ├── radvd-nodaemon_manpage,patch │ ├── radvd-stderr_logging.patch │ ├── radvd-tmpfs.conf │ ├── radvd-werror.patch │ ├── radvd.signatures.json │ └── radvd.spec ├── ragel │ ├── Ragel-Colm-NoStatic.patch │ ├── ragel.signatures.json │ └── ragel.spec ├── rapidjson │ ├── 0000-Supress-implicit-fallthrough-in-GCC.patch │ ├── 0001-Onley-apply-to-GCC-7.patch │ ├── 0002-Correct-object-copying-in-document_h.patch │ ├── CVE-2024-38517.patch │ ├── CVE-2024-39684.nopatch │ ├── rapidjson.signatures.json │ └── rapidjson.spec ├── rasdaemon │ ├── rasdaemon.signatures.json │ └── rasdaemon.spec ├── rdma-core │ ├── 0001-kernel-boot-Do-not-perform-device-rename-on-OPA-devi.patch │ ├── rdma-core.signatures.json │ └── rdma-core.spec ├── re2 │ ├── re2-soname.patch │ ├── re2.signatures.json │ └── re2.spec ├── readline │ ├── readline-8.2-patch-1.patch │ ├── readline.signatures.json │ └── readline.spec ├── reproc │ ├── reproc.signatures.json │ └── reproc.spec ├── rest │ ├── rest.signatures.json │ └── rest.spec ├── rlwrap │ ├── rlwrap.signatures.json │ └── rlwrap.spec ├── rng-tools │ ├── rng-tools.signatures.json │ ├── rng-tools.spec │ └── rngd.service ├── rocksdb │ ├── rocksdb.signatures.json │ └── rocksdb.spec ├── rpcbind │ ├── rpcbind.service │ ├── rpcbind.signatures.json │ ├── rpcbind.socket │ ├── rpcbind.spec │ └── rpcbind.sysconfig ├── rpcsvc-proto │ ├── rpcsvc-proto.signatures.json │ └── rpcsvc-proto.spec ├── rpm-mpi-hooks │ ├── LICENSE │ ├── mpi.attr │ ├── mpi.prov │ ├── mpi.req │ ├── mpilibsymlink.attr │ ├── rpm-mpi-hooks.signatures.json │ └── rpm-mpi-hooks.spec ├── rpm-ostree │ ├── 0001-Revert-compose-Inject-our-static-tmpfiles.d-dropins-.patch │ ├── CVE-2024-2905.patch │ ├── rpm-ostree-libdnf-build.patch │ ├── rpm-ostree.signatures.json │ └── rpm-ostree.spec ├── rpm │ ├── define-RPM_LD_FLAGS.patch │ ├── fix_RPM_GNUC_DEPRECATED_headers.patch │ ├── remove-docs-from-makefile.patch │ ├── rpm.signatures.json │ └── rpm.spec ├── rpmdevtools │ ├── progressbar.py │ ├── rpmdevtools.signatures.json │ └── rpmdevtools.spec ├── rrdtool │ ├── rrdtool.signatures.json │ └── rrdtool.spec ├── rshim │ ├── rshim.signatures.json │ └── rshim.spec ├── rsync │ ├── CVE-2025-10158.patch │ ├── rsync.signatures.json │ └── rsync.spec ├── rsyslog │ ├── 50-rsyslog-journald.conf │ ├── issue5158.patch │ ├── rsyslog.conf │ ├── rsyslog.logrotate │ ├── rsyslog.service │ ├── rsyslog.signatures.json │ └── rsyslog.spec ├── rt-setup │ ├── no-annobin.patch │ ├── rt-setup.signatures.json │ └── rt-setup.spec ├── rt-tests │ ├── SOURCES │ │ ├── rt-tests-Add-missing-SPDX-licenses.patch │ │ ├── rt-tests-Makefile-Restore-support-for-Exuberant-Ctag.patch │ │ └── rt-tests-Remove-remaining-unnecessary-texts-after-ad.patch │ ├── rt-tests.signatures.json │ └── rt-tests.spec ├── rtctl │ ├── rtctl.signatures.json │ └── rtctl.spec ├── rtl-sdr │ ├── librtlsdr-0.6.0-pkgconfig.patch │ ├── rtl-sdr.signatures.json │ └── rtl-sdr.spec ├── ruby │ ├── Avoid-another-race-condition-of-open-mode.patch │ ├── CVE-2024-49761.patch │ ├── CVE-2025-24294.patch │ ├── CVE-2025-25186.patch │ ├── CVE-2025-27219.patch │ ├── CVE-2025-27220.patch │ ├── CVE-2025-27221.patch │ ├── CVE-2025-6442.patch │ ├── Remove-the-lock-file-for-binstubs.patch │ ├── get_gem_versions.sh │ ├── macros.ruby │ ├── macros.rubygems │ ├── operating_system.rb │ ├── ruby.signatures.json │ ├── ruby.spec │ ├── rubygems.attr │ ├── rubygems.con │ ├── rubygems.prov │ └── rubygems.req ├── rubygem-addressable │ ├── rubygem-addressable.signatures.json │ └── rubygem-addressable.spec ├── rubygem-asciidoctor │ ├── rubygem-asciidoctor.signatures.json │ └── rubygem-asciidoctor.spec ├── rubygem-bindata │ ├── rubygem-bindata.signatures.json │ └── rubygem-bindata.spec ├── rubygem-concurrent-ruby │ ├── remove_jar.patch │ ├── rubygem-concurrent-ruby.signatures.json │ └── rubygem-concurrent-ruby.spec ├── rubygem-connection_pool │ ├── rubygem-connection_pool.signatures.json │ └── rubygem-connection_pool.spec ├── rubygem-cool.io │ ├── fix-file_list.patch │ ├── rubygem-cool.io.signatures.json │ └── rubygem-cool.io.spec ├── rubygem-digest-crc │ ├── fix-file_list.patch │ ├── rubygem-digest-crc.signatures.json │ └── rubygem-digest-crc.spec ├── rubygem-elastic-transport │ ├── fix-file_list.patch │ ├── rubygem-elastic-transport.signatures.json │ └── rubygem-elastic-transport.spec ├── rubygem-elasticsearch-api │ ├── fix-file_list.patch │ ├── rubygem-elasticsearch-api.signatures.json │ └── rubygem-elasticsearch-api.spec ├── rubygem-elasticsearch │ ├── fix-file_list.patch │ ├── rubygem-elasticsearch.signatures.json │ └── rubygem-elasticsearch.spec ├── rubygem-excon │ ├── fix-file_list.patch │ ├── rubygem-excon.signatures.json │ └── rubygem-excon.spec ├── rubygem-faraday-em_http │ ├── rubygem-faraday-em_http.signatures.json │ └── rubygem-faraday-em_http.spec ├── rubygem-faraday-em_synchrony │ ├── rubygem-faraday-em_synchrony.signatures.json │ └── rubygem-faraday-em_synchrony.spec ├── rubygem-faraday-excon │ ├── rubygem-faraday-excon.signatures.json │ └── rubygem-faraday-excon.spec ├── rubygem-faraday-httpclient │ ├── rubygem-faraday-httpclient.signatures.json │ └── rubygem-faraday-httpclient.spec ├── rubygem-faraday-multipart │ ├── rubygem-faraday-multipart.signatures.json │ └── rubygem-faraday-multipart.spec ├── rubygem-faraday-net_http │ ├── rubygem-faraday-net_http.signatures.json │ └── rubygem-faraday-net_http.spec ├── rubygem-faraday-net_http_persistent │ ├── rubygem-faraday-net_http_persistent.signatures.json │ └── rubygem-faraday-net_http_persistent.spec ├── rubygem-faraday-rack │ ├── rubygem-faraday-rack.signatures.json │ └── rubygem-faraday-rack.spec ├── rubygem-faraday-retry │ ├── rubygem-faraday-retry.signatures.json │ └── rubygem-faraday-retry.spec ├── rubygem-faraday │ ├── rubygem-faraday.signatures.json │ └── rubygem-faraday.spec ├── rubygem-ffi │ ├── rubygem-ffi.signatures.json │ └── rubygem-ffi.spec ├── rubygem-fiber-local │ ├── fix-file_list.patch │ ├── rubygem-fiber-local.signatures.json │ └── rubygem-fiber-local.spec ├── rubygem-hirb │ ├── rubygem-hirb.signatures.json │ └── rubygem-hirb.spec ├── rubygem-hoe │ ├── hoe.gemspec │ ├── rubygem-hoe.signatures.json │ └── rubygem-hoe.spec ├── rubygem-hpricot │ ├── rubygem-hpricot.signatures.json │ └── rubygem-hpricot.spec ├── rubygem-http_parser │ ├── generate_source_tarball.sh │ ├── rubygem-http_parser.signatures.json │ └── rubygem-http_parser.spec ├── rubygem-httpclient │ ├── rubygem-httpclient.signatures.json │ └── rubygem-httpclient.spec ├── rubygem-introspection │ ├── rubygem-introspection.signatures.json │ └── rubygem-introspection.spec ├── rubygem-io-event │ ├── rubygem-io-event.signatures.json │ └── rubygem-io-event.spec ├── rubygem-jmespath │ ├── rubygem-jmespath.signatures.json │ └── rubygem-jmespath.spec ├── rubygem-ltsv │ ├── fix-file_list.patch │ ├── rubygem-ltsv.signatures.json │ └── rubygem-ltsv.spec ├── rubygem-metaclass │ ├── fix-file_list.patch │ ├── rubygem-metaclass-0.0.4-Move-to-Minitest-5.patch │ ├── rubygem-metaclass.signatures.json │ └── rubygem-metaclass.spec ├── rubygem-mini_portile2 │ ├── fix-file_list.patch │ ├── rubygem-mini_portile2.signatures.json │ └── rubygem-mini_portile2.spec ├── rubygem-minitest │ ├── minitest.gemspec │ ├── rubygem-minitest.signatures.json │ └── rubygem-minitest.spec ├── rubygem-mocha │ ├── rubygem-mocha.signatures.json │ └── rubygem-mocha.spec ├── rubygem-msgpack │ ├── rubygem-msgpack.signatures.json │ └── rubygem-msgpack.spec ├── rubygem-multi_json │ ├── rubygem-multi_json.signatures.json │ └── rubygem-multi_json.spec ├── rubygem-multipart-post │ ├── rubygem-multipart-post.signatures.json │ └── rubygem-multipart-post.spec ├── rubygem-mustache │ ├── rubygem-mustache-1.1.1-Fix-test-race-condition.patch │ ├── rubygem-mustache.signatures.json │ └── rubygem-mustache.spec ├── rubygem-net-http-persistent │ ├── net-http-persistent.gemspec │ ├── rubygem-net-http-persistent.signatures.json │ └── rubygem-net-http-persistent.spec ├── rubygem-nio4r │ ├── fix-file_list.patch │ ├── rubygem-nio4r.signatures.json │ └── rubygem-nio4r.spec ├── rubygem-nokogiri │ ├── rubygem-nokogiri.signatures.json │ └── rubygem-nokogiri.spec ├── rubygem-oj │ ├── rubygem-oj.signatures.json │ └── rubygem-oj.spec ├── rubygem-parallel │ ├── rubygem-parallel.signatures.json │ └── rubygem-parallel.spec ├── rubygem-power_assert │ ├── fix-file_list.patch │ ├── rubygem-power_assert.signatures.json │ └── rubygem-power_assert.spec ├── rubygem-prometheus-client │ ├── rubygem-prometheus-client.signatures.json │ └── rubygem-prometheus-client.spec ├── rubygem-protocol-hpack │ ├── fix-file_list.patch │ ├── rubygem-protocol-hpack.signatures.json │ └── rubygem-protocol-hpack.spec ├── rubygem-protocol-http │ ├── rubygem-protocol-http.signatures.json │ └── rubygem-protocol-http.spec ├── rubygem-protocol-http1 │ ├── remove-pem.patch │ ├── rubygem-protocol-http1.signatures.json │ └── rubygem-protocol-http1.spec ├── rubygem-protocol-http2 │ ├── rubygem-protocol-http2.signatures.json │ └── rubygem-protocol-http2.spec ├── rubygem-public_suffix │ ├── rubygem-public_suffix.signatures.json │ └── rubygem-public_suffix.spec ├── rubygem-rake-compiler │ ├── rubygem-rake-compiler.signatures.json │ └── rubygem-rake-compiler.spec ├── rubygem-rake │ ├── rubygem-rake.signatures.json │ └── rubygem-rake.spec ├── rubygem-rdiscount │ ├── rubygem-rdiscount.signatures.json │ └── rubygem-rdiscount.spec ├── rubygem-rdkafka │ ├── rubygem-rdkafka.signatures.json │ └── rubygem-rdkafka.spec ├── rubygem-rexml │ ├── CVE-2025-58767.patch │ ├── rubygem-rexml.signatures.json │ └── rubygem-rexml.spec ├── rubygem-ronn │ ├── rubygem-ronn.signatures.json │ └── rubygem-ronn.spec ├── rubygem-rspec │ ├── rubygem-rspec.signatures.json │ └── rubygem-rspec.spec ├── rubygem-ruby-kafka │ ├── fix-file_list.patch │ ├── rubygem-ruby-kafka.signatures.json │ └── rubygem-ruby-kafka.spec ├── rubygem-ruby-progressbar │ ├── remove-pem.patch │ ├── rubygem-ruby-progressbar.signatures.json │ └── rubygem-ruby-progressbar.spec ├── rubygem-rubyzip │ ├── rubygem-rubyzip.signatures.json │ └── rubygem-rubyzip.spec ├── rubygem-semantic_puppet │ ├── fix-file_list.patch │ ├── rubygem-semantic_puppet.signatures.json │ └── rubygem-semantic_puppet.spec ├── rubygem-serverengine │ ├── fix-file_list.patch │ ├── rubygem-serverengine.signatures.json │ └── rubygem-serverengine.spec ├── rubygem-sigdump │ ├── fix-file_list.patch │ ├── rubygem-sigdump.signatures.json │ └── rubygem-sigdump.spec ├── rubygem-strptime │ ├── fix-file_list.patch │ ├── rubygem-strptime.signatures.json │ └── rubygem-strptime.spec ├── rubygem-systemd-journal │ ├── fix-file_list.patch │ ├── rubygem-systemd-journal.signatures.json │ └── rubygem-systemd-journal.spec ├── rubygem-test-unit │ ├── rubygem-test-unit.signatures.json │ └── rubygem-test-unit.spec ├── rubygem-timers │ ├── rubygem-timers.signatures.json │ └── rubygem-timers.spec ├── rubygem-tzinfo-data │ ├── rubygem-tzinfo-data.signatures.json │ └── rubygem-tzinfo-data.spec ├── rubygem-tzinfo │ ├── rubygem-tzinfo.signatures.json │ └── rubygem-tzinfo.spec ├── rubygem-webhdfs │ ├── rubygem-webhdfs.signatures.json │ └── rubygem-webhdfs.spec ├── rubygem-webrick │ ├── CVE-2023-40225-content-length-validation.patch │ ├── CVE-2025-6442.patch │ ├── rubygem-webrick.signatures.json │ └── rubygem-webrick.spec ├── rubygem-yajl-ruby │ ├── rubygem-yajl-ruby.signatures.json │ └── rubygem-yajl-ruby.spec ├── rubygem-zip-zip │ ├── rubygem-zip-zip.signatures.json │ └── rubygem-zip-zip.spec ├── runc │ ├── runc.signatures.json │ └── runc.spec ├── rust │ ├── CVE-2023-45853.patch │ ├── CVE-2024-11738.patch │ ├── CVE-2024-31852.patch │ ├── CVE-2024-32884.patch │ ├── CVE-2025-4574.patch │ ├── CVE-2025-4574_1.75.patch │ ├── CVE-2025-53605.patch │ ├── CVE-2025-53605_1.75.patch │ ├── Ignore_failing_ci_tests.patch │ ├── generate_source_tarball-1.75 │ ├── generate_source_tarball.sh │ ├── rust-1.75.signatures.json │ ├── rust-1.75.spec │ ├── rust.signatures.json │ └── rust.spec ├── sanlock │ ├── sanlock.signatures.json │ └── sanlock.spec ├── scons │ ├── 0001-Remove-unnecessary-build-deps.patch │ ├── scons.signatures.json │ └── scons.spec ├── scrub │ ├── scrub.signatures.json │ └── scrub.spec ├── sdbus-cpp │ ├── sdbus-cpp.signatures.json │ └── sdbus-cpp.spec ├── seabios │ ├── 0001-Workaround-for-a-win8.1-32-S4-resume-bug.patch │ ├── 0002-reserve-more-memory-on-fseg.patch │ ├── 0003-vgabios-Reorder-video-modes-to-work-around-a-Windows.patch │ ├── 0004-nvme-Record-maximum-allowed-request-size.patch │ ├── 0005-nvme-improve-namespace-allocation.patch │ ├── config.coreboot │ ├── config.csm │ ├── config.seabios-128k │ ├── config.seabios-256k │ ├── config.seabios-microvm │ ├── config.vga-ati │ ├── config.vga-bochs-display │ ├── config.vga-cirrus │ ├── config.vga-isavga │ ├── config.vga-qxl │ ├── config.vga-ramfb │ ├── config.vga-stdvga │ ├── config.vga-virtio │ ├── config.vga-vmware │ ├── seabios.signatures.json │ └── seabios.spec ├── secilc │ ├── Allow-setting-arguments-to-xmlto-via-environmental-var.patch │ ├── secilc.signatures.json │ └── secilc.spec ├── sed │ ├── sed.signatures.json │ └── sed.spec ├── selinux-policy │ ├── 0001-Add-dac_read_search-perms.patch │ ├── 0002-systemd-systemd-logind-reads-cloud-init-state.patch │ ├── 0003-Set-default-login-to-unconfined_u.patch │ ├── 0004-Add-compatibility-for-container-selinux.patch │ ├── 0005-Temp-kubernetes-fix.patch │ ├── 0006-container-docker-Fixes-for-containerd-and-kubernetes.patch │ ├── 0007-Port-tomcat-module-from-Fedora-policy.patch │ ├── 0008-Port-PKI-module-from-Fedora-policy.patch │ ├── 0009-domain-Unconfined-can-transition-to-other-domains.patch │ ├── 0010-modutils-Handle-running-dracut-during-rpm-postinst.patch │ ├── 0011-iptables-Support-Mariner-non-standard-config-locatio.patch │ ├── 0012-systemd-Fix-run-systemd-shutdown-handling.patch │ ├── 0013-modutils-Temporary-fix-for-mkinitrd-dracut.patch │ ├── 0014-Add-additional-Fedora-policy-compatibility.patch │ ├── 0015-various-Add-new-pidfd-uses.patch │ ├── 0016-various-Add-use-of-pressure-stall-information-in-sys.patch │ ├── 0017-various-Add-additional-logging-access-for-domains-ru.patch │ ├── 0018-unconfined-Add-user-namespace-creation.patch │ ├── 0019-sysnet-The-ip-command-reads-various-files-in-usr-sha.patch │ ├── 0020-rpm-Minor-fixes.patch │ ├── 0021-systemd-Minor-fixes.patch │ ├── 0022-irqbalance-Dontaudit-net_admin.patch │ ├── 0023-systemd-tmpfiles-loadkeys-Read-var_t-symlinks.patch │ ├── 0024-systemd-tmpfiles-create-root-and-root-.ssh.patch │ ├── 0025-kernel-Exec-systemctl.patch │ ├── 0026-getty-grant-checkpoint_restore.patch │ ├── 0027-systemd-Add-basic-systemd-analyze-rules.patch │ ├── 0028-cloudinit-Add-support-for-cloud-init-growpart.patch │ ├── 0029-filesystem-systemd-memory.pressure-fixes.patch │ ├── 0030-init-Add-homectl-dbus-access.patch │ ├── 0031-Temporary-workaround-for-memory.pressure-labeling-is.patch │ ├── 0032-rpm-Fixes-from-various-post-scripts.patch │ ├── 0033-kmod-fix-for-run-modprobe.d.patch │ ├── 0034-systemd-Fix-dac_override-use-in-systemd-machine-id-s.patch │ ├── 0035-rpm-Run-systemd-sysctl-from-post.patch │ ├── 0036-fstools-Add-additional-perms-for-cloud-utils-growpar.patch │ ├── 0037-docker-Fix-dockerc-typo-in-container_engine_executab.patch │ ├── 0038-enable-liveos-iso-flow.patch │ ├── 0041-rpm-Allow-gpg-agent-run-in-rpm-scripts-to-watch-secr.patch │ ├── Makefile.devel │ ├── booleans_targeted.conf │ ├── macros.selinux-policy │ ├── modules_targeted.conf │ ├── selinux-policy.signatures.json │ └── selinux-policy.spec ├── setools │ ├── setools.signatures.json │ └── setools.spec ├── sg3_utils │ ├── sg3_utils.signatures.json │ └── sg3_utils.spec ├── sgabios │ ├── sgabios.signatures.json │ └── sgabios.spec ├── sgml-common │ ├── XMLSchema.dtd │ ├── datatypes.dtd │ ├── html.dcl │ ├── html.soc │ ├── sgml-common-quotes.patch │ ├── sgml-common-umask.patch │ ├── sgml-common-xmldir.patch │ ├── sgml-common.signatures.json │ ├── sgml-common.spec │ ├── sgml.conf.5 │ ├── sgmlwhich.1 │ ├── xml.dcl │ ├── xml.soc │ ├── xml.xsd │ └── xmldsig-core-schema.xsd ├── sgx-backwards-compatibility │ ├── 99-sgx-backwards-compatibility.rules │ ├── LICENSE │ ├── sgx-backwards-compatibility.signatures.json │ └── sgx-backwards-compatibility.spec ├── shadow-utils │ ├── login-defs │ ├── pam.d │ │ ├── chage │ │ ├── chpasswd │ │ ├── login │ │ ├── other │ │ ├── passwd │ │ ├── sshd │ │ ├── system-account │ │ ├── system-auth │ │ ├── system-password │ │ └── system-session │ ├── shadow-utils.signatures.json │ ├── shadow-utils.spec │ └── useradd-default ├── shared-mime-info │ ├── 0001-Remove-sub-classing-from-OO.o-mime-types.patch │ ├── eog-defaults.list │ ├── evince-defaults.list │ ├── file-roller-defaults.list │ ├── gnome-mimeapps.list │ ├── shared-mime-info.signatures.json │ ├── shared-mime-info.spec │ └── totem-defaults.list ├── sharutils │ ├── CVE-2018-1000097.patch │ ├── sharutils-4.14.2-Pass-compilation-with-Werror-format-security.patch │ ├── sharutils-4.15.2-Do-not-include-lib-md5.c-into-src-shar.c.patch │ ├── sharutils-4.15.2-Fix-building-with-GCC-10.patch │ ├── sharutils-4.15.2-fflush-adjust-to-glibc-2.28-libio.h-removal.patch │ ├── sharutils.signatures.json │ └── sharutils.spec ├── shim-unsigned-aarch64 │ ├── TESTING │ ├── azurelinux-ca-20230216.der │ ├── sbat.azurelinux.csv │ ├── shim-find-debuginfo.sh │ ├── shim-unsigned-aarch64.signatures.json │ ├── shim-unsigned-aarch64.spec │ └── shim.patches ├── shim-unsigned-x64 │ ├── TESTING │ ├── azurelinux-ca-20230216.der │ ├── sbat.azurelinux.csv │ ├── shim-find-debuginfo.sh │ ├── shim-unsigned-x64.signatures.json │ ├── shim-unsigned-x64.spec │ └── shim.patches ├── shim │ ├── TESTING │ ├── TESTING.create-certs │ ├── mmaa64.efi │ ├── mmx64.efi │ ├── shim.signatures.json │ ├── shim.spec │ ├── shimaa64.efi │ └── shimx64.efi ├── simdjson │ ├── simdjson.signatures.json │ └── simdjson.spec ├── sisu │ ├── 0001-Remove-dependency-on-glassfish-servlet-api.patch │ ├── sisu-OSGi-import-guava.patch │ ├── sisu-ignored-tests.patch │ ├── sisu-inject.pom │ ├── sisu-osgi-api.patch │ ├── sisu-parent.pom │ ├── sisu-plexus.pom │ ├── sisu.signatures.json │ └── sisu.spec ├── skopeo │ ├── CVE-2022-2879.patch │ ├── CVE-2023-45288.patch │ ├── CVE-2024-6104.patch │ ├── CVE-2024-9676.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-58058.patch │ ├── CVE-2025-58183.patch │ ├── skopeo.signatures.json │ └── skopeo.spec ├── slang │ ├── slang.signatures.json │ └── slang.spec ├── sleuthkit │ ├── sleuthkit.signatures.json │ └── sleuthkit.spec ├── slf4j │ ├── LICENSE-2.0.txt │ ├── slf4j.signatures.json │ └── slf4j.spec ├── smartmontools │ ├── drivedb.h │ ├── smartdnotify │ ├── smartmontools-5.38-defaultconf.patch │ ├── smartmontools.signatures.json │ ├── smartmontools.spec │ └── smartmontools.sysconf ├── snappy │ ├── detect_system_gtest.patch │ ├── snappy.signatures.json │ └── snappy.spec ├── socat │ ├── CVE-2024-54661.patch │ ├── socat.signatures.json │ └── socat.spec ├── socket_wrapper │ ├── socket_wrapper.signatures.json │ └── socket_wrapper.spec ├── sockperf │ ├── sockperf.signatures.json │ └── sockperf.spec ├── softhsm │ ├── softhsm-2.6.1-rh1831086-exit.patch │ ├── softhsm-openssl3-tests.patch │ ├── softhsm.signatures.json │ └── softhsm.spec ├── sos │ ├── bump-version-4-6-1.patch │ ├── copy-kernel-config.patch │ ├── create-azure-kdump-class.patch │ ├── create-azure-plugin.patch │ ├── sos.signatures.json │ └── sos.spec ├── span-lite │ ├── span-lite.signatures.json │ └── span-lite.spec ├── spdlog │ ├── spdlog-fmt_external.patch │ ├── spdlog.signatures.json │ └── spdlog.spec ├── spirv-headers │ ├── spirv-headers.signatures.json │ └── spirv-headers.spec ├── spirv-tools │ ├── fix-gcc12-build.patch │ ├── spirv-tools.signatures.json │ └── spirv-tools.spec ├── sqlite │ ├── CVE-2015-3717.nopatch │ ├── CVE-2025-6965.patch │ ├── sqlite.signatures.json │ └── sqlite.spec ├── squashfs-tools │ ├── mksquashfs.1 │ ├── squashfs-tools.signatures.json │ ├── squashfs-tools.spec │ └── unsquashfs.1 ├── squid │ ├── CVE-2025-59362.patch │ ├── CVE-2025-62168.patch │ ├── cache_swap.sh │ ├── perl-requires-squid.sh │ ├── squid-6.1-config.patch │ ├── squid-6.1-crash-half-closed.patch │ ├── squid-6.1-location.patch │ ├── squid-6.1-perlpath.patch │ ├── squid-6.1-symlink-lang-err.patch │ ├── squid-6.11-ignore-wsp-after-chunk-size.patch │ ├── squid.logrotate │ ├── squid.nm │ ├── squid.pam │ ├── squid.service │ ├── squid.signatures.json │ ├── squid.spec │ ├── squid.sysconfig │ └── squid.sysusers ├── sriov-network-device-plugin │ ├── CVE-2024-45338.patch │ ├── CVE-2024-45339.patch │ ├── CVE-2025-22872.patch │ ├── generate_source_tarball.sh │ ├── sriov-network-device-plugin.signatures.json │ └── sriov-network-device-plugin.spec ├── srp-hwe │ ├── srp-hwe.signatures.json │ └── srp-hwe.spec ├── srp │ ├── srp.signatures.json │ └── srp.spec ├── sscg │ ├── sscg.signatures.json │ └── sscg.spec ├── sshpass │ ├── sshpass.signatures.json │ └── sshpass.spec ├── strace │ ├── strace.signatures.json │ └── strace.spec ├── strongswan │ ├── 0001-Extending-timeout-for-test-cases-with-multiple-read-.patch │ ├── strongswan-5.6.0-uintptr_t.patch │ ├── strongswan-5.9.7-error-no-format.patch │ ├── strongswan-6.0.0-gcc15.patch │ ├── strongswan-6.0.1-gcc15.patch │ ├── strongswan-fix-make-check.patch │ ├── strongswan.signatures.json │ ├── strongswan.spec │ └── tmpfiles-strongswan.conf ├── stunnel │ ├── Certificate-Creation │ ├── pop3-redirect.xinetd │ ├── sfinger.xinetd │ ├── stunnel-5.50-authpriv.patch │ ├── stunnel-5.56-curves-doc-update.patch │ ├── stunnel-5.56.tar.gz.asc │ ├── stunnel-5.61-systemd-service.patch │ ├── stunnel-5.69-default-tls-version.patch │ ├── stunnel-5.69-system-ciphers.patch │ ├── stunnel-pop3s-client.conf │ ├── stunnel-sfinger.conf │ ├── stunnel.signatures.json │ ├── stunnel.spec │ └── stunnel@.service ├── subunit │ ├── subunit.signatures.json │ └── subunit.spec ├── subversion │ ├── CVE-2024-46901-advisory.patch │ ├── subversion.signatures.json │ └── subversion.spec ├── sudo │ ├── CVE-2025-32462.patch │ ├── CVE-2025-32463.patch │ ├── sudo.signatures.json │ └── sudo.spec ├── supermin │ ├── supermin-azurelinux.patch │ ├── supermin-find-requires │ ├── supermin.attr │ ├── supermin.signatures.json │ └── supermin.spec ├── swig │ ├── swig-java-Suppress-System.runFinalization-removal-warning.patch │ ├── swig.signatures.json │ └── swig.spec ├── swtpm │ ├── swtpm.signatures.json │ └── swtpm.spec ├── symlinks │ ├── symlinks-LICENSE.txt │ ├── symlinks.signatures.json │ └── symlinks.spec ├── sympy │ ├── sympy-circuitplot.patch │ ├── sympy.signatures.json │ └── sympy.spec ├── sysbench │ ├── CVE-2019-19391.patch │ ├── CVE-2024-25176.patch │ ├── CVE-2024-25178.patch │ ├── enable-python3.patch │ ├── sysbench-1.0.20-fix_deprecated_egrep_call.patch │ ├── sysbench.signatures.json │ └── sysbench.spec ├── sysfsutils │ ├── sysfsutils-2.0.0-class-dup.patch │ ├── sysfsutils-2.0.0-redhatify.patch │ ├── sysfsutils-aarch64.patch │ ├── sysfsutils.signatures.json │ └── sysfsutils.spec ├── syslinux │ ├── 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch │ ├── 0006-Replace-builtin-strlen-that-appears-to-get-optimized.patch │ ├── CVE-2011-2501.patch │ ├── CVE-2011-2691.patch │ ├── CVE-2011-3045.patch │ ├── CVE-2012-3425.patch │ ├── CVE-2015-7981.patch │ ├── syslinux-6.04_pre1-fcommon.patch │ ├── syslinux.signatures.json │ └── syslinux.spec ├── syslog-ng │ ├── 60-syslog-ng-journald.conf │ ├── CVE-2024-47619.patch │ ├── remove-hardcoded-python-module-versioning.patch │ ├── syslog-ng.service │ ├── syslog-ng.signatures.json │ └── syslog-ng.spec ├── sysstat │ ├── sysstat.signatures.json │ └── sysstat.spec ├── systemd-bootstrap │ ├── 50-security-hardening.conf │ ├── 99-dhcp-en.network │ ├── 99-mariner.preset │ ├── CVE-2022-3821.patch │ ├── CVE-2022-4415.patch │ ├── CVE-2022-45873.patch │ ├── CVE-2023-7008.patch │ ├── add-fsync-sysusers-passwd.patch │ ├── backport-helper-util-macros.patch │ ├── fix-journald-audit-logging.patch │ ├── gpt-auto-devno-not-determined.patch │ ├── macros.sysusers │ ├── systemd-bootstrap.signatures.json │ ├── systemd-bootstrap.spec │ ├── systemd.cfg │ ├── sysusers.attr │ ├── sysusers.generate-pre.sh │ ├── sysusers.prov │ ├── update-cifs-for-kernel-headers-6.1.patch │ └── use-255-macros.patch ├── systemd │ ├── 10-console-messages.conf │ ├── 10-map-count.conf │ ├── 10-oomd-defaults.conf │ ├── 10-oomd-per-slice-defaults.conf │ ├── 10-timeout-abort.conf │ ├── 20-yama-ptrace.conf │ ├── 26494.patch │ ├── 95-disable-systemd-oomd.preset │ ├── 98-default-mac-none.link │ ├── CVE-2023-7008.patch │ ├── CVE-2025-4598.patch │ ├── azurelinux-use-system-auth-in-pam-systemd-user.patch │ ├── do-not-test-openssl-sm3.patch │ ├── macros.sysusers │ ├── networkd-default-use-domains.patch │ ├── split-files.py │ ├── sysctl.conf.README │ ├── systemd-journal-gatewayd.xml │ ├── systemd-journal-remote.xml │ ├── systemd-udev-trigger-no-reload.conf │ ├── systemd.signatures.json │ ├── systemd.spec │ ├── sysusers.attr │ ├── sysusers.generate-pre.sh │ ├── sysusers.prov │ ├── triggers.systemd │ ├── use-none-scheduler.patch │ └── yum-protect-systemd.conf ├── systemtap │ ├── systemtap.signatures.json │ └── systemtap.spec ├── tar │ ├── tar-1.33-fix-capabilities-test.patch │ ├── tar-1.35-add-forgotten-tests-from-upstream.patch │ ├── tar.signatures.json │ └── tar.spec ├── tboot │ ├── README.md │ ├── create-drtm-policy.sh │ ├── remove-s3-algo.patch │ ├── tboot.signatures.json │ └── tboot.spec ├── tcl │ ├── CVE-2023-36328.patch │ ├── CVE-2023-45853.patch │ ├── tcl.signatures.json │ └── tcl.spec ├── tcpdump │ ├── tcpdump.signatures.json │ └── tcpdump.spec ├── tcsh │ ├── tcsh.signatures.json │ └── tcsh.spec ├── tdnf │ ├── cache-updateinfo │ ├── cache-updateinfo.service │ ├── cache-updateinfo.timer │ ├── fix-tests-for-azl.patch │ ├── tdnf-add-installonlypkgs-config.patch │ ├── tdnf-default-azurelinux-release.patch │ ├── tdnf-enable-plugins-by-default.patch │ ├── tdnf-installonly-install-status.patch │ ├── tdnf-installonlypkgs.patch │ ├── tdnf-printf-fix.patch │ ├── tdnf-sqlite-library.patch │ ├── tdnf.signatures.json │ ├── tdnf.spec │ ├── tdnfrepogpgcheck.conf │ └── virtual-repo-snapshot.patch ├── telegraf │ ├── CVE-2024-35255.patch │ ├── CVE-2024-37298.patch │ ├── CVE-2024-45337.patch │ ├── CVE-2024-45338.patch │ ├── CVE-2024-51744.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22869.patch │ ├── CVE-2025-22870.patch │ ├── CVE-2025-22872.patch │ ├── CVE-2025-27144.patch │ ├── CVE-2025-30204.patch │ ├── CVE-2025-30215.patch │ ├── CVE-2025-47913.patch │ ├── generate_source_tarball.sh │ ├── telegraf.signatures.json │ └── telegraf.spec ├── tensorflow │ ├── CVE-2024-35195.patch │ ├── CVE-2024-3651.patch │ ├── CVE-2024-5569.patch │ ├── CVE-2024-6232.patch │ ├── CVE-2024-6923.patch │ ├── CVE-2024-7592.patch │ ├── CVE-2024-8088.patch │ ├── dockerfile │ ├── generate_tf_cache.sh │ ├── tensorflow.signatures.json │ └── tensorflow.spec ├── texinfo │ ├── texinfo.signatures.json │ └── texinfo.spec ├── thrift │ ├── configure-java-prefix.patch │ ├── thrift.signatures.json │ └── thrift.spec ├── tidy │ ├── CVE-2021-33391.patch │ ├── tidy.signatures.json │ └── tidy.spec ├── time │ ├── time-1.8-Prefer-clock_gettime-CLOCK_MONOTONIC.patch │ ├── time-1.9-Improve-info-directory-index-entry-description.patch │ ├── time.signatures.json │ └── time.spec ├── tini │ ├── tini.signatures.json │ └── tini.spec ├── tinycdb │ ├── libcdb.pc │ ├── tinycdb.signatures.json │ └── tinycdb.spec ├── tinyxml2 │ ├── CVE-2024-50615.patch │ ├── tinyxml2.signatures.json │ └── tinyxml2.spec ├── tmux │ ├── tmux.signatures.json │ └── tmux.spec ├── tokyocabinet │ ├── tokyocabinet-fedora.patch │ ├── tokyocabinet-manhelp.patch │ ├── tokyocabinet.signatures.json │ └── tokyocabinet.spec ├── toml11 │ ├── toml11.signatures.json │ └── toml11.spec ├── tpm2-abrmd │ ├── tpm2-abrmd.signatures.json │ └── tpm2-abrmd.spec ├── tpm2-pkcs11 │ ├── tpm2-pkcs11.signatures.json │ └── tpm2-pkcs11.spec ├── tpm2-pytss │ ├── 0001-remove-tests-for-unsupported-openssl.patch │ ├── tpm2-pytss.signatures.json │ └── tpm2-pytss.spec ├── tpm2-tools │ ├── tpm2-tools.signatures.json │ └── tpm2-tools.spec ├── tpm2-tss │ ├── tpm2-tss.signatures.json │ └── tpm2-tss.spec ├── trace-cmd │ ├── 98-trace-cmd.rules │ ├── trace-cmd.conf │ ├── trace-cmd.service │ ├── trace-cmd.signatures.json │ └── trace-cmd.spec ├── tracelogging │ ├── tracelogging.signatures.json │ └── tracelogging.spec ├── traceroute │ ├── traceroute.signatures.json │ └── traceroute.spec ├── tree │ ├── tree.signatures.json │ └── tree.spec ├── ttembed │ ├── ttembed.signatures.json │ └── ttembed.spec ├── tuna │ ├── tuna.signatures.json │ └── tuna.spec ├── tuned │ ├── CVE-2024-52336.patch │ ├── CVE-2024-52337.nopatch │ ├── skip-gui-files.patch │ ├── tuned.signatures.json │ └── tuned.spec ├── tzdata │ ├── tzdata.signatures.json │ └── tzdata.spec ├── uclibc-ng │ ├── uClibc.config │ ├── uclibc-ng.signatures.json │ └── uclibc-ng.spec ├── ucx │ ├── ucx.signatures.json │ └── ucx.spec ├── uid_wrapper │ ├── uid_wrapper.signatures.json │ └── uid_wrapper.spec ├── unbound │ ├── CVE-2024-33655.patch │ ├── CVE-2024-43167.patch │ ├── CVE-2024-43168.patch │ ├── CVE-2024-8508.patch │ ├── CVE-2025-11411.patch │ ├── unbound.service │ ├── unbound.signatures.json │ └── unbound.spec ├── unixODBC │ ├── CVE-2024-1013.patch │ ├── unixODBC.signatures.json │ └── unixODBC.spec ├── unzip │ ├── CVE-2008-0888.nopatch │ ├── CVE-2014-8139.patch │ ├── CVE-2014-8140.patch │ ├── CVE-2014-8141.patch │ ├── CVE-2014-9636.patch │ ├── CVE-2014-9913.patch │ ├── CVE-2015-1315.patch │ ├── CVE-2015-7696.patch │ ├── CVE-2015-7697.patch │ ├── CVE-2016-9844.patch │ ├── CVE-2018-1000035.patch │ ├── CVE-2021-4217.patch │ ├── CVE-2022-0529.patch │ ├── unzip-zipbomb-manpage.patch │ ├── unzip-zipbomb-part1-CVE-2019-13232.patch │ ├── unzip-zipbomb-part2.patch │ ├── unzip-zipbomb-part3.patch │ ├── unzip.signatures.json │ ├── unzip.spec │ └── unzip_cfactor_overflow-CVE-2018-18384.patch ├── usbip │ ├── extract_usbip.sh │ ├── usbip-5.5-fix-gcc9.patch │ ├── usbip-client.service │ ├── usbip-server.service │ ├── usbip.signatures.json │ └── usbip.spec ├── usbredir │ ├── usbredir.signatures.json │ └── usbredir.spec ├── usbutils │ ├── usb.ids │ ├── usbutils.signatures.json │ └── usbutils.spec ├── usermode │ ├── config-util │ ├── usermode.signatures.json │ └── usermode.spec ├── userspace-rcu │ ├── userspace-rcu.signatures.json │ └── userspace-rcu.spec ├── usrsctp │ ├── CVE-2019-20503.nopatch │ ├── usrsctp.signatures.json │ └── usrsctp.spec ├── utf8proc │ ├── utf8proc.signatures.json │ └── utf8proc.spec ├── util-linux │ ├── libblkid-src-probe-check-for-ENOMEDIUM.patch │ ├── runuser │ ├── runuser-l │ ├── su │ ├── su-l │ ├── util-linux.signatures.json │ └── util-linux.spec ├── uuid │ ├── ossp-uuid.patch │ ├── uuid-1.6.1-mkdir.patch │ ├── uuid-1.6.1-ossp.patch │ ├── uuid-1.6.2-hwaddr.patch │ ├── uuid-1.6.2-manfix.patch │ ├── uuid-1.6.2-nostrip.patch │ ├── uuid-1.6.2-php54.patch │ ├── uuid-aarch64.patch │ ├── uuid.signatures.json │ └── uuid.spec ├── vala │ ├── vala.signatures.json │ └── vala.spec ├── valgrind │ ├── valgrind.signatures.json │ └── valgrind.spec ├── valkey │ ├── disable-mem-defrag-tests.patch │ ├── valkey.signatures.json │ └── valkey.spec ├── vim │ ├── macros.vim │ ├── vim.signatures.json │ └── vim.spec ├── virglrenderer │ ├── virglrenderer.signatures.json │ └── virglrenderer.spec ├── virt-what │ ├── virt-what.signatures.json │ └── virt-what.spec ├── virtiofsd │ ├── CVE-2024-43806.patch │ ├── cargo_config │ ├── virtiofsd.signatures.json │ └── virtiofsd.spec ├── vitess │ ├── CVE-2017-14623.patch │ ├── CVE-2024-45339.patch │ ├── CVE-2024-53257.patch │ ├── CVE-2025-22868.patch │ ├── CVE-2025-22870.patch │ ├── generate_source_tarball.sh │ ├── vitess.signatures.json │ └── vitess.spec ├── vnstat │ ├── vnstat.signatures.json │ └── vnstat.spec ├── vsftpd │ ├── vsftpd-gen-debuginfo.patch │ ├── vsftpd.signatures.json │ └── vsftpd.spec ├── vte291 │ ├── CVE-2024-37535.patch │ ├── vte291-cntnr-precmd-preexec-scroll.patch │ ├── vte291.signatures.json │ └── vte291.spec ├── vulkan-headers │ ├── vulkan-headers.signatures.json │ └── vulkan-headers.spec ├── vulkan-loader │ ├── vulkan-loader.signatures.json │ └── vulkan-loader.spec ├── wayland-protocols │ ├── wayland-protocols.signatures.json │ └── wayland-protocols.spec ├── wayland │ ├── wayland.signatures.json │ └── wayland.spec ├── websocketpp │ ├── websocketpp-0.7.0-cmake_noarch.patch │ ├── websocketpp-0.7.0-disable-test_transport-test_transport_asio_timers.patch │ ├── websocketpp-0.8.1-cmake-configversion-compatibility-anynewerversion.patch │ ├── websocketpp.pc │ ├── websocketpp.signatures.json │ └── websocketpp.spec ├── wget │ ├── 0001-src-log.c-log_init-Redirect-INFO-logs-to-stderr-with.patch │ ├── 0002-normalize-path-in-url.patch │ ├── 0003-Allow-option-no-tcp-fastopen-to-work-on-Linux-kernel.patch │ ├── 0004-Disable-OCSP-by-default.patch │ ├── 0005-Accept-progress-dot-.-for-backwards-compatibility.patch │ ├── 0006-Disable-TCP-Fast-Open-by-default.patch │ ├── fix-ssl-read-and-write-error-check.patch │ ├── set-debug_skip_body-for-OCSP-requests-in-openssl-tls-provider.patch │ ├── wget.signatures.json │ └── wget.spec ├── which │ ├── which.signatures.json │ └── which.spec ├── wireguard-tools │ ├── wireguard-tools.conf │ ├── wireguard-tools.signatures.json │ └── wireguard-tools.spec ├── wireless-regdb │ ├── 85-regulatory.rules │ ├── setregdomain │ ├── setregdomain.1 │ ├── wireless-regdb.signatures.json │ └── wireless-regdb.spec ├── words │ ├── LICENSE │ ├── words-3.0-presidents.patch │ ├── words-3.0-typos.patch │ ├── words.signatures.json │ └── words.spec ├── wpa_supplicant │ ├── CVE-2023-52160.patch │ ├── CVE-2025-24912.patch │ ├── wpa_supplicant.signatures.json │ └── wpa_supplicant.spec ├── xcb-proto │ ├── xcb-proto.signatures.json │ └── xcb-proto.spec ├── xcb-util-image │ ├── xcb-util-image.signatures.json │ └── xcb-util-image.spec ├── xcb-util-keysyms │ ├── xcb-util-keysyms-LICENSE.txt │ ├── xcb-util-keysyms.signatures.json │ └── xcb-util-keysyms.spec ├── xcb-util-renderutil │ ├── xcb-util-renderutil.signatures.json │ └── xcb-util-renderutil.spec ├── xcb-util │ ├── xcb-util.signatures.json │ └── xcb-util.spec ├── xcursor-themes │ ├── xcursor-themes.signatures.json │ └── xcursor-themes.spec ├── xdp-tools │ ├── xdp-tools.signatures.json │ └── xdp-tools.spec ├── xerces-c │ ├── CVE-2024-23807.patch │ ├── xerces-c.signatures.json │ └── xerces-c.spec ├── xfsprogs │ ├── xfsprogs.signatures.json │ └── xfsprogs.spec ├── xinetd │ ├── CVE-2013-4342.patch │ ├── xinetd.service │ ├── xinetd.signatures.json │ └── xinetd.spec ├── xkeyboard-config │ ├── xkeyboard-config.signatures.json │ └── xkeyboard-config.spec ├── xml-commons-apis │ ├── xml-apis-2.0.2.pom │ ├── xml-apis-ext-1.3.04.pom │ ├── xml-commons-apis-MANIFEST.MF │ ├── xml-commons-apis-ext-MANIFEST.MF │ ├── xml-commons-apis.signatures.json │ └── xml-commons-apis.spec ├── xml-commons-resolver │ ├── xml-commons-resolver-1.2-crosslink.patch │ ├── xml-commons-resolver-1.2-osgi.patch │ ├── xml-commons-resolver-CatalogManager.properties │ ├── xml-commons-resolver-pom.xml │ ├── xml-commons-resolver-resolver.1 │ ├── xml-commons-resolver-xparse.1 │ ├── xml-commons-resolver-xread.1 │ ├── xml-commons-resolver.signatures.json │ └── xml-commons-resolver.spec ├── xmlsec1 │ ├── xmlsec1.signatures.json │ └── xmlsec1.spec ├── xmlstarlet │ ├── xmlstarlet-1.6.1-nogit.patch │ ├── xmlstarlet.signatures.json │ └── xmlstarlet.spec ├── xmlto │ ├── xmlto.signatures.json │ └── xmlto.spec ├── xmltoman │ ├── xmltoman-0.3-timestamps.patch │ ├── xmltoman.signatures.json │ └── xmltoman.spec ├── xmvn │ ├── xmvn.signatures.json │ └── xmvn.spec ├── xorg-x11-apps │ ├── xorg-x11-apps.signatures.json │ └── xorg-x11-apps.spec ├── xorg-x11-font-utils │ ├── mkfontscale-examine-all-encodings.patch │ ├── xorg-x11-font-utils.signatures.json │ ├── xorg-x11-font-utils.spec │ ├── xorg-x11-fonts-update-dirs │ └── xorg-x11-fonts-update-dirs.1 ├── xorg-x11-proto-devel │ ├── xorg-x11-proto-devel.signatures.json │ └── xorg-x11-proto-devel.spec ├── xorg-x11-server-Xwayland │ ├── CVE-2025-49175.patch │ ├── CVE-2025-49177.patch │ ├── CVE-2025-49178.patch │ ├── CVE-2025-49179.patch │ ├── CVE-2025-49180.patch │ ├── CVE-2025-62229.patch │ ├── CVE-2025-62230.patch │ ├── CVE-2025-62231.patch │ ├── xorg-x11-server-Xwayland.signatures.json │ └── xorg-x11-server-Xwayland.spec ├── xorg-x11-server-utils │ ├── 0001-sessreg-Replace-strncpy-calls-with-a-sane-version-that-alway.patch │ ├── 0001-xrandr-init-the-name-to-0.patch │ ├── 0001-xrandr-suppress-misleading-indentation-warning.patch │ ├── sessreg-1.1.0-get-rid-of-sed.patch │ ├── xorg-x11-server-utils.signatures.json │ └── xorg-x11-server-utils.spec ├── xorg-x11-util-macros │ ├── xorg-x11-util-macros.signatures.json │ └── xorg-x11-util-macros.spec ├── xorg-x11-xauth │ ├── xorg-x11-xauth.signatures.json │ └── xorg-x11-xauth.spec ├── xorg-x11-xbitmaps │ ├── xorg-x11-xbitmaps.signatures.json │ └── xorg-x11-xbitmaps.spec ├── xorg-x11-xinit │ ├── 0003-startx-Make-startx-auto-display-select-work-with-per.patch │ ├── Xclients │ ├── Xmodmap │ ├── Xresources │ ├── Xsession │ ├── localuser.sh │ ├── xinit-1.0.2-client-session.patch │ ├── xinit-1.3.4-set-XORG_RUN_AS_USER_OK.patch │ ├── xinit-compat │ ├── xinit-compat.desktop │ ├── xinitrc │ ├── xinitrc-common │ ├── xorg-x11-xinit.signatures.json │ └── xorg-x11-xinit.spec ├── xorg-x11-xkb-utils │ ├── xorg-x11-xkb-utils.signatures.json │ └── xorg-x11-xkb-utils.spec ├── xorg-x11-xtrans-devel │ ├── xorg-x11-xtrans-devel.signatures.json │ ├── xorg-x11-xtrans-devel.spec │ └── xtrans-1.0.3-avoid-gethostname.patch ├── xpmem-hwe │ ├── xpmem-hwe.signatures.json │ └── xpmem-hwe.spec ├── xpmem-lib │ ├── xpmem-lib.signatures.json │ └── xpmem-lib.spec ├── xpmem │ ├── xpmem.signatures.json │ └── xpmem.spec ├── xxhash │ ├── xxhash.signatures.json │ └── xxhash.spec ├── xz │ ├── CVE-2025-31115.patch │ ├── xz.signatures.json │ └── xz.spec ├── yajl │ ├── CVE-2023-33460.patch │ ├── yajl-2.1.0-dynlink-binaries.patch │ ├── yajl-2.1.0-pkgconfig-includedir.patch │ ├── yajl-2.1.0-pkgconfig-location.patch │ ├── yajl-2.1.0-test-location.patch │ ├── yajl.signatures.json │ └── yajl.spec ├── yaml-cpp │ ├── yaml-cpp.signatures.json │ └── yaml-cpp.spec ├── yasm │ ├── 0001-Update-elf-objfmt.c.patch │ ├── CVE-2021-33454.patch │ ├── CVE-2023-31975.patch │ ├── CVE-2023-37732.patch │ ├── CVE-2023-51258.patch │ ├── CVE-2024-22653.patch │ ├── yasm.signatures.json │ └── yasm.spec ├── yp-tools │ ├── yp-tools-2.12-adjunct.patch │ ├── yp-tools-2.12-crypt.patch │ ├── yp-tools-2.12-hash.patch │ ├── yp-tools-4.2.2-strict-prototypes.patch │ ├── yp-tools-4.2.3-yppasswd.patch │ ├── yp-tools.signatures.json │ └── yp-tools.spec ├── ypbind │ ├── nis.sh │ ├── ypbind-1.11-gettextdomain.patch │ ├── ypbind-2.5-helpman.patch │ ├── ypbind-post-waitbind │ ├── ypbind-pre-setdomain │ ├── ypbind.service │ ├── ypbind.signatures.json │ └── ypbind.spec ├── zchunk │ ├── zchunk.signatures.json │ └── zchunk.spec ├── zerofree │ ├── index.html │ ├── sparsify.c │ ├── zerofree.signatures.json │ └── zerofree.spec ├── zeromq │ ├── zeromq.signatures.json │ └── zeromq.spec ├── zfs-fuse │ ├── common.patch │ ├── tirpc.patch │ ├── zfs-fuse-0.7.2.2-python3.patch │ ├── zfs-fuse-0.7.2.2-stack.patch │ ├── zfs-fuse-helper │ ├── zfs-fuse.scrub │ ├── zfs-fuse.service │ ├── zfs-fuse.signatures.json │ ├── zfs-fuse.spec │ └── zfs-fuse.sysconfig ├── zip │ ├── CVE-2018-13410.patch │ ├── zip.signatures.json │ └── zip.spec ├── zipper │ ├── zipper.signatures.json │ └── zipper.spec ├── zlib │ ├── zlib.signatures.json │ └── zlib.spec ├── zsh │ ├── 0001-Skipping-test-if-ran-as-superuser.patch │ ├── fix-script-shebangs.patch │ ├── zprofile.rhs │ ├── zsh.signatures.json │ ├── zsh.spec │ └── zshrc └── zstd │ ├── zstd.signatures.json │ └── zstd.spec ├── SUPPORT.md ├── cgmanifest.json ├── codeql3000.yml └── toolkit ├── .gitignore ├── Makefile ├── README.md ├── docs ├── amd │ └── amd.md ├── building │ ├── add-package.md │ ├── building.md │ ├── developer-tools.md │ ├── prerequisites-mariner.md │ ├── prerequisites-mariner.sh │ ├── prerequisites-ubuntu.md │ ├── prerequisites-ubuntu.sh │ └── prerequisites.md ├── coding_guide │ └── makefiles.md ├── formats │ └── imageconfig.md ├── how_it_works │ ├── 0_intro.md │ ├── 1_initial_prep.md │ ├── 2_local_packages.md │ ├── 3_package_building.md │ ├── 4_image_generation.md │ ├── 5_misc.md │ ├── 6_logs.md │ └── images │ │ ├── cycle_after.png │ │ ├── cycle_before.png │ │ └── sources │ │ ├── cycle.json │ │ ├── cycle_after.dot │ │ └── cycle_before.dot ├── nvidia │ ├── mariner-nvidia.repo │ └── nvidia.md ├── quick_start │ └── quickstart.md └── security │ ├── ca-certificates.md │ ├── intro.md │ ├── iso-image-verification.md │ ├── read-only-roots.md │ └── security-features.md ├── imageconfigs ├── additionalconfigs │ ├── 51-ptp-hyperv.rules │ ├── 99-dhcp-en.network │ ├── chrony.cfg │ ├── cloud-init.cfg │ ├── configure-systemd-networkd.sh │ ├── sdboot-loader.conf │ └── wait-for-ptp-hyperv.conf ├── baremetal-amd64.yaml ├── baremetal-arm64.yaml ├── baremetal.json ├── core-container-builder.json ├── core-container.json ├── core-efi-aarch64.json ├── core-efi-selinux.json ├── core-efi.json ├── core-fips.json ├── core-legacy-unattended-hyperv.json ├── core-legacy.json ├── core-ova.json ├── distroless-base.json ├── distroless-debug.json ├── distroless-minimal.json ├── files │ ├── imagecustomizer │ │ └── isoinstaller │ │ │ ├── README.txt │ │ │ └── attended_config_aarch64_64k_hwe.json │ ├── osguard-ci │ │ └── config.toml │ └── osguard │ │ ├── 10-repart.conf │ │ ├── additional-repo-files.repo │ │ ├── chrony.conf │ │ ├── cloud.cfg │ │ ├── repart.d │ │ ├── 10-esp.conf │ │ ├── 11-boot-a.conf │ │ ├── 12-usr-a.conf │ │ ├── 13-usr-hash-a.conf │ │ ├── 14-root-a.conf │ │ ├── 15-boot-b.conf │ │ ├── 16-usr-b.conf │ │ ├── 17-usr-hash-b.conf │ │ └── 18-root-b.conf │ │ ├── resolv-uplink-override.service │ │ └── selinux-ci-uki.semanage ├── full-64k-hwe-arm64.yaml ├── full-aarch64.json ├── full.json ├── hyperv-guest-amd64.yaml ├── hyperv-guest-arm64.yaml ├── marketplace-gen1-amd64.yaml ├── marketplace-gen1-fips.json ├── marketplace-gen1.json ├── marketplace-gen2-aarch64-fips.json ├── marketplace-gen2-aarch64-kernel-hwe.json ├── marketplace-gen2-aarch64.json ├── marketplace-gen2-amd64.yaml ├── marketplace-gen2-arm64.yaml ├── marketplace-gen2-cvm.json ├── marketplace-gen2-fips.json ├── marketplace-gen2-kernel-hwe.json ├── marketplace-gen2.json ├── minimal-os-aarch64.json ├── minimal-os.json ├── osguard-amd64.yaml ├── osguard-ci-amd64.yaml ├── packagelists │ ├── azurevm-packages.json │ ├── azurevm-packages.yaml │ ├── baremetal-packages.json │ ├── baremetal-packages.yaml │ ├── base-image-packages.json │ ├── base-image-packages.yaml │ ├── cloud-init-packages.json │ ├── cloud-init-packages.yaml │ ├── core-container-builder-packages.json │ ├── core-packages-container.json │ ├── core-packages-image-aarch64.json │ ├── core-packages-image.json │ ├── core-packages-image.yaml │ ├── core-tools-packages.json │ ├── cvm-packages.json │ ├── developer-packages.json │ ├── distroless-packages-container-minimal.json │ ├── distroless-packages-container.json │ ├── distroless-packages-debug.json │ ├── drtm.json │ ├── fips-packages.json │ ├── grub2-mkconfig.json │ ├── hyperv-packages.json │ ├── hyperv-packages.yaml │ ├── isoinstaller-64k-hwe-packages.yaml │ ├── marketplace-tools-packages.json │ ├── marketplace-tools-packages.yaml │ ├── minimal-os-packages.json │ ├── qemu-guest-packages.json │ ├── qemu-guest-packages.yaml │ ├── rt-packages.json │ ├── selinux-full.json │ ├── selinux.json │ ├── selinux.yaml │ ├── ssh-server.json │ ├── virt-guest-packages.json │ ├── virt-guest-packages.yaml │ └── virtualization-host-packages.json ├── postinstallscripts │ ├── core-container │ │ └── cleanup.sh │ └── imagecustomizer │ │ └── isoinstaller_postinstalltask.sh ├── qemu-guest-amd64.yaml ├── qemu-guest-arm64.yaml ├── qemu-guest.json ├── scripts │ ├── cleanup.sh │ ├── common │ │ ├── azlinuxagentconfig.sh │ │ ├── cleanup-machineid.sh │ │ ├── move-iptables-scripts-to-usr.sh │ │ ├── performance-tuning.sh │ │ ├── prepare_trusted_cni_plugins.sh │ │ ├── remove-getty-import-credential.sh │ │ ├── selinux-ci-config.py │ │ └── tmp-no-exec.sh │ ├── osguard │ │ └── create-empty-certs-dir.sh │ ├── set_os_release_variant_entries.sh │ └── setup_cvm_image.sh ├── swuvm.json └── templates │ ├── osguard-base.yaml │ ├── osguard-ci-delta.yaml │ └── osguard-no-ci-delta.yaml ├── pkgbld.sh ├── resources ├── assets │ ├── isomaker │ │ ├── iso_root_arch-dependent_files │ │ │ ├── amd64 │ │ │ │ └── isolinux │ │ │ │ │ ├── isolinux.bin │ │ │ │ │ ├── isolinux.cfg │ │ │ │ │ └── ldlinux.c32 │ │ │ └── arm64 │ │ │ │ └── isolinux │ │ │ │ ├── isolinux.bin │ │ │ │ ├── isolinux.cfg │ │ │ │ └── ldlinux.c32 │ │ └── iso_root_static_files │ │ │ └── boot │ │ │ └── grub2 │ │ │ └── grub.cfg │ ├── meta-user-data │ │ ├── meta-data │ │ └── user-data │ └── ova │ │ ├── ovfinfo.txt │ │ └── vmx-template ├── imageconfigs │ ├── additionalfiles │ │ └── iso_initrd │ │ │ ├── init │ │ │ ├── installer │ │ │ ├── calamares-EULA.txt │ │ │ └── terminal-EULA.txt │ │ │ ├── root │ │ │ ├── asoundrc │ │ │ ├── runliveinstaller │ │ │ └── silence.wav │ │ │ └── usr │ │ │ └── lib │ │ │ ├── mariner │ │ │ └── terminfo │ │ │ │ └── mariner-installer │ │ │ └── systemd │ │ │ └── system │ │ │ ├── getty@.service │ │ │ └── serial-getty@.service │ ├── iso_initrd.json │ ├── iso_initrd_arm64.json │ ├── packagelists │ │ ├── accessibility-packages.json │ │ ├── iso-initrd-packages-arm64.json │ │ └── iso-initrd-packages.json │ └── postinstallscripts │ │ └── iso_initrd │ │ └── cleanup.sh └── manifests │ ├── image │ └── local.repo │ └── package │ ├── ccache-configuration.json │ ├── daily_build_repo.repo.template │ ├── fetcher.repo │ ├── license_file_exceptions.json │ ├── license_file_names.json │ ├── local.repo │ ├── macro_packages.txt │ ├── macros.override │ ├── pkggen_core_aarch64.txt │ ├── pkggen_core_x86_64.txt │ ├── toolchain_aarch64.txt │ ├── toolchain_x86_64.txt │ ├── update_manifests.py │ └── update_manifests.sh ├── scripts ├── addcerts.sh ├── analysis.mk ├── azure_config.mk ├── build_cargo_cache.sh ├── build_go_vendor_cache.sh ├── build_tag.mk ├── build_tag_imagecustomizer.mk ├── bump_kernel_release.sh ├── check_entangled_specs.py ├── check_spec_guidelines.py ├── check_srpm_duplicates.py ├── check_static_glibc.py ├── chroot.mk ├── containerized-build.mk ├── containerized-build │ ├── create_container_build.sh │ └── resources │ │ ├── azl.Dockerfile │ │ ├── local_repo │ │ ├── macros.with-check │ │ ├── setup_functions.sh │ │ └── welcome.txt ├── daily_build.mk ├── download-packages.sh ├── download_spec_sources.sh ├── filter-packages.sh ├── generate-osguard-imageconfigs.sh ├── generate-repartd.sh ├── get_config_deps.sh ├── get_lkg_id.sh ├── help.mk ├── imggen.mk ├── incremental_building.mk ├── license_map.py ├── livepatching │ ├── generate_livepatch-signed_spec.sh │ ├── generate_livepatch_spec.sh │ ├── template_livepatch-signed.spec │ ├── template_livepatch.spec │ └── update_livepatches.sh ├── manifests.mk ├── merge_yaml.py ├── pkggen.mk ├── precache.mk ├── preparemacros.sh ├── preview.mk ├── profile.mk ├── repoquerywrapper.mk ├── requirements.txt ├── rpmops.sh ├── safeunmount.sh ├── setuplkgtoolchain.sh ├── sodiff │ └── mariner-sodiff.sh ├── spec_source_attributions.py ├── specs │ └── specs_tools.sh ├── srpm_expand.mk ├── srpm_pack.mk ├── svn2source.sh ├── tests │ ├── test_check_entangled_specs.py │ └── test_merge_yaml.py ├── timestamp.mk ├── timestamp.sh ├── toolchain.mk ├── toolchain │ ├── build_mariner_toolchain.sh │ ├── build_official_toolchain_rpms.sh │ ├── cgmanifest.json │ ├── check_manifests.sh │ ├── container │ │ ├── Dockerfile │ │ ├── mount_chroot_start_build.sh │ │ ├── sanity_check.sh │ │ ├── toolchain-remote-wget-list │ │ ├── toolchain-sha256sums │ │ ├── toolchain_build_in_chroot.sh │ │ ├── toolchain_build_temp_tools.sh │ │ ├── toolchain_initial_chroot_setup.sh │ │ ├── unmount_chroot.sh │ │ └── version-check-container.sh │ ├── create_toolchain_in_container.sh │ ├── download_toolchain_rpm.sh │ ├── list_toolchain_specs.sh │ ├── toolchain_clean.sh │ └── toolchain_verify.sh ├── toolkit.mk ├── tools.mk ├── update-target-if-output-changed.sh ├── update_cgmanifest.py ├── update_kernel.sh ├── update_manifest.sh ├── update_spec.sh ├── update_toolchain_manifest.py └── utils.mk └── tools ├── bldtracker └── bldtracker.go ├── boilerplate ├── boilerplate.go └── hello │ ├── hello.go │ └── hello_test.go ├── containercheck └── containercheck.go ├── depsearch └── depsearch.go ├── downloader └── downloader.go ├── go.mod ├── go.sum ├── graphPreprocessor └── graphPreprocessor.go ├── graphanalytics └── graphanalytics.go ├── grapher ├── grapher.go └── grapher_test.go ├── graphpkgfetcher └── graphpkgfetcher.go ├── imageconfigvalidator ├── imageconfigvalidator.go ├── imageconfigvalidator_test.go └── testdata │ ├── bogus-list.json │ ├── dummy-list.json │ ├── fips-list.json │ ├── pinned-shadowutils-list.json │ ├── pinned-shadowutils-ws-list.json │ ├── selinux-policy-list.json │ ├── shadowutils-list.json │ └── test-config.json ├── imagecustomizer ├── DEV.md ├── README.md ├── container │ ├── Dockerfile.mic-container │ ├── build-mic-container.sh │ ├── run-mic-container.sh │ ├── run.sh │ └── test-mic-container.sh ├── docs │ ├── building-packages.md │ ├── cli.md │ ├── clone-rpm-repo.md │ ├── configuration.md │ ├── container.md │ ├── iso.md │ ├── partitionmetadatajson.md │ ├── pxe.md │ └── verity.md └── main.go ├── imagecustomizerapi ├── additionalfile.go ├── additionalfile_test.go ├── bootloaderresettype.go ├── bootloaderresettype_test.go ├── boottype.go ├── boottype_test.go ├── config.go ├── config_test.go ├── corruptionoption.go ├── corruptionoption_test.go ├── dirconfig.go ├── dirconfig_test.go ├── disk.go ├── disk_test.go ├── disksize.go ├── disksize_test.go ├── filepermissions.go ├── filepermissions_test.go ├── filesystem.go ├── filesystem_test.go ├── filesystemtype.go ├── idtype.go ├── idtype_test.go ├── iso.go ├── iso_test.go ├── kernelcommandline.go ├── kernelextraarguments.go ├── kernelextraarguments_test.go ├── main_test.go ├── module.go ├── moduleLoadMode.go ├── module_test.go ├── mountidentifiertype.go ├── mountpoint.go ├── mountpoint_test.go ├── os.go ├── os_test.go ├── overlay.go ├── overlay_test.go ├── packagelist.go ├── packages.go ├── partition.go ├── partition_test.go ├── partitionsize.go ├── partitionsize_test.go ├── partitiontabletype.go ├── partitiontype.go ├── password.go ├── password_test.go ├── passwordtype.go ├── passwordtype_nonprod.go ├── passwordtype_prod.go ├── pxe.go ├── resetpartitionuuidtype.go ├── script.go ├── script_test.go ├── scripts.go ├── scripts_test.go ├── selinux.go ├── selinuxmode.go ├── service.go ├── service_test.go ├── storage.go ├── storage_test.go ├── user.go ├── user_test.go ├── utils.go ├── utils_test.go ├── verity.go └── verity_test.go ├── imagegen ├── attendedinstaller │ ├── _manualrun │ │ ├── EULA.txt │ │ └── manualrun.go │ ├── attendedinstaller.go │ ├── primitives │ │ ├── customshortcutlist │ │ │ └── customshortcutlist.go │ │ ├── enumfield │ │ │ └── enumfield.go │ │ ├── navigationbar │ │ │ └── navigationbar.go │ │ └── progressbar │ │ │ └── progressbar.go │ ├── speakuputils │ │ └── speakuputils.go │ ├── uitext │ │ └── uitext.go │ ├── uiutils │ │ └── uiutils.go │ └── views │ │ ├── confirmview │ │ └── confirmview.go │ │ ├── diskview │ │ ├── autopartitionwidget │ │ │ └── autopartitionwidget.go │ │ ├── diskview.go │ │ └── manualpartitionwidget │ │ │ └── manualpartitionwidget.go │ │ ├── encryptview │ │ └── encryptview.go │ │ ├── eulaview │ │ └── eulaview.go │ │ ├── finishview │ │ └── finishview.go │ │ ├── hostnameview │ │ ├── hostnameview.go │ │ └── hostnameview_test.go │ │ ├── installationview │ │ └── installationview.go │ │ ├── installerview │ │ └── installerview.go │ │ ├── progressview │ │ └── progressview.go │ │ ├── userview │ │ └── userview.go │ │ └── view.go ├── configuration │ ├── cgroup.go │ ├── cgroup_test.go │ ├── configuration.go │ ├── configuration_test.go │ ├── disk.go │ ├── disk_test.go │ ├── fileconfig.go │ ├── fileconfig_test.go │ ├── filepermissions.go │ ├── filepermissions_test.go │ ├── imapolicy.go │ ├── imapolicy_test.go │ ├── kernelcommandline.go │ ├── kernelcommandline_test.go │ ├── mountidentifier.go │ ├── mountidentifier_test.go │ ├── networkconfig.go │ ├── networkconfig_test.go │ ├── packagerepo.go │ ├── packagerepo_test.go │ ├── parse_partition.go │ ├── parse_partition_test.go │ ├── partition.go │ ├── partition_test.go │ ├── partitionflag.go │ ├── partitionflag_test.go │ ├── partitionsetting.go │ ├── partitionsetting_test.go │ ├── partitiontabletype.go │ ├── partitiontabletype_test.go │ ├── partitiontype.go │ ├── selinux.go │ ├── selinux_test.go │ ├── systemconfig.go │ ├── systemconfig_test.go │ ├── testdata │ │ └── test_configuration.json │ ├── user.go │ └── user_test.go ├── diskutils │ ├── diskutils.go │ ├── diskutils_test.go │ ├── encryption.go │ ├── fstab.go │ └── lvm.go └── installutils │ ├── installutils.go │ ├── installutils_test.go │ ├── overlay.go │ ├── progressreporter.go │ └── testdata │ └── a.txt ├── imagepkgfetcher └── imagepkgfetcher.go ├── imager └── imager.go ├── internal ├── azureblobstorage │ ├── azureblobstorage.go │ └── azureblobstorage_test.go ├── buildpipeline │ └── buildpipeline.go ├── ccachemanager │ └── ccachemanager.go ├── customizationmacros │ ├── customizationmacros.go │ └── customizationmacros_test.go ├── debugutils │ └── debugutils.go ├── directory │ └── directory.go ├── exe │ ├── exe.go │ └── exe_test.go ├── file │ ├── file.go │ ├── file_test.go │ ├── filecopybuilder.go │ └── filecopybuilder_test.go ├── filescanner │ └── filescanner.go ├── grub │ ├── commands.go │ ├── grubtokenizer.go │ ├── grubtokenizer_test.go │ ├── grubutils.go │ ├── grubutils_test.go │ ├── tokentests │ │ ├── .gitignore │ │ ├── Comment.result │ │ ├── Comment.test │ │ ├── CommonDefaultGrub.result │ │ ├── CommonDefaultGrub.test │ │ ├── CommonLineCommandLine.result │ │ ├── CommonLineCommandLine.test │ │ ├── ComplexCommandLine.result │ │ ├── ComplexCommandLine.test │ │ ├── DollarEof.result │ │ ├── DollarEof.test │ │ ├── DollarPlus.result │ │ ├── DollarPlus.test │ │ ├── EscapedEof.result │ │ ├── EscapedEof.test │ │ ├── IncompleteDoubleQuotedString.result │ │ ├── IncompleteDoubleQuotedString.test │ │ ├── IncompleteEscape.result │ │ ├── IncompleteEscape.test │ │ ├── IncompleteQuotedVariableExpansion.result │ │ ├── IncompleteQuotedVariableExpansion.test │ │ ├── IncompleteSingleQuotedString.result │ │ ├── IncompleteSingleQuotedString.test │ │ ├── IncompleteVariableExpansion.result │ │ ├── IncompleteVariableExpansion.test │ │ ├── IncompleteVariableExpansionEof.result │ │ ├── IncompleteVariableExpansionEof.test │ │ ├── Metacharacters.result │ │ ├── Metacharacters.test │ │ ├── SingleQuotedStringEof.result │ │ ├── SingleQuotedStringEof.test │ │ ├── SpaceEof.result │ │ ├── SpaceEof.test │ │ ├── SpaceGrouping.result │ │ ├── SpaceGrouping.test │ │ ├── Strings.result │ │ ├── Strings.test │ │ ├── VariableExpansionMissingName.result │ │ └── VariableExpansionMissingName.test │ └── tokentypes.go ├── jsonutils │ └── jsonutils.go ├── logger │ ├── log.go │ ├── log_test.go │ └── writerhook.go ├── network │ ├── network.go │ └── network_test.go ├── packagerepo │ ├── repocloner │ │ ├── repocloner.go │ │ └── rpmrepocloner │ │ │ └── rpmrepocloner.go │ ├── repomanager │ │ ├── repomanager.go │ │ └── rpmrepomanager │ │ │ └── rpmrepomanager.go │ └── repoutils │ │ ├── repoquery.go │ │ └── repoutils.go ├── packlist │ └── packagelist.go ├── pkggraph │ ├── cyclefind.go │ ├── cyclefind_test.go │ ├── graphprinter.go │ ├── graphprinter_test.go │ ├── gtreebuilder_test.go │ ├── pkggraph.go │ ├── pkggraph_test.go │ └── test_graph_reference.dot ├── pkgjson │ ├── pkgjson.go │ └── pkgjson_test.go ├── ptrutils │ └── ptrutils.go ├── randomization │ ├── randomization.go │ └── randomization_test.go ├── resources │ ├── assets │ │ ├── efi │ │ │ └── grub │ │ │ │ └── grub.cfg │ │ └── grub2 │ │ │ ├── grub │ │ │ ├── grub.cfg │ │ │ └── grubenv │ └── resources.go ├── retry │ ├── retry.go │ └── retry_test.go ├── rpm │ ├── rpm.go │ ├── rpm_test.go │ └── testdata │ │ ├── no_default_package_or_check.spec │ │ ├── no_exclusive_architecture.spec │ │ ├── supported_unsupported_architectures.spec │ │ ├── unsupported_architectures.spec │ │ └── with_epoch_and_check.spec ├── safechroot │ ├── chrootinterface.go │ ├── dummychroot.go │ ├── safechroot.go │ ├── safechroot_test.go │ └── testdata │ │ ├── testchroot.tar.gz │ │ └── testmount │ │ └── testfile.txt ├── safeloopback │ ├── main_test.go │ ├── safeloopback.go │ └── safeloopback_test.go ├── safemount │ ├── main_test.go │ ├── safemount.go │ └── safemount_test.go ├── shell │ ├── execbuilder.go │ └── shell.go ├── sliceutils │ ├── sliceutils.go │ └── sliceutils_test.go ├── storage │ ├── storage.go │ └── storage_test.go ├── systemd │ └── systemd.go ├── systemdependency │ └── systemdependency.go ├── tdnf │ ├── tdnf.go │ ├── tdnf_test.go │ └── testdata │ │ └── tdnf.conf ├── timestamp │ ├── timestamp.go │ ├── timestamp_mgr.go │ └── timestamp_test.go ├── userutils │ ├── groupfile.go │ ├── main_test.go │ ├── passwdfile.go │ ├── passwdfile_test.go │ ├── shadowfile.go │ ├── testdata │ │ └── etc │ │ │ └── passwd │ ├── userutils.go │ └── userutils_test.go └── versioncompare │ ├── versioncompare.go │ └── versioncompare_test.go ├── isomaker └── isomaker.go ├── licensecheck └── licensecheck.go ├── liveinstaller └── liveinstaller.go ├── osmodifier └── main.go ├── osmodifierapi ├── identifiedpartition.go ├── os.go └── overlay.go ├── pkg ├── depsearch │ └── depsearch.go ├── graphanalytics │ └── graphanalytics.go ├── imagecustomizerlib │ ├── .gitignore │ ├── bootcustomizer.go │ ├── bootcustomizer_test.go │ ├── checkfilesystem.go │ ├── createuuid.go │ ├── customizebootloader.go │ ├── customizefiles.go │ ├── customizefiles_test.go │ ├── customizehostname.go │ ├── customizehostname_test.go │ ├── customizeos.go │ ├── customizeoverlays.go │ ├── customizeoverlays_test.go │ ├── customizepackages.go │ ├── customizepackages_test.go │ ├── customizepartitions.go │ ├── customizepartitions_test.go │ ├── customizepartitionsfilecopy.go │ ├── customizepartitionsuuids.go │ ├── customizeselinux.go │ ├── customizeselinux_test.go │ ├── customizeservices.go │ ├── customizeservices_test.go │ ├── customizeusers.go │ ├── customizeusers_test.go │ ├── customizeverity.go │ ├── customizeverity_test.go │ ├── defaultgrubutils.go │ ├── dracututils.go │ ├── extractpartitions.go │ ├── extractpartitions_test.go │ ├── grubcfgutils.go │ ├── imageConnection.go │ ├── imagecustomizer.go │ ├── imagecustomizer_test.go │ ├── imageutils.go │ ├── installedkernelcheck.go │ ├── installedkernelcheck_test.go │ ├── kernelmoduleutils.go │ ├── kernelmoduleutils_test.go │ ├── liveosisobuilder.go │ ├── liveosisobuilder_test.go │ ├── main_test.go │ ├── partitionutils.go │ ├── releasefile.go │ ├── releasefile_test.go │ ├── resolvconf.go │ ├── resolvconf_test.go │ ├── rpmsourcesmounts.go │ ├── runscripts.go │ ├── runscripts_test.go │ ├── savedconfigs.go │ ├── shrinkfilesystems.go │ ├── testdata │ │ ├── adddirs-config.yaml │ │ ├── addfiles-config.yaml │ │ ├── bootcfgtests │ │ │ ├── 2.0-default-grub │ │ │ ├── 2.0-grub.cfg │ │ │ ├── 3.0-default-grub │ │ │ └── 3.0-grub.cfg │ │ ├── cloud-init-config.yaml │ │ ├── cloud-init-iso-config.yaml │ │ ├── commandline-config.yaml │ │ ├── consume-space.yaml │ │ ├── dirs │ │ │ ├── .gitignore │ │ │ ├── a │ │ │ │ └── usr │ │ │ │ │ └── local │ │ │ │ │ └── bin │ │ │ │ │ └── animals.sh │ │ │ └── b │ │ │ │ └── bin │ │ │ │ └── animals.sh │ │ ├── extracommandline-config.yaml │ │ ├── files │ │ │ ├── 89-ethernet.network │ │ │ ├── a.txt │ │ │ ├── b.txt │ │ │ ├── cloud-init │ │ │ │ ├── meta-data │ │ │ │ ├── network-config │ │ │ │ └── user-data │ │ │ ├── helloworld.sh │ │ │ └── sshd-keygen.service │ │ ├── hostname-config.yaml │ │ ├── infinite-file-config.yaml │ │ ├── install-package-disk-space.yaml │ │ ├── iso-files-and-args-config.yaml │ │ ├── iso-os-prereqs-config.yaml │ │ ├── legacyboot-config.yaml │ │ ├── lists │ │ │ ├── dracut-fips.yaml │ │ │ └── golang.yaml │ │ ├── modules-config.yaml │ │ ├── mshvkernel-config.yaml │ │ ├── newpartitionsuuids-config.yaml │ │ ├── no-kernel-config.yaml │ │ ├── nochange-config.yaml │ │ ├── overlays-config.yaml │ │ ├── packages-add-config.yaml │ │ ├── packages-update-config.yaml │ │ ├── partitions-config.yaml │ │ ├── partitions-selinux-enforcing.yaml │ │ ├── partitions-size-only-config.yaml │ │ ├── run-python-scripts-config.yaml │ │ ├── runscripts-config.yaml │ │ ├── runscripts-writefiles-config.yaml │ │ ├── scripts │ │ │ ├── consume-space.sh │ │ │ ├── finalizecustomizationscript.sh │ │ │ ├── kangaroo.sh │ │ │ ├── llamas.py │ │ │ ├── postcustomizationscript.sh │ │ │ ├── ssh-move-host-keys.sh │ │ │ └── wombat.py │ │ ├── selinux-disabled.yaml │ │ ├── selinux-enforcing-nopackages.yaml │ │ ├── selinux-enforcing.yaml │ │ ├── selinux-force-enforcing.yaml │ │ ├── selinux-permissive.yaml │ │ ├── services-config.yaml │ │ ├── testrpms │ │ │ ├── .gitignore │ │ │ ├── download-test-rpms.sh │ │ │ └── downloader │ │ │ │ └── Dockerfile │ │ ├── users-config.yaml │ │ ├── verity-config.yaml │ │ └── verity-partition-labels.yaml │ ├── typeConversion.go │ └── versionsOfToolDependencies.go ├── isomakerlib │ └── isomaker.go ├── licensecheck │ ├── licensecheck.go │ ├── licensecheck_test.go │ ├── licensecheckformat │ │ ├── licensecheckformat.go │ │ └── licensecheckformat_test.go │ ├── licensecheckmodes.go │ ├── licensecheckresult.go │ ├── licensecheckresult_test.go │ ├── licenseexceptions.go │ ├── licenseexceptions_test.go │ ├── licensenames.go │ ├── licensenames_test.go │ └── testdata │ │ ├── .gitignore │ │ ├── README.md │ │ ├── all_docs_20240522.json │ │ ├── all_licenses_20240522.json │ │ ├── generate_test_data.py │ │ ├── licensetestchecker.go │ │ ├── not_a_json.json │ │ ├── test_license_exceptions.json │ │ └── test_license_names.json ├── osmodifierlib │ ├── modifierutils.go │ ├── modifydefaultgrub.go │ └── osmodifier.go ├── profile │ └── profile.go ├── rpmssnapshot │ ├── rpmssnapshot.go │ └── rpmssnapshot_test.go ├── simpletoolchroot │ └── simpletoolchroot.go ├── specarchchecker │ └── specarchchecker.go └── specreaderutils │ └── specreaderutil.go ├── pkggen └── worker │ └── create_worker_chroot.sh ├── pkgworker └── pkgworker.go ├── precacher └── precacher.go ├── repoquerywrapper └── repoquerywrapper.go ├── roast ├── formats │ ├── definition.go │ ├── diff.go │ ├── ext4.go │ ├── gzip.go │ ├── initrd.go │ ├── ova.go │ ├── qcow.go │ ├── raw.go │ ├── rdiff.go │ ├── squashfs.go │ ├── targzip.go │ ├── tarxz.go │ ├── vhd.go │ └── xz.go └── roast.go ├── rpmssnapshot └── rpmssnapshot.go ├── scheduler ├── buildagents │ ├── chrootagent.go │ ├── definition.go │ └── testagent.go ├── scheduler.go └── schedulerutils │ ├── buildlist.go │ ├── buildworker.go │ ├── depsolver.go │ ├── graphbuildstate.go │ ├── implicitprovides.go │ ├── initializegraph.go │ ├── pkglicensechecker.go │ ├── preparerequest.go │ └── printresults.go ├── specarchchecker └── specarchchecker.go ├── specreader └── specreader.go ├── srpmpacker └── srpmpacker.go └── validatechroot └── validatechroot.go /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/containerSourceData/busybox/busybox.name: -------------------------------------------------------------------------------- 1 | busybox 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/busybox/busybox.pkg: -------------------------------------------------------------------------------- 1 | azurelinux-release 2 | busybox 3 | glibc 4 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/api.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-api 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/cloner.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-cloner 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/controller.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-controller 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/operator.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-operator 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/uploadproxy.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-uploadproxy 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cdi/uploadserver.name: -------------------------------------------------------------------------------- 1 | containerized-data-importer-uploadserver 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/certmanager/acmesolver.name: -------------------------------------------------------------------------------- 1 | cert-manager-acmesolver 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/certmanager/cainjector.name: -------------------------------------------------------------------------------- 1 | cert-manager-cainjector 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/certmanager/cmctl.name: -------------------------------------------------------------------------------- 1 | cert-manager-cmctl 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/certmanager/controller.name: -------------------------------------------------------------------------------- 1 | cert-manager-controller 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/certmanager/webhook.name: -------------------------------------------------------------------------------- 1 | cert-manager-webhook 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/cloudproviderkubevirt/cloudproviderkubevirt.name: -------------------------------------------------------------------------------- 1 | cloud-provider-kubevirt -------------------------------------------------------------------------------- /.pipelines/containerSourceData/imagecustomizer/imagecustomizer.name: -------------------------------------------------------------------------------- 1 | imagecustomizer -------------------------------------------------------------------------------- /.pipelines/containerSourceData/influxdb/influxdb.name: -------------------------------------------------------------------------------- 1 | influxdb 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/memcached/memcached.name: -------------------------------------------------------------------------------- 1 | memcached 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/memcached/memcached.pkg: -------------------------------------------------------------------------------- 1 | memcached 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/multus/multus.name: -------------------------------------------------------------------------------- 1 | multus 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/multus/multus.pkg: -------------------------------------------------------------------------------- 1 | awk 2 | ca-certificates 3 | multus 4 | python3 5 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/nginx/nginx.name: -------------------------------------------------------------------------------- 1 | nginx 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/nodejs/nodejs.name: -------------------------------------------------------------------------------- 1 | nodejs 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/openmpi/openmpi.name: -------------------------------------------------------------------------------- 1 | openmpi 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/php/php.name: -------------------------------------------------------------------------------- 1 | php 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/postgres/postgres.name: -------------------------------------------------------------------------------- 1 | postgresql 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/prometheus/prometheus.name: -------------------------------------------------------------------------------- 1 | prometheus 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/prometheus/prometheus.pkg: -------------------------------------------------------------------------------- 1 | ca-certificates 2 | prometheus 3 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/prometheusadapter/prometheusadapter.name: -------------------------------------------------------------------------------- 1 | prometheus-adapter 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/prometheusadapter/prometheusadapter.pkg: -------------------------------------------------------------------------------- 1 | prometheus-adapter 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/python/python.name: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/pytorch/pytorch.name: -------------------------------------------------------------------------------- 1 | python3-pytorch 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/rabbitmqserver/rabbitmqserver.name: -------------------------------------------------------------------------------- 1 | rabbitmq-server 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/ruby/ruby.name: -------------------------------------------------------------------------------- 1 | ruby 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/rust/rust.name: -------------------------------------------------------------------------------- 1 | rust 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/rust/rust.pkg: -------------------------------------------------------------------------------- 1 | build-essential 2 | ca-certificates 3 | rust 4 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/telegraf/telegraf.name: -------------------------------------------------------------------------------- 1 | telegraf 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/telegraf/telegraf.pkg: -------------------------------------------------------------------------------- 1 | ca-certificates 2 | telegraf 3 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/tensorflow/tensorflow.name: -------------------------------------------------------------------------------- 1 | python3-tensorflow 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/valkey/valkey.name: -------------------------------------------------------------------------------- 1 | valkey 2 | -------------------------------------------------------------------------------- /.pipelines/containerSourceData/valkey/valkey.pkg: -------------------------------------------------------------------------------- 1 | valkey 2 | cronie 3 | util-linux 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SPECS-EXTENDED/acpid/acpid.sysconfig: -------------------------------------------------------------------------------- 1 | OPTIONS= 2 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/fltk/fltk-config.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | exec fltk-config-$(uname -m) "$@" 4 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/hdf/h4comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/hdf/h4comp -------------------------------------------------------------------------------- /SPECS-EXTENDED/ibus/ibus-HEAD.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/libpinyin/libpinyin-2.8.x-head.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/mod_fcgid/mod_fcgid-tmpfs.conf: -------------------------------------------------------------------------------- 1 | d /run/mod_fcgid 0775 root apache 2 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/mrtg/mrtg-2.17.7.tar.gz.md5: -------------------------------------------------------------------------------- 1 | eada3870c0419e425299401486600d95 mrtg-2.17.7.tar.gz 2 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/nkf/nkf.1j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/nkf/nkf.1j -------------------------------------------------------------------------------- /SPECS-EXTENDED/ppp/ip-down: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/ppp/ip-down -------------------------------------------------------------------------------- /SPECS-EXTENDED/ppp/ip-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/ppp/ip-up -------------------------------------------------------------------------------- /SPECS-EXTENDED/ppp/ipv6-up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/ppp/ipv6-up -------------------------------------------------------------------------------- /SPECS-EXTENDED/pptp/pptp-tmpfs.conf: -------------------------------------------------------------------------------- 1 | d /run/pptp 0750 2 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/rr/rr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/rr/rr.spec -------------------------------------------------------------------------------- /SPECS-EXTENDED/screen/screen.pam: -------------------------------------------------------------------------------- 1 | #%PAM-1.0 2 | auth include system-auth 3 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/sip/sip-wrapper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec sip -n @SIP_MODULE@ $@ 4 | -------------------------------------------------------------------------------- /SPECS-EXTENDED/tk/tk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/tk/tk.spec -------------------------------------------------------------------------------- /SPECS-EXTENDED/yq/yq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/yq/yq.spec -------------------------------------------------------------------------------- /SPECS-EXTENDED/z3/z3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS-EXTENDED/z3/z3.spec -------------------------------------------------------------------------------- /SPECS/CUnit/CUnit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/CUnit/CUnit.spec -------------------------------------------------------------------------------- /SPECS/Cython/Cython.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/Cython/Cython.spec -------------------------------------------------------------------------------- /SPECS/GSL/GSL.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/GSL/GSL.spec -------------------------------------------------------------------------------- /SPECS/PyYAML/PyYAML.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/PyYAML/PyYAML.spec -------------------------------------------------------------------------------- /SPECS/R/R.signatures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/R/R.signatures.json -------------------------------------------------------------------------------- /SPECS/R/R.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/R/R.spec -------------------------------------------------------------------------------- /SPECS/acl/acl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/acl/acl.spec -------------------------------------------------------------------------------- /SPECS/acpica-tools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/acpica-tools/COPYING -------------------------------------------------------------------------------- /SPECS/acpica-tools/iasl.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/acpica-tools/iasl.1 -------------------------------------------------------------------------------- /SPECS/afflib/afflib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/afflib/afflib.spec -------------------------------------------------------------------------------- /SPECS/aide/aide.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/aide/aide.conf -------------------------------------------------------------------------------- /SPECS/aide/aide.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/aide/aide.logrotate -------------------------------------------------------------------------------- /SPECS/aide/aide.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/aide/aide.spec -------------------------------------------------------------------------------- /SPECS/annobin/annobin.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/annobin/annobin.spec -------------------------------------------------------------------------------- /SPECS/ansible/ansible.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ansible/ansible.spec -------------------------------------------------------------------------------- /SPECS/ant/ant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ant/ant.conf -------------------------------------------------------------------------------- /SPECS/ant/ant.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ant/ant.spec -------------------------------------------------------------------------------- /SPECS/antlr/antlr-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/antlr/antlr-script -------------------------------------------------------------------------------- /SPECS/antlr/antlr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/antlr/antlr.spec -------------------------------------------------------------------------------- /SPECS/antlr/gcc45fix.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/antlr/gcc45fix.diff -------------------------------------------------------------------------------- /SPECS/apr/apr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/apr/apr.spec -------------------------------------------------------------------------------- /SPECS/asc/asc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/asc/asc.spec -------------------------------------------------------------------------------- /SPECS/aspell/aspell.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/aspell/aspell.spec -------------------------------------------------------------------------------- /SPECS/at/at-aarch64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/at/at-aarch64.patch -------------------------------------------------------------------------------- /SPECS/at/at.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/at/at.spec -------------------------------------------------------------------------------- /SPECS/at/atd.sysconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/at/atd.sysconf -------------------------------------------------------------------------------- /SPECS/at/atd.systemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/at/atd.systemd -------------------------------------------------------------------------------- /SPECS/at/pam_atd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/at/pam_atd -------------------------------------------------------------------------------- /SPECS/atf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atf/README -------------------------------------------------------------------------------- /SPECS/atf/atf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atf/atf.spec -------------------------------------------------------------------------------- /SPECS/atftp/atftp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atftp/atftp.spec -------------------------------------------------------------------------------- /SPECS/atinject/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atinject/MANIFEST.MF -------------------------------------------------------------------------------- /SPECS/atk/atk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atk/atk.spec -------------------------------------------------------------------------------- /SPECS/atop/atop.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atop/atop.d -------------------------------------------------------------------------------- /SPECS/atop/atop.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atop/atop.spec -------------------------------------------------------------------------------- /SPECS/atop/format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/atop/format.patch -------------------------------------------------------------------------------- /SPECS/attr/attr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/attr/attr.spec -------------------------------------------------------------------------------- /SPECS/audit/audit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/audit/audit.spec -------------------------------------------------------------------------------- /SPECS/augeas/augeas.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/augeas/augeas.spec -------------------------------------------------------------------------------- /SPECS/authd/auth.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/authd/auth.socket -------------------------------------------------------------------------------- /SPECS/authd/auth@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/authd/auth@.service -------------------------------------------------------------------------------- /SPECS/authd/authd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/authd/authd.spec -------------------------------------------------------------------------------- /SPECS/autofs/autofs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/autofs/autofs.spec -------------------------------------------------------------------------------- /SPECS/autogen/autogen.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/autogen/autogen.spec -------------------------------------------------------------------------------- /SPECS/avahi/avahi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/avahi/avahi.spec -------------------------------------------------------------------------------- /SPECS/azcopy/azcopy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/azcopy/azcopy.spec -------------------------------------------------------------------------------- /SPECS/azurelinux-release/99-default-disable.preset: -------------------------------------------------------------------------------- 1 | disable * 2 | -------------------------------------------------------------------------------- /SPECS/babel/babel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/babel/babel.spec -------------------------------------------------------------------------------- /SPECS/bash/bash-5.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bash/bash-5.1.patch -------------------------------------------------------------------------------- /SPECS/bash/bash.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bash/bash.spec -------------------------------------------------------------------------------- /SPECS/bash/bash_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bash/bash_completion -------------------------------------------------------------------------------- /SPECS/bazel/bazel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bazel/bazel.spec -------------------------------------------------------------------------------- /SPECS/bc/bc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bc/bc.spec -------------------------------------------------------------------------------- /SPECS/bcc/bcc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bcc/bcc.spec -------------------------------------------------------------------------------- /SPECS/bind/CVE-2019-6470.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2019-6470 is fixed by updating the dhcp package to 4.4.1 or greater 2 | -------------------------------------------------------------------------------- /SPECS/bind/bind.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/bind.spec -------------------------------------------------------------------------------- /SPECS/bind/named.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.empty -------------------------------------------------------------------------------- /SPECS/bind/named.localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.localhost -------------------------------------------------------------------------------- /SPECS/bind/named.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.logrotate -------------------------------------------------------------------------------- /SPECS/bind/named.loopback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.loopback -------------------------------------------------------------------------------- /SPECS/bind/named.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.root -------------------------------------------------------------------------------- /SPECS/bind/named.root.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.root.key -------------------------------------------------------------------------------- /SPECS/bind/named.rwtab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.rwtab -------------------------------------------------------------------------------- /SPECS/bind/named.sysconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bind/named.sysconfig -------------------------------------------------------------------------------- /SPECS/bison/bison.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bison/bison.spec -------------------------------------------------------------------------------- /SPECS/bluez/bluez.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bluez/bluez.spec -------------------------------------------------------------------------------- /SPECS/bmake/bmake.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bmake/bmake.spec -------------------------------------------------------------------------------- /SPECS/bmon/bmon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bmon/bmon.spec -------------------------------------------------------------------------------- /SPECS/boost/boost.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/boost/boost.spec -------------------------------------------------------------------------------- /SPECS/brotli/brotli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/brotli/brotli.spec -------------------------------------------------------------------------------- /SPECS/busybox/busybox.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/busybox/busybox.spec -------------------------------------------------------------------------------- /SPECS/byacc/byacc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/byacc/byacc.spec -------------------------------------------------------------------------------- /SPECS/byaccj/byaccj.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/byaccj/byaccj.spec -------------------------------------------------------------------------------- /SPECS/bzip2/bzip2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/bzip2/bzip2.spec -------------------------------------------------------------------------------- /SPECS/c-ares/c-ares.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/c-ares/c-ares.spec -------------------------------------------------------------------------------- /SPECS/ca-certificates/sources: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/ca-certificates/trust-fixes: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SPECS/cairo/cairo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cairo/cairo.spec -------------------------------------------------------------------------------- /SPECS/cal10n/cal10n.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cal10n/cal10n.spec -------------------------------------------------------------------------------- /SPECS/calamares/azl-eula: -------------------------------------------------------------------------------- 1 | Sample EULA 2 | -------------------------------------------------------------------------------- /SPECS/calamares/show.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/calamares/show.qml -------------------------------------------------------------------------------- /SPECS/calamares/users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/calamares/users.conf -------------------------------------------------------------------------------- /SPECS/catch/catch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/catch/catch.spec -------------------------------------------------------------------------------- /SPECS/ccache/ccache.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ccache/ccache.spec -------------------------------------------------------------------------------- /SPECS/cdrkit/cdrkit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cdrkit/cdrkit.spec -------------------------------------------------------------------------------- /SPECS/ceph/ceph.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ceph/ceph.spec -------------------------------------------------------------------------------- /SPECS/cereal/cereal.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cereal/cereal.spec -------------------------------------------------------------------------------- /SPECS/cf-cli/cf-cli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cf-cli/cf-cli.spec -------------------------------------------------------------------------------- /SPECS/check/check.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/check/check.spec -------------------------------------------------------------------------------- /SPECS/chrony/chrony.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/chrony/chrony.helper -------------------------------------------------------------------------------- /SPECS/chrony/chrony.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/chrony/chrony.spec -------------------------------------------------------------------------------- /SPECS/chrpath/chrpath.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/chrpath/chrpath.spec -------------------------------------------------------------------------------- /SPECS/ck/ck-nogettid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ck/ck-nogettid.patch -------------------------------------------------------------------------------- /SPECS/ck/ck.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ck/ck.spec -------------------------------------------------------------------------------- /SPECS/clamav/clamav.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/clamav/clamav.spec -------------------------------------------------------------------------------- /SPECS/clang/clang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/clang/clang.spec -------------------------------------------------------------------------------- /SPECS/cmake/cmake.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cmake/cmake.spec -------------------------------------------------------------------------------- /SPECS/cmake/macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cmake/macros.cmake -------------------------------------------------------------------------------- /SPECS/cmocka/cmocka.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cmocka/cmocka.spec -------------------------------------------------------------------------------- /SPECS/cni/99-loopback.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cni/99-loopback.conf -------------------------------------------------------------------------------- /SPECS/cni/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cni/build.sh -------------------------------------------------------------------------------- /SPECS/cni/cni.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cni/cni.spec -------------------------------------------------------------------------------- /SPECS/collectd/apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/collectd/apache.conf -------------------------------------------------------------------------------- /SPECS/collectd/email.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/collectd/email.conf -------------------------------------------------------------------------------- /SPECS/collectd/mysql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/collectd/mysql.conf -------------------------------------------------------------------------------- /SPECS/collectd/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/collectd/nginx.conf -------------------------------------------------------------------------------- /SPECS/collectd/snmp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/collectd/snmp.conf -------------------------------------------------------------------------------- /SPECS/colm/colm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/colm/colm.spec -------------------------------------------------------------------------------- /SPECS/colord/colord.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/colord/colord.spec -------------------------------------------------------------------------------- /SPECS/conda/conda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/conda/conda -------------------------------------------------------------------------------- /SPECS/conda/conda.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/conda/conda.spec -------------------------------------------------------------------------------- /SPECS/conmon/conmon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/conmon/conmon.spec -------------------------------------------------------------------------------- /SPECS/coredns/coredns.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/coredns/coredns.spec -------------------------------------------------------------------------------- /SPECS/coreutils/CVE-2013-0221.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2013-0221 is fixed in coreutils-8.32-i18n-1.patch 2 | -------------------------------------------------------------------------------- /SPECS/coreutils/CVE-2013-0222.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2013-0221 is fixed in coreutils-8.32-i18n-1.patch 2 | -------------------------------------------------------------------------------- /SPECS/coreutils/CVE-2013-0223.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2013-0221 is fixed in coreutils-8.32-i18n-1.patch 2 | -------------------------------------------------------------------------------- /SPECS/coreutils/CVE-2016-2781.nopatch: -------------------------------------------------------------------------------- 1 | # Upstream community agreed to not fix this -------------------------------------------------------------------------------- /SPECS/cpio/cpio.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cpio/cpio.spec -------------------------------------------------------------------------------- /SPECS/cpprest/cpprest.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cpprest/cpprest.spec -------------------------------------------------------------------------------- /SPECS/cppunit/cppunit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cppunit/cppunit.spec -------------------------------------------------------------------------------- /SPECS/crash/crash.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/crash/crash.spec -------------------------------------------------------------------------------- /SPECS/cronie/cronie.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cronie/cronie.spec -------------------------------------------------------------------------------- /SPECS/cronie/run-parts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cronie/run-parts.sh -------------------------------------------------------------------------------- /SPECS/ctags/ctags.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ctags/ctags.spec -------------------------------------------------------------------------------- /SPECS/cups/cups-lspp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cups/cups-lspp.patch -------------------------------------------------------------------------------- /SPECS/cups/cups.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cups/cups.spec -------------------------------------------------------------------------------- /SPECS/cups/cupsprinter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cups/cupsprinter.png -------------------------------------------------------------------------------- /SPECS/cups/macros.cups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/cups/macros.cups -------------------------------------------------------------------------------- /SPECS/curl/curl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/curl/curl.spec -------------------------------------------------------------------------------- /SPECS/dasel/dasel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dasel/dasel.spec -------------------------------------------------------------------------------- /SPECS/dbus/dbus.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dbus/dbus.spec -------------------------------------------------------------------------------- /SPECS/dconf/dconf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dconf/dconf.spec -------------------------------------------------------------------------------- /SPECS/dejagnu/dejagnu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dejagnu/dejagnu.spec -------------------------------------------------------------------------------- /SPECS/dhcpcd/dhcpcd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dhcpcd/dhcpcd.spec -------------------------------------------------------------------------------- /SPECS/dialog/dialog.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dialog/dialog.spec -------------------------------------------------------------------------------- /SPECS/dkms/dkms.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dkms/dkms.spec -------------------------------------------------------------------------------- /SPECS/dnf/dnf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dnf/dnf.spec -------------------------------------------------------------------------------- /SPECS/dnf5/dnf5.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dnf5/dnf5.spec -------------------------------------------------------------------------------- /SPECS/dnsmasq/dnsmasq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dnsmasq/dnsmasq.spec -------------------------------------------------------------------------------- /SPECS/doxygen/doxygen.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/doxygen/doxygen.spec -------------------------------------------------------------------------------- /SPECS/dpdk/dpdk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dpdk/dpdk.spec -------------------------------------------------------------------------------- /SPECS/dracut/00-vrf.conf: -------------------------------------------------------------------------------- 1 | add_drivers+=" vrf " 2 | -------------------------------------------------------------------------------- /SPECS/dracut/00-xen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dracut/00-xen.conf -------------------------------------------------------------------------------- /SPECS/dracut/50-noxattr.conf: -------------------------------------------------------------------------------- 1 | # disable xattr 2 | DRACUT_NO_XATTR=1 3 | -------------------------------------------------------------------------------- /SPECS/dracut/dracut.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dracut/dracut.spec -------------------------------------------------------------------------------- /SPECS/dracut/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dracut/lgpl-2.1.txt -------------------------------------------------------------------------------- /SPECS/dracut/megaraid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dracut/megaraid.conf -------------------------------------------------------------------------------- /SPECS/dstat/dstat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dstat/dstat.spec -------------------------------------------------------------------------------- /SPECS/dtc/dtc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dtc/dtc.spec -------------------------------------------------------------------------------- /SPECS/duktape/duktape.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/duktape/duktape.spec -------------------------------------------------------------------------------- /SPECS/dwarves/dwarves.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dwarves/dwarves.spec -------------------------------------------------------------------------------- /SPECS/dwz/dwz.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/dwz/dwz.spec -------------------------------------------------------------------------------- /SPECS/ed/CVE-2015-2987.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/ed/ed.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ed/ed.spec -------------------------------------------------------------------------------- /SPECS/edk2/edk2-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/edk2/edk2-build.py -------------------------------------------------------------------------------- /SPECS/edk2/edk2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/edk2/edk2.spec -------------------------------------------------------------------------------- /SPECS/edk2/make-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/edk2/make-tarball.sh -------------------------------------------------------------------------------- /SPECS/efivar/efivar.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/efivar/efivar.spec -------------------------------------------------------------------------------- /SPECS/elixir/elixir.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/elixir/elixir.spec -------------------------------------------------------------------------------- /SPECS/emacs/default.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/emacs/default.el -------------------------------------------------------------------------------- /SPECS/emacs/emacs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/emacs/emacs.spec -------------------------------------------------------------------------------- /SPECS/emacs/site-start.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/emacs/site-start.el -------------------------------------------------------------------------------- /SPECS/erlang/erlang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/erlang/erlang.spec -------------------------------------------------------------------------------- /SPECS/etcd/etcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/etcd/etcd.service -------------------------------------------------------------------------------- /SPECS/etcd/etcd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/etcd/etcd.spec -------------------------------------------------------------------------------- /SPECS/ethtool/ethtool.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ethtool/ethtool.spec -------------------------------------------------------------------------------- /SPECS/expat/expat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/expat/expat.spec -------------------------------------------------------------------------------- /SPECS/expect/expect.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/expect/expect.spec -------------------------------------------------------------------------------- /SPECS/fcgi/fcgi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fcgi/fcgi.spec -------------------------------------------------------------------------------- /SPECS/fdupes/fdupes.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fdupes/fdupes.spec -------------------------------------------------------------------------------- /SPECS/fdupes/macros.fdupes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fdupes/macros.fdupes -------------------------------------------------------------------------------- /SPECS/file/file.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/file/file.spec -------------------------------------------------------------------------------- /SPECS/fillup/fillup.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fillup/fillup.spec -------------------------------------------------------------------------------- /SPECS/fio/fio.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fio/fio.spec -------------------------------------------------------------------------------- /SPECS/flannel/flannel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/flannel/flannel.spec -------------------------------------------------------------------------------- /SPECS/flex/CVE-2019-6293.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/flex/flex.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/flex/flex.spec -------------------------------------------------------------------------------- /SPECS/flex/lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/flex/lex -------------------------------------------------------------------------------- /SPECS/flux/cargo_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/flux/cargo_config -------------------------------------------------------------------------------- /SPECS/flux/flux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/flux/flux.spec -------------------------------------------------------------------------------- /SPECS/fmt/fmt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fmt/fmt.spec -------------------------------------------------------------------------------- /SPECS/fping/fping.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fping/fping.spec -------------------------------------------------------------------------------- /SPECS/freeglut/155.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/freeglut/155.patch -------------------------------------------------------------------------------- /SPECS/freetds/freetds.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/freetds/freetds.spec -------------------------------------------------------------------------------- /SPECS/fribidi/fribidi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fribidi/fribidi.spec -------------------------------------------------------------------------------- /SPECS/frr/frr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/frr/frr.spec -------------------------------------------------------------------------------- /SPECS/fuse/fuse.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fuse/fuse.spec -------------------------------------------------------------------------------- /SPECS/fuse3/fuse.conf: -------------------------------------------------------------------------------- 1 | # mount_max = 1000 2 | # user_allow_other 3 | -------------------------------------------------------------------------------- /SPECS/fuse3/fuse3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fuse3/fuse3.spec -------------------------------------------------------------------------------- /SPECS/future/future.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/future/future.spec -------------------------------------------------------------------------------- /SPECS/fwctl/fwctl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/fwctl/fwctl.spec -------------------------------------------------------------------------------- /SPECS/gawk/gawk.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gawk/gawk.spec -------------------------------------------------------------------------------- /SPECS/gc/gc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gc/gc.spec -------------------------------------------------------------------------------- /SPECS/gcc/CVE-2019-15847.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/gcc/gcc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gcc/gcc.spec -------------------------------------------------------------------------------- /SPECS/gcovr/gcovr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gcovr/gcovr.spec -------------------------------------------------------------------------------- /SPECS/gd/baselibs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gd/baselibs.conf -------------------------------------------------------------------------------- /SPECS/gd/gd-aliasing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gd/gd-aliasing.patch -------------------------------------------------------------------------------- /SPECS/gd/gd-fontpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gd/gd-fontpath.patch -------------------------------------------------------------------------------- /SPECS/gd/gd-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gd/gd-format.patch -------------------------------------------------------------------------------- /SPECS/gd/gd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gd/gd.spec -------------------------------------------------------------------------------- /SPECS/gdb/gdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gdb/gdb.spec -------------------------------------------------------------------------------- /SPECS/gdbm/gdbm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gdbm/gdbm.spec -------------------------------------------------------------------------------- /SPECS/geos/geos.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/geos/geos.spec -------------------------------------------------------------------------------- /SPECS/gettext/gettext.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gettext/gettext.spec -------------------------------------------------------------------------------- /SPECS/gflags/gflags.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gflags/gflags.spec -------------------------------------------------------------------------------- /SPECS/gh/CVE-2024-53858.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/gh/gh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gh/gh.spec -------------------------------------------------------------------------------- /SPECS/giflib/giflib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/giflib/giflib.spec -------------------------------------------------------------------------------- /SPECS/git-lfs/git-lfs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/git-lfs/git-lfs.spec -------------------------------------------------------------------------------- /SPECS/git/git.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/git/git.spec -------------------------------------------------------------------------------- /SPECS/glib/glib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/glib/glib.spec -------------------------------------------------------------------------------- /SPECS/glibc/CVE-2018-20796.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/glibc/CVE-2019-6488.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/glibc/CVE-2020-1751.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/glibc/CVE-2020-6096.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/glibc/glibc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/glibc/glibc.spec -------------------------------------------------------------------------------- /SPECS/glibc/locale-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/glibc/locale-gen.sh -------------------------------------------------------------------------------- /SPECS/glibmm/glibmm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/glibmm/glibmm.spec -------------------------------------------------------------------------------- /SPECS/glslang/glslang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/glslang/glslang.spec -------------------------------------------------------------------------------- /SPECS/gmp/gmp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gmp/gmp.spec -------------------------------------------------------------------------------- /SPECS/gnu-efi/LICENSE.PTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gnu-efi/LICENSE.PTR -------------------------------------------------------------------------------- /SPECS/gnu-efi/gnu-efi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gnu-efi/gnu-efi.spec -------------------------------------------------------------------------------- /SPECS/gnupg2/gnupg2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gnupg2/gnupg2.spec -------------------------------------------------------------------------------- /SPECS/gnuplot/gnuplot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gnuplot/gnuplot.spec -------------------------------------------------------------------------------- /SPECS/gnutls/gnutls.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gnutls/gnutls.spec -------------------------------------------------------------------------------- /SPECS/golang/golang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/golang/golang.spec -------------------------------------------------------------------------------- /SPECS/gperf/gperf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gperf/gperf.spec -------------------------------------------------------------------------------- /SPECS/gperftools/CVE-2018-13420.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/gpgme/gpgme.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gpgme/gpgme.spec -------------------------------------------------------------------------------- /SPECS/grep/grep.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grep/grep.spec -------------------------------------------------------------------------------- /SPECS/groff/CVE-2000-0803.nopatch: -------------------------------------------------------------------------------- 1 | # No patch has been made available for CVE-2000-0803 -------------------------------------------------------------------------------- /SPECS/groff/groff.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/groff/groff.spec -------------------------------------------------------------------------------- /SPECS/grpc/grpc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grpc/grpc.spec -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-10713.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-14308.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-14309.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-14310.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-14311.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-14372.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-25632.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-25647.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-27749.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2020-27779.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2021-20225.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2021-20233.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/CVE-2021-3418.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/grub2/grub2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grub2/grub2.spec -------------------------------------------------------------------------------- /SPECS/grub2/sbat.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grub2/sbat.csv.in -------------------------------------------------------------------------------- /SPECS/grubby/grubby-bls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grubby/grubby-bls -------------------------------------------------------------------------------- /SPECS/grubby/grubby.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grubby/grubby.in -------------------------------------------------------------------------------- /SPECS/grubby/grubby.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/grubby/grubby.spec -------------------------------------------------------------------------------- /SPECS/gsm/gsm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gsm/gsm.spec -------------------------------------------------------------------------------- /SPECS/gtest/gtest.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtest/gtest.spec -------------------------------------------------------------------------------- /SPECS/gtk-doc/gtk-doc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk-doc/gtk-doc.spec -------------------------------------------------------------------------------- /SPECS/gtk2/gtk2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk2/gtk2.spec -------------------------------------------------------------------------------- /SPECS/gtk2/im-cedilla.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk2/im-cedilla.conf -------------------------------------------------------------------------------- /SPECS/gtk2/python3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk2/python3.patch -------------------------------------------------------------------------------- /SPECS/gtk3/3387.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk3/3387.patch -------------------------------------------------------------------------------- /SPECS/gtk3/gtk3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gtk3/gtk3.spec -------------------------------------------------------------------------------- /SPECS/guava/guava.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/guava/guava.spec -------------------------------------------------------------------------------- /SPECS/guile/guile.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/guile/guile.spec -------------------------------------------------------------------------------- /SPECS/gzip/gzip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/gzip/gzip.spec -------------------------------------------------------------------------------- /SPECS/haproxy/haproxy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/haproxy/haproxy.spec -------------------------------------------------------------------------------- /SPECS/haveged/haveged.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/haveged/haveged.spec -------------------------------------------------------------------------------- /SPECS/hdf5/h5comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hdf5/h5comp -------------------------------------------------------------------------------- /SPECS/hdf5/hdf5.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hdf5/hdf5.spec -------------------------------------------------------------------------------- /SPECS/hdparm/hdparm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hdparm/hdparm.spec -------------------------------------------------------------------------------- /SPECS/heimdal/heimdal.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/heimdal/heimdal.csh -------------------------------------------------------------------------------- /SPECS/heimdal/heimdal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/heimdal/heimdal.sh -------------------------------------------------------------------------------- /SPECS/heimdal/heimdal.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/heimdal/heimdal.spec -------------------------------------------------------------------------------- /SPECS/heimdal/heimdal.sysconfig: -------------------------------------------------------------------------------- 1 | # hostname of the iprop master 2 | #MASTER="" 3 | -------------------------------------------------------------------------------- /SPECS/hexedit/hexedit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hexedit/hexedit.spec -------------------------------------------------------------------------------- /SPECS/hivex/hivex.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hivex/hivex.spec -------------------------------------------------------------------------------- /SPECS/hostname/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hostname/gpl-2.0.txt -------------------------------------------------------------------------------- /SPECS/htop/htop.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/htop/htop.spec -------------------------------------------------------------------------------- /SPECS/httpd/00-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/httpd/00-ssl.conf -------------------------------------------------------------------------------- /SPECS/httpd/01-ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/httpd/01-ldap.conf -------------------------------------------------------------------------------- /SPECS/httpd/CVE-1999-1412.nopatch: -------------------------------------------------------------------------------- 1 | # CVE-1999-1412 applies only to MacOS X -------------------------------------------------------------------------------- /SPECS/httpd/httpd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/httpd/httpd.spec -------------------------------------------------------------------------------- /SPECS/httpd/macros.httpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/httpd/macros.httpd -------------------------------------------------------------------------------- /SPECS/httpd/ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/httpd/ssl.conf -------------------------------------------------------------------------------- /SPECS/hwdata/hwdata.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hwdata/hwdata.spec -------------------------------------------------------------------------------- /SPECS/hwloc/hwloc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/hwloc/hwloc.spec -------------------------------------------------------------------------------- /SPECS/ibarr/ibarr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ibarr/ibarr.spec -------------------------------------------------------------------------------- /SPECS/ibsim/ibsim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ibsim/ibsim.spec -------------------------------------------------------------------------------- /SPECS/icu/icu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/icu/icu.spec -------------------------------------------------------------------------------- /SPECS/influxdb/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/influxdb/config.yaml -------------------------------------------------------------------------------- /SPECS/inih/inih.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/inih/inih.spec -------------------------------------------------------------------------------- /SPECS/initramfs/fscks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/initramfs/fscks.conf -------------------------------------------------------------------------------- /SPECS/iotop/iotop.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iotop/iotop.spec -------------------------------------------------------------------------------- /SPECS/iperf3/iperf3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iperf3/iperf3.spec -------------------------------------------------------------------------------- /SPECS/ipmitool/openipmi-ipmievd.sysconf: -------------------------------------------------------------------------------- 1 | IPMIEVD_OPTIONS="sel daemon pidfile=/var/run/ipmievd.pid" 2 | -------------------------------------------------------------------------------- /SPECS/iproute/iproute.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iproute/iproute.spec -------------------------------------------------------------------------------- /SPECS/ipset/ipset.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ipset/ipset.service -------------------------------------------------------------------------------- /SPECS/ipset/ipset.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ipset/ipset.spec -------------------------------------------------------------------------------- /SPECS/iptables/ip4save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iptables/ip4save -------------------------------------------------------------------------------- /SPECS/iptables/ip6save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iptables/ip6save -------------------------------------------------------------------------------- /SPECS/iptables/iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iptables/iptables -------------------------------------------------------------------------------- /SPECS/iputils/iputils.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iputils/iputils.spec -------------------------------------------------------------------------------- /SPECS/ipvsadm/ipvsadm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ipvsadm/ipvsadm.spec -------------------------------------------------------------------------------- /SPECS/ipxe/ipxe.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ipxe/ipxe.spec -------------------------------------------------------------------------------- /SPECS/iser/iser.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iser/iser.spec -------------------------------------------------------------------------------- /SPECS/isert/isert.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/isert/isert.spec -------------------------------------------------------------------------------- /SPECS/itstool/itstool.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/itstool/itstool.spec -------------------------------------------------------------------------------- /SPECS/ivykis/ivykis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ivykis/ivykis.spec -------------------------------------------------------------------------------- /SPECS/iw/iw.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/iw/iw.spec -------------------------------------------------------------------------------- /SPECS/jansson/jansson.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jansson/jansson.spec -------------------------------------------------------------------------------- /SPECS/jasper/jasper.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jasper/jasper.spec -------------------------------------------------------------------------------- /SPECS/jflex/jflex.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jflex/jflex.script -------------------------------------------------------------------------------- /SPECS/jflex/jflex.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jflex/jflex.spec -------------------------------------------------------------------------------- /SPECS/jna/jna.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jna/jna.spec -------------------------------------------------------------------------------- /SPECS/jq/jq.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jq/jq.spec -------------------------------------------------------------------------------- /SPECS/json-c/json-c.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/json-c/json-c.spec -------------------------------------------------------------------------------- /SPECS/jsr-305/jsr-305.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jsr-305/jsr-305.spec -------------------------------------------------------------------------------- /SPECS/junit/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/junit/build.xml -------------------------------------------------------------------------------- /SPECS/junit/junit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/junit/junit.spec -------------------------------------------------------------------------------- /SPECS/jurand/jurand.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jurand/jurand.spec -------------------------------------------------------------------------------- /SPECS/jx/jx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/jx/jx.spec -------------------------------------------------------------------------------- /SPECS/kbd/kbd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kbd/kbd.spec -------------------------------------------------------------------------------- /SPECS/kde-settings/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kde-settings/COPYING -------------------------------------------------------------------------------- /SPECS/keda/keda.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/keda/keda.spec -------------------------------------------------------------------------------- /SPECS/keras/keras.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/keras/keras.spec -------------------------------------------------------------------------------- /SPECS/kernel-64k/cpupower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel-64k/cpupower -------------------------------------------------------------------------------- /SPECS/kernel-hwe/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel-hwe/config -------------------------------------------------------------------------------- /SPECS/kernel-hwe/cpupower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel-hwe/cpupower -------------------------------------------------------------------------------- /SPECS/kernel-mshv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel-mshv/config -------------------------------------------------------------------------------- /SPECS/kernel-uvm/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel-uvm/config -------------------------------------------------------------------------------- /SPECS/kernel/CVE-2021-20194.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2021-20194 - Mitigated by CONFIG_BPF_UNPRIV_DEFAULT_OFF=y -------------------------------------------------------------------------------- /SPECS/kernel/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel/config -------------------------------------------------------------------------------- /SPECS/kernel/cpupower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel/cpupower -------------------------------------------------------------------------------- /SPECS/kernel/kernel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kernel/kernel.spec -------------------------------------------------------------------------------- /SPECS/kexec-tools/kdumpctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kexec-tools/kdumpctl -------------------------------------------------------------------------------- /SPECS/kexec-tools/mkdumprd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kexec-tools/mkdumprd -------------------------------------------------------------------------------- /SPECS/kf/kf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kf/kf.spec -------------------------------------------------------------------------------- /SPECS/kf/macros.kf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kf/macros.kf -------------------------------------------------------------------------------- /SPECS/kmod/kmod.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kmod/kmod.spec -------------------------------------------------------------------------------- /SPECS/knem/knem.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/knem/knem.spec -------------------------------------------------------------------------------- /SPECS/kpatch/kpatch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kpatch/kpatch.spec -------------------------------------------------------------------------------- /SPECS/kpmcore/kpmcore.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kpmcore/kpmcore.spec -------------------------------------------------------------------------------- /SPECS/krb5/krb5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/krb5/krb5.conf -------------------------------------------------------------------------------- /SPECS/krb5/krb5.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/krb5/krb5.spec -------------------------------------------------------------------------------- /SPECS/ksh/dotkshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ksh/dotkshrc -------------------------------------------------------------------------------- /SPECS/ksh/ksh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ksh/ksh.spec -------------------------------------------------------------------------------- /SPECS/ksh/kshcomp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ksh/kshcomp.conf -------------------------------------------------------------------------------- /SPECS/ksh/kshrc.rhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ksh/kshrc.rhs -------------------------------------------------------------------------------- /SPECS/kubernetes/CVE-2020-8554.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/kured/kured.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kured/kured.spec -------------------------------------------------------------------------------- /SPECS/kyua/kyua.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/kyua/kyua.spec -------------------------------------------------------------------------------- /SPECS/lapack/blasqr.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lapack/blasqr.ps -------------------------------------------------------------------------------- /SPECS/lapack/lapack.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lapack/lapack.spec -------------------------------------------------------------------------------- /SPECS/lapack/lapackqref.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lapack/lapackqref.ps -------------------------------------------------------------------------------- /SPECS/lcms2/lcms2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lcms2/lcms2.spec -------------------------------------------------------------------------------- /SPECS/ldns/ldns.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ldns/ldns.spec -------------------------------------------------------------------------------- /SPECS/less/less.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/less/less.spec -------------------------------------------------------------------------------- /SPECS/leveldb/leveldb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/leveldb/leveldb.spec -------------------------------------------------------------------------------- /SPECS/libICE/libICE.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libICE/libICE.spec -------------------------------------------------------------------------------- /SPECS/libSM/libSM.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libSM/libSM.spec -------------------------------------------------------------------------------- /SPECS/libX11/libX11.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libX11/libX11.spec -------------------------------------------------------------------------------- /SPECS/libXau/libXau.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXau/libXau.spec -------------------------------------------------------------------------------- /SPECS/libXaw/libXaw.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXaw/libXaw.spec -------------------------------------------------------------------------------- /SPECS/libXcursor/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Inherits=whiteglass 3 | -------------------------------------------------------------------------------- /SPECS/libXext/libXext.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXext/libXext.spec -------------------------------------------------------------------------------- /SPECS/libXft/libXft.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXft/libXft.spec -------------------------------------------------------------------------------- /SPECS/libXi/libXi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXi/libXi.spec -------------------------------------------------------------------------------- /SPECS/libXmu/libXmu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXmu/libXmu.spec -------------------------------------------------------------------------------- /SPECS/libXpm/libXpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXpm/libXpm.spec -------------------------------------------------------------------------------- /SPECS/libXres/libXres.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXres/libXres.spec -------------------------------------------------------------------------------- /SPECS/libXt/libXt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXt/libXt.spec -------------------------------------------------------------------------------- /SPECS/libXtst/libXtst.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXtst/libXtst.spec -------------------------------------------------------------------------------- /SPECS/libXv/libXv.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libXv/libXv.spec -------------------------------------------------------------------------------- /SPECS/libacvp/libacvp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libacvp/libacvp.spec -------------------------------------------------------------------------------- /SPECS/libaec/libaec.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libaec/libaec.spec -------------------------------------------------------------------------------- /SPECS/libaio/libaio.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libaio/libaio.spec -------------------------------------------------------------------------------- /SPECS/libbpf/libbpf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libbpf/libbpf.spec -------------------------------------------------------------------------------- /SPECS/libburn/libburn.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libburn/libburn.spec -------------------------------------------------------------------------------- /SPECS/libcap/libcap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libcap/libcap.spec -------------------------------------------------------------------------------- /SPECS/libcgroup/test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libcgroup/test.patch -------------------------------------------------------------------------------- /SPECS/libcxx/libcxx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libcxx/libcxx.spec -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3604.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3605.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3606.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3607.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3608.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3609.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3610.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3611.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3612.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3613.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3614.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3615.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3616.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2017-3617.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/CVE-2020-2981.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libdb/libdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdb/libdb.spec -------------------------------------------------------------------------------- /SPECS/libdnet/libdnet.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdnet/libdnet.spec -------------------------------------------------------------------------------- /SPECS/libdnf/libdnf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdnf/libdnf.spec -------------------------------------------------------------------------------- /SPECS/libdrm/LICENSE.PTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdrm/LICENSE.PTR -------------------------------------------------------------------------------- /SPECS/libdrm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdrm/README.rst -------------------------------------------------------------------------------- /SPECS/libdrm/libdrm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libdrm/libdrm.spec -------------------------------------------------------------------------------- /SPECS/libecap/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libecap/autoconf.h -------------------------------------------------------------------------------- /SPECS/libecap/libecap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libecap/libecap.spec -------------------------------------------------------------------------------- /SPECS/libedit/libedit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libedit/libedit.spec -------------------------------------------------------------------------------- /SPECS/libei/libei.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libei/libei.spec -------------------------------------------------------------------------------- /SPECS/libell/libell.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libell/libell.spec -------------------------------------------------------------------------------- /SPECS/libestr/libestr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libestr/libestr.spec -------------------------------------------------------------------------------- /SPECS/libev/libev.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libev/libev.spec -------------------------------------------------------------------------------- /SPECS/libexif/libexif.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libexif/libexif.spec -------------------------------------------------------------------------------- /SPECS/libffi/libffi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libffi/libffi.spec -------------------------------------------------------------------------------- /SPECS/libgit2/libgit2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libgit2/libgit2.spec -------------------------------------------------------------------------------- /SPECS/libgusb/libgusb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libgusb/libgusb.spec -------------------------------------------------------------------------------- /SPECS/libgxim/libgxim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libgxim/libgxim.spec -------------------------------------------------------------------------------- /SPECS/libical/libical.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libical/libical.spec -------------------------------------------------------------------------------- /SPECS/libidn2/libidn2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libidn2/libidn2.spec -------------------------------------------------------------------------------- /SPECS/libksba/libksba.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libksba/libksba.spec -------------------------------------------------------------------------------- /SPECS/libldm/libldm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libldm/libldm.spec -------------------------------------------------------------------------------- /SPECS/liblzf/liblzf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/liblzf/liblzf.spec -------------------------------------------------------------------------------- /SPECS/libmamba/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libmamba/setup.py -------------------------------------------------------------------------------- /SPECS/libmbim/libmbim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libmbim/libmbim.spec -------------------------------------------------------------------------------- /SPECS/libmd/libmd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libmd/libmd.spec -------------------------------------------------------------------------------- /SPECS/libmnl/libmnl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libmnl/libmnl.spec -------------------------------------------------------------------------------- /SPECS/libmpc/libmpc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libmpc/libmpc.spec -------------------------------------------------------------------------------- /SPECS/libnbd/libnbd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libnbd/libnbd.spec -------------------------------------------------------------------------------- /SPECS/libndp/libndp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libndp/libndp.spec -------------------------------------------------------------------------------- /SPECS/libnfs/libnfs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libnfs/libnfs.spec -------------------------------------------------------------------------------- /SPECS/libnl3/libnl3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libnl3/libnl3.spec -------------------------------------------------------------------------------- /SPECS/libnsl2/libnsl2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libnsl2/libnsl2.spec -------------------------------------------------------------------------------- /SPECS/libnvme/libnvme.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libnvme/libnvme.spec -------------------------------------------------------------------------------- /SPECS/libpcap/libpcap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libpcap/libpcap.spec -------------------------------------------------------------------------------- /SPECS/libpng/libpng.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libpng/libpng.spec -------------------------------------------------------------------------------- /SPECS/libpsl/libpsl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libpsl/libpsl.spec -------------------------------------------------------------------------------- /SPECS/libpsm2/libpsm2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libpsm2/libpsm2.spec -------------------------------------------------------------------------------- /SPECS/libqmi/libqmi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libqmi/libqmi.spec -------------------------------------------------------------------------------- /SPECS/librelp/librelp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/librelp/librelp.spec -------------------------------------------------------------------------------- /SPECS/librepo/librepo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/librepo/librepo.spec -------------------------------------------------------------------------------- /SPECS/libserf/libserf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libserf/libserf.spec -------------------------------------------------------------------------------- /SPECS/libsmi/libsmi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libsmi/libsmi.spec -------------------------------------------------------------------------------- /SPECS/libsmi/smi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libsmi/smi.conf -------------------------------------------------------------------------------- /SPECS/libsndfile/CVE-2018-13419.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/libsolv/libsolv.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libsolv/libsolv.spec -------------------------------------------------------------------------------- /SPECS/libsoup/libsoup.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libsoup/libsoup.spec -------------------------------------------------------------------------------- /SPECS/libssh/libssh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libssh/libssh.spec -------------------------------------------------------------------------------- /SPECS/libssh2/libssh2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libssh2/libssh2.spec -------------------------------------------------------------------------------- /SPECS/libtar/libtar.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtar/libtar.spec -------------------------------------------------------------------------------- /SPECS/libtdb/libtdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtdb/libtdb.spec -------------------------------------------------------------------------------- /SPECS/libtdb/tdb.keyring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtdb/tdb.keyring -------------------------------------------------------------------------------- /SPECS/libtiff/CVE-2022-3598.nopatch: -------------------------------------------------------------------------------- 1 | Already fixed with CVE-2022-3570.patch. 2 | -------------------------------------------------------------------------------- /SPECS/libtiff/CVE-2022-3626.nopatch: -------------------------------------------------------------------------------- 1 | Already fixed with CVE-2022-3597.patch. 2 | -------------------------------------------------------------------------------- /SPECS/libtiff/CVE-2022-3627.nopatch: -------------------------------------------------------------------------------- 1 | Already fixed with CVE-2022-3597.patch. 2 | -------------------------------------------------------------------------------- /SPECS/libtiff/libtiff.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtiff/libtiff.spec -------------------------------------------------------------------------------- /SPECS/libtirpc/CVE-2021-46828.nopatch: -------------------------------------------------------------------------------- 1 | CVE-2021-46828 is not applicable to this version of libtirpc. 2 | -------------------------------------------------------------------------------- /SPECS/libtool/libtool.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtool/libtool.spec -------------------------------------------------------------------------------- /SPECS/libtpms/libtpms.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libtpms/libtpms.spec -------------------------------------------------------------------------------- /SPECS/libusb/libusb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libusb/libusb.spec -------------------------------------------------------------------------------- /SPECS/libuser/libuser.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libuser/libuser.spec -------------------------------------------------------------------------------- /SPECS/libuv/libuv.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libuv/libuv.spec -------------------------------------------------------------------------------- /SPECS/libva/baselibs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libva/baselibs.conf -------------------------------------------------------------------------------- /SPECS/libva/libva.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libva/libva.spec -------------------------------------------------------------------------------- /SPECS/libvirt/libvirt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libvirt/libvirt.spec -------------------------------------------------------------------------------- /SPECS/libwebp/libwebp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libwebp/libwebp.spec -------------------------------------------------------------------------------- /SPECS/libxcb/libxcb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libxcb/libxcb.spec -------------------------------------------------------------------------------- /SPECS/libxcvt/libxcvt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libxcvt/libxcvt.spec -------------------------------------------------------------------------------- /SPECS/libxml2/libxml2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libxml2/libxml2.spec -------------------------------------------------------------------------------- /SPECS/libxslt/libxslt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libxslt/libxslt.spec -------------------------------------------------------------------------------- /SPECS/libyaml/libyaml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libyaml/libyaml.spec -------------------------------------------------------------------------------- /SPECS/libyang/libyang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libyang/libyang.spec -------------------------------------------------------------------------------- /SPECS/libzip/libzip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/libzip/libzip.spec -------------------------------------------------------------------------------- /SPECS/linuxptp/ptp4l.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/linuxptp/ptp4l.conf -------------------------------------------------------------------------------- /SPECS/lld/lld.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lld/lld.spec -------------------------------------------------------------------------------- /SPECS/lldb/lldb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lldb/lldb.spec -------------------------------------------------------------------------------- /SPECS/lldpad/lldpad.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lldpad/lldpad.spec -------------------------------------------------------------------------------- /SPECS/lldpd/lldpd-el6.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lldpd/lldpd-el6.init -------------------------------------------------------------------------------- /SPECS/lldpd/lldpd-tmpfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lldpd/lldpd-tmpfiles -------------------------------------------------------------------------------- /SPECS/lldpd/lldpd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lldpd/lldpd.spec -------------------------------------------------------------------------------- /SPECS/llvm/llvm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/llvm/llvm.spec -------------------------------------------------------------------------------- /SPECS/lmdb/lmdb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lmdb/lmdb.pc -------------------------------------------------------------------------------- /SPECS/lmdb/lmdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lmdb/lmdb.spec -------------------------------------------------------------------------------- /SPECS/log4cpp/log4cpp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/log4cpp/log4cpp.spec -------------------------------------------------------------------------------- /SPECS/lshw/lshw.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lshw/lshw.spec -------------------------------------------------------------------------------- /SPECS/lsof/lsof.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lsof/lsof.spec -------------------------------------------------------------------------------- /SPECS/lsscsi/lsscsi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lsscsi/lsscsi.spec -------------------------------------------------------------------------------- /SPECS/ltp/ltp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ltp/ltp.spec -------------------------------------------------------------------------------- /SPECS/ltrace/ltrace.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ltrace/ltrace.spec -------------------------------------------------------------------------------- /SPECS/lua/lua.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lua/lua.spec -------------------------------------------------------------------------------- /SPECS/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lua/luaconf.h -------------------------------------------------------------------------------- /SPECS/lua/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lua/mit.txt -------------------------------------------------------------------------------- /SPECS/luajit/luajit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/luajit/luajit.spec -------------------------------------------------------------------------------- /SPECS/lutok/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lutok/README -------------------------------------------------------------------------------- /SPECS/lutok/lutok.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lutok/lutok.spec -------------------------------------------------------------------------------- /SPECS/lvm2/lvm2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lvm2/lvm2.spec -------------------------------------------------------------------------------- /SPECS/lynx/lynx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lynx/lynx.spec -------------------------------------------------------------------------------- /SPECS/lz4/CVE-2014-4715.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/lz4/lz4.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lz4/lz4.spec -------------------------------------------------------------------------------- /SPECS/lzo/lzo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lzo/lzo.spec -------------------------------------------------------------------------------- /SPECS/lzop/lzop.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/lzop/lzop.spec -------------------------------------------------------------------------------- /SPECS/m4/m4.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/m4/m4.spec -------------------------------------------------------------------------------- /SPECS/mailcap/mailcap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mailcap/mailcap.spec -------------------------------------------------------------------------------- /SPECS/make/make.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/make/make.spec -------------------------------------------------------------------------------- /SPECS/malaga/malaga.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/malaga/malaga.spec -------------------------------------------------------------------------------- /SPECS/man-db/man-db.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/man-db/man-db.spec -------------------------------------------------------------------------------- /SPECS/mandoc/mandoc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mandoc/mandoc.spec -------------------------------------------------------------------------------- /SPECS/mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mariadb/README.md -------------------------------------------------------------------------------- /SPECS/mariadb/mariadb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mariadb/mariadb.spec -------------------------------------------------------------------------------- /SPECS/mariadb/my.cnf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mariadb/my.cnf.in -------------------------------------------------------------------------------- /SPECS/mariadb/rh-skipped-tests-arm.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/maven/maven.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/maven/maven.spec -------------------------------------------------------------------------------- /SPECS/mc/mc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mc/mc.spec -------------------------------------------------------------------------------- /SPECS/mcpp/mcpp-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mcpp/mcpp-man.patch -------------------------------------------------------------------------------- /SPECS/mcpp/mcpp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mcpp/mcpp.spec -------------------------------------------------------------------------------- /SPECS/mdadm/mdadm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mdadm/mdadm.conf -------------------------------------------------------------------------------- /SPECS/mdadm/mdadm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mdadm/mdadm.spec -------------------------------------------------------------------------------- /SPECS/mdadm/mdcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mdadm/mdcheck -------------------------------------------------------------------------------- /SPECS/mdadm/raid-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mdadm/raid-check -------------------------------------------------------------------------------- /SPECS/mdevctl/mdevctl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mdevctl/mdevctl.spec -------------------------------------------------------------------------------- /SPECS/mesa/LICENSE.PTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mesa/LICENSE.PTR -------------------------------------------------------------------------------- /SPECS/mesa/mesa.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mesa/mesa.spec -------------------------------------------------------------------------------- /SPECS/meson/meson.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/meson/meson.spec -------------------------------------------------------------------------------- /SPECS/mlocate/mlocate.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mlocate/mlocate.spec -------------------------------------------------------------------------------- /SPECS/mock/mock.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mock/mock.spec -------------------------------------------------------------------------------- /SPECS/mokutil/mokutil.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mokutil/mokutil.spec -------------------------------------------------------------------------------- /SPECS/mpfr/mpfr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mpfr/mpfr.spec -------------------------------------------------------------------------------- /SPECS/msgpack/msgpack.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/msgpack/msgpack.spec -------------------------------------------------------------------------------- /SPECS/mtdev/mtdev.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mtdev/mtdev.spec -------------------------------------------------------------------------------- /SPECS/mtools/mtools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mtools/mtools.spec -------------------------------------------------------------------------------- /SPECS/mtr/mtr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mtr/mtr.spec -------------------------------------------------------------------------------- /SPECS/mtr/net-xmtr.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mtr/net-xmtr.desktop -------------------------------------------------------------------------------- /SPECS/multus/multus.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/multus/multus.spec -------------------------------------------------------------------------------- /SPECS/munge/munge.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/munge/munge.spec -------------------------------------------------------------------------------- /SPECS/mysql/CVE-2012-5627.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/mysql/mysql.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/mysql/mysql.spec -------------------------------------------------------------------------------- /SPECS/nano/nano.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nano/nano.spec -------------------------------------------------------------------------------- /SPECS/nasm/nasm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nasm/nasm.spec -------------------------------------------------------------------------------- /SPECS/nbd/nbd-server.sysconfig: -------------------------------------------------------------------------------- 1 | # Command line options for nbd-server 2 | OPTIONS="" 3 | -------------------------------------------------------------------------------- /SPECS/nbd/nbd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nbd/nbd.spec -------------------------------------------------------------------------------- /SPECS/nbdkit/nbdkit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nbdkit/nbdkit.spec -------------------------------------------------------------------------------- /SPECS/ncurses/ncurses.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ncurses/ncurses.spec -------------------------------------------------------------------------------- /SPECS/ndctl/ndctl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ndctl/ndctl.spec -------------------------------------------------------------------------------- /SPECS/netplan/netplan.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/netplan/netplan.spec -------------------------------------------------------------------------------- /SPECS/nettle/nettle.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nettle/nettle.spec -------------------------------------------------------------------------------- /SPECS/newt/newt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/newt/newt.spec -------------------------------------------------------------------------------- /SPECS/nftables/main.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nftables/main.nft -------------------------------------------------------------------------------- /SPECS/nftables/nat.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nftables/nat.nft -------------------------------------------------------------------------------- /SPECS/nftables/router.nft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nftables/router.nft -------------------------------------------------------------------------------- /SPECS/nghttp2/nghttp2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nghttp2/nghttp2.spec -------------------------------------------------------------------------------- /SPECS/nginx/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nginx/nginx.service -------------------------------------------------------------------------------- /SPECS/nginx/nginx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nginx/nginx.spec -------------------------------------------------------------------------------- /SPECS/nlopt/nlopt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nlopt/nlopt.spec -------------------------------------------------------------------------------- /SPECS/nmap/nmap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nmap/nmap.spec -------------------------------------------------------------------------------- /SPECS/nodejs/nodejs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nodejs/nodejs.spec -------------------------------------------------------------------------------- /SPECS/npth/npth.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/npth/npth.spec -------------------------------------------------------------------------------- /SPECS/nspr/nspr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nspr/nspr.spec -------------------------------------------------------------------------------- /SPECS/nss/nss-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss/nss-config.in -------------------------------------------------------------------------------- /SPECS/nss/nss-util.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss/nss-util.pc.in -------------------------------------------------------------------------------- /SPECS/nss/nss.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss/nss.pc.in -------------------------------------------------------------------------------- /SPECS/nss/nss.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss/nss.spec -------------------------------------------------------------------------------- /SPECS/nss_nis/nss_nis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss_nis/nss_nis.conf -------------------------------------------------------------------------------- /SPECS/nss_nis/nss_nis.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nss_nis/nss_nis.spec -------------------------------------------------------------------------------- /SPECS/ntfs-3g/ntfs-3g.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntfs-3g/ntfs-3g.spec -------------------------------------------------------------------------------- /SPECS/ntopng/ntopng.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntopng/ntopng.spec -------------------------------------------------------------------------------- /SPECS/ntp/LICENSE.PTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/LICENSE.PTR -------------------------------------------------------------------------------- /SPECS/ntp/ntp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/ntp.spec -------------------------------------------------------------------------------- /SPECS/ntp/ntp.step-tickers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/ntp.step-tickers -------------------------------------------------------------------------------- /SPECS/ntp/ntp.sysconfig: -------------------------------------------------------------------------------- 1 | # Environment variables required for ntp service 2 | -------------------------------------------------------------------------------- /SPECS/ntp/ntpd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/ntpd.service -------------------------------------------------------------------------------- /SPECS/ntp/ntpdate.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/ntpdate.service -------------------------------------------------------------------------------- /SPECS/ntp/ntpdate.wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ntp/ntpdate.wrapper -------------------------------------------------------------------------------- /SPECS/numactl/numactl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/numactl/numactl.spec -------------------------------------------------------------------------------- /SPECS/numad/LICENSE.PTR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/numad/LICENSE.PTR -------------------------------------------------------------------------------- /SPECS/numad/numad.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/numad/numad.spec -------------------------------------------------------------------------------- /SPECS/numpy/numpy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/numpy/numpy.spec -------------------------------------------------------------------------------- /SPECS/nvml/nvml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/nvml/nvml.spec -------------------------------------------------------------------------------- /SPECS/ocaml/ocaml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ocaml/ocaml.spec -------------------------------------------------------------------------------- /SPECS/ocaml/ocaml_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ocaml/ocaml_files.py -------------------------------------------------------------------------------- /SPECS/opa/opa.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opa/opa.spec -------------------------------------------------------------------------------- /SPECS/open-vm-tools/open-vm-tools.conf: -------------------------------------------------------------------------------- 1 | fuse 2 | -------------------------------------------------------------------------------- /SPECS/opencsd/opencsd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opencsd/opencsd.spec -------------------------------------------------------------------------------- /SPECS/openmpi/openmpi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openmpi/openmpi.spec -------------------------------------------------------------------------------- /SPECS/opensc/opensc.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opensc/opensc.module -------------------------------------------------------------------------------- /SPECS/opensc/opensc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opensc/opensc.spec -------------------------------------------------------------------------------- /SPECS/opensm/opensm.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opensm/opensm.launch -------------------------------------------------------------------------------- /SPECS/opensm/opensm.rwtab: -------------------------------------------------------------------------------- 1 | empty /var/cache/opensm 2 | -------------------------------------------------------------------------------- /SPECS/opensm/opensm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opensm/opensm.spec -------------------------------------------------------------------------------- /SPECS/opensp/opensp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/opensp/opensp.spec -------------------------------------------------------------------------------- /SPECS/openssh/CVE-2007-2768.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/openssh/openssh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openssh/openssh.spec -------------------------------------------------------------------------------- /SPECS/openssh/sshd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openssh/sshd.service -------------------------------------------------------------------------------- /SPECS/openssl/ci.fmf: -------------------------------------------------------------------------------- 1 | resultsdb-testcase: separate 2 | -------------------------------------------------------------------------------- /SPECS/openssl/fixpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openssl/fixpatch -------------------------------------------------------------------------------- /SPECS/openssl/genpatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openssl/genpatches -------------------------------------------------------------------------------- /SPECS/openssl/openssl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/openssl/openssl.spec -------------------------------------------------------------------------------- /SPECS/orangefs/pvfs2tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/orangefs/pvfs2tab -------------------------------------------------------------------------------- /SPECS/ostree/91-ostree.preset: -------------------------------------------------------------------------------- 1 | enable ostree-remount.service 2 | -------------------------------------------------------------------------------- /SPECS/ostree/ostree.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ostree/ostree.spec -------------------------------------------------------------------------------- /SPECS/p11-kit/p11-kit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/p11-kit/p11-kit.spec -------------------------------------------------------------------------------- /SPECS/p7zip/02-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/p7zip/02-man.patch -------------------------------------------------------------------------------- /SPECS/p7zip/CVE-2018-5996.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/p7zip/p7zip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/p7zip/p7zip.spec -------------------------------------------------------------------------------- /SPECS/packer/CVE-2025-21614.nopatch: -------------------------------------------------------------------------------- 1 | # fixed by CVE-2025-21613.patch file 2 | -------------------------------------------------------------------------------- /SPECS/packer/packer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/packer/packer.spec -------------------------------------------------------------------------------- /SPECS/pam/pam.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pam/pam.spec -------------------------------------------------------------------------------- /SPECS/pango/pango.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pango/pango.spec -------------------------------------------------------------------------------- /SPECS/parted/parted.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/parted/parted.spec -------------------------------------------------------------------------------- /SPECS/patch/CVE-2019-13638.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/patch/patch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/patch/patch.spec -------------------------------------------------------------------------------- /SPECS/patterns-ceph-containers/patterns-ceph-containers.signatures.json: -------------------------------------------------------------------------------- 1 | { 2 | "Signatures": {} 3 | } 4 | -------------------------------------------------------------------------------- /SPECS/pcre2/pcre2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pcre2/pcre2.spec -------------------------------------------------------------------------------- /SPECS/perl/gendep.macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/perl/gendep.macros -------------------------------------------------------------------------------- /SPECS/perl/macros.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/perl/macros.perl -------------------------------------------------------------------------------- /SPECS/perl/perl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/perl/perl.spec -------------------------------------------------------------------------------- /SPECS/pesign/certs.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pesign/certs.tar.xz -------------------------------------------------------------------------------- /SPECS/pesign/pesign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pesign/pesign.py -------------------------------------------------------------------------------- /SPECS/pesign/pesign.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pesign/pesign.spec -------------------------------------------------------------------------------- /SPECS/php-pear/cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php-pear/cleanup.php -------------------------------------------------------------------------------- /SPECS/php-pear/macros.pear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php-pear/macros.pear -------------------------------------------------------------------------------- /SPECS/php-pear/pear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php-pear/pear.sh -------------------------------------------------------------------------------- /SPECS/php-pear/peardev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php-pear/peardev.sh -------------------------------------------------------------------------------- /SPECS/php-pear/pecl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php-pear/pecl.sh -------------------------------------------------------------------------------- /SPECS/php/10-opcache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/10-opcache.ini -------------------------------------------------------------------------------- /SPECS/php/20-ffi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/20-ffi.ini -------------------------------------------------------------------------------- /SPECS/php/CVE-test.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/php/macros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/macros.php -------------------------------------------------------------------------------- /SPECS/php/nginx-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/nginx-fpm.conf -------------------------------------------------------------------------------- /SPECS/php/nginx-php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/nginx-php.conf -------------------------------------------------------------------------------- /SPECS/php/php-fpm-www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php-fpm-www.conf -------------------------------------------------------------------------------- /SPECS/php/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php-fpm.conf -------------------------------------------------------------------------------- /SPECS/php/php-fpm.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php-fpm.service -------------------------------------------------------------------------------- /SPECS/php/php-fpm.wants: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Wants=php-fpm.service 3 | 4 | -------------------------------------------------------------------------------- /SPECS/php/php.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php.conf -------------------------------------------------------------------------------- /SPECS/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php.ini -------------------------------------------------------------------------------- /SPECS/php/php.modconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php.modconf -------------------------------------------------------------------------------- /SPECS/php/php.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/php/php.spec -------------------------------------------------------------------------------- /SPECS/picosat/picomus.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/picosat/picomus.1 -------------------------------------------------------------------------------- /SPECS/picosat/picosat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/picosat/picosat.1 -------------------------------------------------------------------------------- /SPECS/picosat/picosat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/picosat/picosat.spec -------------------------------------------------------------------------------- /SPECS/picosat/picosat.trace.1: -------------------------------------------------------------------------------- 1 | .so picosat.1 2 | -------------------------------------------------------------------------------- /SPECS/pigz/pigz.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pigz/pigz.spec -------------------------------------------------------------------------------- /SPECS/pixman/pixman.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pixman/pixman.spec -------------------------------------------------------------------------------- /SPECS/pkgconf/pkgconf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pkgconf/pkgconf.spec -------------------------------------------------------------------------------- /SPECS/pmix/pmix.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pmix/pmix.spec -------------------------------------------------------------------------------- /SPECS/poetry/poetry.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/poetry/poetry.spec -------------------------------------------------------------------------------- /SPECS/polkit/polkit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/polkit/polkit.spec -------------------------------------------------------------------------------- /SPECS/popt/popt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/popt/popt.spec -------------------------------------------------------------------------------- /SPECS/postfix/postfix-sasl.conf: -------------------------------------------------------------------------------- 1 | pwcheck_method: saslauthd 2 | mech_list: plain login 3 | -------------------------------------------------------------------------------- /SPECS/postfix/postfix.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/postfix/postfix.spec -------------------------------------------------------------------------------- /SPECS/psmisc/psmisc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/psmisc/psmisc.spec -------------------------------------------------------------------------------- /SPECS/pssh/pssh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pssh/pssh.spec -------------------------------------------------------------------------------- /SPECS/pth/pth.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pth/pth.spec -------------------------------------------------------------------------------- /SPECS/pugixml/pugixml.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pugixml/pugixml.spec -------------------------------------------------------------------------------- /SPECS/pwgen/pwgen.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pwgen/pwgen.spec -------------------------------------------------------------------------------- /SPECS/pycairo/pycairo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pycairo/pycairo.spec -------------------------------------------------------------------------------- /SPECS/pytest/pytest.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pytest/pytest.spec -------------------------------------------------------------------------------- /SPECS/python3/cgi3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/python3/cgi3.patch -------------------------------------------------------------------------------- /SPECS/python3/pathfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/python3/pathfix.py -------------------------------------------------------------------------------- /SPECS/python3/python3.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/python3/python3.spec -------------------------------------------------------------------------------- /SPECS/pytorch/pytorch.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pytorch/pytorch.spec -------------------------------------------------------------------------------- /SPECS/pytz/pytz.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/pytz/pytz.spec -------------------------------------------------------------------------------- /SPECS/qdox/qdox-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qdox/qdox-build.xml -------------------------------------------------------------------------------- /SPECS/qdox/qdox.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qdox/qdox.spec -------------------------------------------------------------------------------- /SPECS/qemu/README.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/README.tests -------------------------------------------------------------------------------- /SPECS/qemu/bridge.conf: -------------------------------------------------------------------------------- 1 | allow virbr0 2 | -------------------------------------------------------------------------------- /SPECS/qemu/kvm-s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/kvm-s390x.conf -------------------------------------------------------------------------------- /SPECS/qemu/kvm-x86.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/kvm-x86.conf -------------------------------------------------------------------------------- /SPECS/qemu/kvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/kvm.conf -------------------------------------------------------------------------------- /SPECS/qemu/qemu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/qemu.spec -------------------------------------------------------------------------------- /SPECS/qemu/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qemu/vhost.conf -------------------------------------------------------------------------------- /SPECS/qtbase/macros.qtbase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qtbase/macros.qtbase -------------------------------------------------------------------------------- /SPECS/qtbase/qtbase.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qtbase/qtbase.spec -------------------------------------------------------------------------------- /SPECS/qtbase/qtlogging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qtbase/qtlogging.ini -------------------------------------------------------------------------------- /SPECS/qtsvg/qtsvg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qtsvg/qtsvg.spec -------------------------------------------------------------------------------- /SPECS/qttools/qttools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/qttools/qttools.spec -------------------------------------------------------------------------------- /SPECS/quota/quota.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/quota/quota.spec -------------------------------------------------------------------------------- /SPECS/radvd/radvd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/radvd/radvd.spec -------------------------------------------------------------------------------- /SPECS/ragel/ragel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ragel/ragel.spec -------------------------------------------------------------------------------- /SPECS/re2/re2-soname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/re2/re2-soname.patch -------------------------------------------------------------------------------- /SPECS/re2/re2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/re2/re2.spec -------------------------------------------------------------------------------- /SPECS/reproc/reproc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/reproc/reproc.spec -------------------------------------------------------------------------------- /SPECS/rest/rest.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rest/rest.spec -------------------------------------------------------------------------------- /SPECS/rlwrap/rlwrap.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rlwrap/rlwrap.spec -------------------------------------------------------------------------------- /SPECS/rocksdb/rocksdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rocksdb/rocksdb.spec -------------------------------------------------------------------------------- /SPECS/rpcbind/rpcbind.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rpcbind/rpcbind.spec -------------------------------------------------------------------------------- /SPECS/rpm/rpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rpm/rpm.spec -------------------------------------------------------------------------------- /SPECS/rrdtool/rrdtool.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rrdtool/rrdtool.spec -------------------------------------------------------------------------------- /SPECS/rshim/rshim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rshim/rshim.spec -------------------------------------------------------------------------------- /SPECS/rsync/rsync.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rsync/rsync.spec -------------------------------------------------------------------------------- /SPECS/rsyslog/50-rsyslog-journald.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | ForwardToSyslog=yes 3 | -------------------------------------------------------------------------------- /SPECS/rsyslog/rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rsyslog/rsyslog.conf -------------------------------------------------------------------------------- /SPECS/rsyslog/rsyslog.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rsyslog/rsyslog.spec -------------------------------------------------------------------------------- /SPECS/rtctl/rtctl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rtctl/rtctl.spec -------------------------------------------------------------------------------- /SPECS/rtl-sdr/rtl-sdr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rtl-sdr/rtl-sdr.spec -------------------------------------------------------------------------------- /SPECS/ruby/macros.ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/macros.ruby -------------------------------------------------------------------------------- /SPECS/ruby/macros.rubygems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/macros.rubygems -------------------------------------------------------------------------------- /SPECS/ruby/ruby.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/ruby.spec -------------------------------------------------------------------------------- /SPECS/ruby/rubygems.attr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/rubygems.attr -------------------------------------------------------------------------------- /SPECS/ruby/rubygems.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/rubygems.con -------------------------------------------------------------------------------- /SPECS/ruby/rubygems.prov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/rubygems.prov -------------------------------------------------------------------------------- /SPECS/ruby/rubygems.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ruby/rubygems.req -------------------------------------------------------------------------------- /SPECS/runc/runc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/runc/runc.spec -------------------------------------------------------------------------------- /SPECS/rust/rust-1.75.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rust/rust-1.75.spec -------------------------------------------------------------------------------- /SPECS/rust/rust.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/rust/rust.spec -------------------------------------------------------------------------------- /SPECS/sanlock/sanlock.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sanlock/sanlock.spec -------------------------------------------------------------------------------- /SPECS/scons/scons.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/scons/scons.spec -------------------------------------------------------------------------------- /SPECS/scrub/scrub.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/scrub/scrub.spec -------------------------------------------------------------------------------- /SPECS/seabios/config.csm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/seabios/config.csm -------------------------------------------------------------------------------- /SPECS/seabios/seabios.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/seabios/seabios.spec -------------------------------------------------------------------------------- /SPECS/secilc/secilc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/secilc/secilc.spec -------------------------------------------------------------------------------- /SPECS/sed/sed.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sed/sed.spec -------------------------------------------------------------------------------- /SPECS/setools/setools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/setools/setools.spec -------------------------------------------------------------------------------- /SPECS/sgabios/sgabios.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sgabios/sgabios.spec -------------------------------------------------------------------------------- /SPECS/sgml-common/html.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sgml-common/html.dcl -------------------------------------------------------------------------------- /SPECS/sgml-common/html.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sgml-common/html.soc -------------------------------------------------------------------------------- /SPECS/sgml-common/xml.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sgml-common/xml.dcl -------------------------------------------------------------------------------- /SPECS/sgml-common/xml.soc: -------------------------------------------------------------------------------- 1 | SGMLDECL "xml.dcl" 2 | -------------------------------------------------------------------------------- /SPECS/sgml-common/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sgml-common/xml.xsd -------------------------------------------------------------------------------- /SPECS/shim-unsigned-aarch64/shim.patches: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/shim-unsigned-x64/shim.patches: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/shim/TESTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/TESTING -------------------------------------------------------------------------------- /SPECS/shim/mmaa64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/mmaa64.efi -------------------------------------------------------------------------------- /SPECS/shim/mmx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/mmx64.efi -------------------------------------------------------------------------------- /SPECS/shim/shim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/shim.spec -------------------------------------------------------------------------------- /SPECS/shim/shimaa64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/shimaa64.efi -------------------------------------------------------------------------------- /SPECS/shim/shimx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/shim/shimx64.efi -------------------------------------------------------------------------------- /SPECS/sisu/sisu-inject.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sisu/sisu-inject.pom -------------------------------------------------------------------------------- /SPECS/sisu/sisu-parent.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sisu/sisu-parent.pom -------------------------------------------------------------------------------- /SPECS/sisu/sisu-plexus.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sisu/sisu-plexus.pom -------------------------------------------------------------------------------- /SPECS/sisu/sisu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sisu/sisu.spec -------------------------------------------------------------------------------- /SPECS/skopeo/skopeo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/skopeo/skopeo.spec -------------------------------------------------------------------------------- /SPECS/slang/slang.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/slang/slang.spec -------------------------------------------------------------------------------- /SPECS/slf4j/slf4j.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/slf4j/slf4j.spec -------------------------------------------------------------------------------- /SPECS/snappy/snappy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/snappy/snappy.spec -------------------------------------------------------------------------------- /SPECS/socat/socat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/socat/socat.spec -------------------------------------------------------------------------------- /SPECS/softhsm/softhsm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/softhsm/softhsm.spec -------------------------------------------------------------------------------- /SPECS/sos/sos.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sos/sos.spec -------------------------------------------------------------------------------- /SPECS/spdlog/spdlog.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/spdlog/spdlog.spec -------------------------------------------------------------------------------- /SPECS/sqlite/CVE-2015-3717.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/sqlite/sqlite.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sqlite/sqlite.spec -------------------------------------------------------------------------------- /SPECS/squid/cache_swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/cache_swap.sh -------------------------------------------------------------------------------- /SPECS/squid/perl-requires-squid.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/lib/rpm/perl.req $* | grep -v "Authen::Smb" 4 | -------------------------------------------------------------------------------- /SPECS/squid/squid.nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/squid.nm -------------------------------------------------------------------------------- /SPECS/squid/squid.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/squid.pam -------------------------------------------------------------------------------- /SPECS/squid/squid.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/squid.service -------------------------------------------------------------------------------- /SPECS/squid/squid.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/squid.spec -------------------------------------------------------------------------------- /SPECS/squid/squid.sysusers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/squid/squid.sysusers -------------------------------------------------------------------------------- /SPECS/srp-hwe/srp-hwe.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/srp-hwe/srp-hwe.spec -------------------------------------------------------------------------------- /SPECS/srp/srp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/srp/srp.spec -------------------------------------------------------------------------------- /SPECS/sscg/sscg.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sscg/sscg.spec -------------------------------------------------------------------------------- /SPECS/sshpass/sshpass.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sshpass/sshpass.spec -------------------------------------------------------------------------------- /SPECS/strace/strace.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/strace/strace.spec -------------------------------------------------------------------------------- /SPECS/stunnel/stunnel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/stunnel/stunnel.spec -------------------------------------------------------------------------------- /SPECS/subunit/subunit.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/subunit/subunit.spec -------------------------------------------------------------------------------- /SPECS/sudo/sudo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sudo/sudo.spec -------------------------------------------------------------------------------- /SPECS/swig/swig.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/swig/swig.spec -------------------------------------------------------------------------------- /SPECS/swtpm/swtpm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/swtpm/swtpm.spec -------------------------------------------------------------------------------- /SPECS/sympy/sympy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sympy/sympy.spec -------------------------------------------------------------------------------- /SPECS/syslog-ng/60-syslog-ng-journald.conf: -------------------------------------------------------------------------------- 1 | [Journal] 2 | ForwardToSyslog=yes 3 | -------------------------------------------------------------------------------- /SPECS/sysstat/sysstat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/sysstat/sysstat.spec -------------------------------------------------------------------------------- /SPECS/systemd/10-oomd-defaults.conf: -------------------------------------------------------------------------------- 1 | [OOM] 2 | DefaultMemoryPressureDurationSec=20s 3 | -------------------------------------------------------------------------------- /SPECS/systemd/26494.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/systemd/26494.patch -------------------------------------------------------------------------------- /SPECS/systemd/systemd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/systemd/systemd.spec -------------------------------------------------------------------------------- /SPECS/tar/tar.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tar/tar.spec -------------------------------------------------------------------------------- /SPECS/tboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tboot/README.md -------------------------------------------------------------------------------- /SPECS/tboot/tboot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tboot/tboot.spec -------------------------------------------------------------------------------- /SPECS/tcl/tcl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tcl/tcl.spec -------------------------------------------------------------------------------- /SPECS/tcpdump/tcpdump.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tcpdump/tcpdump.spec -------------------------------------------------------------------------------- /SPECS/tcsh/tcsh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tcsh/tcsh.spec -------------------------------------------------------------------------------- /SPECS/tdnf/tdnf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tdnf/tdnf.spec -------------------------------------------------------------------------------- /SPECS/tdnf/tdnfrepogpgcheck.conf: -------------------------------------------------------------------------------- 1 | [main] 2 | enabled=1 3 | -------------------------------------------------------------------------------- /SPECS/texinfo/texinfo.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/texinfo/texinfo.spec -------------------------------------------------------------------------------- /SPECS/thrift/thrift.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/thrift/thrift.spec -------------------------------------------------------------------------------- /SPECS/tidy/tidy.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tidy/tidy.spec -------------------------------------------------------------------------------- /SPECS/time/time.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/time/time.spec -------------------------------------------------------------------------------- /SPECS/tini/tini.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tini/tini.spec -------------------------------------------------------------------------------- /SPECS/tinycdb/libcdb.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tinycdb/libcdb.pc -------------------------------------------------------------------------------- /SPECS/tinycdb/tinycdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tinycdb/tinycdb.spec -------------------------------------------------------------------------------- /SPECS/tmux/tmux.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tmux/tmux.spec -------------------------------------------------------------------------------- /SPECS/toml11/toml11.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/toml11/toml11.spec -------------------------------------------------------------------------------- /SPECS/tree/tree.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tree/tree.spec -------------------------------------------------------------------------------- /SPECS/ttembed/ttembed.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ttembed/ttembed.spec -------------------------------------------------------------------------------- /SPECS/tuna/tuna.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tuna/tuna.spec -------------------------------------------------------------------------------- /SPECS/tuned/CVE-2024-52337.nopatch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SPECS/tuned/tuned.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tuned/tuned.spec -------------------------------------------------------------------------------- /SPECS/tzdata/tzdata.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/tzdata/tzdata.spec -------------------------------------------------------------------------------- /SPECS/ucx/ucx.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ucx/ucx.spec -------------------------------------------------------------------------------- /SPECS/unbound/unbound.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/unbound/unbound.spec -------------------------------------------------------------------------------- /SPECS/unzip/CVE-2008-0888.nopatch: -------------------------------------------------------------------------------- 1 | Upstream has fixed CVE-2008-0888 in 6.0 -------------------------------------------------------------------------------- /SPECS/unzip/unzip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/unzip/unzip.spec -------------------------------------------------------------------------------- /SPECS/usbip/usbip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/usbip/usbip.spec -------------------------------------------------------------------------------- /SPECS/usbutils/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/usbutils/usb.ids -------------------------------------------------------------------------------- /SPECS/usermode/config-util: -------------------------------------------------------------------------------- 1 | USER=root 2 | UGROUPS=wheel 3 | -------------------------------------------------------------------------------- /SPECS/usrsctp/usrsctp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/usrsctp/usrsctp.spec -------------------------------------------------------------------------------- /SPECS/util-linux/runuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/util-linux/runuser -------------------------------------------------------------------------------- /SPECS/util-linux/runuser-l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/util-linux/runuser-l -------------------------------------------------------------------------------- /SPECS/util-linux/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/util-linux/su -------------------------------------------------------------------------------- /SPECS/util-linux/su-l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/util-linux/su-l -------------------------------------------------------------------------------- /SPECS/uuid/ossp-uuid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/uuid/ossp-uuid.patch -------------------------------------------------------------------------------- /SPECS/uuid/uuid.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/uuid/uuid.spec -------------------------------------------------------------------------------- /SPECS/vala/vala.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vala/vala.spec -------------------------------------------------------------------------------- /SPECS/valkey/valkey.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/valkey/valkey.spec -------------------------------------------------------------------------------- /SPECS/vim/macros.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vim/macros.vim -------------------------------------------------------------------------------- /SPECS/vim/vim.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vim/vim.spec -------------------------------------------------------------------------------- /SPECS/vitess/vitess.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vitess/vitess.spec -------------------------------------------------------------------------------- /SPECS/vnstat/vnstat.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vnstat/vnstat.spec -------------------------------------------------------------------------------- /SPECS/vsftpd/vsftpd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vsftpd/vsftpd.spec -------------------------------------------------------------------------------- /SPECS/vte291/vte291.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/vte291/vte291.spec -------------------------------------------------------------------------------- /SPECS/wget/wget.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/wget/wget.spec -------------------------------------------------------------------------------- /SPECS/which/which.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/which/which.spec -------------------------------------------------------------------------------- /SPECS/words/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/words/LICENSE -------------------------------------------------------------------------------- /SPECS/words/words.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/words/words.spec -------------------------------------------------------------------------------- /SPECS/xmlto/xmlto.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/xmlto/xmlto.spec -------------------------------------------------------------------------------- /SPECS/xmvn/xmvn.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/xmvn/xmvn.spec -------------------------------------------------------------------------------- /SPECS/xpmem/xpmem.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/xpmem/xpmem.spec -------------------------------------------------------------------------------- /SPECS/xz/xz.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/xz/xz.spec -------------------------------------------------------------------------------- /SPECS/yajl/yajl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/yajl/yajl.spec -------------------------------------------------------------------------------- /SPECS/yasm/yasm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/yasm/yasm.spec -------------------------------------------------------------------------------- /SPECS/ypbind/nis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/ypbind/nis.sh -------------------------------------------------------------------------------- /SPECS/zip/zip.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zip/zip.spec -------------------------------------------------------------------------------- /SPECS/zlib/zlib.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zlib/zlib.spec -------------------------------------------------------------------------------- /SPECS/zsh/zprofile.rhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zsh/zprofile.rhs -------------------------------------------------------------------------------- /SPECS/zsh/zsh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zsh/zsh.spec -------------------------------------------------------------------------------- /SPECS/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zsh/zshrc -------------------------------------------------------------------------------- /SPECS/zstd/zstd.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SPECS/zstd/zstd.spec -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /codeql3000.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | Codeql.Enabled: false -------------------------------------------------------------------------------- /toolkit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/.gitignore -------------------------------------------------------------------------------- /toolkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/Makefile -------------------------------------------------------------------------------- /toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/README.md -------------------------------------------------------------------------------- /toolkit/docs/amd/amd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/docs/amd/amd.md -------------------------------------------------------------------------------- /toolkit/imageconfigs/additionalconfigs/sdboot-loader.conf: -------------------------------------------------------------------------------- 1 | timeout 3 2 | -------------------------------------------------------------------------------- /toolkit/imageconfigs/files/osguard/10-repart.conf: -------------------------------------------------------------------------------- 1 | add_dracutmodules+=" systemd-repart " 2 | -------------------------------------------------------------------------------- /toolkit/imageconfigs/packagelists/baremetal-packages.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - dracut-megaraid 3 | -------------------------------------------------------------------------------- /toolkit/imageconfigs/packagelists/marketplace-tools-packages.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - dnf 3 | - wget 4 | -------------------------------------------------------------------------------- /toolkit/imageconfigs/packagelists/selinux.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - selinux-policy 3 | -------------------------------------------------------------------------------- /toolkit/pkgbld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/pkgbld.sh -------------------------------------------------------------------------------- /toolkit/scripts/help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/scripts/help.mk -------------------------------------------------------------------------------- /toolkit/tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/tools/go.mod -------------------------------------------------------------------------------- /toolkit/tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azurelinux/HEAD/toolkit/tools/go.sum -------------------------------------------------------------------------------- /toolkit/tools/imagegen/attendedinstaller/_manualrun/EULA.txt: -------------------------------------------------------------------------------- 1 | SAMPLE EULA -------------------------------------------------------------------------------- /toolkit/tools/imagegen/installutils/testdata/a.txt: -------------------------------------------------------------------------------- 1 | abcdefg 2 | -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/.gitignore: -------------------------------------------------------------------------------- 1 | actual/ 2 | -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/Comment.test: -------------------------------------------------------------------------------- 1 | a b#c #d 2 | e 3 | #f -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/DollarEof.test: -------------------------------------------------------------------------------- 1 | a$ -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/DollarPlus.test: -------------------------------------------------------------------------------- 1 | a$+ -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/EscapedEof.test: -------------------------------------------------------------------------------- 1 | a\ -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteDoubleQuotedString.test: -------------------------------------------------------------------------------- 1 | a" -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteEscape.test: -------------------------------------------------------------------------------- 1 | a"\ -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteQuotedVariableExpansion.test: -------------------------------------------------------------------------------- 1 | "a${B" 2 | -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteSingleQuotedString.test: -------------------------------------------------------------------------------- 1 | a' -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteVariableExpansion.test: -------------------------------------------------------------------------------- 1 | a${B; -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/IncompleteVariableExpansionEof.test: -------------------------------------------------------------------------------- 1 | a${B -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/Metacharacters.test: -------------------------------------------------------------------------------- 1 | {}|&;<> -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/SingleQuotedStringEof.test: -------------------------------------------------------------------------------- 1 | a'b' -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/SpaceEof.test: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/SpaceGrouping.test: -------------------------------------------------------------------------------- 1 | a b c d e -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/Strings.test: -------------------------------------------------------------------------------- 1 | a\$\ "b\"\c"'e'\ 2 | f"\ 3 | g;$H${I}" -------------------------------------------------------------------------------- /toolkit/tools/internal/grub/tokentests/VariableExpansionMissingName.test: -------------------------------------------------------------------------------- 1 | a${} -------------------------------------------------------------------------------- /toolkit/tools/internal/safechroot/testdata/testmount/testfile.txt: -------------------------------------------------------------------------------- 1 | testcontent -------------------------------------------------------------------------------- /toolkit/tools/internal/tdnf/testdata/tdnf.conf: -------------------------------------------------------------------------------- 1 | plugins=1 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/.gitignore: -------------------------------------------------------------------------------- 1 | _tmp/ 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/bootcfgtests/3.0-grub.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/dirs/.gitignore: -------------------------------------------------------------------------------- 1 | !bin/ 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/files/a.txt: -------------------------------------------------------------------------------- 1 | abcdefg 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/files/b.txt: -------------------------------------------------------------------------------- 1 | hijklmnop 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/lists/dracut-fips.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - dracut-fips 3 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/lists/golang.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - golang 3 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/nochange-config.yaml: -------------------------------------------------------------------------------- 1 | os: 2 | -------------------------------------------------------------------------------- /toolkit/tools/pkg/imagecustomizerlib/testdata/testrpms/.gitignore: -------------------------------------------------------------------------------- 1 | /downloadedrpms 2 | --------------------------------------------------------------------------------