Diff btrbk-0.32.6-r1 with a btrbk-0.32.6-r2

/usr/portage/app-backup/btrbk/btrbk-0.32.6-r2.ebuild 2023-10-09 14:52:28.200368318 +0300
11 11
	SRC_URI=""
12 12
else
13 13
	SRC_URI="https://digint.ch/download/btrbk/releases/${P}.tar.xz"
14
	KEYWORDS="amd64 arm arm64 x86"
14
	KEYWORDS="~amd64 ~arm ~arm64 ~x86"
15 15
fi
16 16

  
17 17
DESCRIPTION="Tool for creating snapshots and remote backups of btrfs subvolumes"
18 18
HOMEPAGE="https://digint.ch/btrbk/"
19

  
19 20
LICENSE="GPL-3+"
20 21
SLOT="0"
21 22
IUSE="+mbuffer +doc +lsbtr"
22 23

  
23
DEPEND="doc? ( >=dev-ruby/asciidoctor-1.5.7 )"
24

  
25
RDEPEND="dev-lang/perl
24
RDEPEND="
25
	dev-lang/perl
26
	>=sys-fs/btrfs-progs-4.12
26 27
	virtual/openssh
27 28
	mbuffer? ( >=sys-block/mbuffer-20180505 )
28
	>=sys-fs/btrfs-progs-4.12"
29
"
30
BDEPEND="
31
	doc? (
32
		|| (
33
			app-text/asciidoc
34
			>=dev-ruby/asciidoctor-1.5.7
35
		)
36
	)
37
"
38

  
39
PATCHES=(
40
	"${FILESDIR}"/${P}-support-asciidoc.patch
41
)
29 42

  
30 43
src_compile() {
31 44
	emake clean
Thank you!