gentoo-ebuilds/net-misc/rsync-bpc/rsync-bpc-3.1.3.0-r1.ebuild
Dennis Eisele 20283aed92
net-misc/rsync-bpc: fix build issue on rsync-bpc-3.1.3.0-r1
By adding the former patch again that differs from that of
rsync-bpc-3.1.3.0_p20250706 the patch can successfully be applied again.

Closes: https://bugs.gentoo.org/960290
Signed-off-by: Dennis Eisele <kernlpanic@dennis-eisele.de>
Part-of: https://github.com/gentoo/gentoo/pull/43029
Closes: https://github.com/gentoo/gentoo/pull/43029
Signed-off-by: Sam James <sam@gentoo.org>
2025-07-17 01:00:55 +01:00

26 lines
568 B
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="Rsync-bpc is a customized version of rsync that is used as part of BackupPC"
HOMEPAGE="https://github.com/backuppc/rsync-bpc"
SRC_URI="https://github.com/backuppc/rsync-bpc/releases/download/${PV}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="virtual/ssh"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-3.1.3.0-r1-fix-gettimeofday-error.patch" #874666
)
src_prepare() {
default
eautoreconf
}