Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] mariadb: update to 10.5.22.
@ 2023-09-06 13:11 sgn
  2023-09-06 13:28 ` [PR PATCH] [Updated] " sgn
  2023-09-07  6:21 ` [PR PATCH] [Merged]: " sgn
  0 siblings, 2 replies; 3+ messages in thread
From: sgn @ 2023-09-06 13:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1257 bytes --]

There is a new pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages mariadb-update
https://github.com/void-linux/void-packages/pull/45942

mariadb: update to 10.5.22.
Fix: #45859

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/45942.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mariadb-update-45942.patch --]
[-- Type: text/x-diff, Size: 7591 bytes --]

From b469112b1d73f416edeabfa8b17036249401ae6b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Wed, 6 Sep 2023 17:49:29 +0700
Subject: [PATCH] mariadb: update to 10.5.22.

Fix: #45859
---
 srcpkgs/mariadb/patches/atomic-fix.patch      | 108 ------------------
 .../mariadb/patches/fix-install-layout.patch  |   4 +-
 .../revert-isb-assembly-instruction.patch     |  20 ----
 srcpkgs/mariadb/template                      |   6 +-
 4 files changed, 5 insertions(+), 133 deletions(-)
 delete mode 100644 srcpkgs/mariadb/patches/atomic-fix.patch
 delete mode 100644 srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch

