commit: 18c639154297e546e29e95eda6862e31ec90a78c Author: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org> AuthorDate: Wed Feb 11 19:08:04 2026 +0000 Commit: Marc Schiffbauer <mschiff <AT> gentoo <DOT> org> CommitDate: Wed Feb 11 19:10:48 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c63915
sys-cluster/sanlock: add 4.2.0 Closes: https://bugs.gentoo.org/969879 Signed-off-by: Marc Schiffbauer <mschiff <AT> gentoo.org> sys-cluster/sanlock/Manifest | 1 + sys-cluster/sanlock/sanlock-4.2.0.ebuild | 85 ++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) diff --git a/sys-cluster/sanlock/Manifest b/sys-cluster/sanlock/Manifest index c7a61d2f2e55..83fa2e6e83c1 100644 --- a/sys-cluster/sanlock/Manifest +++ b/sys-cluster/sanlock/Manifest @@ -1,2 +1,3 @@ DIST sanlock-3.8.5.tar.gz 270911 BLAKE2B 7f8146d67c620d22ded5205c1c621f3bbb36256a4c80e866575d8f324ad0237cf8bc07579f3aeda393dd0db85e27fdaa1aab1b6d7b931d4416d13f82d560e22a SHA512 8131e0b37ac47052a29d4b3a3e4286b06b862f08e827d3307f179eadbe97e4bc3e10f5c93f35042c308435ee81546a813227bce665a9735cbbf2b5a4a1f4474a DIST sanlock-4.0.0.tar.gz 288907 BLAKE2B e49037ff6976ae1912ceb1e345a65bf4e3689428309085d1e3c93cd6bad9ca816cabfb7c525cab2851870c4e8a96dd927934d1b0722cb5900d3cd0950e50075b SHA512 a478c8bbc09043d5dad18cc3ddbcaeefec0dd5587ab2807721424a1efc9d58ab82deacaa2f88289dc9990a2a6f95a80dabb727670e7aeaeba5ed0a57a3849c27 +DIST sanlock-4.2.0.tar.gz 297155 BLAKE2B b3787041ee17b2966bdf3543811c479801943725f5174cb49fc286ca63a5a3fdbca9392625dc5ccbdd8f71caf4ca6ab493b4bab8ed1237d83ce19af632f05abd SHA512 6b06bb4a600be6aa92043385a02630d4c45b5e76fd07e609725c32a166cad9d66df254212444639ca7bae6a3d121c5662a7161ec0fa02bf139bbc3fb0d4c8da5 diff --git a/sys-cluster/sanlock/sanlock-4.2.0.ebuild b/sys-cluster/sanlock/sanlock-4.2.0.ebuild new file mode 100644 index 000000000000..0eb1a0d699b6 --- /dev/null +++ b/sys-cluster/sanlock/sanlock-4.2.0.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..13} ) +inherit flag-o-matic linux-info distutils-r1 systemd + +DESCRIPTION="shared storage lock manager" +HOMEPAGE="https://pagure.io/sanlock" +SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2+ GPL-2 GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="python" + +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +DEPEND=" + dev-libs/libaio + sys-apps/util-linux + python? ( ${PYTHON_DEPS} ) +" +RDEPEND=" + acct-user/${PN} + acct-group/${PN} + ${DEPEND} +" + +PATCHES=( + "${FILESDIR}/sanlock-3.8.4-implicit-func-decls.patch" +) + +CONFIG_CHECK="~SOFT_WATCHDOG" + +src_compile() { + # -Werror=lto-type-mismatch + # https://bugs.gentoo.org/863734 + # https://pagure.io/sanlock/issue/10 + filter-lto + + for d in wdmd src reset; do + emake -C ${d} + done + + if use python; then + pushd python + distutils-r1_src_compile + popd + fi +} + +src_install() { + for d in wdmd src reset; do + emake -C ${d} DESTDIR="${D}" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install + done + + if use python; then + distutils-r1_src_install + fi + + # config + dodir /etc/wdmd.d + dodir /etc/sanlock + insinto /etc/sanlock + doins src/sanlock.conf + + # init + newconfd init.d/sanlock.sysconfig sanlock + newconfd init.d/wdmd.sysconfig wdmd + newinitd "${FILESDIR}"/sanlock.initd sanlock + newinitd "${FILESDIR}"/wdmd.initd wdmd + #doinitd ${FILESDIR}/sanlk-resetd.initd + + # systemd + local utildir="$(systemd_get_utildir)" + exeinto "${utildir#"${EPREFIX}"}" + doexe init.d/systemd-wdmd + systemd_newunit init.d/sanlock.service.native sanlock.service + systemd_dounit init.d/wdmd.service + systemd_dounit init.d/sanlk-resetd.service +}
