summaryrefslogtreecommitdiff
path: root/dev-db/mariadb/mariadb-12.0.2-r1.ebuild
AgeCommit message (Collapse)Author
2025-11-11dev-db/mariadb: Add AWS Key Mangement support (amd64).Jaco Kroon
This version bumps 11.4.8-r1 because -r1 is stable requested. The rest of the future versions got ammended in-place. package.use.masked for non-amd 64 arches, if you want it, please request keywording of dev-cpp/aws-sdk-cpp (which will result in a cascade of about 15 other packages to be keyworded). Signed-off-by: Jaco Kroon <jkroon@gentoo.org>
2025-11-04*/*: Use := on virtual/zlib deps, part 5Michał Górny
Done via: ``` git grep -l 'virtual/zlib-' | xargs sed -i -r -e 's@virtual/zlib-[0-9.]*(-r[0-9]*)?@&:=@g' git grep -l 'virtual/zlib-' | xargs sed -i -e 's@:=:=@:=@g' pkgcheck scan --commits \ -c SourcingCheck,VisibilityCheck,DependencyCheck --exit error ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04dev-*/*: update for virtual/zlibMichał Górny
Update done using: ``` git grep -l sys-libs/zlib dev-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g git diff --name-only | xargs copybump git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead pkgcheck scan --commits -c SourcingCheck,VisibilityCheck --exit error ``` Followed by manual revert in dev-python/zlib-ng where it accidentally caught sys-libs/zlib-ng dependencies. Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-08-12dev-db/mariadb: unconditionally pass -fno-tree-vectorizeSam James
Followup to d72826a5df63d0f2a96a15845537a65ce12a04db. Jens reports in the bug that he sees a crash w/ GCC 15 in my_convert too. It's very likely the same problem: 15 at least already had some peeling for alignment changes and we know the code in MariaDB is broken here. Don't bother conditionalising it on GCC as Clang accepts -fno-tree-vectorize too and it could show up there too of course as it's UB. And revbump here as well given it clearly affects real users, not just those w/ experimental (16) GCC. Closes: https://bugs.gentoo.org/959423 Signed-off-by: Sam James <sam@gentoo.org>