Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/zbackup/
Date: Thu, 26 Apr 2018 15:14:16
Message-Id: 1524755536.efb26090d68f3539b7ad251a8c81a1c9305dd2cf.floppym@gentoo
1 commit: efb26090d68f3539b7ad251a8c81a1c9305dd2cf
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Wed Apr 25 18:12:03 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 26 15:12:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb26090
7
8 app-backup/zbackup: Delete old version (1.4.4).
9
10 app-backup/zbackup/zbackup-1.4.4.ebuild | 34 ---------------------------------
11 1 file changed, 34 deletions(-)
12
13 diff --git a/app-backup/zbackup/zbackup-1.4.4.ebuild b/app-backup/zbackup/zbackup-1.4.4.ebuild
14 deleted file mode 100644
15 index 75f7cf5fca2..00000000000
16 --- a/app-backup/zbackup/zbackup-1.4.4.ebuild
17 +++ /dev/null
18 @@ -1,34 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI=6
23 -
24 -inherit cmake-utils
25 -
26 -DESCRIPTION="A versatile deduplicating backup tool"
27 -HOMEPAGE="http://zbackup.org/ https://github.com/zbackup/zbackup"
28 -SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
29 -
30 -LICENSE="GPL-2+-with-openssl-exception"
31 -KEYWORDS="~amd64 ~x86"
32 -SLOT="0"
33 -IUSE="libressl tartool"
34 -
35 -DEPEND="app-arch/lzma
36 - dev-libs/lzo:2
37 - <dev-libs/protobuf-3:0=
38 - sys-libs/zlib
39 - !libressl? ( dev-libs/openssl:0= )
40 - libressl? ( dev-libs/libressl:0= )"
41 -RDEPEND="${DEPEND}"
42 -
43 -# Add tartool build
44 -PATCHES=( "${FILESDIR}/${P}-tartool.patch" )
45 -
46 -src_configure() {
47 - local mycmakeargs=(
48 - -DBUILD_TARTOOL="$(usex tartool)"
49 - )
50 -
51 - cmake-utils_src_configure
52 -}