Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/zbackup/
Date: Thu, 28 Jan 2021 07:36:34
Message-Id: 1611819381.dcfbcbd8b1de09fae19213ea10862011e09fee76.juippis@gentoo
1 commit: dcfbcbd8b1de09fae19213ea10862011e09fee76
2 Author: Vladimir Pavljuchenkov (SpiderX) <spiderx <AT> spiderx <DOT> dp <DOT> ua>
3 AuthorDate: Thu Jan 7 15:46:35 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 28 07:36:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcfbcbd8
7
8 app-backup/zbackup: cmake eclass, EAPI 7 for live ebuild
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Vladimir Pavljuchenkov <spiderx <AT> spiderx.dp.ua>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-backup/zbackup/zbackup-9999.ebuild | 14 +++++++-------
15 1 file changed, 7 insertions(+), 7 deletions(-)
16
17 diff --git a/app-backup/zbackup/zbackup-9999.ebuild b/app-backup/zbackup/zbackup-9999.ebuild
18 index 864251576a5..a6bfc74d2f1 100644
19 --- a/app-backup/zbackup/zbackup-9999.ebuild
20 +++ b/app-backup/zbackup/zbackup-9999.ebuild
21 @@ -1,12 +1,12 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 +# Copyright 1999-2021 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 +EAPI=7
28
29 -inherit cmake-utils git-r3
30 +inherit cmake git-r3
31
32 DESCRIPTION="A versatile deduplicating backup tool"
33 -HOMEPAGE="http://zbackup.org/ https://github.com/zbackup/zbackup"
34 +HOMEPAGE="https://github.com/zbackup/zbackup"
35 SRC_URI=""
36 EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
37
38 @@ -18,8 +18,8 @@ IUSE="libressl tartool"
39 DEPEND="app-arch/lzma
40 dev-libs/lzo:2
41 dev-libs/protobuf:0=
42 - sys-libs/libunwind:0
43 - sys-libs/zlib
44 + sys-libs/libunwind:=
45 + sys-libs/zlib:=
46 !libressl? ( dev-libs/openssl:0= )
47 libressl? ( dev-libs/libressl:0= )"
48 RDEPEND="${DEPEND}"
49 @@ -32,5 +32,5 @@ src_configure() {
50 -DBUILD_TARTOOL="$(usex tartool)"
51 )
52
53 - cmake-utils_src_configure
54 + cmake_src_configure
55 }