From: "Petr Vaněk" <arkamar@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/
Date: Wed, 27 Mar 2024 07:57:05 +0000 (UTC) [thread overview]
Message-ID: <1711526216.504bdeccbb72080914f33c514cf4c6fbde3bc344.arkamar@gentoo> (raw)
commit: 504bdeccbb72080914f33c514cf4c6fbde3bc344
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 26 16:11:35 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Wed Mar 27 07:56:56 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=504bdecc
sys-cluster/galera: add 26.4.18
This version resolves clang compilation issue, fixed in commit
https://github.com/codership/galera/commit/5e83da4834d4ef6341d2fd4827156b3e8cd8e9af
Closes: https://bugs.gentoo.org/926640
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
sys-cluster/galera/Manifest | 1 +
sys-cluster/galera/galera-26.4.18.ebuild | 71 ++++++++++++++++++++++++++++++++
2 files changed, 72 insertions(+)
diff --git a/sys-cluster/galera/Manifest b/sys-cluster/galera/Manifest
index 801b020796be..75b9771b65cc 100644
--- a/sys-cluster/galera/Manifest
+++ b/sys-cluster/galera/Manifest
@@ -2,3 +2,4 @@ DIST galera-26.4.13.tar.gz 1529682 BLAKE2B d7030fd5e3a48ede16f608cca9986de117a54
DIST galera-26.4.14.tar.gz 1532285 BLAKE2B c647332a1a70609fbe3197653df2e24ccd0c5e053b1c9ef4d3de20bc70d8f2363090c6296e9e81eeb92a625c85d67b4f298db8e34862c7deb907baf13bae2e45 SHA512 f9bb3d1d503ed7f90cfc5596e68e8cf77683d2d7e6ddb45d0a6618bbc6a31ad2caa80933f6724734ec4ae416b37d7d7ec61e1bf0b87cefd4c959954266a2fb26
DIST galera-26.4.15.tar.gz 1532571 BLAKE2B 8aa5c6027b4cfe7f41c9d431315a4a12b9ea45896743bafa296470e8e3f0613e8974e3daea0d7c89c3e2d014692fb7d10f4a64588add569a197546dcd0f0108d SHA512 b866610c00df344ea8c9cc948fadfa4be808ee6bb100fec470dee006458d81ec704db156d320889610bff9b944023963f624b8672596a282c7658c55d99ffca6
DIST galera-26.4.17.tar.gz 1541975 BLAKE2B 7b12a9c056e45fc0614910a5f6eb1127e3613aa7b212db94594330ddd048de4982cbb1d36a75c08da0aa31a9a08a5632686e867b967291bb269835e37a6efcb3 SHA512 c11fecb6c9e142643f594275d6ff486d7a3615016691373831e57221f9bbfdc086202757068a2cc9308049b3499aa64dcc6f066dcf6437d25a4c546b19ac8fa3
+DIST galera-26.4.18.tar.gz 1542330 BLAKE2B 5a0d8b1929a72ce36f521ba3404b9251503226ba041970bc67f9d25b2b55c2daa2128500117366273541578eb1d7fd213d5f8336cba705650c55b70125dcbf0d SHA512 75ae75c0bac1b2ba5d0230af9b0e14b5e8661f20f84cee3800b2e979c3ef53c9dd5ce8cebcec1ae9205b5dec28f94f690854cce32a10e9f58d8aa55725fd59c6
diff --git a/sys-cluster/galera/galera-26.4.18.ebuild b/sys-cluster/galera/galera-26.4.18.ebuild
new file mode 100644
index 000000000000..2defbd8cbff9
--- /dev/null
+++ b/sys-cluster/galera/galera-26.4.18.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+MY_PN="${PN}-4"
+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}.$(ver_cut 3)/source/${MY_P}.tar.gz
+ -> ${P}.tar.gz
+"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="garbd ssl"
+
+RDEPEND="
+ ssl? ( dev-libs/openssl:= )
+ dev-libs/boost:=
+"
+# TODO: Make check dep optional
+DEPEND="
+ ${RDEPEND}
+ >=dev-cpp/asio-1.22
+ dev-libs/check
+"
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Remove bundled dev-cpp/asio
+ rm -r asio || die "Failed to remove bundled asio"
+
+ # Remove optional garbd daemon
+ if ! use garbd ; then
+ rm -r garb || die "Failed to remove garbd daemon"
+ sed -i '/add_subdirectory(garb)/d' CMakeLists.txt || die
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DGALERA_WITH_SSL=$(usex ssl)
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ dodoc scripts/packages/README scripts/packages/README-MySQL
+
+ if use garbd ; then
+ newconfd "${FILESDIR}"/garb.cnf garbd
+ newinitd "${FILESDIR}"/garb.init garbd
+ doman man/garbd.8
+
+ pushd "${BUILD_DIR}" || die
+ dobin garb/garbd
+ fi
+
+ pushd "${BUILD_DIR}" || die
+ exeinto /usr/$(get_libdir)/galera
+ doexe libgalera_smm.so
+}
next reply other threads:[~2024-03-27 7:57 UTC|newest]
Thread overview: 119+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-27 7:57 Petr Vaněk [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-05-08 9:29 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/ Petr Vaněk
2025-04-07 15:43 Arthur Zamarin
2025-04-07 7:02 Sam James
2025-04-07 7:02 Sam James
2025-03-16 17:52 Petr Vaněk
2025-03-04 16:57 Petr Vaněk
2025-03-04 16:57 Petr Vaněk
2025-01-10 4:46 Jakov Smolić
2025-01-09 23:05 Sam James
2025-01-09 23:05 Sam James
2025-01-06 13:36 WANG Xuerui
2024-12-04 8:03 Petr Vaněk
2024-12-04 8:03 Petr Vaněk
2024-10-10 11:04 Arthur Zamarin
2024-10-01 9:08 Jakov Smolić
2024-09-30 19:55 Sam James
2024-08-30 9:48 Petr Vaněk
2024-08-12 17:18 Arthur Zamarin
2024-08-10 5:27 Michał Górny
2024-08-09 20:26 Jakov Smolić
2024-07-08 7:07 Petr Vaněk
2024-07-08 7:07 Petr Vaněk
2024-06-01 3:46 Ionen Wolkens
2024-05-17 6:56 Arthur Zamarin
2024-05-15 10:31 Sam James
2024-05-15 9:28 Sam James
2024-04-23 5:25 Viorel Munteanu
2024-03-27 8:20 Petr Vaněk
2024-03-16 8:25 Arthur Zamarin
2024-03-06 3:40 Sam James
2024-03-05 11:40 Sam James
2024-01-30 14:06 Petr Vaněk
2024-01-30 13:15 Petr Vaněk
2023-10-27 19:55 Arthur Zamarin
2023-10-27 19:55 Arthur Zamarin
2023-08-18 10:37 Sam James
2023-08-18 9:52 Sam James
2023-08-18 9:52 Sam James
2023-08-18 9:52 Sam James
2023-03-09 12:07 David Seifert
2023-03-09 12:07 David Seifert
2023-03-09 10:53 Arthur Zamarin
2023-03-09 10:53 Arthur Zamarin
2023-01-23 18:12 Arthur Zamarin
2023-01-23 18:11 Sam James
2022-10-30 14:06 Sam James
2022-10-30 14:06 Sam James
2022-09-04 13:03 David Seifert
2022-09-04 12:23 David Seifert
2022-07-29 11:20 Agostino Sarubbo
2022-07-29 8:01 Agostino Sarubbo
2022-07-29 2:47 Sam James
2022-07-28 7:10 Agostino Sarubbo
2022-07-28 7:06 Agostino Sarubbo
2022-07-08 21:48 Sam James
2022-07-08 6:44 Agostino Sarubbo
2022-07-08 0:57 Sam James
2022-01-01 10:48 Ulrich Müller
2022-01-01 10:48 Ulrich Müller
2021-11-18 13:59 Thomas Deutschmann
2021-08-11 20:41 Ionen Wolkens
2021-08-04 2:00 Thomas Deutschmann
2021-07-31 13:04 Agostino Sarubbo
2021-06-09 21:10 Sam James
2021-05-25 1:05 Thomas Deutschmann
2021-05-25 1:05 Thomas Deutschmann
2021-03-08 0:28 Thomas Deutschmann
2021-03-06 15:11 Thomas Deutschmann
2021-01-22 2:19 Thomas Deutschmann
2021-01-22 2:19 Thomas Deutschmann
2021-01-22 2:19 Thomas Deutschmann
2021-01-04 2:09 Sam James
2020-11-28 9:13 Agostino Sarubbo
2020-11-25 16:34 Thomas Deutschmann
2020-11-14 0:16 Sam James
2020-06-29 16:04 Mikle Kolyada
2020-06-20 13:48 Thomas Deutschmann
2020-05-23 21:45 Thomas Deutschmann
2020-04-26 23:44 Thomas Deutschmann
2020-04-22 14:01 Mikle Kolyada
2020-02-10 13:26 Michał Górny
2020-02-08 13:52 Mikle Kolyada
2020-01-23 12:18 Agostino Sarubbo
2020-01-23 10:40 Agostino Sarubbo
2020-01-23 10:36 Agostino Sarubbo
2019-11-18 15:40 Brian Evans
2019-11-12 2:15 Brian Evans
2019-05-21 19:55 Brian Evans
2019-04-04 13:04 Brian Evans
2019-03-16 21:57 Sergei Trofimovich
2019-03-07 23:55 Mikle Kolyada
2019-03-07 21:50 Thomas Deutschmann
2018-12-27 20:40 Brian Evans
2018-09-09 20:41 Thomas Deutschmann
2018-07-11 17:59 Brian Evans
2018-07-11 17:59 Brian Evans
2018-05-30 16:00 Mikle Kolyada
2018-05-02 16:33 Thomas Deutschmann
2018-05-01 17:12 Mikle Kolyada
2018-02-09 4:14 Brian Evans
2017-11-30 19:58 Brian Evans
2017-08-22 13:11 Brian Evans
2017-08-22 13:11 Brian Evans
2017-07-01 9:15 Sergei Trofimovich
2017-06-09 9:44 Agostino Sarubbo
2017-04-11 13:06 Brian Evans
2017-04-05 16:14 Michael Weber
2017-04-05 10:01 Michael Weber
2017-01-05 17:44 Brian Evans
2016-12-19 14:14 Tobias Klausmann
2016-03-15 19:54 Brian Evans
2015-11-23 17:35 Brian Evans
2015-11-22 8:04 Markus Meier
2015-11-20 21:14 Brian Evans
2015-11-20 21:14 Brian Evans
2015-09-28 4:58 Jeroen Roovers
2015-08-19 12:49 Brian Evans
2015-08-18 20:24 Brian Evans
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1711526216.504bdeccbb72080914f33c514cf4c6fbde3bc344.arkamar@gentoo \
--to=arkamar@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox