Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/tarsnap/
Date: Sat, 29 Dec 2018 20:35:03
Message-Id: 1546115678.85537d26b941b362b9250fe38448fca5d60e521c.whissi@gentoo
1 commit: 85537d26b941b362b9250fe38448fca5d60e521c
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 29 20:34:38 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 29 20:34:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85537d26
7
8 app-backup/tarsnap: bump to v1.0.39
9
10 Closes: https://bugs.gentoo.org/649474
11 Package-Manager: Portage-2.3.53, Repoman-2.3.12
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 app-backup/tarsnap/Manifest | 1 +
15 app-backup/tarsnap/tarsnap-1.0.39.ebuild | 43 ++++++++++++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/app-backup/tarsnap/Manifest b/app-backup/tarsnap/Manifest
19 index 0ef681bcb0a..91b527b70c5 100644
20 --- a/app-backup/tarsnap/Manifest
21 +++ b/app-backup/tarsnap/Manifest
22 @@ -1,2 +1,3 @@
23 DIST tarsnap-autoconf-1.0.35.tgz 600115 BLAKE2B d2dc76a444e6095f00ba3742fa0aca5fd13263e5cc1ad666c222983ef5a5a9c9c72b5af18283ad33bef690328b9eab0c70fe908b33d87b286b1eacd55b664a4d SHA512 70f932b172717d7f0d6f96a357487b8f8ad13cb7332d73878f629c3abf0862da54a0621092d81ce8cd9eb8380cf5b4c32e89df4d890949429fc84737024dcb61
24 DIST tarsnap-autoconf-1.0.37.tgz 629450 BLAKE2B 440858098c5c3f2be6fb6b1473ab4fade158203162c04fbc4c2e051f443c7ce3246ab0701e117bccb436b8f1f022e986ec67f653a3c34b9c36da99ca85d73bc8 SHA512 050053f2109b74cda16511cf35ab2c11e0470ba745c661d254b7c17efde9e629830d519896b343dbd4f48ee739dfef47b724eb5e2e78c3e7dbc4ae018a536a5f
25 +DIST tarsnap-autoconf-1.0.39.tgz 641089 BLAKE2B 4da7fa75c2a6df3186fac4f39a511532ae866c287a2bdc8dcc22049b53fcc903305f84fae9258793bc0c7a47b208d0bf2995143ee7b4296a35b4ca41d65d9a09 SHA512 dec8a72144a3a7fd42b006933c904b812894ca9fe2c57ecc4fbba817b9b49c8f15517530a00b0c3a9897e3182b4d9aee525334537806a9c4f7308086678fa2b4
26
27 diff --git a/app-backup/tarsnap/tarsnap-1.0.39.ebuild b/app-backup/tarsnap/tarsnap-1.0.39.ebuild
28 new file mode 100644
29 index 00000000000..42bf7639963
30 --- /dev/null
31 +++ b/app-backup/tarsnap/tarsnap-1.0.39.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI="7"
37 +
38 +inherit bash-completion-r1
39 +
40 +DESCRIPTION="Online backups for the truly paranoid"
41 +HOMEPAGE="https://www.tarsnap.com/"
42 +SRC_URI="https://www.tarsnap.com/download/${PN}-autoconf-${PV}.tgz"
43 +
44 +LICENSE="tarsnap"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="acl bzip2 libressl lzma xattr"
48 +
49 +RDEPEND="
50 + !libressl? ( dev-libs/openssl:0= )
51 + libressl? ( dev-libs/libressl:0= )
52 + sys-libs/e2fsprogs-libs
53 + sys-libs/zlib
54 + acl? ( sys-apps/acl )
55 + bzip2? ( app-arch/bzip2 )
56 + lzma? ( app-arch/xz-utils )
57 + xattr? ( sys-apps/attr )"
58 +DEPEND="${RDEPEND}
59 + virtual/os-headers" # Required for "magic.h"
60 +
61 +S=${WORKDIR}/${PN}-autoconf-${PV}
62 +
63 +src_configure() {
64 + econf \
65 + $(use_enable xattr) \
66 + $(use_enable acl) \
67 + $(use_with bzip2 bz2lib) \
68 + --without-lzmadec \
69 + $(use_with lzma)
70 +}
71 +
72 +src_install() {
73 + default
74 + dobashcomp misc/bash_completion.d/*
75 +}