Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/
Date: Mon, 31 Jul 2017 18:45:18
Message-Id: 1501525704.0ec9b53b49d7c26b20a6f32e86212a87f43bc968.soap@gentoo
1 commit: 0ec9b53b49d7c26b20a6f32e86212a87f43bc968
2 Author: Craig Andrews <candrews <AT> integralblue <DOT> com>
3 AuthorDate: Mon Jul 31 18:12:50 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 31 18:28:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec9b53b
7
8 app-backup/btrbk: 0.24.0 requires <sys-fs/btrfs-progs-4.8.3
9
10 See https://github.com/digint/btrbk/commit/6cf5d59
11 Closes: https://github.com/gentoo/gentoo/pull/5251
12
13 app-backup/btrbk/btrbk-0.24.0-r1.ebuild | 32 ++++++++++++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/app-backup/btrbk/btrbk-0.24.0-r1.ebuild b/app-backup/btrbk/btrbk-0.24.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..8f10060231f
19 --- /dev/null
20 +++ b/app-backup/btrbk/btrbk-0.24.0-r1.ebuild
21 @@ -0,0 +1,32 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit systemd
28 +
29 +if [[ ${PV} == "9999" ]] ; then
30 + EGIT_REPO_URI="git://dev.tty0.ch/btrbk.git"
31 + inherit git-r3
32 + SRC_URI=""
33 + KEYWORDS=""
34 +else
35 + SRC_URI="https://digint.ch/download/btrbk/releases/${P}.tar.xz"
36 + KEYWORDS="amd64 arm x86"
37 +fi
38 +
39 +DESCRIPTION="Tool for creating snapshots and remote backups of btrfs subvolumes"
40 +HOMEPAGE="https://digint.ch/btrbk/"
41 +LICENSE="GPL-3+"
42 +SLOT="0"
43 +IUSE="+pv"
44 +
45 +DEPEND=""
46 +RDEPEND="dev-lang/perl
47 + net-misc/openssh
48 + pv? ( sys-apps/pv )
49 + >=sys-fs/btrfs-progs-3.18.2 <sys-fs/btrfs-progs-4.8.3"
50 +
51 +src_install() {
52 + emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" SYSTEMDDIR="$(systemd_get_systemunitdir)" install
53 +}