diff options
author | Marco Scardovi <marco@scardovi.com> | 2021-12-18 21:20:00 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-01-01 11:48:01 +0100 |
commit | a93daad6531eae0c5756356cf71925e2149373d9 (patch) | |
tree | 2b5cb2f36e3d98d2d0515143653c11ab51872120 /sys-cluster/galera/galera-25.3.35.ebuild | |
parent | sys-cluster/galera: drop old ebuilds and patches (diff) | |
download | gentoo-a93daad6531eae0c5756356cf71925e2149373d9.tar.gz gentoo-a93daad6531eae0c5756356cf71925e2149373d9.tar.bz2 gentoo-a93daad6531eae0c5756356cf71925e2149373d9.zip |
sys-cluster/galera: bump to galera-25.3.35
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco@scardovi.com>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sys-cluster/galera/galera-25.3.35.ebuild')
-rw-r--r-- | sys-cluster/galera/galera-25.3.35.ebuild | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/sys-cluster/galera/galera-25.3.35.ebuild b/sys-cluster/galera/galera-25.3.35.ebuild new file mode 100644 index 000000000000..03e5e8cb2a39 --- /dev/null +++ b/sys-cluster/galera/galera-25.3.35.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 scons-utils toolchain-funcs flag-o-matic + +MY_PN="${PN}-3" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Synchronous multi-master replication engine that provides the wsrep API" +HOMEPAGE="https://galeracluster.com" +SRC_URI="https://releases.galeracluster.com/${MY_PN}/source/${MY_P}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-2 BSD" + +SLOT="0" + +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="cpu_flags_x86_sse4_2 garbd test" +RESTRICT="!test? ( test )" + +COMMON_DEPEND=" + dev-libs/openssl:0= + >=dev-libs/boost-1.41:0= +" + +DEPEND=" + ${COMMON_DEPEND} + dev-libs/check + >=dev-cpp/asio-1.10.1[ssl(+)] + <dev-cpp/asio-1.12.0 +" + +#Run time only +RDEPEND="${COMMON_DEPEND}" + +# Respect {C,LD}FLAGS. +PATCHES=( "${FILESDIR}/${PN}"-25.3.32-respect-cflags.patch ) + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + default + # Remove bundled dev-cpp/asio + rm -r "${S}/asio" || die "Failed to remove bundled asio" + #Remove optional garbd daemon + if ! use garbd ; then + rm -r "${S}/garb" || die "Failed to remove garbd daemon" + fi +} + +src_configure() { + tc-export AR CC CXX OBJDUMP + # strict_build_flags=0 disables -Werror, -pedantic, -Weffc++, + # and -Wold-style-cast + MYSCONS=( + crc32c_no_hardware=$(usex cpu_flags_x86_sse4_2 0 1) + tests=$(usex test 1 0) + strict_build_flags=0 + system_asio=1 + ) +} + +src_compile() { + escons --warn=no-missing-sconscript "${MYSCONS[@]}" +} + +src_install() { + dodoc scripts/packages/README scripts/packages/README-MySQL + if use garbd ; then + dobin garb/garbd + newconfd "${FILESDIR}/garb.cnf" garbd + newinitd "${FILESDIR}/garb.init" garbd + doman man/garbd.8 + fi + exeinto /usr/$(get_libdir)/"${PN}" + doexe libgalera_smm.so +} |