author | Christian Hesse
<eworm@archlinux.org> 2020-10-08 09:13:38 UTC |
committer | Christian Hesse
<eworm@archlinux.org> 2020-10-08 09:13:38 UTC |
parent | ec12dcab840e61a5beead20ddbbecbb699b1e96a |
0002-use-uname-n.patch | +34 | -0 |
PKGBUILD | +8 | -3 |
diff --git a/0002-use-uname-n.patch b/0002-use-uname-n.patch new file mode 100644 index 0000000..bc07a18 --- /dev/null +++ b/0002-use-uname-n.patch @@ -0,0 +1,34 @@ +commit 1bb3ad6dfc885112d05d8d73b066f18a416ca965 +Author: Geert Hendrickx <geert@hendrickx.be> +Date: Thu Aug 27 17:30:03 2020 +0200 + + MDEV-23589: Portability: use `uname -n` instead of `hostname` + + Closes PR #1663 + +diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt +index 33e32ea22f7..eafb051ad60 100644 +--- a/scripts/CMakeLists.txt ++++ b/scripts/CMakeLists.txt +@@ -162,7 +162,7 @@ ELSE() + SET(CHECK_PID "kill -s SIGCONT $PID > /dev/null 2> /dev/null") + ENDIF() + +-SET(HOSTNAME "hostname") ++SET(HOSTNAME "uname -n") + SET(MYSQLD_USER "mysql") + ENDIF(UNIX) + +diff --git a/support-files/CMakeLists.txt b/support-files/CMakeLists.txt +index 80b6ca386df..2a17cf6d0d8 100644 +--- a/support-files/CMakeLists.txt ++++ b/support-files/CMakeLists.txt +@@ -30,7 +30,7 @@ ELSE() + SET(CXXFLAGS ${CMAKE_CXX_FLAGS}) + SET(MYSQLD_USER "mysql") + SET(ini_file_extension "cnf") +- SET(HOSTNAME "hostname") ++ SET(HOSTNAME "uname -n") + ENDIF() + + # XXX: shouldn't we just have variables for all this stuff and centralise diff --git a/PKGBUILD b/PKGBUILD index 70c314a..6db3c2c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgbase=mariadb pkgname=('mariadb-libs' 'mariadb-clients' 'mariadb' 'mytop') pkgdesc='Fast SQL database server, derived from MySQL' pkgver=10.5.6 -pkgrel=2 +pkgrel=3 arch=('x86_64') license=('GPL') url='https://mariadb.org/' @@ -18,10 +18,12 @@ validpgpkeys=('199369E5404BD5FC7D2FE43BCBCB082A1BB943DB') # MariaDB Package Sign # rsync source via https and hope it does not hurt them too much. # https://mariadb.com/kb/en/library/mirror-sites-for-mariadb/ source=("https://rsync.osuosl.org/pub/mariadb/mariadb-${pkgver}/source/mariadb-${pkgver}.tar.gz"{,.asc} - '0001-arch-specific.patch') + '0001-arch-specific.patch' + '0002-use-uname-n.patch') sha256sums=('ff05dd69e9f6992caf1053242db704f04eda6f9accbcc98b74edfaf6013c45c4' 'SKIP' - '3289efb3452d199aec872115f35da3f1d6fd4ce774615076690e9bc8afae1460') + '3289efb3452d199aec872115f35da3f1d6fd4ce774615076690e9bc8afae1460' + '0605142beb6ee2e72957696f2e5b10d3084c6423bc17207fb73cd71306cae8d9') prepare() { cd $pkgbase-$pkgver/ @@ -31,6 +33,9 @@ prepare() { # * force preloading jemalloc for memory management # * make systemd-tmpfiles create MYSQL_DATADIR patch -Np1 < ../0001-arch-specific.patch + + # MDEV-23589: Portability: use `uname -n` instead of `hostname` + patch -Np1 < ../0002-use-uname-n.patch } build() {