# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 CRATES=" " RUST_MIN_VER="1.89.0" inherit cargo DESCRIPTION="A scalable distributed MQTT broker." HOMEPAGE="https://github.com/rmqtt/rmqtt" SRC_URI="https://github.com/rmqtt/rmqtt/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" SRC_URI+=" https://share.terinstock.com/${P}-vendor.tar.xz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64" src_unpack() { cargo_src_unpack mkdir "${S}"/{vendor,.cargo} || die ln -s "${WORKDIR}/vendor/"* "${S}"/vendor || die cp "${FILESDIR}"/"${PN}-vendor-config" "${S}"/.cargo/config.toml || die } src_configure() { cargo_gen_config cargo_src_configure --offline --no-default-features } src_compile() { cargo_src_compile -p rmqttd } src_install() { cargo_src_install --path rmqtt-bin }