diff --git a/srcpkgs/mariadb/patches/atomic-fix.patch b/srcpkgs/mariadb/patches/atomic-fix.patch
deleted file mode 100644
index 6e7f48af45d94..0000000000000
--- a/srcpkgs/mariadb/patches/atomic-fix.patch
+++ /dev/null
@@ -1,108 +0,0 @@
-Forwarded: https://github.com/MariaDB/server/pull/1716
-Author: Vicențiu Ciorbaru <vicentiu@mariadb.org>
-Date:   Fri Dec 21 19:14:04 2018 +0200
-
-   Link with libatomic to enable C11 atomics support
-
-   Some architectures (mips) require libatomic to support proper
-   atomic operations. Check first if support is available without
-   linking, otherwise use the library.
-
-   Original commit:
-   Detect whether libatomic is needed rather than hard-coding for mips
-
-   Fixes FTBFS on powerpc, since it needs libatomic too for C11 atomics,
-   and possibly m68k.
-
-   Contributors:
-   James Cowgill <jcowgill@debian.org>
-   Jessica Clarke <jrtc27@debian.org>
-
---- a/configure.cmake
-+++ b/configure.cmake
-@@ -862,7 +862,25 @@ int main()
-   long long int *ptr= &var;
-   return (int)__atomic_load_n(ptr, __ATOMIC_SEQ_CST);
- }"
--HAVE_GCC_C11_ATOMICS)
-+HAVE_GCC_C11_ATOMICS_WITHOUT_LIBATOMIC)
-+IF (HAVE_GCC_C11_ATOMICS_WITHOUT_LIBATOMIC)
-+  SET(HAVE_GCC_C11_ATOMICS True)
-+ELSE()
-+  SET(OLD_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
-+  LIST(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
-+  CHECK_CXX_SOURCE_COMPILES("
-+  int main()
-+  {
-+    long long int var= 1;
-+    long long int *ptr= &var;
-+    return (int)__atomic_load_n(ptr, __ATOMIC_SEQ_CST);
-+  }"
-+  HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  IF(HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+    SET(HAVE_GCC_C11_ATOMICS True)
-+  ENDIF()
-+  SET(CMAKE_REQUIRED_LIBRARIES ${OLD_CMAKE_REQUIRED_LIBRARIES})
-+ENDIF()
-
- IF(WITH_VALGRIND)
-   SET(HAVE_valgrind 1)
---- a/mysys/CMakeLists.txt
-+++ b/mysys/CMakeLists.txt
-@@ -154,6 +154,10 @@ TARGET_LINK_LIBRARIES(mysys dbug strings
-  ${LIBNSL} ${LIBM} ${LIBRT} ${CMAKE_DL_LIBS} ${LIBSOCKET} ${LIBEXECINFO})
- DTRACE_INSTRUMENT(mysys)
-
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(mysys atomic)
-+ENDIF()
-+
- IF(HAVE_BFD_H)
-   TARGET_LINK_LIBRARIES(mysys bfd)
- ENDIF(HAVE_BFD_H)
---- a/sql/CMakeLists.txt
-+++ b/sql/CMakeLists.txt
-@@ -318,6 +318,10 @@ IF(WITH_MYSQLD_LDFLAGS)
-      "${MYSQLD_LINK_FLAGS} ${WITH_MYSQLD_LDFLAGS}")
- ENDIF()
-
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(sql atomic)
-+ENDIF()
-+
-
- FIND_PACKAGE(BISON 2.0)
-
-From f447aca534d1a12809eeb146e8220d305cc3884d Mon Sep 17 00:00:00 2001
-From: Mingli Yu <mingli.yu@windriver.com>
-Date: Thu, 9 Apr 2020 14:07:19 +0800
-Subject: [PATCH] build_rocksdb.cmake: fix atomic support on arm
-
-Check to link with libatomic to enable C11 atomics support
-to fix below build error on arm:
-| /build/tmp/work/armv5e-wrs-linux-gnueabi/mariadb/10.3.13-r0/recipe-sysroot-native/usr/bin/arm-wrs-linux-gnueabi/../../libexec/arm-wrs-linux-gnueabi/gcc/arm-wrs-linux-gnueabi/8.3.0/ld.bfd: librocksdblib.a(env_posix.cc.o): in function `std::__atomic_base<unsigned long long>::store(unsigned long long, std::memory_order)':
-| /usr/include/c++/8.3.0/bits/atomic_base.h:374: undefined reference to `__atomic_store_8'
-
-Upstream-Status: Pending
-
-Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
----
- storage/rocksdb/build_rocksdb.cmake | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/storage/rocksdb/build_rocksdb.cmake b/storage/rocksdb/build_rocksdb.cmake
-index d7895b0..3bcd52a 100644
---- a/storage/rocksdb/build_rocksdb.cmake
-+++ b/storage/rocksdb/build_rocksdb.cmake
-@@ -470,6 +470,9 @@ list(APPEND SOURCES ${CMAKE_CURRENT_BINARY_DIR}/build_version.cc)
-
- ADD_CONVENIENCE_LIBRARY(rocksdblib ${SOURCES})
- target_link_libraries(rocksdblib ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(rocksdblib atomic)
-+ENDIF()
- IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
-   set_target_properties(rocksdblib PROPERTIES COMPILE_FLAGS "-fPIC -fno-builtin-memcmp -Wno-error")
- endif()
---
-2.7.4
diff --git a/srcpkgs/mariadb/patches/fix-install-layout.patch b/srcpkgs/mariadb/patches/fix-install-layout.patch
index b010deb49f7a5..96fa7733852dc 100644
--- a/srcpkgs/mariadb/patches/fix-install-layout.patch
+++ b/srcpkgs/mariadb/patches/fix-install-layout.patch
@@ -1,6 +1,6 @@
 --- a/cmake/install_layout.cmake
 +++ b/cmake/install_layout.cmake
-@@ -88,7 +88,7 @@
+@@ -86,7 +86,7 @@ IF(UNIX)
    ELSEIF(INSTALL_LAYOUT MATCHES "SVR4")
      SET(default_prefix "/opt/mysql/mysql")
    ELSE()
@@ -11,7 +11,7 @@
      SET(CMAKE_INSTALL_PREFIX ${default_prefix}
 --- a/scripts/CMakeLists.txt
 +++ b/scripts/CMakeLists.txt
-@@ -181,7 +181,7 @@
+@@ -182,7 +182,7 @@ ENDIF(UNIX)
  # the documentation, so better not change this.
  
  IF(INSTALL_LAYOUT MATCHES "STANDALONE")
diff --git a/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch b/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch
deleted file mode 100644
index 9910e14a2f575..0000000000000
--- a/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Forwarded: No, but should be
-Subject: Revert upstream "MDEV-24630: MY_RELAX_CPU assembly instruction upgrade"
-Description:
- It was noticed that MariaDB 10.5.10 regressed and no longer built on armhf.
- For details see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=988629
- Reverting the upstream commit
- https://github.com/MariaDB/server/commit/76d2846a71a155ee2861fd52e6635e35490a9dd1
- is likely to fix it and make armhf build again.
-
---- a/include/my_cpu.h
-+++ b/include/my_cpu.h
-@@ -84,7 +84,7 @@ static inline void MY_RELAX_CPU(void)
-   __ppc_get_timebase();
- #elif defined __GNUC__ && (defined __arm__ || defined __aarch64__)
-   /* Mainly, prevent the compiler from optimizing away delay loops */
--  __asm__ __volatile__ ("isb":::"memory");
-+  __asm__ __volatile__ ("":::"memory");
- #else
-   int32 var, oldval = 0;
-   my_atomic_cas32_strong_explicit(&var, &oldval, 1, MY_MEMORY_ORDER_RELAXED,
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 9c44846c1d51b..ccaca61fdc3e6 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -1,7 +1,7 @@
 # Template file for 'mariadb'
 pkgname=mariadb
-version=10.5.10
-revision=6
+version=10.5.22
+revision=1
 build_style=cmake
 build_helper=qemu
 configure_args="-DBUILD_CONFIG=mysql_release
@@ -27,7 +27,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://mariadb.com"
 distfiles="http://archive.mariadb.org/$pkgname-$version/source/${pkgname}-${version}.tar.gz"
-checksum=a5ff32f9fcaaf26bf5cba94accc7b246d2d5eb75710d027e40122df6bac0babb
+checksum=3e2386bb5ee25a8ddcd21cffc48c76097e5ca41a6e4a098f6b2ee4012b0d638e
 lib32disabled=yes
 provides="mysql-${version}_${revision}"
 replaces="mysql>=0"

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Updated] mariadb: update to 10.5.22.
  2023-09-06 13:11 [PR PATCH] mariadb: update to 10.5.22 sgn
@ 2023-09-06 13:28 ` sgn
  2023-09-07  6:21 ` [PR PATCH] [Merged]: " sgn
  1 sibling, 0 replies; 3+ messages in thread
From: sgn @ 2023-09-06 13:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1278 bytes --]

There is an updated pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages mariadb-update
https://github.com/void-linux/void-packages/pull/45942

mariadb: update to 10.5.22.
Fix: #45859
Close: #45859 

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/45942.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-mariadb-update-45942.patch --]
[-- Type: text/x-diff, Size: 7591 bytes --]

From fa54f15fb6a47fa99df93779860cb16bd092c845 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Wed, 6 Sep 2023 20:28:00 +0700
Subject: [PATCH] mariadb: update to 10.5.22.

Fix: #45859
---
 srcpkgs/mariadb/patches/atomic-fix.patch      | 108 ------------------
 .../mariadb/patches/fix-install-layout.patch  |   4 +-
 .../revert-isb-assembly-instruction.patch     |  20 ----
 srcpkgs/mariadb/template                      |   6 +-
 4 files changed, 5 insertions(+), 133 deletions(-)
 delete mode 100644 srcpkgs/mariadb/patches/atomic-fix.patch
 delete mode 100644 srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch

diff --git a/srcpkgs/mariadb/patches/atomic-fix.patch b/srcpkgs/mariadb/patches/atomic-fix.patch
deleted file mode 100644
index 6e7f48af45d94..0000000000000
--- a/srcpkgs/mariadb/patches/atomic-fix.patch
+++ /dev/null
@@ -1,108 +0,0 @@
-Forwarded: https://github.com/MariaDB/server/pull/1716
-Author: Vicențiu Ciorbaru <vicentiu@mariadb.org>
-Date:   Fri Dec 21 19:14:04 2018 +0200
-
-   Link with libatomic to enable C11 atomics support
-
-   Some architectures (mips) require libatomic to support proper
-   atomic operations. Check first if support is available without
-   linking, otherwise use the library.
-
-   Original commit:
-   Detect whether libatomic is needed rather than hard-coding for mips
-
-   Fixes FTBFS on powerpc, since it needs libatomic too for C11 atomics,
-   and possibly m68k.
-
-   Contributors:
-   James Cowgill <jcowgill@debian.org>
-   Jessica Clarke <jrtc27@debian.org>
-
---- a/configure.cmake
-+++ b/configure.cmake
-@@ -862,7 +862,25 @@ int main()
-   long long int *ptr= &var;
-   return (int)__atomic_load_n(ptr, __ATOMIC_SEQ_CST);
- }"
--HAVE_GCC_C11_ATOMICS)
-+HAVE_GCC_C11_ATOMICS_WITHOUT_LIBATOMIC)
-+IF (HAVE_GCC_C11_ATOMICS_WITHOUT_LIBATOMIC)
-+  SET(HAVE_GCC_C11_ATOMICS True)
-+ELSE()
-+  SET(OLD_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
-+  LIST(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
-+  CHECK_CXX_SOURCE_COMPILES("
-+  int main()
-+  {
-+    long long int var= 1;
-+    long long int *ptr= &var;
-+    return (int)__atomic_load_n(ptr, __ATOMIC_SEQ_CST);
-+  }"
-+  HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  IF(HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+    SET(HAVE_GCC_C11_ATOMICS True)
-+  ENDIF()
-+  SET(CMAKE_REQUIRED_LIBRARIES ${OLD_CMAKE_REQUIRED_LIBRARIES})
-+ENDIF()
-
- IF(WITH_VALGRIND)
-   SET(HAVE_valgrind 1)
---- a/mysys/CMakeLists.txt
-+++ b/mysys/CMakeLists.txt
-@@ -154,6 +154,10 @@ TARGET_LINK_LIBRARIES(mysys dbug strings
-  ${LIBNSL} ${LIBM} ${LIBRT} ${CMAKE_DL_LIBS} ${LIBSOCKET} ${LIBEXECINFO})
- DTRACE_INSTRUMENT(mysys)
-
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(mysys atomic)
-+ENDIF()
-+
- IF(HAVE_BFD_H)
-   TARGET_LINK_LIBRARIES(mysys bfd)
- ENDIF(HAVE_BFD_H)
---- a/sql/CMakeLists.txt
-+++ b/sql/CMakeLists.txt
-@@ -318,6 +318,10 @@ IF(WITH_MYSQLD_LDFLAGS)
-      "${MYSQLD_LINK_FLAGS} ${WITH_MYSQLD_LDFLAGS}")
- ENDIF()
-
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(sql atomic)
-+ENDIF()
-+
-
- FIND_PACKAGE(BISON 2.0)
-
-From f447aca534d1a12809eeb146e8220d305cc3884d Mon Sep 17 00:00:00 2001
-From: Mingli Yu <mingli.yu@windriver.com>
-Date: Thu, 9 Apr 2020 14:07:19 +0800
-Subject: [PATCH] build_rocksdb.cmake: fix atomic support on arm
-
-Check to link with libatomic to enable C11 atomics support
-to fix below build error on arm:
-| /build/tmp/work/armv5e-wrs-linux-gnueabi/mariadb/10.3.13-r0/recipe-sysroot-native/usr/bin/arm-wrs-linux-gnueabi/../../libexec/arm-wrs-linux-gnueabi/gcc/arm-wrs-linux-gnueabi/8.3.0/ld.bfd: librocksdblib.a(env_posix.cc.o): in function `std::__atomic_base<unsigned long long>::store(unsigned long long, std::memory_order)':
-| /usr/include/c++/8.3.0/bits/atomic_base.h:374: undefined reference to `__atomic_store_8'
-
-Upstream-Status: Pending
-
-Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
----
- storage/rocksdb/build_rocksdb.cmake | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/storage/rocksdb/build_rocksdb.cmake b/storage/rocksdb/build_rocksdb.cmake
-index d7895b0..3bcd52a 100644
---- a/storage/rocksdb/build_rocksdb.cmake
-+++ b/storage/rocksdb/build_rocksdb.cmake
-@@ -470,6 +470,9 @@ list(APPEND SOURCES ${CMAKE_CURRENT_BINARY_DIR}/build_version.cc)
-
- ADD_CONVENIENCE_LIBRARY(rocksdblib ${SOURCES})
- target_link_libraries(rocksdblib ${THIRDPARTY_LIBS} ${SYSTEM_LIBS})
-+IF (HAVE_GCC_C11_ATOMICS_WITH_LIBATOMIC)
-+  TARGET_LINK_LIBRARIES(rocksdblib atomic)
-+ENDIF()
- IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU" OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
-   set_target_properties(rocksdblib PROPERTIES COMPILE_FLAGS "-fPIC -fno-builtin-memcmp -Wno-error")
- endif()
---
-2.7.4
diff --git a/srcpkgs/mariadb/patches/fix-install-layout.patch b/srcpkgs/mariadb/patches/fix-install-layout.patch
index b010deb49f7a5..96fa7733852dc 100644
--- a/srcpkgs/mariadb/patches/fix-install-layout.patch
+++ b/srcpkgs/mariadb/patches/fix-install-layout.patch
@@ -1,6 +1,6 @@
 --- a/cmake/install_layout.cmake
 +++ b/cmake/install_layout.cmake
-@@ -88,7 +88,7 @@
+@@ -86,7 +86,7 @@ IF(UNIX)
    ELSEIF(INSTALL_LAYOUT MATCHES "SVR4")
      SET(default_prefix "/opt/mysql/mysql")
    ELSE()
@@ -11,7 +11,7 @@
      SET(CMAKE_INSTALL_PREFIX ${default_prefix}
 --- a/scripts/CMakeLists.txt
 +++ b/scripts/CMakeLists.txt
-@@ -181,7 +181,7 @@
+@@ -182,7 +182,7 @@ ENDIF(UNIX)
  # the documentation, so better not change this.
  
  IF(INSTALL_LAYOUT MATCHES "STANDALONE")
diff --git a/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch b/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch
deleted file mode 100644
index 9910e14a2f575..0000000000000
--- a/srcpkgs/mariadb/patches/revert-isb-assembly-instruction.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Forwarded: No, but should be
-Subject: Revert upstream "MDEV-24630: MY_RELAX_CPU assembly instruction upgrade"
-Description:
- It was noticed that MariaDB 10.5.10 regressed and no longer built on armhf.
- For details see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=988629
- Reverting the upstream commit
- https://github.com/MariaDB/server/commit/76d2846a71a155ee2861fd52e6635e35490a9dd1
- is likely to fix it and make armhf build again.
-
---- a/include/my_cpu.h
-+++ b/include/my_cpu.h
-@@ -84,7 +84,7 @@ static inline void MY_RELAX_CPU(void)
-   __ppc_get_timebase();
- #elif defined __GNUC__ && (defined __arm__ || defined __aarch64__)
-   /* Mainly, prevent the compiler from optimizing away delay loops */
--  __asm__ __volatile__ ("isb":::"memory");
-+  __asm__ __volatile__ ("":::"memory");
- #else
-   int32 var, oldval = 0;
-   my_atomic_cas32_strong_explicit(&var, &oldval, 1, MY_MEMORY_ORDER_RELAXED,
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 9c44846c1d51b..ccaca61fdc3e6 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -1,7 +1,7 @@
 # Template file for 'mariadb'
 pkgname=mariadb
-version=10.5.10
-revision=6
+version=10.5.22
+revision=1
 build_style=cmake
 build_helper=qemu
 configure_args="-DBUILD_CONFIG=mysql_release
@@ -27,7 +27,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-only"
 homepage="https://mariadb.com"
 distfiles="http://archive.mariadb.org/$pkgname-$version/source/${pkgname}-${version}.tar.gz"
-checksum=a5ff32f9fcaaf26bf5cba94accc7b246d2d5eb75710d027e40122df6bac0babb
+checksum=3e2386bb5ee25a8ddcd21cffc48c76097e5ca41a6e4a098f6b2ee4012b0d638e
 lib32disabled=yes
 provides="mysql-${version}_${revision}"
 replaces="mysql>=0"

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PR PATCH] [Merged]: mariadb: update to 10.5.22.
  2023-09-06 13:11 [PR PATCH] mariadb: update to 10.5.22 sgn
  2023-09-06 13:28 ` [PR PATCH] [Updated] " sgn
@ 2023-09-07  6:21 ` sgn
  1 sibling, 0 replies; 3+ messages in thread
From: sgn @ 2023-09-07  6:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1123 bytes --]

There's a merged pull request on the void-packages repository

mariadb: update to 10.5.22.
https://github.com/void-linux/void-packages/pull/45942

Description:
Fix: #45859
Close: #45859 

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-09-07  6:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-06 13:11 [PR PATCH] mariadb: update to 10.5.22 sgn
2023-09-06 13:28 ` [PR PATCH] [Updated] " sgn
2023-09-07  6:21 ` [PR PATCH] [Merged]: " sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).