* [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation
@ 2023-04-03 14:41 Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 2/3] utils/checkpackagelib: check for Upstream trailers Vincent Fazio
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Vincent Fazio @ 2023-04-03 14:41 UTC (permalink / raw)
To: buildroot; +Cc: Ricardo Martincoski, Thomas De Schampheleire, Vincent Fazio
Previously, the documentation only requested links to upstream commits
when backporting patches.
Based on a mailing list discussion [0], patches should, when possible
and when approriate, provide a link as evidence that the patch has been
submitted upstream.
The motivation is that hopefully the patch gets applied to upstream at
some point reducing the long term maintenance burden within Buildroot.
This also makes future patch review on subsequent package version bumps
more streamlined.
For patches that are unique to BR and do not apply to the upstream
repository, patches should have a comment explaining why they do not
apply upstream.
[0] https://lists.buildroot.org/pipermail/buildroot/2023-March/666000.html
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
---
Changes v1 -> v2:
- Minor updates commit message body
---
docs/manual/patch-policy.txt | 35 ++++++++++++++++++++++++-----------
1 file changed, 24 insertions(+), 11 deletions(-)
diff --git a/docs/manual/patch-policy.txt b/docs/manual/patch-policy.txt
index 063ef984d8..dc35132ecf 100644
--- a/docs/manual/patch-policy.txt
+++ b/docs/manual/patch-policy.txt
@@ -144,24 +144,37 @@ AC_PROG_MAKE_SET
+AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
---------------
-=== Integrating patches found on the Web
+=== Additional patch documentation
-When integrating a patch of which you are not the author, you have to
-add a few things in the header of the patch itself.
+Ideally, all patches should document an upstream patch or patch submission, when
+applicable, via the +Upstream+ trailer.
-Depending on whether the patch has been obtained from the project
-repository itself, or from somewhere on the web, add one of the
-following tags:
+When backporting an upstream patch that has been accepted into mainline, it is
+preferred that the URL to the commit is referenced:
---------------
-Backported from: <some commit id>
+Upstream: <URL to upstream commit>
---------------
-or
+If a new issue is identified in Buildroot and upstream is generally affected by
+the issue (it's not a Buildroot specific issue), users should submit the patch
+upstream and provide a link to that submission when possible:
---------------
-Fetch from: <some url>
+Upstream: <URL to upstream mailing list submission or merge request>
---------------
-It is also sensible to add a few words about any changes to the patch
-that may have been necessary.
+Patches that have been submitted but were denied upstream should note that and
+include comments about why the patch is being used despite the upstream status.
+
+Note: in any of the above scenarios, it is also sensible to add a few words
+about any changes to the patch that may have been necessary.
+
+If a patch does not apply upstream then this should be noted with a comment:
+
+---------------
+Upstream: N/A <additional information about why patch is Buildroot specific>
+---------------
+
+Adding this documentation helps streamline the patch review process during
+package version updates.
\ No newline at end of file
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v2 2/3] utils/checkpackagelib: check for Upstream trailers
2023-04-03 14:41 [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Vincent Fazio
@ 2023-04-03 14:41 ` Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 3/3] .checkpackageignore: add entries missing Upstream trailer Vincent Fazio
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Vincent Fazio @ 2023-04-03 14:41 UTC (permalink / raw)
To: buildroot; +Cc: Ricardo Martincoski, Thomas De Schampheleire, Vincent Fazio
Implement a check-package check for an Upstream: trailer in patches
being applied to packages per a mailing list discussion [0].
No strict formatting checks are implemented for the contents within the
trailer as the needed level of detail will vary patch-to-patch.
Tested with: `./utils/docker-run python3 -m pytest utils/checkpackagelib`
[0] https://lists.buildroot.org/pipermail/buildroot/2023-March/666016.html
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
---
Changes v1 -> v2:
- Minor updates commit message body
- Fix unit tests
---
utils/checkpackagelib/lib_patch.py | 18 ++++++++++++++++++
utils/checkpackagelib/test_lib_patch.py | 22 ++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/utils/checkpackagelib/lib_patch.py b/utils/checkpackagelib/lib_patch.py
index caee36158f..1909d3acd0 100644
--- a/utils/checkpackagelib/lib_patch.py
+++ b/utils/checkpackagelib/lib_patch.py
@@ -61,3 +61,21 @@ class Sob(_CheckFunction):
return ["{}:0: missing Signed-off-by in the header "
"({}#_format_and_licensing_of_the_package_patches)"
.format(self.filename, self.url_to_manual)]
+
+class Upstream(_CheckFunction):
+ UPSTREAM_ENTRY = re.compile(r"^Upstream: .*$")
+
+ def before(self):
+ self.found = False
+
+ def check_line(self, lineno, text):
+ if self.found:
+ return
+ if self.UPSTREAM_ENTRY.search(text):
+ self.found = True
+
+ def after(self):
+ if not self.found:
+ return ["{}:0: missing Upstream in the header "
+ "({}#_additional_patch_documentation)"
+ .format(self.filename, self.url_to_manual)]
diff --git a/utils/checkpackagelib/test_lib_patch.py b/utils/checkpackagelib/test_lib_patch.py
index 3b6fadf38c..f7487ef329 100644
--- a/utils/checkpackagelib/test_lib_patch.py
+++ b/utils/checkpackagelib/test_lib_patch.py
@@ -94,3 +94,25 @@ Sob = [
def test_Sob(testname, filename, string, expected):
warnings = util.check_file(m.Sob, filename, string)
assert warnings == expected
+
+
+Upstream = [
+ ('good',
+ 'patch',
+ 'Upstream: https://some/amazing/patch/submission\n',
+ []),
+ ('empty',
+ 'patch',
+ '',
+ [['patch:0: missing Upstream in the header (url#_additional_patch_documentation)']]),
+ ('bad',
+ 'patch',
+ 'Subject: [PATCH 24/105] text\n',
+ [['patch:0: missing Upstream in the header (url#_additional_patch_documentation)']]),
+ ]
+
+
+@pytest.mark.parametrize('testname,filename,string,expected', Upstream)
+def test_Upstream(testname, filename, string, expected):
+ warnings = util.check_file(m.Upstream, filename, string)
+ assert warnings == expected
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH v2 3/3] .checkpackageignore: add entries missing Upstream trailer
2023-04-03 14:41 [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 2/3] utils/checkpackagelib: check for Upstream trailers Vincent Fazio
@ 2023-04-03 14:41 ` Vincent Fazio
2023-04-15 17:54 ` [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Yann E. MORIN
2023-04-23 9:43 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Vincent Fazio @ 2023-04-03 14:41 UTC (permalink / raw)
To: buildroot; +Cc: Ricardo Martincoski, Thomas De Schampheleire, Vincent Fazio
Due to the sheer number of patches that fail the new Upstream trailer
check (1500+) and the time it would take to make them compliant, for
now, just add them to the ignore list.
Created via `./utils/docker-run make .checkpackageignore`
Signed-off-by: Vincent Fazio <vfazio@gmail.com>
---
Changes v1 -> v2:
- Minor updates commit message body
- Regenerate .checkpackageignore from current master branch
---
.checkpackageignore | 1604 +++++++++++++++++++++++++++++++++++++++++--
1 file changed, 1560 insertions(+), 44 deletions(-)
diff --git a/.checkpackageignore b/.checkpackageignore
index 4faa3a8b8f..9bbc8c5ed9 100644
--- a/.checkpackageignore
+++ b/.checkpackageignore
@@ -1,199 +1,1715 @@
-package/alsamixergui/0001-misc-fixes.patch Sob
+boot/afboot-stm32/0003-Makefile-disable-stack-protector.patch Upstream
+boot/at91bootstrap/0001-eabi-fix.patch Upstream
+boot/at91bootstrap/0002-gcc-4.6.x-ldscript-fix.patch Upstream
+boot/at91bootstrap/0003-u-boot-relocation-fix.patch Upstream
+boot/at91dataflashboot/0001-do-not-install.patch Upstream
+boot/at91dataflashboot/0002-eabi-fixes.patch Upstream
+boot/grub2/0001-Makefile-Make-grub_fstest.pp-depend-on-config-util.h.patch Upstream
+boot/grub2/0002-grub-mkconfig-Restore-umask-for-the-grub.cfg.patch Upstream
+boot/lpc32xxcdl/0001-compiler_name.patch Upstream
+boot/lpc32xxcdl/0002-delete_redundant_files.patch Upstream
+boot/lpc32xxcdl/0003-libnosys_gnu.patch Upstream
+boot/lpc32xxcdl/0004-slashes.patch Upstream
+boot/mv-ddr-marvell/0001-Makefile-disable-stack-protection.patch Upstream
+boot/opensbi/0.9/0001-Makefile-Don-t-specify-mabi-or-march.patch Upstream
+boot/opensbi/0.9/0002-Makefile-unconditionally-disable-SSP.patch Upstream
+boot/optee-os/3.13.0/0001-core-zlib-fix-build-warning-when-_LFS64_LARGEFILE-is.patch Upstream
+boot/syslinux/0001-bios-Fix-alignment-change-with-gcc-5.patch Upstream
+boot/syslinux/0002-Disable-PIE-to-avoid-FTBFS-on-amd64.patch Upstream
+boot/syslinux/0003-memdisk-Force-ld-output-format-to-32-bits.patch Upstream
+boot/syslinux/0004-utils-Use-the-host-toolchain-to-build.patch Upstream
+boot/syslinux/0005-lzo-Use-the-host-toolchain-for-prepcore.patch Upstream
+boot/syslinux/0006-The-VPrint-definition-is-now-part-of-the-exports-of-.patch Upstream
+boot/syslinux/0007-Update-the-longjump-calls-to-fit-the-new-declaration.patch Upstream
+boot/syslinux/0008-efi-wrapper-build-it-with-the-host-toolchain.patch Upstream
+boot/syslinux/0011-extlinux-Use-the-host-toolchain-to-build.patch Upstream
+boot/syslinux/0012-pull-in-sys-sysmacros-h-for-major-minor-makedev.patch Upstream
+boot/syslinux/0013-Fix-build-with-gnu-efi-version-3.0.9.patch Upstream
+boot/syslinux/0014-Fix-build-with-binutils-note-gnu-property-section.patch Upstream
+boot/syslinux/0016-Workaround-multiple-definition-of-symbol-errors.patch Upstream
+boot/syslinux/0017-Replace-builtin-strlen-that-appears-to-get-optimized.patch Upstream
+linux/5.10.162-cip24-rt10/0001-arch-microblaze-mm-init.c-fix-build.patch Upstream
+package/18xx-ti-utils/0001-plt.h-fix-build-with-gcc-10.patch Upstream
+package/4th/0001-avoid-regen-during-install.patch Upstream
+package/ace/0001-ACE-ace-SSL-SSL_Asynch_BIO.cpp-fix-build-with-libres.patch Upstream
+package/ace/0002-ACE-ace-SSL-SSL_Asynch_BIO.cpp-fix-build-with-libres.patch Upstream
+package/acl/0001-Build-with-old-GCC-versions.patch Upstream
+package/acpica/0001-build-do-not-use-Werror.patch Upstream
+package/acpid/0001-dont-use-isfdtype.patch Upstream
+package/alchemy/0001-toolchains-remove-hash-style-management.patch Upstream
+package/alsamixergui/0001-misc-fixes.patch Sob Upstream
+package/alsamixergui/0002-configure-fix-detection-of-fltk-libs.patch Upstream
+package/am335x-pru-package/0001-install-does-not-build.patch Upstream
+package/am33x-cm3/0001-fix-makefile.patch Upstream
+package/am33x-cm3/0002-Makefile-unconditionally-disable-SSP.patch Upstream
+package/am33x-cm3/0003-Makefile-unconditionally-disable-PIE.patch Upstream
+package/am33x-cm3/0004-Makefile-add-fno-builtin.patch Upstream
package/am33x-cm3/S93-am335x-pm-firmware-load Variables
-package/android-tools/0008-Include-sysmacros.h-to-compile-with-glibc-2.28.patch Sob
+package/android-tools/0001-Fix-makefiles-for-out-of-tree-build.patch Upstream
+package/android-tools/0002-Fix-adbd-for-non-Ubuntu-systems.patch Upstream
+package/android-tools/0003-Fix-build-issue-with-uclibc.patch Upstream
+package/android-tools/0004-Fix-build-issue-with-musl.patch Upstream
+package/android-tools/0005-Use-pkgconf-to-get-libs-deps.patch Upstream
+package/android-tools/0006-fix-big-endian-build.patch Upstream
+package/android-tools/0007-include-cdefs-h-when-needed.patch Upstream
+package/android-tools/0008-Include-sysmacros.h-to-compile-with-glibc-2.28.patch Sob Upstream
+package/android-tools/0009-Fix-makefiles-for-out-of-tree-ext4_utils-build.patch Upstream
+package/android-tools/0010-adb-added-patch-for-openssl-1.1.0-compatibility.patch Upstream
+package/aoetools/0001-Change-shell-script-interpreter-from-bin-bash-to-bin.patch Upstream
+package/apache/0001-cross-compile.patch Upstream
+package/apache/0002-nios2_is_not_os2.patch Upstream
package/apache/S50apache Indent Shellcheck Variables
+package/apitrace/0001-thirdparty-libbacktrace-backtrace-h-include-config.h.patch Upstream
+package/apitrace/0002-gltrace-Avoid-__libc_dlsym-and-__libc_dlopen_mode-on-GLIBC-2-34.patch Upstream
+package/apr-util/0001-remove-checkapr.patch Upstream
+package/apr/0001-sys-param-h.patch Upstream
+package/apr/0002-Revert-Backport-r1872164.-Fix-the-name-of-libtool-wh.patch Upstream
+package/apr/0003-Revert-Add-the-ability-to-cross-compile-APR.patch Upstream
+package/arptables/0001-Fix-musl-build-issue.patch Upstream
+package/arptables/0002-libarptc-libarptc_incl.c-fix-build-with-O0.patch Upstream
+package/asterisk/0001-sounds-do-not-download-and-check-sha1s.patch Upstream
+package/asterisk/0002-configure-fix-detection-of-libcrypt.patch Upstream
+package/asterisk/0003-build-ensure-target-directory-for-modules-exists.patch Upstream
+package/asterisk/0004-install-samples-need-the-data-files.patch Upstream
+package/asterisk/0005-configure-fix-detection-of-re-entrant-resolver-funct.patch Upstream
+package/asterisk/0006-main-iostream.c-fix-build-with-libressl.patch Upstream
+package/at-spi2-atk/0001-meson-add-tests-option.patch Upstream
+package/at/0001-Makefile.in-fix-make-install-for-non-root-don-t-stri.patch Upstream
package/at/S99at Indent Variables
+package/atest/0001-seq.h-fix-build-with-gcc-10.patch Upstream
+package/attr/0001-build-with-older-GCCs.patch Upstream
package/audit/S02auditd Shellcheck Variables
+package/aufs-util/0001-remove-user-settings.patch Upstream
+package/aufs-util/0002-no-check-ver.patch Upstream
+package/aufs-util/0003-no-strip-lib.patch Upstream
+package/aumix/0001-fix-incorrect-makefile-am.patch Upstream
+package/autoconf/0001-dont-add-dirty-to-version.patch Upstream
+package/automake/0001-noman.patch Upstream
+package/avahi/0001-Fix-NULL-pointer-crashes-from-175.patch Upstream
package/avahi/S05avahi-setup.sh Indent Variables
package/avahi/S50avahi-daemon Indent Variables
package/babeld/S50babeld Indent Shellcheck Variables
+package/babeltrace2/0001-configure-simplify-warning-flags-detection.patch Upstream
+package/bandwidthd/0001-src-bandwidthd.h-fix-build-with-gcc-10.patch Upstream
+package/bash/0001-input.h-add-missing-include-on-stdio.h.patch Upstream
+package/bash/0002-parse.y-fix-compilation-for-non-multibyte-builds.patch Upstream
+package/bash/0003-configure-invert-condition-for-strtoimax-builtin.patch Upstream
+package/bayer2rgb-neon/0001-add-some-_always_inline_-annotations.patch Upstream
+package/bc/0001-bc-use-MAKEINFO-variable-for-docs.patch Upstream
+package/bc/0002-notice-read-and-write-errors-on-input-and-output.patch Upstream
+package/bc/0003-dc-fix-exit-code-of-q-command.patch Upstream
+package/bc/0004-no-gen-libmath.patch Upstream
+package/bcache-tools/0001-Don-t-inline-crc64-for-gcc-5-compatability.patch Upstream
+package/bctoolbox/0001-Fix-Libs.private-flags-for-mbedtls.patch Upstream
+package/bcusdk/0001-fd_set-requires-inclusion-of-sys-select.h.patch Upstream
+package/bcusdk/0002-eibd-fix-endless-recursion-when-using-USB-backends.patch Upstream
+package/bearssl/0001-Fix-missing-objdir-dependency.patch Upstream
+package/beecrypt/0001-cppglue.cxx-cplusplus-only.patch Upstream
+package/beecrypt/0002-build-system.patch Upstream
+package/beecrypt/0003-don-t-check-for-cplusplus-compiler.patch Upstream
+package/benejson/0001-c-std.patch Upstream
+package/benejson/0002-Use-print-as-a-function-for-Py3-compatibility.patch Upstream
+package/bento4/0001-Add-support-for-cmake-install.patch Upstream
+package/bento4/0002-Add-additional-methods-funtions-and-passing-poolid.patch Upstream
+package/bento4/0003-Backport-Smmothstream-changes.patch Upstream
+package/bento4/0004-more-SPS-parameters.patch Upstream
+package/bento4/0005-AVC-extract-VUI-values-from-SPS.patch Upstream
+package/bento4/0006-Implement-SPS-Frame-parser.patch Upstream
+package/bento4/0007-Fix-segfault-when-AP4_Sample-s-seek.patch Upstream
+package/bento4/0008-Hack-HBO.patch Upstream
+package/bento4/0009-Android-32-ftello-fix.patch Upstream
+package/bento4/0010-Dazn-sample-duration-workaround.patch Upstream
+package/bento4/0011-Add-argument-to-reuse-single-sample-decrypter.patch Upstream
+package/bento4/0012-Static-ReadGolomb-SignedGolomb.patch Upstream
+package/bento4/0013-Add-GetChannels-method.patch Upstream
+package/bento4/0014-Implemented-GetSampleIndexForTimeStamp-GetNearestSyn.patch Upstream
+package/bento4/0015-Avoid-set-next-fragment-position.patch Upstream
+package/bento4/0016-Fix-segfault-in-AP4_LinearReader-ProcessMoof.patch Upstream
+package/berkeleydb/0001-cwd-db_config.patch Upstream
+package/berkeleydb/0002-atomic_compare_exchange.patch Upstream
+package/bind/0001-cross.patch Upstream
package/bind/S81named Indent Shellcheck Variables
+package/binutils/2.37/0001-sh-conf.patch Upstream
+package/binutils/2.37/0002-poison-system-directories.patch Upstream
+package/binutils/2.37/0003-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch Upstream
+package/binutils/2.37/0004-or1k-fix-pc-relative-relocation-against-dynamic-on-P.patch Upstream
+package/binutils/2.37/0005-or1k-Avoid-R_OR1K_GOT16-signed-overflow-by-using-spe.patch Upstream
+package/binutils/2.37/0006-bfd-Close-the-file-descriptor-if-there-is-no-archive.patch Upstream
+package/binutils/2.37/0007-i386-Allow-GOT32-relocations-against-ABS-symbols.patch Upstream
+package/binutils/2.38/0001-sh-conf.patch Upstream
+package/binutils/2.38/0002-poison-system-directories.patch Upstream
+package/binutils/2.38/0003-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch Upstream
+package/binutils/2.38/0004-or1k-Avoid-R_OR1K_GOT16-signed-overflow-by-using-spe.patch Upstream
+package/binutils/2.38/0005-binutils-2.38-vs.-ppc32-linux-kernel.patch Upstream
+package/binutils/2.39/0001-sh-conf.patch Upstream
+package/binutils/2.39/0002-poison-system-directories.patch Upstream
+package/binutils/2.39/0003-bfd-elf32-or1k-fix-building-with-gcc-version-5.patch Upstream
+package/binutils/arc-2020.09-release/0001-poison-system-directories.patch Upstream
+package/bird/0001-configure.ac-fix-build-with-autoconf-2.70.patch Upstream
+package/bitcoin/0001-src-randomenv.cpp-fix-build-on-uclibc.patch Upstream
+package/bmx7/0001-Fix-schedule.c-378-36-error-SIOCGSTAMP-undeclared.patch Upstream
+package/bmx7/0002-Fix-linking-error.patch Upstream
+package/bmx7/0003-Reorder-includes-to-avoid-ethhdr-collision.patch Upstream
package/boinc/S99boinc-client Indent Shellcheck Variables
+package/bootgen/0001-Fix-build-on-machines-with-modern-flex.patch Upstream
+package/botan/0001-Add-superh-alias-needed-by-Debian.patch Upstream
+package/botan/0002-src-build-data-arch-superh.txt-add-sh4-eb-aeb.patch Upstream
package/brickd/S70brickd Indent Shellcheck Variables
+package/bridge-utils/0001-fix-build-on-musl.patch Upstream
+package/brltty/0001-Fix-linking-error-on-mips64el.patch Upstream
+package/brltty/0002-shell-prologue-runProgramTerminationCommands-used-a-.patch Upstream
package/brltty/S10brltty Indent Shellcheck Variables
+package/brotli/0001-CMake-Allow-using-BUILD_SHARED_LIBS-to-choose-static.patch Upstream
+package/brotli/0002-Revert-Add-runtime-linker-path-to-pkg-config-files.patch Upstream
+package/bsdiff/0001-Add-missing-header-for-u_char.patch Upstream
+package/bustle/0001-Makefile-fix-pcap-config-call.patch Upstream
+package/busybox/0001-networking-libiproute-use-linux-if_packet.h-instead-.patch Upstream
+package/busybox/0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch Upstream
+package/busybox/0003-libbb-sockaddr2str-ensure-only-printable-characters-.patch Upstream
+package/busybox/0004-nslookup-sanitize-all-printed-strings-with-printable.patch Upstream
package/busybox/S02sysctl Variables
package/busybox/S10mdev ConsecutiveEmptyLines Indent Shellcheck
package/busybox/S15watchdog Indent Variables
package/busybox/S50telnet Indent Shellcheck Variables
package/busybox/udhcpc.script Shellcheck
+package/bzip2/0001-build-objects-twice.patch Upstream
+package/bzip2/0002-improve-build-system.patch Upstream
+package/c-icap/0001-Required-fixes-to-compile-and-run-under-cygwin.patch Upstream
package/c-icap/S96cicap Indent Shellcheck Variables
+package/ca-certificates/0001-mozilla-certdata2pem.py-make-cryptography-module-opt.patch Upstream
+package/cache-calibrator/0001-Fix-conflicting-round-function.patch Upstream
+package/cage/0001-Upgrade-to-wlroots-0.15.patch Upstream
+package/cairo/0001-fix-nofork-build.patch Upstream
+package/cairo/0002-ft-Use-FT_Done_MM_Var-instead-of-free-when-available-in-cairo_ft_apply_variation.patch Upstream
+package/cairo/0003-_arc_max_angle_for_tolerance_normalized-fix-infinite.patch Upstream
+package/cairo/0004-Fix-mask-usage-in-image-compositor.patch Upstream
+package/caps/0001-Fix-stdint-types-with-musl.patch Upstream
+package/catatonit/0002-fix-build-with-kernel-5.9.patch Upstream
+package/cdrkit/0001-no-rcmd.patch Upstream
+package/cdrkit/0002-define-__THROW-to-avoid-build-issue-with-musl.patch Upstream
+package/cdrkit/0003-Add-extern-to-char-outfile-declaration-to-fix-build-.patch Upstream
package/cfm/S65cfm Indent Variables
+package/cgic/0001-prepare_makefile.patch Upstream
+package/cgic/0002-file_enhancements.patch Upstream
+package/cgic/0003-restore-cgiFormFileGetTempfileName.patch Upstream
package/cgroupfs-mount/S30cgroupfs Indent Shellcheck Variables
+package/chipmunk/0001-Fix-build-failure-on-musl.patch Upstream
+package/chocolate-doom/0001-Remove-redundant-demoextend-definition.patch Upstream
package/chrony/S49chrony Indent Shellcheck Variables
+package/clamav/0001-mbox-do-not-use-backtrace-if-using-uClibc-without-ba.patch Upstream
+package/clang/0001-lib-Driver-ToolChains-Gnu-Use-GCC_INSTALL_PREFIX-in-.patch Upstream
+package/cmake/0001-rename-cmake-rootfile.patch Upstream
+package/cmocka/0001-Don-t-redefine-uintptr_t.patch Upstream
+package/collectd/0001-src-netlink.c-remove-REG_NOERROR.patch Upstream
+package/connman/0001-gweb-Fix-OOB-write-in-received_data.patch Upstream
+package/connman/0002-wispr-Add-reference-counter-to-portal-context.patch Upstream
+package/connman/0003-wispr-Update-portal-context-references.patch Upstream
package/connman/S45connman Variables
+package/copas/0001-Do-not-load-coxpcall-for-LuaJIT.patch Upstream
package/coremark-pro/coremark-pro.sh.in Shellcheck
-package/curlftpfs/0001-fix-CURLOPT_INFILESIZE.patch Sob
-package/curlftpfs/0002-free_ftpfs_file-memleak-fix.patch Sob
-package/curlftpfs/0003-nocache-memleak-fix.patch Sob
+package/cpio/0001-Minor-fix.patch Upstream
+package/cpio/0002-Rewrite-dynamic-string-support.patch Upstream
+package/cpio/0003-Fix-previous-commit.patch Upstream
+package/cppdb/0001-mysql-library-suffix.patch Upstream
+package/cpulimit/0001-Fix-crash-and-compiler-warnings.patch Upstream
+package/cpulimit/0002-Remove-sys-sysctl.h-and-add-missing-libgen.h-include.patch Upstream
+package/cpulimit/0003-Fix-an-infrequent-crash.patch Upstream
+package/cpulimit/0004-Remove-procfs.h-inclusion.patch Upstream
+package/crda/0001-crda-support-python-3-in-utils-key2pub.py.patch Upstream
+package/crda/0002-drop-ldconfig-call.patch Upstream
+package/crda/0003-drop-werror.patch Upstream
+package/crun/0001-src-crun.c-fix-build-without-dlfcn.h.patch Upstream
+package/ctorrent/0001-fix-musl-build.patch Upstream
+package/cups/0001-Remove-man-from-BUILDDIRS-in-configure.patch Upstream
+package/cups/0002-Do-not-use-genstrings.patch Upstream
+package/cups/0003-Sanitize-the-installation-process.patch Upstream
+package/cups/0004-Remove-PIE-flags-from-the-build.patch Upstream
+package/curlftpfs/0001-fix-CURLOPT_INFILESIZE.patch Sob Upstream
+package/curlftpfs/0002-free_ftpfs_file-memleak-fix.patch Sob Upstream
+package/curlftpfs/0003-nocache-memleak-fix.patch Sob Upstream
+package/curlftpfs/0004-fix-musl-build-off-t.patch Upstream
+package/cutelyst/0001-server-CMakeLists.txt-don-t-override-CMAKE_EXE_LINKE.patch Upstream
+package/cwiid/0001-wmdemo-fix-linking-by-adding-the-missing-lbluetooth-.patch Upstream
+package/cwiid/0002-configure-make-wmgui-build-optional.patch Upstream
+package/daemon/0001-daemon-fix-build-with-musl-libc-again.patch Upstream
+package/daemon/0002-Fix-build-with-NDEBUG-defined.patch Upstream
+package/dahdi-linux/0001-drivers-dahdi-Kbuild-fix-HOTPLUG_FIRMWARE-definition.patch Upstream
+package/dahdi-linux/0002-fix-build-with-32-bits-kernel.patch Upstream
+package/dahdi-linux/0003-Fixed-compilation-issues-on-linux-kernel-5-18-0.patch Upstream
+package/dahdi-linux/0004-next-fix-kernel-6-1-build.patch Upstream
+package/dahdi-tools/0001-no-build-docs.patch Upstream
+package/dahdi-tools/0002-no-perl-manpages.patch Upstream
+package/dante/0001-fix-sparc-compile.patch Upstream
+package/dante/0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch Upstream
package/dante/S50dante Indent Shellcheck Variables
+package/daq/0001-Fix-build-against-the-musl-C-library.patch Upstream
+package/daq/0002-parallel-grammar.patch Upstream
package/darkhttpd/S50darkhttpd Indent Shellcheck Variables
+package/davfs2/0001-src-Makefile.am-do-not-hardcode-fstack-protector-str.patch Upstream
+package/dbus-cpp/0001-gcc4.7.patch Upstream
+package/dbus-cpp/0002-cross-compile-tools.patch Upstream
+package/dbus-cpp/0003-src-pipe.c-fix-build-error-with-gcc-7.x.patch Upstream
package/dbus/S30dbus Indent Shellcheck TrailingSpace Variables
+package/dc3dd/0001-no_man.patch Upstream
+package/dc3dd/0002-fix-autoreconf.patch Upstream
+package/dc3dd/0003-fix-for-glibc-2.28.patch Upstream
+package/dcron/0001-main.c-add-newline-to-logfile-openning-error-message.patch Upstream
package/dcron/S90dcron Variables
package/dhcp/S80dhcp-relay Shellcheck Variables
package/dhcp/S80dhcp-server Shellcheck Variables
package/dhcp/dhclient-script Shellcheck TrailingSpace
package/dhcpcd/S41dhcpcd Indent Variables
-package/dhrystone/0001-cmdline-nruns.patch Sob
-package/dhrystone/0002-HZ.patch Sob
-package/dhrystone/0003-exit.patch Sob
-package/dhrystone/0004-headers.patch Sob
-package/dhrystone/0005-prototypes.patch Sob
-package/directfb-examples/0001-remove-bzero.patch Sob
+package/dhcpdump/0001-use-non-bsd-structures.patch Upstream
+package/dhrystone/0001-cmdline-nruns.patch Sob Upstream
+package/dhrystone/0002-HZ.patch Sob Upstream
+package/dhrystone/0003-exit.patch Sob Upstream
+package/dhrystone/0004-headers.patch Sob Upstream
+package/dhrystone/0005-prototypes.patch Sob Upstream
+package/dht/0001-cmake.patch Upstream
+package/diffutils/0001-m4-stack-direction.m4-fix-build-on-microblazeel.patch Upstream
+package/diffutils/0002-sigsegv-fix-build-on-or1k.patch Upstream
+package/diffutils/0003-sys_random-port-better-to-uClibc-1-0-35.patch Upstream
+package/diffutils/0004-sigsegv-Fix-compilation-error-on-arceb-CPUs.patch Upstream
+package/diffutils/0005-sigsegv-Add-support-for-Linux-PowerPC-32-bit-with-mu.patch Upstream
+package/dillo/0001-usr-local-include.patch Upstream
+package/dillo/0002-Fix-openssl-detection.patch Upstream
+package/dillo/0004-fix-build-with-gcc-10.patch Upstream
+package/directfb-examples/0001-remove-bzero.patch Sob Upstream
+package/directfb/0001-fix-missing-davinci-voodoo-header.patch Upstream
+package/directfb/0002-imlib2-config.patch Upstream
+package/directfb/0003-setregion-lock.patch Upstream
+package/directfb/0004-use-gcc-link.patch Upstream
+package/directfb/0005-add-missing-idivine-header.patch Upstream
+package/directfb/0006-fix-client-gfx_state-initialisation.patch Upstream
+package/dmalloc/0001-configure-fix-build-on-mips.patch Upstream
+package/dmalloc/0003-configure-allow-overriding-some-tests.patch Upstream
+package/dmalloc/0004-Makefile-use-the-configure-detected-or-user-supplied.patch Upstream
+package/dmalloc/0005-configure-use-LD-instead-of-hard-coding-ld.patch Upstream
+package/dmraid/0001-fix-compilation-under-musl.patch Upstream
package/dmraid/S20dmraid Variables
package/dnsmasq/S80dnsmasq Shellcheck Variables
package/docker-engine/S60dockerd Indent Shellcheck Variables
+package/docopt-cpp/0001-only-build-one-target-use-BUILD_SHARED_LIBS-where-appropriate.patch Upstream
+package/domoticz/0001-hardware-EnOceanRawValue.h-include-stdarg.h.patch Upstream
package/domoticz/S99domoticz Shellcheck
+package/dovecot/0001-auth-Fix-handling-passdbs-with-identical-driver-args.patch Upstream
+package/dracut/0001-dracut.sh-don-t-unset-LD_PRELOAD.patch Upstream
package/dracut/merged-usr-module-setup.sh Shellcheck
package/dropbear/S50dropbear Indent Shellcheck Variables
+package/dt/0001-adjust-os-symlink.patch Upstream
+package/dt/0002-dt-default-source-define.patch Upstream
+package/dtc/0001-Fix-include-guards-for-older-kernel-u-boot-sources.patch Upstream
+package/duma/0001-fix-cross-compilation.patch Upstream
+package/duma/0002-no-tests.patch Upstream
+package/duma/0003-fix-C++14.patch Upstream
+package/duma/0004-Fix-build-with-latest-glibc.patch Upstream
+package/dvb-apps/0001-Fix-generate-keynames.patch Upstream
+package/dvb-apps/0002-Fix-compiler-warning-flags.patch Upstream
+package/dvb-apps/0003-handle-static-shared-only-build.patch Upstream
+package/dvb-apps/0004-Makefile-remove-test.patch Upstream
+package/dvb-apps/0005-utils-fix-build-with-kernel-headers-4.14.patch Upstream
+package/dvb-apps/0006-fix-glibc-2.31.patch Upstream
+package/dvblast/0001-missing-lm.patch Upstream
+package/dvblast/0002-fix-int-types.patch Upstream
+package/dvbsnoop/0001-musl-types-h.patch Upstream
+package/dvdrw-tools/0001-limits.h.patch Upstream
+package/dvdrw-tools/0002-Include-sysmacros.h-to-compile-with-newer-gcc.patch Upstream
+package/e2fsprogs/0001-libext2fs-add-sanity-check-to-extent-manipulation.patch Upstream
+package/earlyoom/0001-main.c-fix-build-with-kernel-4.3.patch Upstream
package/earlyoom/S02earlyoom Indent Shellcheck
+package/ebtables/0001-replace-ebtables-save-perl-script-with-bash.patch Upstream
+package/ebtables/0002-ebtables.h-restore-KERNEL_64_USERSPACE_32-checks.patch Upstream
+package/ebtables/0003-configure.ac-add-option-enable-kernel-64-userland-32.patch Upstream
+package/ecryptfs-utils/0001-musl.patch Upstream
+package/ecryptfs-utils/0002-openssl110.patch Upstream
+package/ecryptfs-utils/0003-fix-parallel-build-issue.patch Upstream
+package/efivar/0001-Allow-build-with-uClibc.patch Upstream
+package/efivar/0002-gcc.specs-drop-Werror.patch Upstream
+package/efivar/0003-efivar-isolate-makeguids-host-tool-build.patch Upstream
+package/efivar/0004-efisecdb-fix-build-with-musl-libc.patch Upstream
+package/efl/0001-ecore_evas-engines-drm-meson.build-use-gl_deps-as-en.patch Upstream
+package/efl/0002-ecore_evas-engines-drm-meson.build-fix-gl_drm-includ.patch Upstream
+package/efl/0003-ecore_fb-fix-build-with-tslib.patch Upstream
+package/eigen/0001-Adds-new-CMake-Options-for-controlling-build-components.patch Upstream
+package/ejabberd/0001-Makefile.in-do-not-download-or-compile-dependencies.patch Upstream
+package/ejabberd/0002-fix-ejabberdctl.patch Upstream
+package/ejabberd/0003-correct-includes.patch Upstream
package/ejabberd/S50ejabberd Indent Shellcheck Variables
package/ejabberd/check-erlang-lib Shellcheck
+package/elf2flt/0001-elf2flt-handle-binutils-2.34.patch Upstream
+package/elf2flt/0002-elf2flt.ld-reinstate-32-byte-alignment-for-.data-sec.patch Upstream
+package/elf2flt/0003-elf2flt-add-riscv-64-bits-support.patch Upstream
+package/elf2flt/0004-elf2flt-create-a-common-helper-function.patch Upstream
+package/elf2flt/0005-elf2flt-fix-fatal-error-regression-on-m68k-xtensa-ri.patch Upstream
+package/elf2flt/0006-elf2flt-xtensa-fix-text-relocations.patch Upstream
+package/elftosb/0001-fixes-includes.patch Upstream
+package/elftosb/0002-force-cxx-compiler.patch Upstream
+package/elfutils/0001-Add-a-enable-disable-progs-configure-option.patch Upstream
+package/elfutils/0002-Really-make-Werror-conditional-to-BUILD_WERROR.patch Upstream
+package/empty/0001-respect-LDFLAGS.patch Upstream
+package/erlang-p1-sip/0001-correct-include.patch Upstream
+package/erlang-p1-xmpp/0001-fix-includes.patch Upstream
+package/erlang-rebar/0001-src-rebar_port_compiler-add-fPIC-to-LDFLAGS-by-defau.patch Upstream
+package/erlang/0001-erts-ethread-instruct-libatomic_ops-we-do-require-CA.patch Upstream
+package/erlang/0002-erts-emulator-reorder-inclued-headers-paths.patch Upstream
+package/erlang/0003-crypto-Fixes-for-LibreSSL-3-5-0.patch Upstream
+package/espeak/0001-Fix-build-of-shared-library-on-architectures-needing.patch Upstream
+package/espeak/0002-tr_languages-cast-string_ordinal-init-values.patch Upstream
+package/eudev/0001-Only-use-pragma-for-ignoring-diagnostics-if-.patch Upstream
package/eudev/S10udev ConsecutiveEmptyLines Indent Shellcheck Variables
+package/evemu/0001-Include-limits.h-for-PATH_MAX.patch Upstream
+package/evemu/0002-evemu-Update-struct-input_event.patch Upstream
+package/evemu/0003-src-evemu.c-fix-build-with-kernels-4.16.patch Upstream
+package/evemu/0004-src-evemu.c-fix-build-with-kernels-4.16.patch Upstream
+package/exim/0001-Build-buildconfig-for-the-host.patch Upstream
+package/exim/0002-Don-t-make-backup-copies-of-installed-files.patch Upstream
+package/exim/0003-Skip-version-check-and-symlink-installation.patch Upstream
+package/exim/0004-exim_lock-fix-lstat-related-build-errors.patch Upstream
+package/exim/0005-sieve-fix-build-errors.patch Upstream
+package/exim/0006-Fix-regex-n-use-after-free.-Bug-2915.patch Upstream
+package/exim/0007-Fix-non-WITH_CONTENT_SCAN-build.patch Upstream
+package/exim/0008-Fix-non-WITH_CONTENT_SCAN-build-2.patch Upstream
+package/exim/0009-Fix-non-WITH_CONTENT_SCAN-build-3.patch Upstream
package/exim/S86exim Indent Variables
+package/expect/0001-enable-cross-compilation.patch Upstream
+package/expect/0002-allow-tcl-build-directory.patch Upstream
+package/f2fs-tools/0001-configure-ac-fix-cross-compilation.patch Upstream
+package/f2fs-tools/0002-f2fs-tools-fix-build-error-on-lz4-1-9-4.patch Upstream
+package/faifa/0001-sha2.c-explicitly-include-endian.h-for-BYTE_ORDER-ma.patch Upstream
+package/faifa/0002-hpav_cfg.c-do-not-include-linux-if_ether.h-for-musl-.patch Upstream
+package/faifa/0003-Makefile.in-fix-asbolute-symlink-of-libfaifa.so.patch Upstream
package/fail2ban/S60fail2ban Shellcheck Variables
package/fakedate/fakedate Shellcheck
-package/fbv/0001-cross.patch Sob
-package/fbv/0002-fix-24bpp-support-on-big-endian.patch Sob
-package/fbv/0005-include.patch Sob
+package/falcosecurity-libs/0001-cmake-Permit-setting-GRPC_CPP_PLUGIN.patch Upstream
+package/fbgrab/0001-fix-static-build.patch Upstream
+package/fbset/0001-Fix-musl-compile.patch Upstream
+package/fbterm/0001-fbio.cpp-improxy.cpp-fbterm.cpp-fix-musl-compile.patch Upstream
+package/fbterm/0002-mouse.cpp-fix-musl-compile.patch Upstream
+package/fbterm/0003-C++11-compliance.patch Upstream
+package/fbterm/0004-iconv.patch Upstream
+package/fbv/0001-cross.patch Sob Upstream
+package/fbv/0002-fix-24bpp-support-on-big-endian.patch Sob Upstream
+package/fbv/0003-fix-bgr555.patch Upstream
+package/fbv/0004-giflib.patch Upstream
+package/fbv/0005-include.patch Sob Upstream
+package/fbv/0006-libpng15.patch Upstream
+package/fbv/0007-gif.c-fic-build-with-gcc-10.patch Upstream
+package/fcgiwrap/0001-use-LIBS-from-configure.patch Upstream
+package/fcgiwrap/0002-link-with-libsystemd-instead-of-libsystemd-daemon.patch Upstream
+package/ffmpeg/0001-swscale-x86-yuv2rgb-Fix-build-without-SSSE3.patch Upstream
+package/ffmpeg/0002-avcodec-vaapi_h264-skip-decode-if-pic-has-no-slices.patch Upstream
+package/ffmpeg/0003-libavutil-Fix-mips-build.patch Upstream
+package/ffmpeg/0004-configure-add-extralibs-to-extralibs_xxx.patch Upstream
+package/ficl/0001-fix-Makefile.patch Upstream
+package/ficl/0002-Makefile.linux-pass-LDFLAGS.patch Upstream
+package/file/0001-src-file.c-fix-build-without-wide-support.patch Upstream
+package/flatbuffers/0001-include-flatbuffers-base.h-fix-build-on-musl.patch Upstream
+package/flex/0001-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch Upstream
+package/flex/0002-build-make-it-possible-to-disable-the-build-of-the-f.patch Upstream
+package/flex/0003-build-make-it-possible-to-disable-the-build-of-the-d.patch Upstream
+package/flite/0001-fix-alsa-static.patch Upstream
+package/fltk/0001-disable-tests.patch Upstream
+package/fluent-bit/0001-lib-cfl-fixup-static_assert.patch Upstream
+package/fluent-bit/0002-lib-c-ares-fixup-static_assert.patch Upstream
+package/fluent-bit/0003-fix-build-without-C.patch Upstream
+package/fluxbox/0001-fixes-bug-1138.patch Upstream
+package/fontconfig/0001-Fix-the-build-issue-with-enable-static.patch Upstream
+package/fontconfig/0002-add-pthread-as-a-dependency-of-a-static-lib.patch Upstream
+package/freeipmi/0001-add-disable-doc.patch Upstream
+package/freeradius-client/0001-fix-for-nettle.patch Upstream
+package/freerdp/0001-Fix-variable-declaration-in-loop.patch Upstream
+package/freerdp/0002-Fixed-variable-declaration-in-loop.patch Upstream
+package/freerdp/0003-winpr-include-winpr-file.h-fix-build-on-uclibc.patch Upstream
+package/freerdp/0004-Fix-8702-Disable-sha3-and-shake-hashes-for-libressl.patch Upstream
+package/freescale-imx/imx-kobs/0001-Fix-musl-build.patch Upstream
+package/freescale-imx/imx-kobs/0002-Fix-build-for-recent-toolchains.patch Upstream
package/freescale-imx/imx-uuc/S80imx-uuc Indent Shellcheck Variables
+package/freescale-imx/imx-vpu-hantro/0001-Fix-ion.h-header-inclusion-to-be-standard.patch Upstream
+package/freescale-imx/imx-vpu-hantro/0002-Fix-build-with-uclibc-toolchain.patch Upstream
+package/freescale-imx/imx-vpu-hantro/0003-Fix-Linux-kernel-version-header.patch Upstream
+package/freeswitch/0001-libs-srtp-crypto-hash-hmac_ossl.c-fix-build-with-lib.patch Upstream
package/frr/S50frr Shellcheck
-package/gamin/0002-no-const-return.patch Sob
-package/gcc/arc-2020.09-release/0002-libsanitizer-Remove-cyclades-from-libsanitizer.patch Sob
-package/genromfs/0001-build-system.patch Sob
+package/fstrcmp/0001-disable-rpath.patch Upstream
+package/ftop/0001-overflow.patch Upstream
+package/fwts/0001-build-do-not-use-Werror.patch Upstream
+package/fxdiv/0001-CMake-don-t-enable-CXX-unless-building-tests-benchma.patch Upstream
+package/fxload/0001-fix-static-build.patch Upstream
+package/gamin/0001-no-abstract-sockets.patch Upstream
+package/gamin/0002-no-const-return.patch Sob Upstream
+package/gamin/0003-fix-missing-PTHREAD_MUTEX_RECURSIVE_NP.patch Upstream
+package/gawk/0001-Fix-a-bug-with-Node_elem_new.patch Upstream
+package/gcc/10.4.0/0001-Revert-re-PR-target-92095-internal-error-with-O1-mcp.patch Upstream
+package/gcc/10.4.0/0002-or1k-Add-mcmodel-option-to-handle-large-GOTs.patch Upstream
+package/gcc/10.4.0/0003-or1k-Use-cmodel-large-when-building-crtstuff.patch Upstream
+package/gcc/10.4.0/0004-gcc-define-_REENTRANT-for-OpenRISC-when-pthread-is-p.patch Upstream
+package/gcc/10.4.0/0005-disable-split-stack-for-non-thread-builds.patch Upstream
+package/gcc/11.3.0/0001-or1k-Add-mcmodel-option-to-handle-large-GOTs.patch Upstream
+package/gcc/11.3.0/0002-or1k-Use-cmodel-large-when-building-crtstuff.patch Upstream
+package/gcc/11.3.0/0003-gcc-define-_REENTRANT-for-OpenRISC-when-pthread-is-p.patch Upstream
+package/gcc/11.3.0/0004-disable-split-stack-for-non-thread-builds.patch Upstream
+package/gcc/11.3.0/0005-rs6000-Improve-.machine.patch Upstream
+package/gcc/11.3.0/0006-rs6000-Do-not-use-rs6000_cpu-for-.machine-ppc-and-pp.patch Upstream
+package/gcc/12.2.0/0001-disable-split-stack-for-non-thread-builds.patch Upstream
+package/gcc/12.2.0/0002-fix-condvar.patch Upstream
+package/gcc/8.4.0/0001-xtensa-fix-PR-target-91880.patch Upstream
+package/gcc/8.4.0/0002-Revert-re-PR-target-92095-internal-error-with-O1-mcp.patch Upstream
+package/gcc/8.4.0/0003-libsanitizer-Remove-cyclades-from-libsanitizer.patch Upstream
+package/gcc/8.4.0/0004-disable-split-stack-for-non-thread-builds.patch Upstream
+package/gcc/arc-2020.09-release/0001-arc-Refurbish-adc-sbc-patterns.patch Upstream
+package/gcc/arc-2020.09-release/0002-libsanitizer-Remove-cyclades-from-libsanitizer.patch Sob Upstream
+package/gcc/arc-2020.09-release/0100-uclibc-conf.patch Upstream
+package/gcr/0001-meson-Fix-unknown-kw-argument-in-gnome.generate_gir.patch Upstream
+package/gdal/0001-fix-uclibc-build-without-NPTL.patch Upstream
+package/gdb/10.2/0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch Upstream
+package/gdb/10.2/0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch Upstream
+package/gdb/10.2/0003-use-asm-sgidefs.h.patch Upstream
+package/gdb/10.2/0004-gdbserver-fix-build-for-m68k.patch Upstream
+package/gdb/10.2/0005-nat-fork-inferior-include-linux-ptrace.h.patch Upstream
+package/gdb/10.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch Upstream
+package/gdb/10.2/0007-fix-musl-build-on-riscv.patch Upstream
+package/gdb/10.2/0008-gdbserver-Makefile.in-fix-NLS-build.patch Upstream
+package/gdb/10.2/0009-gdb-Fix-native-build-on-xtensa.patch Upstream
+package/gdb/11.2/0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch Upstream
+package/gdb/11.2/0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch Upstream
+package/gdb/11.2/0003-use-asm-sgidefs.h.patch Upstream
+package/gdb/11.2/0004-gdbserver-fix-build-for-m68k.patch Upstream
+package/gdb/11.2/0005-nat-fork-inferior-include-linux-ptrace.h.patch Upstream
+package/gdb/11.2/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch Upstream
+package/gdb/11.2/0007-fix-musl-build-on-riscv.patch Upstream
+package/gdb/11.2/0008-gdbserver-Makefile.in-fix-NLS-build.patch Upstream
+package/gdb/11.2/0009-gdb-Fix-native-build-on-xtensa.patch Upstream
+package/gdb/12.1/0001-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch Upstream
+package/gdb/12.1/0002-sh-ptrace-Define-pt_-dsp-regs-uapi_pt_-dsp-regs-on-G.patch Upstream
+package/gdb/12.1/0003-use-asm-sgidefs.h.patch Upstream
+package/gdb/12.1/0004-gdbserver-fix-build-for-m68k.patch Upstream
+package/gdb/12.1/0005-nat-fork-inferior-include-linux-ptrace.h.patch Upstream
+package/gdb/12.1/0006-Fix-getrandom-compile-for-uclibc-v1.0.35.patch Upstream
+package/gdb/12.1/0007-fix-musl-build-on-riscv.patch Upstream
+package/gdb/12.1/0008-gdbserver-Makefile.in-fix-NLS-build.patch Upstream
+package/gdb/12.1/0009-gdb-Fix-native-build-on-xtensa.patch Upstream
+package/gengetopt/0001-configure.ac-add-disable-doc-option.patch Upstream
+package/genpart/0001-fix-return-code.patch Upstream
+package/genromfs/0001-build-system.patch Sob Upstream
+package/gensio/0001-Fix-missing-EVP_PKEY_ED25519-build-error-on-libressl.patch Upstream
+package/gerbera/0001-Fix-build-with-fmt-9-0.patch Upstream
package/gerbera/S99gerbera Indent
+package/gettext-gnu/0001-error_print_progname.patch Upstream
+package/gettext-gnu/0002-restore-the-ability-to-buld-gettext-tools-seperately-part1.patch Upstream
+package/giblib/0001-fix-imlib2-detection.patch Upstream
+package/giflib/0001-Makefile-add-targets-to-manage-static-building.patch Upstream
+package/git-crypt/0001-fix-build-with-libressl-3.5.0.patch Upstream
+package/gli/0001-Optional-building-tests.patch Upstream
+package/glib-networking/0001-meson-change-std-to-gnu99.patch Upstream
+package/glibc/0001-Revert-Linux-Implement-a-useful-version-of-_startup_.patch Upstream
+package/glmark2/0001-wscript-use-find_program-to-find-wayland-scanner.patch Upstream
+package/glmark2/0002-libmatrix-Add-missing-utility-include.patch Upstream
+package/glog/0001-added-emscripten-support.patch Upstream
+package/gloox/0001-src-connectiontcpserver-cpp-fix-musl.patch Upstream
+package/glorytun/0001-Add-support-for-Apple-silicon.patch Upstream
+package/glorytun/0002-aegis256.c-fix-aarch64-build-with-uclibc.patch Upstream
+package/gmp/0001-mpz-inp_raw.c-Avoid-bit-size-overflows.patch Upstream
+package/gnu-efi/0001-Make.defaults-don-t-override-ARCH-when-cross-compili.patch Upstream
+package/gnupg/0001-build-Always-use-EXTERN_UNLESS_MAIN_MODULE-pattern.patch Upstream
+package/gnuplot/0001-configure-add-without-demo-option.patch Upstream
+package/gnuradio/0001-blocks-Including-missing-vector-in-blockinterleaver.patch Upstream
+package/gnuradio/0002-blocks-blockinterleaving.h-add-missing-cstddef-heade.patch Upstream
+package/go/0001-build.go-explicit-option-for-crosscompilation.patch Upstream
+package/gob2/0001-dont-include-from-prefix.patch Upstream
+package/gobject-introspection/0001-disable-tests.patch Upstream
+package/gobject-introspection/0002-Add-rpath-links-to-ccompiler.patch Upstream
+package/gobject-introspection/0003-giscanner-ignore-error-return-codes-from-ldd-wrapper.patch Upstream
+package/gocryptfs/0001-go.mod-fix-jacobsa-crypto-build-on-riscv64.patch Upstream
package/google-breakpad/gen-syms.sh Shellcheck
+package/gpm/0001-Added-musl-support-to-libgpm-and-the-daemon.patch Upstream
+package/gpm/0002-Install-unversioned-solibrary.patch Upstream
+package/gpm/0003-src-Makefile.in-Really-install-unversioned-solibrary.patch Upstream
+package/gpm/0004-Use-sigemptyset-API-instead-of-__sigemptyset.patch Upstream
+package/gpm/0005-fix-building-w-newer-glibc.patch Upstream
+package/gpm/0006-src-headers-daemon.h-avoid-redefinition-of-last_sele.patch Upstream
package/gpsd/S50gpsd Indent Shellcheck Variables
+package/gptfdisk/0001-gptcurses-partially-revert-Tweaks-for-building-on-th.patch Upstream
+package/gptfdisk/0002-Fix-failure-crash-of-sgdisk-when-compiled-with-lates.patch Upstream
+package/graphite2/0001-don-t-install-a-libtool-file-with-static-library.patch Upstream
+package/grpc/0002-wrap_memcpy.cc-add-GPR_DISABLE_WRAPPED_MEMCPY.patch Upstream
+package/grpc/0003-host-grpc-only-cpp-plugin.patch Upstream
+package/grpc/0004-disable-unconditionally-downloading-api-repos.patch Upstream
+package/gsl/0001-configure.ac-fix-build-on-powerpc.patch Upstream
+package/gstreamer1/gstd/0001-Don-t-require-gstd-check-user-xenv.sh-for-systemd-se.patch Upstream
+package/gstreamer1/gstreamer1-editing-services/0001-Fix-gstreamer-validate-1.0-dependency-name.patch Upstream
+package/guile/0001-calculate-csqrt_manually.patch Upstream
+package/guile/0002-Makefile.am-fix-build-without-makeinfo.patch Upstream
+package/gumbo-parser/0001-configure.ac-fix-build-without-C.patch Upstream
+package/gutenprint/0001-use-pregen-xmli18n-header.patch Upstream
+package/gutenprint/0002-cups-support-replaces-static-with-static-libtool-lib.patch Upstream
+package/gvfs/0001-build-Remove-incorrect-i18n.merge_file-argument.patch Upstream
+package/harfbuzz/0001-meson.build-check-for-pthread.h.patch Upstream
+package/haserl/0001-add-haserl_lualib.inc.patch Upstream
package/haveged/S21haveged Shellcheck Variables
+package/heirloom-mailx/0001-fix-libressl-support.patch Upstream
+package/highway/0001-Fix-compilation-for-armv7-with-gcc-8.patch Upstream
+package/highway/0002-Fix-compilation-for-armv7-targets-with-vfp-v4-and-gc.patch Upstream
+package/hiredis/0001-CMakeLists.txt-respect-BUILD_SHARED_LIBS.patch Upstream
+package/hplip/0001-build-use-pkg-config-to-discover-libusb.patch Upstream
+package/hplip/0002-configure.in-fix-AM_INIT_AUTOMAKE-call.patch Upstream
package/htpdate/S43htpdate Shellcheck
+package/httping/0001-fix-math-library-linking.patch Upstream
+package/httping/0002-Makefile-allow-build-without-gettext.patch Upstream
package/i2pd/S99i2pd Indent Shellcheck Variables
-package/ifplugd/0001-cross.patch Sob
-package/ifplugd/0002-fix-headers.patch Sob
+package/i7z/0001-fix-build-with-gcc-10.patch Upstream
+package/ibm-sw-tpm2/0001-Use-LONG_BIT-to-define-RADIX_BITS.patch Upstream
+package/ibrcommon/0001-ibrcommon-data-File.cpp-support-POSIX-basename-call.patch Upstream
+package/ibrcommon/0002-ibrcommon-added-openssl-1.1-compatibility-264.patch Upstream
+package/ibrcommon/0003-ibrcommon-ssl-gcm-fix-static-build-with-openssl.patch Upstream
+package/icu/0001-dont-build-static-dynamic-twice.patch Upstream
+package/icu/0002-workaround-toolchain-bugs.patch Upstream
+package/icu/0003-link-icudata-as-data-only.patch Upstream
+package/icu/0004-fix-static-linking-with-icu-uc.patch Upstream
+package/ifmetric/0001-Fix-issue-NETLINK-Packet-too-small-or-truncated-92-1.patch Upstream
+package/ifplugd/0001-cross.patch Sob Upstream
+package/ifplugd/0002-fix-headers.patch Sob Upstream
+package/ifplugd/0003-no-cxx.patch Upstream
+package/ifplugd/0004-musl-fix-types.patch Upstream
+package/ifplugd/0005-src-interface.h-fix-build-with-gcc-10.patch Upstream
+package/iftop/0001-ui_common.h-fix-build-with-gcc-10.patch Upstream
+package/iftop/0002-Rename-pcap_filter-to-iftop_pcap_filter.patch Upstream
package/ifupdown-scripts/S40network EmptyLastLine Indent Shellcheck Variables
package/ifupdown-scripts/network/if-pre-up.d/wait_iface EmptyLastLine Shellcheck
package/ifupdown-scripts/nfs_check Shellcheck
+package/ifupdown/0001-archcommon-define-GNU-only-FNM_EXTMATCH-to-zero-on-n.patch Upstream
+package/ifupdown/0001-dont-use-dpkg-architecture.patch Upstream
package/igd2-for-linux/S99upnpd Indent Shellcheck Variables
+package/imx-mkimage/0001-Add-support-for-overriding-BL32-and-BL33-not-only-BL.patch Upstream
+package/imx-mkimage/0002-Add-LDFLAGS-to-link-step.patch Upstream
+package/imx-mkimage/0003-Add-unused-fake-version.patch Upstream
+package/imx-mkimage/0004-Add-support-for-overriding-BL31-BL32-and-BL33.patch Upstream
package/inadyn/S70inadyn Indent NotExecutable
package/initscripts/init.d/rcK ConsecutiveEmptyLines EmptyLastLine Shellcheck
package/initscripts/init.d/rcS ConsecutiveEmptyLines EmptyLastLine Shellcheck
package/input-event-daemon/S99input-event-daemon ConsecutiveEmptyLines Indent Variables
+package/intel-gmmlib/0001-Drop-hardening-related-flags.patch Upstream
+package/intel-mediasdk/0001-Don-t-force-fstack-protector.patch Upstream
+package/intltool/0001-perl-5.26-compatibility.patch Upstream
+package/iodine/0001-disable-systemd-and-selinux.patch Upstream
+package/iotop/0001-Fix-build-error-with-Python-3.patch Upstream
+package/iozone/0001-Add-new-targets-for-iozone.patch Upstream
+package/iperf/0001-fix-single-threaded-compile-breakage.patch Upstream
+package/ipmitool/0001-configure.ac-fix-readline-static-build.patch Upstream
+package/ipmitool/0002-Fix-enterprise-numbers-URL.patch Upstream
+package/ipmitool/0003-Do-not-require-the-IANA-PEN-registry-file.patch Upstream
+package/ipmitool/0004-configure.ac-allow-disabling-registry-downloads.patch Upstream
+package/iprutils/0001-configure.ac-add-AC_USE_SYSTEM_EXTENSIONS.patch Upstream
package/iptables/S35iptables Shellcheck
-package/irda-utils/0001-daemon.patch Sob
-package/irda-utils/0002-nommu.patch Sob
-package/irda-utils/0003-subdir.patch Sob
+package/irda-utils/0001-daemon.patch Sob Upstream
+package/irda-utils/0002-nommu.patch Sob Upstream
+package/irda-utils/0003-subdir.patch Sob Upstream
+package/irda-utils/0004-musl.patch Upstream
package/irqbalance/S13irqbalance Indent Shellcheck Variables
+package/irrlicht/0001-override-CPPFLAGS-CXXFLAGS-and-CFLAGS-in-Makefile.patch Upstream
+package/irrlicht/0002-remove-sys-sysctl.h.patch Upstream
+package/irrlicht/0003-makefile-override-LDFLAGS-and-remove-obsolete-X11R6-.patch Upstream
package/iucode-tool/S00iucode-tool Variables
package/iwd/S40iwd Shellcheck Variables
-package/keyutils/0002-cifs.patch Sob
+package/jack2/0001-Remove-usage-of-U-mode-bit-for-opening-files-in-pyth.patch Upstream
+package/janet/0001-Update-for-more-minimal-builds.patch Upstream
+package/janus-gateway/0001-disable-ssp.patch Upstream
+package/janus-gateway/0002-Add-test-for-Wunused-but-set-variable.patch Upstream
+package/jose/0001-lib-hsh.c-rename-hsh-local-variable.patch Upstream
+package/jose/0002-man-add-option-to-skip-building-man-pages.patch Upstream
+package/keepalived/0001-vrrp-nft-didn-t-support-meta-l4proro-until-Linux-3-14.patch Upstream
+package/keepalived/0002-ipvs-nft-didn-t-support-meta-l4proro-until-Linux-3-14.patch Upstream
+package/keepalived/0003-fix-build-with-libressl.patch Upstream
+package/kexec-lite/0001-clean-restart.patch Upstream
+package/keyutils/0001-fix-install-rule.patch Upstream
+package/keyutils/0002-cifs.patch Sob Upstream
+package/kmod/0001-fix-O_CLOEXEC.patch Upstream
+package/kodi-texturepacker/0001-texturepacker.patch Upstream
+package/kodi-texturepacker/0002-fix-texture-packer-cmake-source-dir.patch Upstream
+package/kodi/0001-kodi-config.cmake-use-CMAKE_FIND_ROOT_PATH-to-fix-cr.patch Upstream
+package/kodi/0002-cmake-findpython.patch Upstream
+package/kodi/0003-cmake-search-for-python-interpreter.patch Upstream
+package/kodi/0004-cmake-allow-to-override-PYTHON_EXECUTABLE.patch Upstream
package/kodi/S50kodi Shellcheck Variables
-package/libart/0001-art-config-cross.patch Sob
-package/libcgicc/0001-disable-documentation-option.patch Sob
-package/libfcgi/0002-disable-examples.patch Sob
-package/libftdi/0001-pkgconfig_libusb.patch Sob
-package/libftdi/0002-libftdi.pc-requires-libusb-fix-static-build.patch Sob
+package/latencytop/0001-makefile.patch Upstream
+package/lbase64/0001-retro-compatible-with-Lua-5.1.patch Upstream
+package/lcdproc/0001-LCDd.conf.patch Upstream
+package/lcdproc/0002-Add-missing-ioctl-header.patch Upstream
+package/lcdproc/0003-Fixcompilation-with-GCC-10-x.patch Upstream
+package/leafnode2/0001-cross_makefile.patch Upstream
+package/less/0001-End-OSC8-hyperlink-on-invalid-embedded-escape-sequence.patch Upstream
+package/let-me-create/0001-fix-build-with-musl-C-library.patch Upstream
+package/leveldb/0001-Fix-compilation-with-g-4.8.2.patch Upstream
+package/leveldb/0002-CMake-install-libmemenv.a.patch Upstream
+package/leveldb/0003-CMakeLists.txt-check-for-atomic-library.patch Upstream
+package/lftp/0001-Fix-build-with-LibreSSL-following-commit-537f37898.patch Upstream
+package/lftp/0002-src-lftp_ssl.c-fix-build-with-libressl-2.7.0.patch Upstream
+package/libabseil-cpp/0001-force-position-independent-code.patch Upstream
+package/libarchive/0001-autotools-do-not-add-iconv-for-Requires.private.patch Upstream
+package/libargon2/0001-libargon2-dont-fail-on-existing-symlink.patch Upstream
+package/libart/0001-art-config-cross.patch Sob Upstream
+package/libasplib/0001-asplib_CPUTimer.h-Fix-time.h-include.patch Upstream
+package/libatasmart/0001-strpool-cross-flags.patch Upstream
+package/libavl/0001-fix-makefile.patch Upstream
+package/libb64/0001-Integer-overflows.patch Upstream
+package/libb64/0002-Initialize-C++-objects.patch Upstream
+package/libblockdev/0001-Provide-replacement-function-for-strerror_l.patch Upstream
+package/libbsd/0001-src-local-elf.h-fix-big-endian-sh.patch Upstream
+package/libcdaudio/0001-libcdaudio-enable-autoreconf.patch Upstream
+package/libcec/0001-cecloader-h-fix-null-return.patch Upstream
+package/libcgi/0001-CMakeLists.txt-honour-BUILD_TESTING.patch Upstream
+package/libcgicc/0001-disable-documentation-option.patch Sob Upstream
+package/libclc/0001-support-out-of-tree-build.patch Upstream
+package/libcodec2/0001-update-cmake.patch Upstream
+package/libconfuse/0001-Fix-163-unterminated-username-used-with-getpwnam.patch Upstream
+package/libcorrect/0002-CMakeLists.txt-conditionally-use-fsanitize-address.patch Upstream
+package/libcuefile/0001-fix-static-link.patch Upstream
+package/libdaemon/0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch Upstream
+package/libdeflate/0001-lib-arm-crc32-use-crypto-target-when-required-due-to-gcc-bug.patch Upstream
+package/libdeflate/0002-lib-arm-cpu_features-fix-build-error-due-to-PMULL-enabled-without-NEON.patch Upstream
+package/libdnet/0001-python-makefile.patch Upstream
+package/libdnet/0002-Correct-path-to-string-h-from-bsd.patch Upstream
+package/libdrm/0001-tests-meson.build-disable-nouveau-tests-for-static-b.patch Upstream
+package/libdvbcsa/0001-altivec-powerpc64.patch Upstream
+package/libeXosip2/0001-src-eXtl_dtls.c-fix-build-with-libressl-3.4.1.patch Upstream
+package/libebml/0001-include-appropriate-header-files-for-std-numeric_limits.patch Upstream
+package/libedit/0001-check-bsd-functions-in-libbsd.patch Upstream
+package/libevent/0001-Don-t-define-BIO_get_init-for-LibreSSL-3-5.patch Upstream
+package/libfcgi/0001-link-against-math.patch Upstream
+package/libfcgi/0002-disable-examples.patch Sob Upstream
+package/libffi/0001-Fix-installation-location-of-libffi.patch Upstream
+package/libffi/0002-Fix-use-of-compact-eh-frames-on-MIPS.patch Upstream
+package/libffi/0003-libffi-enable-hardfloat-in-the-MIPS-assembly-code.patch Upstream
+package/libfm/0001-modules-fix-cross-compilation.patch Upstream
+package/libfreeimage/0001-no-root-install.patch Upstream
+package/libfreeimage/0002-fix-cpuid-x86.patch Upstream
+package/libfreeimage/0003-fix-big-endian-os.patch Upstream
+package/libfreeimage/0004-fixed-C-11-warnings.patch Upstream
+package/libftdi/0001-pkgconfig_libusb.patch Sob Upstream
+package/libftdi/0002-libftdi.pc-requires-libusb-fix-static-build.patch Sob Upstream
+package/libftdi1/0001-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch Upstream
+package/libftdi1/0002-CMakeLists.txt-fix-paths-when-FTDIPP-is-set.patch Upstream
+package/libftdi1/0003-CMakeLists.txt-fix-static-build-with-libusb-and-lato.patch Upstream
+package/libfuse/0001-fix-aarch64-build.patch Upstream
+package/libfuse/0002-util-ulockmgr_server-c-conditionally-define-closefrom-fix-glibc-2-34.patch Upstream
+package/libgcrypt/0001-configure.ac-add-an-option-to-disable-tests.patch Upstream
+package/libgdiplus/0001-Build-unit-tests-only-when-enable-unit-tests-is-pass.patch Upstream
+package/libgit2/0001-sysdir-Do-not-declare-win32-functions-on-non-win32-p.patch Upstream
+package/libglfw/0001-Wayland-Remove-extra-cmake-modules-dependency.patch Upstream
+package/libglfw/0002-src-CMakeLists.txt-allow-override-of-wayland-pkgdata.patch Upstream
+package/libglib2/0001-fix-compile-time-atomic-detection.patch Upstream
+package/libglib2/0002-remove-cpp-requirement.patch Upstream
+package/libglib2/0003-Add-Wno-format-nonliteral-to-compiler-arguments.patch Upstream
+package/libglib2/0004-meson.build-add-girdir-to-gio-2.0.pc-and-glib-2.0.pc.patch Upstream
+package/libgpgme/0001-Fix-build-without-threads.patch Upstream
+package/libgpiod/0001-build-add-a-configure-switch-for-building-examples.patch Upstream
+package/libgsm/0001-misc-fixes-from-archlinux.patch Upstream
+package/libgtk2/0001-reduce-dependencies.patch Upstream
+package/libgtk3/0001-disable-atk-bridge.patch Upstream
+package/libgtk3/0002-Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch Upstream
+package/libhdhomerun/0001-dont-strip.patch Upstream
+package/libhid/0001-dont-fiddle-with-debug-flags.patch Upstream
+package/libhid/0002-no-newline-in-ldflags.patch Upstream
+package/libhid/0003-uclinux.patch Upstream
+package/libical/0001-no-tests.patch Upstream
+package/libical/0002-icaltypes-c-icalreqstattype_from_string-copy-the-reqstattype.patch Upstream
+package/libiio/0001-iiod-serial.c-fix-sparc-build.patch Upstream
package/libiio/S99iiod Shellcheck Variables
-package/libmad/0001-mips-h-constraint-removal.patch Sob
+package/libiqrf/0001-cmake-handle-static-library-and-find-required-thread.patch Upstream
+package/libiqrf/0002-use-only-c-language.patch Upstream
+package/libjson/0001-fix-broken-makefile.patch Upstream
+package/libjxl/0001-djxl-fix-segmentation-fault-when-JPEG-is-disabled.patch Upstream
+package/libkcapi/0001-lib-kcapi-kernel-if.c-fix-uclibc-build.patch Upstream
+package/libkcapi/0002-Add-disable-werror.patch Upstream
+package/libkcapi/0003-Fix-symver-build-error-on-non-ELF-platforms.patch Upstream
+package/libks/0001-CMakeLists.txt-honour-BUILD_TESTING.patch Upstream
+package/liblinear/0001-build-static-lib.patch Upstream
+package/liblockfile/0001-Makefile.in-fix-cross-compilation.patch Upstream
+package/liblog4c-localtime/0001-log4c.m4-fix-underquoted-definition-of-AM_PATH_LOG4C.patch Upstream
+package/liblog4c-localtime/0002-Fix-linking-error-without-pthread.patch Upstream
+package/liblog4c-localtime/0003-Fix-debug-mode-build-with-uClibc.patch Upstream
+package/liblog4c-localtime/0004-Add-AC_CONFIG_MACRO_DIR-to-configure.in.patch Upstream
+package/liblog4c-localtime/0005-Fix-C-support.patch Upstream
+package/libloki/0001-allow-to-install-to-a-specific-location-using-DESTDI.patch Upstream
+package/libloki/0002-use-ln-snf.patch Upstream
+package/libmad/0001-mips-h-constraint-removal.patch Sob Upstream
+package/libmad/0002-configure-ac-automake-foreign.patch Upstream
+package/libmanette/0001-Meson-Un-hardcode-building-a-shared-library.patch Upstream
+package/libmemcached/0001-disable-tests.patch Upstream
+package/libmemcached/0002-disable-sanitizer.patch Upstream
+package/libmemcached/0003-move-ac_config_aux_dir.patch Upstream
+package/libmemcached/0004-disable-doc-and-man.patch Upstream
+package/libmemcached/0005-fix-pointer-comparaison.patch Upstream
+package/libmng/0001-jpeg-9a.patch Upstream
+package/libmodsecurity/0001-configure.ac-drop-usage-of-git-at-configure-time.patch Upstream
+package/libmodsecurity/0002-modsecurity.pc.in-add-lstdc.patch Upstream
+package/libmodsecurity/0003-Revert-Fix-maxminddb-link-on-FreeBSD.patch Upstream
+package/libmodsecurity/0004-build-pcre.m4-fix-build-without-pcre.patch Upstream
+package/libmpd/0001-Fix-build-on-archlinux-missing-include.patch Upstream
+package/libmpeg2/0001-altivec.patch Upstream
+package/libmpeg2/0002-armv4l.patch Upstream
+package/libmpeg2/0003-fix-arm-detection.patch Upstream
+package/libmpeg2/0004-fix-sparc.patch Upstream
+package/libnet/0001-Use-standard-int64_t-instead-of-__int64_t-for-mingw-cross-build.patch Upstream
+package/libnetfilter_conntrack/0001-conntrack-fix-build-with-kernel-5-15-and-musl.patch Upstream
+package/libnfc/0001-autotools-make-example-build-optional.patch Upstream
+package/libnfs/0001-Fix-include-sys-time.h.patch Upstream
+package/libnids/0001-libpcap-use-pkg-config.patch Upstream
+package/libnl/0001-Add-musl-workaround-to-the-libc-compat.h-copy.patch Upstream
+package/libnss/0001-Bug-1801182-Allow-overriding-OS_ARCH-OS_TEST-and-OS_.patch Upstream
+package/liboauth/0001-Fixes-build-issue-with-OpenSSL-1.1.0.patch Upstream
+package/libodb-mysql/0001-fix-syntax-issue-while-checking-ldflags.patch Upstream
+package/libodb-mysql/0002-mariadb-FTBFS-fix.patch Upstream
+package/libopenssl/0001-Dont-waste-time-building-manpages-if-we-re-not-going.patch Upstream
+package/libopenssl/0002-Reproducible-build-do-not-leak-compiler-path.patch Upstream
+package/libopenssl/0004-Configure-use-ELFv2-ABI-on-some-ppc64-big-endian-sys.patch Upstream
+package/libopenssl/0005-crypto-perlasm-ppc-xlate.pl-add-linux64v2-flavour.patch Upstream
+package/libopenssl/0006-Add-support-for-io_pgetevents_time64-syscall.patch Upstream
+package/libopenssl/0007-Fixup-support-for-io_pgetevents_time64-syscall.patch Upstream
+package/liboping/0001-fix-utf8-support.patch Upstream
+package/liboping/0002-Open-raw-sockets-when-adding-hosts-not-when-doing-th.patch Upstream
+package/liboping/0003-Fix-compile-break-with-GCC-7-buffer-overflow-with-snprintf.patch Upstream
+package/liboping/0004-Fix-compile-error-on-GCC-7.patch Upstream
+package/liboping/0005-src-oping.c-always-use-s-style-format-for-printf-sty.patch Upstream
+package/libp11/0001-src-p11_attr.c-fix-build-with-gcc-4.8.patch Upstream
+package/libpam-tacplus/0001-Add-an-option-to-disable-Werror.patch Upstream
+package/libpjsip/0001-Merge-pull-request-from-GHSA-9pfh-r8x4-w26w.patch Upstream
+package/libpjsip/0002-Merge-pull-request-from-GHSA-cxwq-5g9x-x7fr.patch Upstream
+package/libplatform/0001-cmake-require-c-11-as-the-minimum-standard.patch Upstream
+package/libpng/0001-Disable-pngfix-and-png-fix-itxt.patch Upstream
+package/libpthsem/0001-fix-build-on-linux-3.x-host.patch Upstream
+package/libqb/0001-Add-disable-tests-option.patch Upstream
+package/libressl/0001-always-expose-SSL_OP_NO_TLSv1_3.patch Upstream
+package/libroxml/0001-src-roxml_mem.h-add-missing-extern.patch Upstream
+package/librsvg/0001-gdk-pixbuf-loader-Makefile.am-set-GDK_PIXBUF_MODULED.patch Upstream
+package/librtas/0001-configure.ac-remove-LOCAL_CHECK_FLAGS.patch Upstream
+package/librtlsdr/0001-Makefile.am-respect-DESTDIR-with-install-udev-rules.patch Upstream
+package/libselinux/0001-fix-musl-build.patch Upstream
+package/libselinux/0002-Do-not-use-PYCEXT-and-rely-on-the-installed-file-nam.patch Upstream
+package/libsepol/0001-support-static-only.patch Upstream
+package/libserial/0001-SerialPort.cpp-fix-build-when-size_t-is-an-unsigned-.patch Upstream
+package/libserial/0002-SerialPort.cpp-don-t-use-high-baudrates-when-not-ava.patch Upstream
+package/libserialport/0001-uclinux-detection.patch Upstream
+package/libshdata/0001-backend-Add-missing-include-files.patch Upstream
+package/libshdata/0002-examples-stress_test-Fix-build-with-musl-libc.patch Upstream
+package/libsidplay2/0001-sidplay2-libs-2.1.1.patch Upstream
+package/libsidplay2/0002-pkg-config.patch Upstream
+package/libsidplay2/0003-gcc6.patch Upstream
+package/libsigrok/0001-Support-glibmm-2.68.patch Upstream
+package/libsigrokdecode/0001-configure-ac-Add-support-for-Python-3-9.patch Upstream
+package/libsigrokdecode/0002-configure-Add-python-3-10-support.patch Upstream
+package/libsigrokdecode/0003-configure-ac-Use-python3-embed-pc-as-a-fallback.patch Upstream
+package/libsolv/0001-Fix-build-without-C.patch Upstream
+package/libsoup/0001-meson.build-set-c_std-to-gnu99.patch Upstream
+package/libsoxr/0001-Add-Libs.private-for-static-linking.patch Upstream
+package/libspatialindex/0001-allow-building-static-libs.patch Upstream
+package/libspatialindex/0002-CMakeLists.txt-fix-CMAKE_BUILD_TYPE.patch Upstream
+package/libsquish/0001-Makefile-add-f-option-for-ln-to-remove-existing-dest.patch Upstream
+package/libsrtp/0001-Remove-compatibility-code-for-legacy-OpenSSL-to-fix-LibreSSL-build.patch Upstream
+package/libssh2/0001-Opaque-structs-in-LibreSSL-3-5.patch Upstream
+package/libsvg/0001-fix-expat-static-declaration.patch Upstream
+package/libsvg/0002-Fix-undefined-symbol-png_set_gray_1_2_4_to_8.patch Upstream
+package/libsvgtiny/0001-disable-debug-printfs.patch Upstream
+package/libsvgtiny/0002-Remove-Werror.patch Upstream
+package/libsvgtiny/0003-Hopefully-silence-warnings-about-inlines-and-non-inlines-calling-one.patch Upstream
+package/libsvgtiny/0004-Build-Include-gperf-generated-code-directly.patch Upstream
+package/libtalloc/0001-buildtools-wafsamba-add-disable-stack-protector-opti.patch Upstream
+package/libteam/0001-revert-disregard-current-state.patch Upstream
+package/libteam/0002-fix-build-on-openwrt-musl-libc.patch Upstream
+package/libteam/0003-increase-wait-time-for-daemon-kill.patch Upstream
+package/libtelnet/0001-fix-compilation-without-zlib.patch Upstream
+package/libtheora/0001-link-libtheoradec.patch Upstream
+package/libtheora/0002-fix-autoreconf.patch Upstream
+package/libtomcrypt/0001-fix-CVE-2019-17362.patch Upstream
+package/libtommath/0001-Build-test-bn_mp_set_double-c-on-more-platforms.patch Upstream
+package/libtorrent/0001-libtorrent.pc.in-add-Libs.Private.patch Upstream
+package/libubootenv/0001-src-CMakeLists.txt-do-not-force-the-build-of-a-share.patch Upstream
+package/libuhttpd/0001-add-compatibility-for-wolfssl-5-0.patch Upstream
+package/libuio/0001-configure.ac-set-automake-strictness-to-foreign.patch Upstream
+package/liburcu/0001-Only-blacklist-ARM-gcc-4.8.0-and-4.8.1.patch Upstream
+package/liburcu/0002-fix-don-t-use-C-thread_local-on-MacOs.patch Upstream
+package/liburcu/0003-Always-use-__thread-for-Thread-local-storage-except-on-MSVC.patch Upstream
+package/libusb-compat/0001-fix-a-build-issue-on-linux.patch Upstream
+package/libusbgx/0001-Add-include-of-sys-sysmacro.h.patch Upstream
+package/libuwsc/0001-CMakeLists.txt-add-BUILD_EXAMPLE.patch Upstream
+package/libuwsc/0002-fix-bad-indentation.patch Upstream
+package/libvpx/0001-vpx_mem-vpx_mem.h-Fix-compilation-with-uClibc.patch Upstream
+package/libwebsock/0001-Switch-to-use-pkg-config-to-detect-libevent-and-open.patch Upstream
+package/libwebsock/0002-fix-ssl.patch Upstream
+package/libwebsock/0003-fix-incorrect-inline.patch Upstream
+package/libwebsockets/0001-lib-tls-CMakeLists.txt-fix-build-without-threads.patch Upstream
+package/libyuv/0001-i386-sse2.patch Upstream
+package/lightning/0001-lib-jit_disasm.c-fix-build.patch Upstream
+package/lighttpd/0001-Modify-the-default-lighttpd-configuration-file-to-ha.patch Upstream
package/lighttpd/S50lighttpd EmptyLastLine Indent Shellcheck Variables
+package/linknx/0001-configure-ac-tweak-CPPUNIT-conditional.patch Upstream
+package/linknx/0002-src-Makefile.am-fix-linking-with-log4cpp.patch Upstream
+package/linphone/0001-src-core-paths-paths.cpp-fix-powerpc-build.patch Upstream
+package/linux-fusion/0001-fix-for-linux-4-and-above.patch Upstream
+package/linux-fusion/0002-Fix-mismatched-conversion-spec-and-value-in-printk.patch Upstream
+package/linux-fusion/0003-Fix-fusion-Unknown-symbol-tasklist_lock-err-0.patch Upstream
+package/linux-fusion/0004-Port-one-one_udp.c-to-Linux-4.1.patch Upstream
package/linux-tools/S10hyperv Variables
+package/linux-zigbee/0001-test-serial-Remove-test-serial.patch Upstream
+package/linux-zigbee/0002-addrdb-coord-config-parse.y-add-missing-time.h-inclu.patch Upstream
+package/linuxptp/0001-missing.h-drop-clock_nanosleep-replacement.patch Upstream
+package/linuxptp/0002-makefile-use-conditional-assignment-for-KBUILD_OUTPUT.patch Upstream
package/linuxptp/S65ptp4l Indent Shellcheck
package/linuxptp/S66phc2sys Indent Shellcheck
+package/lirc-tools/0001-plugins-devinput.c-fix-build-with-musl-1.2.0.patch Upstream
+package/lirc-tools/0002-configure-add-disable-doc-option.patch Upstream
package/lirc-tools/S25lircd Indent Variables
-package/lite/0001-dfbspy-stat.patch Sob
-package/lite/0002-no-tests.patch Sob
-package/lite/0003-pkg-config.patch Sob
+package/lite/0001-dfbspy-stat.patch Sob Upstream
+package/lite/0002-no-tests.patch Sob Upstream
+package/lite/0003-pkg-config.patch Sob Upstream
+package/live555/0001-Add-a-pkg-config-file-for-the-shared-libraries.patch Upstream
package/lldpd/S60lldpd Indent Shellcheck Variables
-package/lockfile-progs/0001-sus3v-legacy.patch Sob
-package/madplay/0001-switch-to-new-alsa-api.patch Sob
+package/llvm/0001-nfc-Fix-missing-include.patch Upstream
+package/lm-sensors/0001-static-build.patch Upstream
+package/lm-sensors/0002-no-host-ldconfig.patch Upstream
+package/lmbench/0001-scripts-build-use-bin-bash-as-shell.patch Upstream
+package/lmbench/0002-src-Makefile-add-lmbench-to-list-of-executables.patch Upstream
+package/lmbench/0003-TOO_LONG-100-usec-to-prevent-memsize-from-timingout-.patch Upstream
+package/lmbench/0004-Fix-garbage-pointer-for-lat_rpc-S-localhost.patch Upstream
+package/localedef/0002-relax-dependency-on-GCC-to-4.8-and-binutils-to-2.24.patch Upstream
+package/lockdev/0001-Makefile-install-static-library-and-headers-separate.patch Upstream
+package/lockfile-progs/0001-sus3v-legacy.patch Sob Upstream
+package/lshw/0001-solve-Compile-error-when-g-version-is-less-than-5.patch Upstream
+package/ltp-testsuite/0001-lapi-Add-sysinfo.h-to-fix-build-with-MUSL-libc.patch Upstream
+package/ltrace/0001-arm-plt.patch Upstream
+package/ltrace/0002-sparc-add-missing-library.h-include.patch Upstream
+package/ltrace/0003-configure.ac-fix-autoreconf-with-autoconf-2.70.patch Upstream
+package/ltris/0001-fix-build-with-gcc-4.8.patch Upstream
+package/lttng-babeltrace/0001-tests-lib-Makefile.am-remove-unneeded-static-flag.patch Upstream
+package/lttng-babeltrace/0002-configure.ac-fix-popt-static-build.patch Upstream
+package/lttng-libust/0001-configure.ac-add-disable-tests.patch Upstream
+package/lttng-tools/0001-configure.ac-add-disable-tests.patch Upstream
+package/lua-gd/0001-Protect-declaration-of-LgdImageCreateFromPng-with-GD.patch Upstream
+package/lua-lunix/0001-remove-link-with-librt.patch Upstream
+package/lua-sdl2/0001-Do-not-reference-host-directory-for-headers.patch Upstream
+package/lua-sdl2/0002-CMakeLists-do-not-require-C.patch Upstream
+package/lua/5.1.5/0001-root-path.patch Upstream
+package/lua/5.1.5/0002-shared-libs-for-lua.patch Upstream
+package/lua/5.1.5/0011-linenoise.patch Upstream
+package/lua/5.1.5/0012-fix-reader-at-eoz.patch Upstream
+package/lua/5.3.6/0001-root-path.patch Upstream
+package/lua/5.3.6/0002-shared-libs-for-lua.patch Upstream
+package/lua/5.3.6/0003-linenoise.patch Upstream
+package/lua/5.4.4/0001-root-path.patch Upstream
+package/lua/5.4.4/0002-shared-libs-for-lua.patch Upstream
+package/lua/5.4.4/0011-linenoise.patch Upstream
+package/luajit/0001-no-bin-symlink.patch Upstream
+package/luajit/0002-install-inc.patch Upstream
+package/luasyslog/0001-remove-AX_LUA_LIBS.patch Upstream
+package/luasyslog/0002-build-ax_lua.m4-fix-cross-compilation.patch Upstream
+package/lugaru/0001-ImageIO-fix-invalid-conversion.patch Upstream
+package/lugaru/0002-Fix-mismatched-usage-length-build-fail-on-g.patch Upstream
+package/lvm2/0001-clang-possible-better-compilation-with-musl-c.patch Upstream
+package/lvm2/0002-mm-preallocate-memory-only-with-glibc.patch Upstream
+package/lvm2/0003-cmdline-use-freopen-to-reopen-standard-streams.patch Upstream
+package/lvm2/0004-log-use-freopen-to-reopen-standard-streams.patch Upstream
+package/lz4/0001-build-Support-BUILD_SHARED-no.patch Upstream
+package/lzma/0001-Remove-static-from-LDFLAGS.patch Upstream
+package/lzop/0001-allow-overriding-modification-time.patch Upstream
+package/macchanger/0001-Fix-missing-include-for-caddr_t.patch Upstream
+package/madplay/0001-switch-to-new-alsa-api.patch Sob Upstream
+package/madplay/0002-configure-ac-automake-foreign.patch Upstream
+package/madplay/0003-configure-ac-use-pkg-config-to-find-id3tag.patch Upstream
+package/madplay/0004-configure-ac-call-AM_MKINSTALLDIRS.patch Upstream
+package/make/0001-configure.ac-Support-GLIBC-glob-interface-version-2.patch Upstream
+package/make/0001-glob-Do-not-assume-glibc-glob-internals.patch Upstream
+package/makedumpfile/0002-Handle-__mips64.patch Upstream
+package/mariadb/0001-add-extra-check-for-librt.patch Upstream
+package/mariadb/0002-include-ssl_compat.h-fix-build-with-libressl-3.5.0.patch Upstream
package/mariadb/S97mysqld Indent Shellcheck Variables
package/matchbox-keyboard/mb-applet-kbd-wrapper.sh Shellcheck TrailingSpace
+package/matchbox-lib/0001-index-is-legacy.patch Upstream
+package/matchbox-panel/0001-index-is-legacy.patch Upstream
+package/matchbox-panel/0002-mb-applet-wireless.patch Upstream
+package/matchbox-panel/0003-mb-applet-battery.patch Upstream
+package/matchbox-startup-monitor/0001-true-false.patch Upstream
+package/matchbox/0001-defaulttheme.patch Upstream
+package/matchbox/0002-src-Fix-build-with-gcc-10.patch Upstream
+package/mbw/0001-CMakeLists.txt-fix-build-without-C.patch Upstream
+package/mediastreamer/0001-src-videofilters-nowebcam.c-fix-build-without-ffmpeg.patch Upstream
+package/mediastreamer/0002-Use-AV_INPUT_BUFFER_PADDING_SIZE-to-determine-paddin.patch Upstream
+package/memcached/0001-logger.c-initialize-rport.patch Upstream
+package/memcached/0002-check-for-sys-auxv.h.patch Upstream
+package/memcached/0003-configure.ac-add-disable-werror.patch Upstream
+package/memstat/0001-PATH_MAX.patch Upstream
package/mender-connect/S43mender-connect Shellcheck
-package/mii-diag/0001-strchr.patch Sob
+package/menu-cache/0001-Support-gcc10-compilation.patch Upstream
+package/mesa3d-demos/0001-demos-makes-opengl-an-optional-component.patch Upstream
+package/mesa3d/0001-meson-Set-proper-value-for-LIBCLC_INCLUDEDIR.patch Upstream
+package/mesa3d/0002-vc4-add-meson-option-to-disable-optional-neon-suppor.patch Upstream
+package/mesa3d/0003-src-util-rand_xor-Include-stddef.h-to-fix-build-erro.patch Upstream
+package/mesa3d/0004-Fix-uClibc-build.patch Upstream
+package/meson-tools/0001-amlbootenc-gxl-remove-non-std-C-convention-in-for.patch Upstream
+package/meson/0001-Prefer-ext-static-libs-when-default-library-static.patch Upstream
+package/meson/0002-mesonbuild-dependencies-base.py-add-pkg_config_stati.patch Upstream
+package/metacity/0001-add-libm-reference.patch Upstream
+package/metacity/0002-gconf.patch Upstream
+package/metacity/0003-mag-add-libm-reference.patch Upstream
+package/mfgtools/0001-lnx_def.h-fix-conflicting-declaration-of-__time64_t.patch Upstream
+package/midori/0001-disable-vala-fatal-warnings.patch Upstream
+package/midori/0002-add-option-to-specify-path-to-g-ir-compiler.patch Upstream
+package/mii-diag/0001-strchr.patch Sob Upstream
+package/mimic/0001-Fix-linking-on-gcc-10.2.0-or-newer.patch Upstream
+package/mini-snmpd/0001-linux.c-fix-musl-build.patch Upstream
package/minidlna/S60minidlnad Indent Shellcheck Variables
package/minissdpd/S50minissdpd Indent Shellcheck Variables
package/modem-manager/S44modem-manager Shellcheck Variables
+package/mongodb/0001-ssl_manager.cpp-fix-build-with-gcc-7-and-fpermissive.patch Upstream
+package/mongodb/0002-src-mongo-db-exec-plan_stats.h-fix-build-with-gcc-11.patch Upstream
+package/mongrel2/0001-Do-not-run-tests.patch Upstream
+package/mongrel2/0002-Fix-Makefiles-for-cross-compilation.patch Upstream
+package/mongrel2/0003-fix-build-with-gcc-4.8.patch Upstream
+package/monit/0001-no-force-static.patch Upstream
+package/mono-gtksharp3/0001-Fixes-MONO_PROFILE_ENTER_LEAVE-undeclared.patch Upstream
+package/mono-gtksharp3/0002-Mono-compilation-error-branch.patch Upstream
+package/mono/0001-Fix-linkage-with-a-system-libatomic_ops-shared-library.patch Upstream
+package/mono/0002-Ongoing-work-on-the-cmake-build.patch Upstream
package/mosquitto/S50mosquitto Indent Shellcheck Variables
package/motion/S99motion Indent Shellcheck Variables
+package/mpd/0001-src-event-meson.build-add-atomic-dependency-for-spar.patch Upstream
package/mpd/S95mpd Variables
+package/mpir/0001-mpn-arm-udiv.asm-workaround-binutils-bug-14887.patch Upstream
+package/mpv/0001-fix-powerpc64-altivec.patch Upstream
+package/mraa/0001-include-Declare-gVERSION-global-as-extern.patch Upstream
package/mrouted/S41mrouted NotExecutable
package/mrp/S65mrp Indent Variables
+package/mstpd/0001-bridge-stp.in-support-different-versions-of-pidof-13.patch Upstream
package/multipath-tools/S60multipathd Shellcheck
+package/musepack/0001-shared.patch Upstream
+package/musepack/0002-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch Upstream
+package/musepack/0003-include-fpu-control-with-glibc-only.patch Upstream
+package/musepack/0004-missing-sys-select.patch Upstream
+package/musepack/0005-fix-build-with-gcc-10.patch Upstream
+package/musl/0001-avoid-kernel-if_ether.h.patch Upstream
+package/musl/0002-package-musl-Make-scheduler-functions-Linux-compatib.patch Upstream
+package/musl/0003-fix-incorrect-parameter-name-in-internal-netlink.h-R.patch Upstream
+package/nano/0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
+package/nanocom/0001-fix-build-with-gcc-10.patch Upstream
+package/ncftp/0001-fix-gcc-10.patch Upstream
+package/ncmpc/0001-meson.build-add-atomic-dependency-for-sparc.patch Upstream
+package/ne10/0001-CMakeLists-don-t-hard-code-thumb-code-generation.patch Upstream
+package/ne10/0002-fix-build-without-C.patch Upstream
package/neard/S53neard Indent Shellcheck Variables
+package/neardal/0001-lib-neardal.h-fix-build-with-gcc-10.patch Upstream
+package/neon/0001-Revert-Advertise-TS_SSL-feature-with-OpenSSL-1.1.0.patch Upstream
+package/neon/0002-configure.ac-fix-autoreconf.patch Upstream
+package/netatalk/0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch Upstream
+package/netatalk/0002-etc-uams-openssl_compat.h-fix-build-with-libressl-2..patch Upstream
package/netatalk/S50netatalk EmptyLastLine Indent Variables
-package/netcat/0001-signed-bit-counting.patch Sob
+package/netcat/0001-signed-bit-counting.patch Sob Upstream
package/netopeer2/S52netopeer2 Shellcheck Variables
-package/netplug/0001-makefile-flags.patch Sob
+package/netperf/0001-src-nettest_omni.c-fix-compilation-with-GCC10.patch Upstream
+package/netplug/0001-makefile-flags.patch Sob Upstream
+package/netplug/0002-add-missing-time-include.patch Upstream
+package/netplug/0003-remove-assert-fail.patch Upstream
package/netplug/S29netplug Indent Shellcheck Variables
package/netplug/netplug-script ConsecutiveEmptyLines Shellcheck
+package/netsniff-ng/0001-Detect-libpcap-dependencies-using-pkg-config.patch Upstream
package/netsnmp/S59snmpd Indent Shellcheck Variables
+package/netsurf/0001-avoid-system-perl-dependencies.patch Upstream
+package/netsurf/0002-do-not-cross-compile-nsgenbind.patch Upstream
+package/netsurf/0003-fix-compilation-without-curl.patch Upstream
+package/netsurf/0004-framebuffer-Fix-internal-font-generated-source-for-GCC-10.patch Upstream
+package/nettle/0001-disable-testsuite-examples.patch Upstream
+package/network-manager/0001-build-meson-add-option-to-set-the-mobile-broadband-p.patch Upstream
+package/network-manager/0002-meson.build-fix-build-failure-with-Dmodem_manager-fa.patch Upstream
package/network-manager/S45network-manager ConsecutiveEmptyLines EmptyLastLine Shellcheck Variables
+package/nfs-utils/0001-nfsrahead-fix-linking-while-static-linking.patch Upstream
+package/nfs-utils/0002-configure.ac-allow-to-disable-nfsrahead-tool.patch Upstream
package/nfs-utils/S60nfs ConsecutiveEmptyLines Shellcheck Variables
+package/nginx-modsecurity/0001-config-use-pkg-config.patch Upstream
+package/nginx-naxsi/0001-naxsi_src-naxsi_runtime.c-fix-build-without-x_forwar.patch Upstream
+package/nginx-naxsi/0002-PCRE2-compatibility.patch Upstream
+package/nginx/0001-auto-type-sizeof-rework-autotest-to-be-cross-compila.patch Upstream
+package/nginx/0002-auto-feature-add-mechanism-allowing-to-force-feature.patch Upstream
+package/nginx/0003-auto-set-ngx_feature_run_force_result-for-each-featu.patch Upstream
+package/nginx/0004-auto-lib-libxslt-conf-use-pkg-config.patch Upstream
+package/nginx/0005-auto-unix-make-sys_nerr-guessing-cross-friendly.patch Upstream
+package/nginx/0006-auto-lib-openssl-conf-use-pkg-config.patch Upstream
+package/nginx/0007-auto-lib-libgd-conf-use-pkg-config.patch Upstream
+package/nginx/0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch Upstream
+package/nginx/0009-auto-os-linux-fix-build-with-libxcrypt.patch Upstream
+package/nginx/0010-Allow-forcing-of-endianness-for-cross-compilation.patch Upstream
package/nginx/S50nginx Indent Variables
+package/ngrep/0001-Fix-typo-in-configure-in-when-testing-for-use_pcre.patch Upstream
+package/ngrep/0002-Check-for-libnet_init-in-configure-in.patch Upstream
+package/ngrep/0003-fix-disable-tcpkill.patch Upstream
+package/nilfs-utils/0001-nilfs_cleanerd-link-dynamically.patch Upstream
+package/nmap/0001-libdnet-wrapper-configure.patch Upstream
+package/nodejs/0001-add-qemu-wrapper-support.patch Upstream
+package/nodejs/0002-check-if-uclibc-has-backtrace-support.patch Upstream
+package/nodejs/0003-include-obj-name-in-shared-intermediate.patch Upstream
+package/nodejs/0004-lib-internal-modules-cjs-loader.js-adjust-default-pa.patch Upstream
package/nodm/S90nodm Indent Shellcheck Variables
+package/norm/0001-protolib-drop-linux-version-check.patch Upstream
+package/norm/0002-Use-print-as-function-call-for-Python3-compatibility.patch Upstream
+package/norm/0003-Fix-mixed-tabs-spaces-in-protolib-wscript.patch Upstream
package/nss-pam-ldapd/S45nslcd EmptyLastLine Indent Shellcheck Variables
+package/ntp/0001-nano.patch Upstream
+package/ntp/0002-ntp-syscalls-fallback.patch Upstream
+package/ntp/0003-override-shell.patch Upstream
+package/ntp/0004-libntp-Do-not-use-PTHREAD_STACK_MIN-on-glibc.patch Upstream
package/ntp/S49ntp.in Variables
+package/ntpsec/0001-wscript-remove-checks-for-bsd-string.h-fixes-host-co.patch Upstream
+package/ntpsec/0002-wscript-fix-build-without-stack-protector.patch Upstream
+package/numactl/0001-link-with-latomic-if-needed-again.patch Upstream
+package/nut/0001-clients-upsclient-h-ensure-time_t-is-defined.patch Upstream
+package/nuttcp/0001-susv3-legacy.patch Upstream
+package/nvidia-driver/0001-use-LDFLAGS.patch Upstream
+package/octave/0001-Fix-BLAS-library-integer-size-detection.patch Upstream
+package/odb/0001-tm.h-include-in-gcc.hxx-appears-to-be-no-longer-nece.patch Upstream
+package/odb/0002-Remove-gratuitous-classes.patch Upstream
+package/odb/0003-Initial-work-to-make-ODB-compatible-with-GCC-6.patch Upstream
+package/odb/0004-Make-compilable-with-GCC-6-in-C-14-mode.patch Upstream
+package/odb/0005-Fix-bug-in-GCC-6-input_location-translation.patch Upstream
+package/odb/0006-Adapt-to-changes-in-GCC-8.patch Upstream
+package/odb/0007-Switch-to-C-11-get-rid-of-auto_ptr-use.patch Upstream
+package/odb/0008-Fix-GCC-8-adaptation-to-be-compatible-with-previous-.patch Upstream
+package/odb/0009-Handle-namespace-aliases-when-parsing-GCC-tree.patch Upstream
+package/odb/0010-Add-initial-support-for-GCC-9.patch Upstream
+package/odb/0011-Adjust-to-changes-in-GCC-10.patch Upstream
+package/odb/0012-Adjust-to-changes-in-GCC-11.patch Upstream
+package/odb/0013-Resolve-name-lookup-ambiguity-causing-error-with-GCC.patch Upstream
+package/ofono/0001-uclibc-backtrace.patch Upstream
+package/ofono/0002-fix-musl-compile.patch Upstream
package/ofono/S46ofono Variables
+package/ola/0001-ola-fix-compilation-with-musl-1-2-3.patch Upstream
+package/olsr/0001-olsrd-migrate-to-using-bison-3.7.1.patch Upstream
+package/olsr/0002-lib-pud-Makefile-fix-parallel-build.patch Upstream
+package/olsr/0003-pud-adapt-to-API-changes-in-gpsd-3-20.patch Upstream
+package/olsr/0005-lib-pud-src-gpsdclient.c-drop-handling-of-gpsdata-fi.patch Upstream
package/olsr/S50olsr Indent Shellcheck Variables
+package/omxplayer/0001-Update-Makefile-to-be-compatible-with-buildroot.patch Upstream
+package/open-iscsi/0001-SHA3-is-not-supported-by-libressl.patch Upstream
+package/open-plc-utils/0001-Remove-OWNER-and-GROUPS-parameters-to-install.patch Upstream
+package/open-plc-utils/0002-plc-plc.h-fix-build-with-gcc-10.patch Upstream
+package/open2300/0001-fix-makefile.patch Upstream
+package/openblas/0001-Makefile.system-don-t-specify-optimization-level-bui.patch Upstream
+package/openjdk/17.0.6+10/0001-Add-ARCv2-ISA-processors-support-to-Zero.patch Upstream
+package/openldap/0001-fix_cross_strip.patch Upstream
+package/openldap/0002-fix-bignum.patch Upstream
+package/openldap/0003-disable-docs.patch Upstream
+package/openldap/0004-revert-ITS-3977-fix-libtool-static-behavior-to-match.patch Upstream
package/openntpd/S49ntp Shellcheck Variables
+package/openocd/0001-configure-enable-build-on-uclinux.patch Upstream
+package/openocd/0002-configure.ac-fix-autoreconf-with-autoconf-2.70.patch Upstream
+package/openocd/0003-stlink-fix-SIGSEGV-with-libusb-v1.0.24-33-g32a2206-1.patch Upstream
+package/openpgm/0001-Rename-openpgm-5.2.pc.in.patch Upstream
+package/openpgm/0002-openpgm-pgm-checksum.c-fix-build-with-32-bits-MMX.patch Upstream
+package/openpgm/0003-fix-build-on-macOS-ARM.patch Upstream
+package/openpowerlink/0001-install-the-stack-libraries-to-lib-subdirectory.patch Upstream
+package/openpowerlink/0002-cmake-install-oplk-headers-files.patch Upstream
+package/openpowerlink/0003-Add-top-level-CMakeLists.txt.patch Upstream
+package/openrc/0001-init.d-sysctl.in-add-support-for-busybox-sysctl.patch Upstream
+package/openrc/0002-sh-init.sh.Linux.in-change-run-lock-from-root-uucp-t.patch Upstream
+package/openrc/0003-init.d-agetty-replace-sbin-agetty-by-sbin-getty.patch Upstream
+package/openrc/0004-init.d-agetty-start-agetty-after-all-sevices.patch Upstream
+package/openrc/0005-runlevels-do-not-add-agetty.tty-1-6-if-MKSYSVINIT-ye.patch Upstream
+package/openrc/0006-Also-create-run-lock-subsys-directory.patch Upstream
+package/opensc/0002-added-compatibility-with-LibreSSL.patch Upstream
+package/opensc/0003-Fix-build-with-libressl-3.5.0.patch Upstream
package/openssh/S50sshd EmptyLastLine Indent Variables
+package/openswan/0001-lib-libopenswan-constants.c-workaround-missing-ns_t_.patch Upstream
+package/opentyrian/0001-Move-definitions-that-don-t-need-to-be-exposed-from-opl-h-to-opl-c.patch Upstream
+package/openvmtools/0001-no_cflags_werror.patch Upstream
+package/openvmtools/0002-dont-force-cppflags.patch Upstream
+package/openvmtools/0003-Rename-poll-h-into-vm_poll-h-to-fix-build-failure-on-musl.patch Upstream
+package/openvmtools/0004-Remove-assumptions-about-glibc-being-only-libc-imple.patch Upstream
+package/openvmtools/0005-Use-configure-test-for-struct-timespec.patch Upstream
+package/openvmtools/0006-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch Upstream
+package/openvmtools/0007-Use-configure-to-test-for-feature-instead-of-platfor.patch Upstream
+package/openvmtools/0008-Use-configure-test-for-sys-stat.h-include.patch Upstream
+package/openvmtools/0011-open-vm-tools-vmhgfs-fuse-fsutils.h-fix-build-on-mus.patch Upstream
+package/openvmtools/0012-Make-HgfsConvertFromNtTimeNsec-aware-of-64-bit-time_.patch Upstream
package/openvmtools/shutdown Shellcheck
package/openvpn/S60openvpn Indent Shellcheck Variables
+package/oprofile/0001-musl.patch Upstream
+package/optee-client/0001-libteeacl-condition-libteeacl-with-WITH_TEEACL.patch Upstream
+package/optee-client/0002-libteeacl-use-realloc-instead-of-reallocarray.patch Upstream
+package/opusfile/0001-Propagate-allocation-failure-from-ogg_sync_buffer.patch Upstream
+package/oracle-mysql/0000-ac_cache_check.patch Upstream
+package/oracle-mysql/0001-configure-ps-cache-check.patch Upstream
+package/oracle-mysql/0002-use-new-readline-iface.patch Upstream
+package/oracle-mysql/0003-ac_stack_direction-is-unset.patch Upstream
+package/oracle-mysql/0004-Fix-gen_lex_hash-execution.patch Upstream
+package/oracle-mysql/0005-bison_3_breaks_mysql_server_build.patch Upstream
+package/oracle-mysql/0006-no-force-static-build.patch Upstream
+package/oracle-mysql/0007-dont-install-in-mysql-directory.patch Upstream
+package/oracle-mysql/0008-fix-type-conversion.patch Upstream
+package/oracle-mysql/0009-gcc7.patch Upstream
+package/oracle-mysql/0010-fix-build-without-zlib.patch Upstream
package/oracle-mysql/S97mysqld Shellcheck Variables
package/owfs/S55owserver Shellcheck Variables
package/owfs/S60owfs Shellcheck Variables
+package/owl-linux/0001-fix-for-linux-3.3.x.patch Upstream
+package/patch/0001-Fix-segfault-with-mangled-rename-patch.patch Upstream
+package/patch/0002-Allow-input-files-to-be-missing-for-ed-style-patches.patch Upstream
+package/patch/0003-Fix-arbitrary-command-execution-in-ed-style-patches-.patch Upstream
+package/patch/0004-Invoke-ed-directly-instead-of-using-the-shell.patch Upstream
+package/patch/0005-Don-t-follow-symlinks-unless--follow-symlinks-is-given.patch Upstream
+package/patchelf/0001-Add-option-to-make-the-rpath-relative-under-a-specif.patch Upstream
+package/paxtest/0001-genpaxtest-move-log-location.patch Upstream
+package/paxtest/0002-paxtest-page-alignment-ARM-and-NIOS2-arch.patch Upstream
+package/pciutils/0001-Workaround-build-failure-with-older-binutils.patch Upstream
+package/pcm-tools/0001-pmu-query.py-fix-python3-errors-add-linux-platform-s.patch Upstream
+package/pcmanfm/0001-po-de-po-fix-build-with-gettext-tiny.patch Upstream
+package/pcre/0001-Kill-compatibility-bits.patch Upstream
+package/pcre/0002-Disable-C-unit-tests.patch Upstream
+package/pdmenu/0001-autoconf-makeinfo.in-link-with-INTLLIBS-if-needed.patch Upstream
+package/pdmenu/0002-Makefile-autoconf-makeinfo.in-support-build-install-.patch Upstream
+package/perl-net-ssleay/0001-fix-build-system.patch Upstream
+package/perl-sys-cpu/0001-remove-extraneous-include.patch Upstream
+package/perl-xml-libxml/0001-Makefile-PL.patch Upstream
+package/php-amqp/0001-add-build-support-for-php-8.patch Upstream
+package/php-amqp/0002-more-work-for-php-8.patch Upstream
+package/php-geoip/0001-add-build-support-for-php8.patch Upstream
+package/php-gnupg/0001-Remove-inlining-_phpc_res_close.patch Upstream
+package/php-lua/0001-ZEND_ACC_ALLOW_STATIC-ZEND_ACC_STATIC-for-static-met.patch Upstream
+package/php-lua/0002-php8-explicitly-declare-arginfo.patch Upstream
+package/php-zmq/0001-updates-for-php7.4-and-php8.0.patch Upstream
+package/php-zmq/0002-fix-for-php-7.3.patch Upstream
+package/php-zmq/0003-fix-for-php-8.0.0beta2.patch Upstream
+package/php/0001-acinclude.m4-don-t-unset-variables.patch Upstream
+package/php/0002-iconv-tweak-iconv-detection.patch Upstream
+package/php/0003-configure-disable-the-phar-tool.patch Upstream
+package/php/0004-Call-apxs-with-correct-prefix.patch Upstream
+package/php/0005-allow-opcache-cross-compiling.patch Upstream
+package/picocom/0001-Compile-with-libc-s-without-cispeed-cospeed.patch Upstream
+package/pifmrds/0001-Makefile-cross-compile-friendly.patch Upstream
+package/pifmrds/0002-Makefile-use-LDFLAGS.patch Upstream
+package/pifmrds/0003-Makefile-fix-static-link.patch Upstream
package/pigpio/S50pigpio Shellcheck Variables
+package/pistache/0001-src-common-transport.cc-fallback-value-for-RUSAGE_TH.patch Upstream
+package/pistache/0002-src-server-listener.cc-fix-libressl-build.patch Upstream
+package/pixman/0001-Disable-tests.patch Upstream
+package/pkcs11-helper/0001-openssl-libressl-3-5-0-does-not-have-DSA_meth_set1_name.patch Upstream
+package/pkgconf/0001-Only-prefix-with-the-sysroot-a-subset-of-variables.patch Upstream
+package/pkgconf/0002-Revert-main-assume-modversion-insted-of-version-if-o.patch Upstream
package/pkgconf/pkg-config.in Shellcheck
-package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch Sob
+package/poco/0001-Fix-optional-JSON-support-for-MySQL-3753.patch Sob Upstream
+package/poke/0001-configure.ac-HELP2MAN-replace-by-true-when-cross-com.patch Upstream
+package/poke/0002-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
+package/policycoreutils/0001-Add-DESTDIR-to-all-paths-that-use-an-absolute-path.patch Upstream
+package/policycoreutils/0002-Add-PREFIX-to-host-paths.patch Upstream
package/postgresql/S50postgresql Variables
+package/pound/0001-fix-openssl-1.0.2.patch Upstream
+package/pound/0002-fix-openssl-1.1.0.patch Upstream
+package/powertop/0001-dont-force-stack-smashing-protection.patch Upstream
+package/pppd/0001-pppd-Fix-compilation-with-older-glibc-or-kernel-headers.patch Upstream
+package/pppd/0002-pppd-eap-tls.c-fix-build-with-libressl.patch Upstream
+package/pptp-linux/0001-susv3-legacy.patch Upstream
+package/pptp-linux/0002-fix-parallel-build.patch Upstream
+package/prboom/0001-libpng-1.4.patch Upstream
+package/prboom/0002-configure-remove-predefined-O2-optimization-flag.patch Upstream
+package/prelink-cross/0001-src-rtld-dl-tls.c-Fix-TLS-offsets-computation-for-s3.patch Upstream
+package/procps-ng/0001-configure-Add--disable-w.patch Upstream
+package/procps-ng/0002-escape-c-Fix-missing-nl_langinfo-on-certain-configs.patch Upstream
+package/procps-ng/0003-fix-pifd_open-check.patch Upstream
package/procps-ng/S02sysctl Variables
package/proftpd/S50proftpd Indent Shellcheck Variables
+package/prosody/0001-enable-syslog.patch Upstream
+package/prosody/0002-add-pidfile.patch Upstream
package/prosody/S50prosody Indent Shellcheck Variables
+package/protozero/0001-CMakeLists.txt-protobuf-is-only-needed-for-tests.patch Upstream
+package/proxychains-ng/0001-add-configure-check-for-non-POSIX-compliant-getnameinfo-signature.patch Upstream
package/ptpd/S65ptpd Indent Shellcheck Variables
+package/ptpd2/0001-musl.patch Upstream
+package/ptpd2/0002-ntp_isc_md5-rename-EVP_MD_CTX-into-PTPD_EVP_MD_CTX.patch Upstream
+package/ptpd2/0003-Solve-issue-25-Removing-type-U64-from-net-snmp-relat.patch Upstream
package/ptpd2/S65ptpd2 Indent Shellcheck Variables
+package/pulseaudio/0001-shm.c-use-_Static_assert-instead-of-static_assert-fo.patch Upstream
+package/pulseaudio/0002-build-sys-Fix-atomic-support-detection.patch Upstream
+package/pulseaudio/0003-build-sys-Add-missing-libatomic_ops-dependencies.patch Upstream
+package/pulseaudio/0004-meson.build-fix-build-without-C.patch Upstream
package/pulseaudio/S50pulseaudio ConsecutiveEmptyLines EmptyLastLine Indent Variables
+package/pulseview/0001-Replace-obsolete-deprecated-Qt-methods.patch Upstream
+package/pulseview/0002-Fix-broken-build-due-to-C-template-behind-C-linkage.patch Upstream
+package/pulseview/0003-Support-glibmm-2.68.patch Upstream
+package/putty/0001-unix-uxutils.h-fix-build-on-uclibc.patch Upstream
+package/python-aiohttp-remotes/0001-Fix-flit_core-build-requires-backend.patch Upstream
+package/python-automat/0001-Remove-uneeded-dependency-to-wheel.patch Upstream
+package/python-crossbar/0001-Avoid-intentional-syntax-error.patch Upstream
+package/python-crossbar/0002-requirements-min.txt-drop-indirect-dependencies.patch Upstream
+package/python-crossbar/0003-crossbar-webservice-wap-use-markupsafe-instead-of-we.patch Upstream
+package/python-daphne/0001-remove-pytest-runner-requirement.patch Upstream
+package/python-dnspython/0001-Remove-spurious-wheel-build-dependency.patch Upstream
+package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch Upstream
+package/python-m2crypto/0001-Mitigate-the-Bleichenbacher-timing-attacks-in-the-RSA-decryption-API-CVE-2020-25657.patch Upstream
+package/python-pybind/0001-pybind11-commands.py-support-STAGING_DIR.patch Upstream
+package/python-pylibftdi/0001-do-not-use-find-library.patch Upstream
+package/python-pyqt5/0001-configure-skip-qtdetail.patch Upstream
+package/python-pyqt5/0002-fix-QtCoremod.sip-syntax-error.patch Upstream
+package/python-pyudev/0001-Workaround-finding-libudev-on-systems-without-ldconf.patch Upstream
+package/python-pyzmq/0001-detect.py-fix-the-ZMQ-version-check-to-the-ZMQ-versi.patch Upstream
+package/python-scipy/0001-build-sh4-FE.patch Upstream
+package/python-setuptools/0001-add-executable.patch Upstream
+package/python-sip/0001-remove-join-from-sip-h-files-string.patch Upstream
package/python-web2py/S51web2py Shellcheck Variables
-package/rdesktop/0001-8bit-colors.patch Sob
+package/python-ws4py/0001-Adjust-ws4py-for-Python-3.7-syntax.patch Upstream
+package/python3/0001-Make-the-build-of-pyc-files-conditional.patch Upstream
+package/python3/0002-Disable-buggy_getaddrinfo-configure-test-when-cross-.patch Upstream
+package/python3/0003-Add-infrastructure-to-disable-the-build-of-certain-e.patch Upstream
+package/python3/0004-Adjust-library-header-paths-for-cross-compilation.patch Upstream
+package/python3/0005-Don-t-look-in-usr-lib-termcap-for-libraries.patch Upstream
+package/python3/0006-Don-t-add-multiarch-paths.patch Upstream
+package/python3/0007-Abort-on-failed-module-build.patch Upstream
+package/python3/0008-Serial-ioctl-workaround.patch Upstream
+package/python3/0009-Do-not-adjust-the-shebang-of-Python-scripts-for-cros.patch Upstream
+package/python3/0010-Misc-python-config.sh.in-ensure-sed-invocations-only.patch Upstream
+package/python3/0011-Add-an-option-to-disable-pydoc.patch Upstream
+package/python3/0012-Add-an-option-to-disable-lib2to3.patch Upstream
+package/python3/0013-Add-option-to-disable-the-sqlite3-module.patch Upstream
+package/python3/0014-Add-an-option-to-disable-the-tk-module.patch Upstream
+package/python3/0015-Add-an-option-to-disable-the-curses-module.patch Upstream
+package/python3/0016-Add-an-option-to-disable-expat.patch Upstream
+package/python3/0017-Add-an-option-to-disable-CJK-codecs.patch Upstream
+package/python3/0018-Add-an-option-to-disable-NIS.patch Upstream
+package/python3/0019-Add-an-option-to-disable-unicodedata.patch Upstream
+package/python3/0020-Add-an-option-to-disable-IDLE.patch Upstream
+package/python3/0021-Add-an-option-to-disable-decimal.patch Upstream
+package/python3/0022-Add-an-option-to-disable-the-ossaudiodev-module.patch Upstream
+package/python3/0023-Add-an-option-to-disable-openssl-support.patch Upstream
+package/python3/0024-Add-an-option-to-disable-the-readline-module.patch Upstream
+package/python3/0025-Add-options-to-disable-zlib-bzip2-and-xz-modules.patch Upstream
+package/python3/0026-python-config.sh-don-t-reassign-prefix.patch Upstream
+package/python3/0027-Add-an-option-to-disable-uuid-module.patch Upstream
+package/python3/0028-fix-building-on-older-distributions.patch Upstream
+package/python3/0029-configure.ac-fixup-CC-print-multiarch-output-for-mus.patch Upstream
+package/python3/0030-Add-an-option-to-disable-the-berkeleydb-module.patch Upstream
+package/python3/0031-lib-crypt-uClibc-ng-doesn-t-set-errno-when-encryptio.patch Upstream
+package/qemu/0001-tests-fp-disable-fp-bench-build-by-default.patch Upstream
+package/qemu/0002-softmmu-qemu-seccomp.c-add-missing-header-for-CLONE_.patch Upstream
+package/qemu/0003-target-sh4-Mask-restore-of-env-flags-from-tb-flags.patch Upstream
+package/qextserialport/0001-Create-a-main-include-file-QExtSerialPort.patch Upstream
+package/qextserialport/0002-Tell-qmake-to-add-a-pkgconfig-file-to-ease-usage-wit.patch Upstream
+package/qt5/qt5base/0001-qtbase-Fix-build-error-when-using-EGL.patch Upstream
+package/qt5/qt5base/0002-double-conversion-enable-for-microblaze.patch Upstream
+package/qt5/qt5base/0003-double-conversion-enable-for-nios2.patch Upstream
+package/qt5/qt5base/0004-double-conversion-enable-for-xtensa.patch Upstream
+package/qt5/qt5base/0005-eglfs-avoid-breaking-compilation-for-obscure-EGLNativeDisplayType-types.patch Upstream
+package/qt5/qt5base/0006-Fix-build-on-riscv32.patch Upstream
+package/qt5/qt5base/0007-src-corelib-configure.json-fix-atomicfptr-detection.patch Upstream
+package/qt5/qt5base/0008-eglconvenience-add-missing-QList-include.patch Upstream
+package/qt5/qt5declarative/0001-qsgtexture-fix-debug-build-with-uclibc.patch Upstream
+package/qt5/qt5declarative/0002-qv4regexp_p-needs-c-limits-include-instead-of-plain-.patch Upstream
+package/qt5/qt5enginio/0001-Do-not-use-deprecated-QLinkedList.patch Upstream
+package/qt5/qt5location/0001-3rdparty-mapbox-gl-native-fix-musl-compile-pthread_g.patch Upstream
+package/qt5/qt5script/0001-Detect-32-bits-armv8-a-architecture.patch Upstream
+package/qt5/qt5tools/0001-Disable-designer-tool-fixes-configure-error.patch Upstream
+package/qt5/qt5wayland/0001-Add-missing-define-guards.patch Upstream
+package/qt5/qt5webengine-chromium/0001-Add-python3-build-support.patch Upstream
+package/qt5/qt5webengine-chromium/0002-Don-t-rebase-sysroot-path.patch Upstream
+package/qt5/qt5webengine/0001-gn.pro-don-t-link-statically-with-libstc.patch Upstream
+package/qt5/qt5webengine/0002-Add-python3-build-support.patch Upstream
+package/qt5/qt5webkit/0001-WinCairo-PlayStation-ICU-68.1-no-longer-exposes-FALS.patch Upstream
+package/qt5/qt5webkit/0002-Fix-compilation-with-Python-3.9-avoid-passing-encodi.patch Upstream
+package/qt5/qt5webkit/0003-Let-Bison-generate-the-header-directly-to-fix-build-.patch Upstream
+package/qt5/qt5webkit/0004-Remove-invalid-g_object-declarations-to-fix-build-wi.patch Upstream
+package/qt5/qt5webkit/0005-Add-support-for-ARC-processors.patch Upstream
+package/qt5/qt5webkit/0006-Warnings-due-to-AppSinkCallbacks-struct-growth-https.patch Upstream
+package/qt5cinex/0001-Fix-execution-problem-with-Qt5.3.patch Upstream
+package/quagga/0001-fix-ipctl-forwarding.patch Upstream
+package/quagga/0002-lib-prefix.h-fix-build-with-gcc-10.patch Upstream
+package/quagga/0003-Fix-build-with-gcc-10.patch Upstream
+package/quotatool/0001-fix-missing-__P-definition-for-musl-compile.patch Upstream
+package/racehound/0001-Fix-module-install-path-lib-instead-of-usr-lib-prefi.patch Upstream
+package/ranger/0001-colorscheme-check-for-compiled-python-files.patch Upstream
+package/rapidxml/0001-ensure-internal-print-operations-are-declared-before.patch Upstream
+package/raptor/0002-Calcualte-max-nspace-declarations-correctly-for-XML-.patch Upstream
+package/raptor/0003-XML-Writer-compare-namespace-declarations-correctly.patch Upstream
+package/raspberrypi-usbboot/0001-Makefile-allow-passing-CFLAGS-LDFLAGS.patch Upstream
+package/rdesktop/0001-8bit-colors.patch Sob Upstream
+package/read-edid/0001-Fix-install-file-list.patch Upstream
+package/read-edid/0002-Fix-compiler-check.patch Upstream
+package/read-edid/0003-fix-build-with-gcc-10.patch Upstream
+package/readline/0001-curses-link.patch Upstream
+package/redis/0001-uclibc.patch Upstream
+package/redis/0002-largefile-conditional-define.patch Upstream
+package/redis/0003-redis.conf-adjust-defauts-for-buildroot.patch Upstream
package/redis/S50redis Shellcheck Variables
+package/resiprocate/0001-Fix-some-issue-compiling-with-Visual-Studio.patch Upstream
package/restorecond/S02restorecond Shellcheck
+package/ripgrep/0001-puts-jemalloc-allocator-behind-a-cargo-feature-flag.patch Upstream
+package/riscv-isa-sim/0001-riscv-disable-precompiled-headers.patch Upstream
package/rng-tools/S21rngd Shellcheck Variables
+package/rocksdb/0001-build_tools-build_detect_platform-fix-C-tests.patch Upstream
+package/rp-pppoe/0001-src-pppoe.h-fix-build-with-musl-libc.patch Upstream
+package/rpcbind/0001-Remove-yellow-pages-support.patch Upstream
package/rpcbind/S30rpcbind EmptyLastLine Indent Variables
-package/rubix/0002-misc-fixes.patch Sob
+package/rpi-userland/0001-Add-.pc-files-for-the-OpenGLESv2-EGL-and-bcm_host-li.patch Upstream
+package/rpi-userland/0002-interface-remove-faulty-assert-to-make-weston-happy-.patch Upstream
+package/rpi-userland/0003-Disable-Werror-everywhere.patch Upstream
+package/rpi-userland/0004-host-applications-disable-missing-applications.patch Upstream
+package/rpi-userland/0005-dtmerge-add-missing-include-for-va_list.patch Upstream
+package/rpi-userland/0006-interface-vcos-pthreads-CMakeLists.txt-fix-build-wit.patch Upstream
+package/rpi-userland/0007-GLES2-gl2ext.h-add-GLint64-GLuint64-and-GLsync-typed.patch Upstream
+package/rt-tests/0001-Fix-a-build-issue-with-uClibc-ng.patch Upstream
+package/rt-tests/0002-Makefile-drop-explicit-undefine-PYLIB-for-compatibil.patch Upstream
+package/rtl8192eu/0002-Fix-conflicting-get_ra-on-PowerPC.patch Upstream
+package/rtl8812au-aircrack-ng/0001-Fix-build-failure-on-PowerPC64.patch Upstream
+package/rtl_433/0001-CMakeLists.txt-use-pkg-config-to-detect-openssl-when.patch Upstream
+package/rtl_433/0002-minor-Fix-mongoose-build-without-threads.patch Upstream
+package/rtmpdump/0001-include-limits.h.patch Upstream
+package/rtorrent/0001-Added--disable-execinfo-option-to-configure.patch Upstream
+package/rtty/0001-CMakeLists.txt-prefer-pkg_check_modules.patch Upstream
+package/rubix/0001-dont-use-legacy-functions.patch Upstream
+package/rubix/0002-misc-fixes.patch Sob Upstream
+package/ruby/0001-Fix-build-with-LibreSSL-3-5.patch Upstream
+package/rygel/0001-build-Add-man_pages-build-options.patch Upstream
+package/rygel/0002-meson.build-fix-g_ir_compiler-calls.patch Upstream
package/rygel/S99rygel Indent Shellcheck Variables
+package/s6-linux-init/0001-configure-add-D_GNU_SOURCE.patch Upstream
+package/s6-linux-utils/0001-src-s6-linux-utils-rngseed.c-fix-build-with-glibc.patch Upstream
+package/safeclib/0001-fix-armv7-asm-inline-error-GH-115.patch Upstream
+package/samba4/0001-libreplace-disable-libbsd-support.patch Upstream
+package/samba4/0002-build-find-pre-built-heimdal-build-tools-in-case-of-.patch Upstream
+package/samba4/0003-ldap_message_test.c-include-stdint.h-before-cmoka.h.patch Upstream
+package/samba4/0004-lib-util-Add-signal.h-include.patch Upstream
+package/samba4/0005-samba-4.16.2-fix-build-without-innetgr.patch Upstream
package/samba4/S91smb Indent Shellcheck Variables
+package/sane-backends/0001-sane_backend-add-missing-config.h.patch Upstream
+package/screen/0001-no-memcpy-fallback.patch Upstream
+package/screen/0002-install-no-backup-binary.patch Upstream
+package/screen/0003-install-always-chmod.patch Upstream
+package/screen/0004-install-nonversioned-binary.patch Upstream
+package/screen/0005-rename-sched_h.patch Upstream
+package/screen/0006-comm-h-now-depends-on-term-h.patch Upstream
+package/screen/0007-comm.h-needed-for-list_-display-generic-.o.patch Upstream
+package/scrub/0001-configure-ac-make-sure-m4-macros-are-included-in-the-build.patch Upstream
+package/sdl/0001-use-correct-directfb-config.patch Upstream
+package/sdl/0002-fix-compilation-with-libx11.patch Upstream
+package/sdl/0003-SDL_x11yuv.c-fix-possible-use-after-free.patch Upstream
+package/sdl_mixer/0001-Add-Libs.private-field-to-pkg-config-file.patch Upstream
+package/sdl_mixer/0002-configure__set_macro_directory.patch Upstream
+package/sdl_mixer/0003-configure.ac-fix-static-linking-with-tremor.patch Upstream
+package/sdl_sound/0001-fix-constness.patch Upstream
+package/sdl_sound/0002-remove-werror.patch Upstream
+package/sdl_sound/0003-renamed-physfs-export.patch Upstream
package/seatd/S70seatd NotExecutable Variables
+package/sedutil/0001-Common-log.h-time-2-needs-time.h.patch Upstream
+package/sentry-native/0001-sentry.h-include-ucontext.h.patch Upstream
package/ser2net/S50ser2net Indent Shellcheck Variables
+package/setools/0001-Do-not-export-use-setools.InfoFlowAnalysis-and-setoo.patch Upstream
+package/setserial/0001-build-system-fix.patch Upstream
+package/setserial/0002-tiocghayesesp-build-fix.patch Upstream
+package/sg3_utils/0001-src-sg_dd.c-fix-musl-build.patch Upstream
+package/sg3_utils/0002-configure.ac-fix-uclibc-ng-build.patch Upstream
+package/shadowsocks-libev/0001-configure.ac-use-pkg-config-to-find-netfilter_conntr.patch Upstream
+package/shadowsocks-libev/0002-fix-maybe-uninitialized-errors.patch Upstream
+package/shadowsocks-libev/0003-lib-Makefile.am-remove-static-from-LDFLAGS.patch Upstream
+package/shairport-sync/0001-configure.ac-find-sndfile-through-pkg-config.patch Upstream
package/shairport-sync/S99shairport-sync Indent Shellcheck Variables
+package/shapelib/0001-Remove-double-free-in-contrib-shpsrt.patch Upstream
+package/shared-mime-info/0001-Remove-incorrect-dependency-from-install-data-hook.patch Upstream
+package/shellinabox/0001-Makefile-disable-always-building-statically.patch Upstream
+package/shellinabox/0002-CVE-2018-16789-fix-for-broken-multipart-form-data.patch Upstream
package/skeleton-init-systemd/fakeroot_tmpfiles.sh Shellcheck
+package/slang/0001-slsh-libs.patch Upstream
package/smcroute/S41smcroute Indent NotExecutable Variables
+package/smstools3/0001-fix-Makefile.patch Upstream
+package/smstools3/0002-fix-build-with-gcc-10.x.patch Upstream
package/smstools3/S50smsd Shellcheck Variables
-package/solarus/0002-Add-a-basic-FindOpenGLES2.cmake.patch Sob
+package/snappy/0001-Add-inline-with-SNAPPY_ATTRIBUTE_ALWAYS_INLINE.patch Upstream
+package/snmppp/0001-fix-build-without-v3.patch Upstream
+package/snort/0001-configure.in-Avoid-path-poisoning-with-libpcap.patch Upstream
+package/snort/0002-configure.in-Allow-to-override-the-INADDR_NONE-check.patch Upstream
+package/snort/0003-configure.in-convert-AC_RUN_IFELSE-to-AC_CHECK_MEMBE.patch Upstream
+package/snort/0004-configure.in-convert-AC_RUN_IFELSE-to-AC_COMPILE_IFE.patch Upstream
+package/snort/0005-fix-sparc.patch Upstream
+package/snort/0006-Fix-compile-error-when-building-against-uclibc-or-mu.patch Upstream
+package/snort/0007-Fix-error-when-building-on-a-Fedora-host-machine.patch Upstream
+package/snort/0008-Fix-NO-OPTIMIZE.patch Upstream
+package/socat/0001-no-documentation.patch Upstream
+package/socat/0002-compat-set-NETDB_INTERNAL.patch Upstream
+package/socketcand/0001-Fix-GCC10-build-failure.patch Upstream
+package/softether/0001-Create-autotools-plumbing-for-SoftEther.patch Upstream
+package/softether/0002-Create-libsoftether.so-and-dynamically-link.patch Upstream
+package/softether/0003-use-fhs-install-directories.patch Upstream
+package/softether/0004-create-non-forking-softetherd-for-upstart-and-systemd.patch Upstream
+package/softether/0005-change-GetExeDir-to-GetStateDir-in-Cedar-and-Mayaqua.patch Upstream
+package/softether/0006-cross-compile.patch Upstream
+package/softether/0007-iconv.patch Upstream
+package/softether/0008-librt.patch Upstream
+package/softether/0009-uclibc-ai-addrconfig.patch Upstream
+package/solarus/0001-cmake-remove-Werror.patch Upstream
+package/solarus/0002-Add-a-basic-FindOpenGLES2.cmake.patch Sob Upstream
+package/sox/0001-uclibc.patch Upstream
+package/sox/0002-configure.ac-put-back-disable-stack-protector.patch Upstream
+package/sox/0003-configure.ac-fix-static-linking-with-id3tag.patch Upstream
+package/sox/0004-configure.ac-fix-static-linking-with-magic.patch Upstream
+package/sox/0005-configure.ac-fix-static-linking-with-sndfile.patch Upstream
+package/sp-oops-extract/0001-Make-the-Makefile-more-cross-compiler-friendly.patch Upstream
+package/sp-oops-extract/0002-stdint-cleanup.patch Upstream
+package/spandsp/0001-configure.ac-fix-AVX-SSE-and-MMX-options.patch Upstream
+package/speechd/0001-add-disable-doc.patch Upstream
+package/speex/0001-thumb2-support.patch Upstream
package/squid/S97squid Indent Shellcheck Variables
+package/sredird/0001-termio.patch Upstream
+package/sscep/0001-Fix-getopt-linking-error.patch Upstream
package/sshguard/S49sshguard Indent
package/sslh/S35sslh Indent Shellcheck Variables
+package/start-stop-daemon/0001-add-uclibc-alias-and-musl.patch Upstream
+package/start-stop-daemon/0002-just-warn-on-missing-arch.patch Upstream
+package/statserial/0001-ncurses-link.patch Upstream
+package/stellarium/0001-add-missing-include.patch Upstream
+package/stress-ng/0001-stress-mmap-fix-build-with-HAVE_SYSCALL-or-__NR_mmap.patch Upstream
+package/stress-ng/0002-stress-regs-fix-build-on-riscv32.patch Upstream
+package/stress-ng/0003-Makefile-introduce-PRESERVE_CFLAGS-build-flag.patch Upstream
package/stunnel/S50stunnel Indent Shellcheck Variables
+package/sudo/0001-configure.ac-fix-openssl-static-build.patch Upstream
+package/sunxi-tools/0001-meminfo-Access-to-io-memory-via-pointers.patch Upstream
package/supervisor/S99supervisord Variables
+package/suricata/0001-python-ensure-proper-shabang-on-python-scripts.patch Upstream
+package/suricata/0002-configure.ac-allow-the-user-to-override-RUST_TARGET.patch Upstream
package/suricata/S99suricata Shellcheck
package/swupdate/swupdate.sh Shellcheck
+package/sylpheed/0001-harden-link-checker-before-accepting-click.patch Upstream
+package/syslog-ng/0001-fix-build-on-uclibc.patch Upstream
+package/sysprof/0001-define-NT_GNU_BUILD_ID.patch Upstream
package/sysrepo/S51sysrepo-plugind Indent Shellcheck
+package/system-config-printer/0001-Add-option-to-disable-xmlto-manual-generation.patch Upstream
+package/system-config-printer/0002-configure-accept-non-system-cups-config.patch Upstream
+package/sysvinit/0001-Makefile-disable-stack-protector-strong.patch Upstream
+package/tar/0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
package/targetcli-fb/S50target Shellcheck Variables
+package/taskd/0001-Fix-missing-cmakedefine-HAVE_GET_CURRENT_DIR_NAME.patch Upstream
+package/taskd/0002-Use-correct-variables-for-GnuTLS-detection.patch Upstream
+package/taskd/0003-CMakeLists-use-pkg-config-uuid-detection.patch Upstream
+package/tbb/0001-Musl-linux-can-not-use-RTLD_DEEPBIND.patch Upstream
+package/tbb/0002-mallinfo-is-only-defined-on-glibc-and-android.patch Upstream
+package/tbb/0003-Define-ITT_ARCH_IA64-when-undefiend.patch Upstream
package/tcf-agent/S55tcf-agent Shellcheck Variables
+package/tcl/0001-dont-build-compat.patch Upstream
+package/tesseract-ocr/0001-Check-if-platform-supports-feenableexcept.patch Upstream
+package/tesseract-ocr/0002-configure.ac-fix-build-on-aarch64_be.patch Upstream
+package/tftpd/0001-Use-extern-qualifier-to-fix-gcc-10.x-build.patch Upstream
package/tftpd/S80tftpd-hpa Indent Shellcheck Variables
+package/ti-gfx/0001-newclkapi.patch Upstream
+package/ti-gfx/0002-fix-build-omaplfb-linux.patch Upstream
+package/ti-gfx/0003-km_install_modules.patch Upstream
package/ti-gfx/S80ti-gfx Shellcheck Variables
package/ti-gfx/esrev.sh Shellcheck
+package/ti-sgx-um/0001-Makefile-do-not-install-init-script.patch Upstream
package/ti-sgx-um/S80ti-sgx Variables
+package/ti-utils/0001-plt.h-fix-build-with-gcc-10.patch Upstream
+package/tiff/0001-tiffcrop-Correct-simple-copy-paste-error-Fix-488.patch Upstream
+package/tinyalsa/0001-include-time.h-before-asound.h.patch Upstream
+package/tinycbor/0001-Makefile-add-DISABLE_WERROR.patch Upstream
+package/tinycompress/0001-wave-add-time.h-missing-header-inclusion.patch Upstream
+package/tinydtls/0001-sha2-sha2.c-fix-build-on-big-endian.patch Upstream
+package/tinymembench/0001-arm-fix-build-on-Thumb-only-architectures.patch Upstream
+package/tinyproxy/0001-prevent-junk-from-showing-up-in-error-page-in-invalid-requests.patch Upstream
+package/tinyxml/0001-In-stamp-always-advance-the-pointer-if-p-0xef.patch Upstream
+package/tor/0001-patch-src_lib_crypt_ops_crypto_dh_openssl_c.patch Upstream
+package/tor/0002-patch-src_lib_crypt_ops_crypto_rsa_openssl_c.patch Upstream
+package/tor/0003-patch-src_lib_tls_x509_openssl_c.patch Upstream
+package/tovid/0001-manpage.patch Upstream
package/tpm2-abrmd/S80tpm2-abrmd Indent Shellcheck Variables
+package/tpm2-tss/0001-Temporary-fix-for-build-without-C.patch Upstream
+package/transmission/0001-fix-utypes.patch Upstream
+package/transmission/0002-fix-utp-include.patch Upstream
+package/transmission/0003-configure.ac-fix-autoreconf-with-autoconf-2.70.patch Upstream
package/transmission/S92transmission ConsecutiveEmptyLines Indent Shellcheck Variables
package/triggerhappy/S10triggerhappy Indent Shellcheck Variables
+package/trinity/0001-Fix-build-with-GCC-10.patch Upstream
+package/trinity/0002-net-proto-ip-raw.c-fix-build-with-kernel-5.13.patch Upstream
+package/trinity/0003-Use-fcntl-h-for-dev_t-mode_t.patch Upstream
+package/trinity/0004-drop-decnet.patch Upstream
+package/trousers/0001-Check-if-the-compiler-understands-pie-and-relro-options.patch Upstream
+package/trousers/0002-Check-that-getpwent_r-is-available-before-using-it.patch Upstream
+package/trousers/0003-Fix-build-with-LibreSSL-2-7.patch Upstream
+package/tstools/0001-build-get-along-with-buildroot.patch Upstream
+package/tvheadend/0001-no-check_config.patch Upstream
package/tvheadend/S99tvheadend Indent Shellcheck Variables
+package/uboot-tools/0001-drop-configh-from-tools.patch Upstream
+package/uboot-tools/0002-tools-only-in-no-dot-config-targets.patch Upstream
+package/uboot-tools/0003-tools-Makefile-fix-C-LD-FLAGS-with-CROSS_BUILD_TOOLS.patch Upstream
+package/ubus/0001-Install-server-and-client-examples.patch Upstream
+package/udpcast/0001-fix-musl-build.patch Upstream
+package/uemacs/01-clear-ixon-termios-flag.patch Upstream
+package/uftrace/0001-cmds-records-replace-ADDR_NO_RANDOMIZE-by-its-value.patch Upstream
+package/uhd/0001-host-CMakeLists-add-boost-unit_test_framework-requir.patch Upstream
+package/uhttpd/0001-Remove-Werror.patch Upstream
+package/uhttpd/0002-Fix-TCP_FASTOPEN-related-compile-error.patch Upstream
+package/umtprd/0001-Fix-output_dir-make-dependency.patch Upstream
package/unbound/S70unbound Shellcheck
+package/unifdef/0001-Makefile-fix-error-on-install.patch Upstream
+package/unixodbc/0001-DriverManager-drivermanager.h-fix-build-without-thre.patch Upstream
package/unscd/S46unscd Indent Shellcheck Variables
+package/unzip/0001-Add-a-CMakeFile.txt-to-ease-cross-compilation.patch Upstream
package/upmpdcli/S99upmpdcli Indent Shellcheck Variables
+package/uqmi/0001-uqmi-avoid-gcc-12.x-false-error-reporting-storing-th.patch Upstream
+package/urg/0001-select-h.patch Upstream
+package/urg/0002-urg-gcc6-fix-narrowing-conversion.patch Upstream
+package/usb_modeswitch/0001-fix-systemd-detection.patch Upstream
package/usbguard/S20usbguard Indent Shellcheck Variables
+package/usbmount/0001-rules-fix.patch Upstream
+package/usbmount/0002-use-udev-environment-instead-of-blkid.patch Upstream
+package/ushare/0001-Don-t-build-po-files-if-NLS-is-disabled.patch Upstream
+package/ussp-push/0001-fix-build-against-bluez-4.patch Upstream
+package/ussp-push/0002-fix-build-again-obex-bluez.patch Upstream
+package/ussp-push/0003-add-OBEX_CharToUnicode.patch Upstream
+package/util-linux/0001-lsns-improve-dependence-on-NS_GET_-ioctls.patch Upstream
+package/vala/0001-dont-add-dirty-to-valac-version.patch Upstream
package/vala/vala-wrapper Shellcheck
+package/valgrind/0001-workaround-SIGSEGV-on-PPC.patch Upstream
+package/valgrind/0002-Define-PTRACE_GETSIGINFO-on-PowerPC-when-not-availab.patch Upstream
+package/valgrind/0003-coregrind-fix-compilation-for-uclibc.patch Upstream
+package/vboot-utils/0001-Add-missing-definition-of-MTD_CHAR_MAJOR.patch Upstream
+package/vboot-utils/0002-Add-missing-header-include-for-ssize_t.patch Upstream
+package/vboot-utils/0003-Avoid-RSA-type-redefinition.patch Upstream
+package/vboot-utils/0004-Disable-static-futility.patch Upstream
+package/vboot-utils/0005-include-sys-sysmacros.h-for-major.patch Upstream
+package/vboot-utils/0006-Update-for-openssl-1.1.patch Upstream
+package/vboot-utils/0007-Make-vboot_version-extern-in-header.patch Upstream
+package/vde2/0001-no-cxx.patch Upstream
+package/vde2/0002-fstp-Add-static-to-inline-functions.patch Upstream
+package/vde2/0003-vde_l3-Add-static-to-inline-functions.patch Upstream
+package/vdr/0001-getloadavg.patch Upstream
+package/vdr/0002-musl-compat.patch Upstream
+package/vdr/0003-include-missing-limits.patch Upstream
+package/vdr/0004-i18n.c-_nl_msg_cat_cntr-is-an-internal-symbol-of-som.patch Upstream
+package/vlc/0001-Disable-building-of-statically-linked-vlc-binary.patch Upstream
+package/vlc/0002-automake-add-subdir-objects-option.patch Upstream
+package/vlc/0003-build-use-pkg-config-to-get-tremor-libs.patch Upstream
+package/vlc/0004-Fix-build-error-using-uClibc-by-adding-sys-types.h.patch Upstream
+package/vlc/0005-Don-t-assume-strerror_l-is-available.patch Upstream
+package/vlc/0006-posix-remove-ancient-run-time-fallback-to-real-time-.patch Upstream
+package/vlc/0007-Add-support-for-freerdp2.patch Upstream
+package/vlc/0008-configure.ac-also-use-AC_PATH_PROG-to-check-for-wayl.patch Upstream
+package/vlc/0009-modules-video_filter-opencv_example.cpp-fix-build-wi.patch Upstream
+package/vlc/0010-opengl-missing-library-check.patch Upstream
+package/vpnc/0001-Makefile-allow-to-override-the-PREFIX-variable.patch Upstream
+package/vpnc/0002-Makefile-allow-to-override-the-version.patch Upstream
+package/vpnc/0003-Makefile-allow-passing-custom-CFLAGS-CPPFLAGS.patch Upstream
+package/vpnc/0004-Makefile-provide-an-option-to-not-build-manpages.patch Upstream
+package/vpnc/0005-Makefile-allow-passing-a-custom-path-to-libgcrypt-co.patch Upstream
+package/vpnc/0006-config.c-Replace-deprecated-SUSv3-functions-with-POS.patch Upstream
+package/vpnc/0007-sysdep.h-don-t-assume-error.h-is-available-on-all-Li.patch Upstream
+package/vpnc/0008-sysdep.c-don-t-include-linux-if_tun.h-on-Linux.patch Upstream
+package/vpnc/0009-config.c-add-missing-sys-ttydefaults.h-include.patch Upstream
+package/vsftpd/0001-utmpx-builddef.patch Upstream
+package/vsftpd/0002-fix-CVE-2015-1419.patch Upstream
+package/vsftpd/0003-Prevent-hang-in-SIGCHLD-handler.patch Upstream
package/vsftpd/S70vsftpd Indent Shellcheck Variables
+package/vte/0001-build-Fix-build-with-kernel-headers-from-linux-4-13.patch Upstream
+package/vte/0002-build-Fix-check-for-fstack-protector-compiler-support.patch Upstream
+package/vtun/0001-fix-installation.patch Upstream
+package/vtun/0002-fix-ssl-headers-checks.patch Upstream
+package/vtun/0003-openssl11.patch Upstream
+package/w_scan/0001-musl.patch Upstream
+package/w_scan/0002-si_types-h-fix-build-with-gcc-10.patch Upstream
+package/waffle/0001-cmake-forward-cflags-from-.pc-files-to-waffle-cflags.patch Upstream
+package/waffle/0002-wayland-fix-build-against-version-1-20.patch Upstream
+package/waffle/0003-drop-C-dependency.patch Upstream
+package/wampcc/0001-Add-RISC-V-endian-detection.patch Upstream
+package/wampcc/0002-include-wampcc-platform.h-fix-build-with-musl-1.2.0.patch Upstream
+package/wampcc/0003-Broken-build-on-Windows.patch Upstream
package/watchdogd/S01watchdogd Indent NotExecutable
+package/wavemon/0001-iw_if.h-don-t-include-linux-if.h.patch Upstream
+package/wayland-utils/0001-wayland-info-Fix-build-without-libdrm.patch Upstream
+package/webrtc-audio-processing/0001-Proper-detection-of-cxxabi.h-and-execinfo.h.patch Upstream
+package/weston/0001-tests-Add-dependency-on-screenshooter-client-protocol.patch Upstream
+package/wget/0001-lib-getrandom.c-fix-build-with-uclibc-1.0.35.patch Upstream
+package/wilc-driver/0001-cfg80211.c-fix-missing-prandom_u32-with-Linux-6.1.0.patch Upstream
+package/wilc-driver/0002-spi.c-fix-build-failure-on-remove-callback.patch Upstream
+package/wilc-driver/0003-cfg80211.c-fix-build-failure-with-Linux-5.19-and-6.1.patch Upstream
+package/wilc-driver/0004-Fix-struct-station_parameters-Linux-6.1-build-failur.patch Upstream
+package/wilc-driver/0005-Fix-cast-warnings.patch Upstream
+package/wipe/0001-musl.patch Upstream
+package/wireless_tools/0001-remove-bzero.patch Upstream
+package/wireshark/0001-cmake-lemon-wipe-CMAKE_-EXE_LINKER_FLAGS-SYSROOT-if-.patch Upstream
+package/wlroots/0001-Add-feature-macros-to-more-C-files-.patch Upstream
+package/woff2/0001-CMake-Handle-multiple-libraries-being-returned-for-B.patch Upstream
+package/wpa_supplicant/0001-build-re-enable-options-for-libwpa_client.so-and-.patch Upstream
package/wpa_supplicant/ifupdown.sh Shellcheck
+package/wpewebkit/0001-FELightningNEON.cpp-fails-to-build-NEON-fast-path-se.patch Upstream
+package/x11r7/xapp_luit/0001-posix-openpt.patch Upstream
package/x11r7/xapp_xdm/S99xdm Indent Variables
-package/x11r7/xdriver_xf86-video-mach64/0001-cross-compile.patch Sob
-package/x11r7/xdriver_xf86-video-savage/0001-cross-compile.patch Sob
-package/x11r7/xdriver_xf86-video-tdfx/0001-cross.patch Sob
+package/x11r7/xcursor-transparent-theme/0001-fix-symlink.patch Upstream
+package/x11r7/xdriver_xf86-input-evdev/0001-build-get-rid-of-sdkdir.patch Upstream
+package/x11r7/xdriver_xf86-input-joystick/0001-build-get-rid-of-sdkdir.patch Upstream
+package/x11r7/xdriver_xf86-input-libinput/0001-build-get-rid-of-sdkdir.patch Upstream
+package/x11r7/xdriver_xf86-input-mouse/0001-build-get-rid-of-sdkdir.patch Upstream
+package/x11r7/xdriver_xf86-input-synaptics/0001-build-get-rid-of-sdkdir.patch Upstream
+package/x11r7/xdriver_xf86-video-ark/0001-mibstore.patch Upstream
+package/x11r7/xdriver_xf86-video-ati/0001-Fix-link-failure-with-gcc-10.patch Upstream
+package/x11r7/xdriver_xf86-video-ati/0002-ati-cleanup-terminology-to-use-primary-secondary.patch Upstream
+package/x11r7/xdriver_xf86-video-ati/0003-Guard-local-variable-priv-only-used-with-glamor.patch Upstream
+package/x11r7/xdriver_xf86-video-ati/0004-Only-include-dri-h-with-older-versions-of-xserver.patch Upstream
+package/x11r7/xdriver_xf86-video-fbturbo/0001-sunxi_x_g2d-drop-unused-dri2-include.patch Upstream
+package/x11r7/xdriver_xf86-video-fbturbo/0002-Use-own-thunk-functions-instead-of-fbdevHW-Weak.patch Upstream
+package/x11r7/xdriver_xf86-video-fbturbo/0003-Update-for-1.20-ABI.patch Upstream
+package/x11r7/xdriver_xf86-video-fbturbo/0004-xorg.conf-add-mandatory-modules-fb-shadow-fbdevhw.patch Upstream
+package/x11r7/xdriver_xf86-video-fbturbo/0005-backing_store_tuner-struct-_Window-backStorage-is-go.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0001-Update-to-newer-swap-macros.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0002-Fix-error-unknown-type-name-uint.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0003-support-glibc-2.20.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0004-Make-video-API-forward-and-backward-compatible.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0005-xf86-video-imxfb-fix-m4-hardcodded-paths.patch Upstream
+package/x11r7/xdriver_xf86-video-imx/0006-xserver-1.14-compat.patch Upstream
+package/x11r7/xdriver_xf86-video-mach64/0001-cross-compile.patch Sob Upstream
+package/x11r7/xdriver_xf86-video-nouveau/0001-nouveau-fixup-driver-for-new-X-server-ABI.patch Upstream
+package/x11r7/xdriver_xf86-video-savage/0001-cross-compile.patch Sob Upstream
+package/x11r7/xdriver_xf86-video-savage/0002-xorg-xserver120.patch Upstream
+package/x11r7/xdriver_xf86-video-tdfx/0001-cross.patch Sob Upstream
+package/x11r7/xserver_xorg-server/0001-include-misc.h-fix-uClibc-build.patch Upstream
package/x11r7/xserver_xorg-server/S40xorg Shellcheck Variables
+package/x11vnc/0001-Fix-build-on-32bit-arches-with-64bit-time_t.patch Upstream
+package/x11vnc/0002-scan-limit-access-to-shared-memory-segments-to-current-user.patch Upstream
+package/x265/0001-fix-gcc-options.patch Upstream
+package/xen/0001-9pfs-include-linux-limits.h-for-XATTR_SIZE_MAX.patch Upstream
+package/xen/0002-Fix-build-with-64-bits-time_t.patch Upstream
+package/xen/0003-libs-light-fix-tv_sec-printf-format.patch Upstream
+package/xen/0004-libs-light-fix-tv_sec-fprintf-format.patch Upstream
+package/xenomai/3.0.10/0001-lib-boilerplate-iniparser-Allow-building-with-GCC-10-2-2020101.patch Upstream
+package/xenomai/3.0.10/0002-Add-disable-demo-testsuite-options.patch Upstream
+package/xenomai/3.0.10/0003-lib-cobalt-copperplate-Use-valid-addresses-for-pthread_setspecific.patch Upstream
+package/xfsprogs/0001-mdrestore-do-not-do-dynamic-linking-of-libtool-libra.patch Upstream
+package/xfsprogs/0002-libxfs-do-not-try-to-run-the-crc32selftest.patch Upstream
+package/xfsprogs/0003-libxfs-stop-overriding-MAP_SYNC-in-publicly-exported.patch Upstream
+package/xinetd/0001-ar.patch Upstream
+package/xinetd/0002-destdir.patch Upstream
+package/xinetd/0003-rpc-fix.patch Upstream
+package/xinetd/0004-configure-rlim_t.patch Upstream
+package/xinetd/0005-CVE-2013-4342-xinetd-ignores-user-and-group-directiv.patch Upstream
package/xl2tp/xl2tpd TrailingSpace
+package/xml-security-c/0001-fix-build-with-libressl-3.5.0.patch Upstream
+package/xvisor/0001-psmouse-back.c-fix-build-with-gcc-11.patch Upstream
+package/xxhash/0001-fix-man-page-installation.patch Upstream
+package/xxhash/0002-Makefile-add-dedicated-install-targets.patch Upstream
+package/xxhash/0003-do-no-longer-depend-on-assert-h-for-XXH_STATIC_ASSERT.patch Upstream
+package/xxhash/0004-Makefile-add-install_libxxhash.includes-target.patch Upstream
+package/yajl/0001-Let-the-shared-and-the-static-library-have-the-same-.patch Upstream
+package/yajl/0002-cmake-disable-shared-library-build-when-BUILD_SHARED.patch Upstream
+package/yajl/0003-Link-with-shared-libyajl-in-a-shared-build.patch Upstream
+package/yajl/0004-Link-libyajl-_s-with-libm-when-isnan-is-not-brought-.patch Upstream
+package/ympd/0001-only-c-language.patch Upstream
+package/ympd/0002-added-forward-declarations.patch Upstream
+package/ytree/0001-fix-musl.patch Upstream
+package/zabbix/0001-m4-netsnmp.m4-fix-shared-netsnmp-build.patch Upstream
+package/zabbix/0002-fix-build-with-libressl-3.5.0.patch Upstream
+package/zbar/0001-python-enum-fix-build-for-Python-3.11.patch Upstream
+package/zchunk/0001-meson-fix-argp-standalone-wrap-and-find_library.patch Upstream
+package/zchunk/0002-zck-declare-write_data-as-static.patch Upstream
+package/zic/0001-remove-dependency-check-on-version-file.patch Upstream
+package/zip/0001-configure-Remove-Check-C-compiler-type-optimization-.patch Upstream
+package/zip/0002-configure-Don-t-use-host-CPP.patch Upstream
+package/zip/0003-Makefile-Use-CFLAGS-from-command-line.patch Upstream
+package/zip/0004-configure-use-LDFLAGS-from-command-line.patch Upstream
+package/zip/0005-unix-configure-remove-GID-UID-size-check.patch Upstream
+package/zip/0006-unix-configure-borrow-the-LFS-test-from-autotools.patch Upstream
+package/zip/0007-timezone.c-needs-time.h-fixes-musl-compile.patch Upstream
+package/zip/0008-fix-musl-static-build.patch Upstream
+package/zlib-ng/0001-Use-static-keyword-for-vec_sumsu-to-prevent-undefine.patch Upstream
+package/zlib-ng/0002-CMakeLists.txt-fix-version-in-zlib.pc-when-building-.patch Upstream
+package/zlib-ng/0003-zlib-ng-check-that-sys-auxv.h-exists-at-configure-time.patch Upstream
+package/zmqpp/0001-Allow-building-shared-or-static-library-only.patch Upstream
+package/znc/0001-LibreSSL-3.5-opaqued-structures.patch Upstream
+package/znc/0002-Fix-build-with-libressl.patch Upstream
+package/znc/0003-DH_set0_pqg-and-DH_get0_key-have-existed-since-Libre.patch Upstream
+package/zstd/0001-Fix-zstd-dll-build-missing-dependencies-3496.patch Upstream
+package/zziplib/0001-implant-ZZIP_LIBLATEST-for-zzip_lib.patch Upstream
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation
2023-04-03 14:41 [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 2/3] utils/checkpackagelib: check for Upstream trailers Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 3/3] .checkpackageignore: add entries missing Upstream trailer Vincent Fazio
@ 2023-04-15 17:54 ` Yann E. MORIN
2023-04-23 9:43 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2023-04-15 17:54 UTC (permalink / raw)
To: Vincent Fazio; +Cc: Thomas De Schampheleire, Ricardo Martincoski, buildroot
Vincent, All,
On 2023-04-03 09:41 -0500, Vincent Fazio spake thusly:
> Previously, the documentation only requested links to upstream commits
> when backporting patches.
>
> Based on a mailing list discussion [0], patches should, when possible
> and when approriate, provide a link as evidence that the patch has been
> submitted upstream.
>
> The motivation is that hopefully the patch gets applied to upstream at
> some point reducing the long term maintenance burden within Buildroot.
> This also makes future patch review on subsequent package version bumps
> more streamlined.
>
> For patches that are unique to BR and do not apply to the upstream
> repository, patches should have a comment explaining why they do not
> apply upstream.
>
> [0] https://lists.buildroot.org/pipermail/buildroot/2023-March/666000.html
>
> Signed-off-by: Vincent Fazio <vfazio@gmail.com>
Whole series applied to master, thanks.
I just had to regenerate .checkpackageignore on the last patch, but that
was expected, as new stuff had been comitted to master since your patch.
Thanks!
Regards,
Yann E. MORIN.
> ---
> Changes v1 -> v2:
> - Minor updates commit message body
> ---
> docs/manual/patch-policy.txt | 35 ++++++++++++++++++++++++-----------
> 1 file changed, 24 insertions(+), 11 deletions(-)
>
> diff --git a/docs/manual/patch-policy.txt b/docs/manual/patch-policy.txt
> index 063ef984d8..dc35132ecf 100644
> --- a/docs/manual/patch-policy.txt
> +++ b/docs/manual/patch-policy.txt
> @@ -144,24 +144,37 @@ AC_PROG_MAKE_SET
> +AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
> ---------------
>
> -=== Integrating patches found on the Web
> +=== Additional patch documentation
>
> -When integrating a patch of which you are not the author, you have to
> -add a few things in the header of the patch itself.
> +Ideally, all patches should document an upstream patch or patch submission, when
> +applicable, via the +Upstream+ trailer.
>
> -Depending on whether the patch has been obtained from the project
> -repository itself, or from somewhere on the web, add one of the
> -following tags:
> +When backporting an upstream patch that has been accepted into mainline, it is
> +preferred that the URL to the commit is referenced:
>
> ---------------
> -Backported from: <some commit id>
> +Upstream: <URL to upstream commit>
> ---------------
>
> -or
> +If a new issue is identified in Buildroot and upstream is generally affected by
> +the issue (it's not a Buildroot specific issue), users should submit the patch
> +upstream and provide a link to that submission when possible:
>
> ---------------
> -Fetch from: <some url>
> +Upstream: <URL to upstream mailing list submission or merge request>
> ---------------
>
> -It is also sensible to add a few words about any changes to the patch
> -that may have been necessary.
> +Patches that have been submitted but were denied upstream should note that and
> +include comments about why the patch is being used despite the upstream status.
> +
> +Note: in any of the above scenarios, it is also sensible to add a few words
> +about any changes to the patch that may have been necessary.
> +
> +If a patch does not apply upstream then this should be noted with a comment:
> +
> +---------------
> +Upstream: N/A <additional information about why patch is Buildroot specific>
> +---------------
> +
> +Adding this documentation helps streamline the patch review process during
> +package version updates.
> \ No newline at end of file
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation
2023-04-03 14:41 [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Vincent Fazio
` (2 preceding siblings ...)
2023-04-15 17:54 ` [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Yann E. MORIN
@ 2023-04-23 9:43 ` Peter Korsgaard
3 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2023-04-23 9:43 UTC (permalink / raw)
To: Vincent Fazio; +Cc: Thomas De Schampheleire, Ricardo Martincoski, buildroot
>>>>> "Vincent" == Vincent Fazio <vfazio@gmail.com> writes:
> Previously, the documentation only requested links to upstream commits
> when backporting patches.
> Based on a mailing list discussion [0], patches should, when possible
> and when approriate, provide a link as evidence that the patch has been
> submitted upstream.
> The motivation is that hopefully the patch gets applied to upstream at
> some point reducing the long term maintenance burden within Buildroot.
> This also makes future patch review on subsequent package version bumps
> more streamlined.
> For patches that are unique to BR and do not apply to the upstream
> repository, patches should have a comment explaining why they do not
> apply upstream.
> [0] https://lists.buildroot.org/pipermail/buildroot/2023-March/666000.html
> Signed-off-by: Vincent Fazio <vfazio@gmail.com>
> ---
> Changes v1 -> v2:
> - Minor updates commit message body
Committed to 2023.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-04-23 9:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-03 14:41 [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 2/3] utils/checkpackagelib: check for Upstream trailers Vincent Fazio
2023-04-03 14:41 ` [Buildroot] [PATCH v2 3/3] .checkpackageignore: add entries missing Upstream trailer Vincent Fazio
2023-04-15 17:54 ` [Buildroot] [PATCH v2 1/3] docs/manual: rewrite section for upstream documentation Yann E. MORIN
2023-04-23 9:43 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox