summaryrefslogtreecommitdiff
path: root/security/nettle/files/patch-powerpc64-p8-aes-decrypt-internal.asm (unfollow)
Commit message (Collapse)AuthorFilesLines
2025-07-01security/nettle: Update to 3.10.2Po-Chuan Hsieh1-1/+1
Changes: https://git.lysator.liu.se/nettle/nettle/-/blob/master/NEWS
2024-06-18security/nettle: Update to 3.9.1Po-Chuan Hsieh1-5/+5
Changes: https://git.lysator.liu.se/nettle/nettle/-/blob/nettle_3.10_release_20240616/NEWS
2022-06-04security/nettle: Update to 3.8Po-Chuan Hsieh1-3/+3
- Remove ELFv2 patch since upstream adds configure test for ELFV2_ABI [1] Changes: https://git.lysator.liu.se/nettle/nettle/-/blob/master/NEWS Reference: https://git.lysator.liu.se/nettle/nettle/-/commit/c7cf19390dcb0e9792fc23b0c935c1fe5e4f91e1 [1]
2021-06-15security/nettle: Update to 3.7.3Po-Chuan Hsieh1-2/+2
- Update header of patch files Changes: https://git.lysator.liu.se/nettle/nettle/-/blob/release-3.7-fixes/NEWS
2021-04-06security/nettle: move patches to filesPiotr Kubaj1-0/+0
2021-04-06security/nettle: fix build on powerpc64*Piotr Kubaj1-0/+19
Due to the string "swap_mask" being replaced with the vector register, the assembly label pointing at the local data variable .swap_mask was being replaced as well, causing the local label to be named ".0", which the clang integrated assembler treats as a syntax error. Change the name to .swap_data. Submitted by: bdragon