forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-backup/borgbackup: version bump to 1.0.8
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST borgbackup-1.0.7.tar.gz 462509 SHA256 203353a299b6ea0c092a1f23b6bb5414a0b795712c213c68f7a1f4c24be131d1 SHA512 750e85597043049775a2480fb32df5a10e4ba581a91911e93eeb29dbc517db43f537b54206f8f2ce8fa51530866ed9e490c31e6c35d181853481fb3e6269d8af WHIRLPOOL ec34fa9f144dc3cf35f8ef8c61e70ce4b62dd624b6fcff42ca0db3e017b68e2afa3e379aec0acbc443279df25dded18b79df9ba702cc3f94ed834a9c7ff6eff0 | ||
DIST borgbackup-1.0.8.tar.gz 501606 SHA256 6902563c447c4f378ff1a13167f83d15eb60a02316a06368a539b7ff3d88aeb9 SHA512 2a24b302da6cf0266c53a5efc7c1f500c3a3f290c1a49abbced981d2e252886e81b828ab092518f675a81b9865079af66ea34d035b34ebf19a86a153fff6bd45 WHIRLPOOL 8f258bca6b4787e0494f68660e774bcc63d73d3829c5236815858719381c74ca037fcb418cef039e05b74e7da0535cbe941e3e1a8185e51cae1deb8a5aa58505 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="6" | ||
|
||
PYTHON_COMPAT=( python3_{4,5} ) | ||
|
||
inherit distutils-r1 | ||
|
||
if [[ ${PV} == "9999" ]] ; then | ||
EGIT_REPO_URI="https://github.com/${PN}/borg.git" | ||
inherit git-r3 | ||
else | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
fi | ||
|
||
DESCRIPTION="Deduplicating backup program with compression and authenticated encryption." | ||
HOMEPAGE="https://borgbackup.readthedocs.io/" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
IUSE="libressl +fuse" | ||
|
||
# Unformately we have a file conflict with app-office/borg, bug #580402 | ||
RDEPEND=" | ||
!!app-office/borg | ||
app-arch/lz4 | ||
dev-python/msgpack[${PYTHON_USEDEP}] | ||
!libressl? ( dev-libs/openssl:0= ) | ||
libressl? ( dev-libs/libressl:0= ) | ||
fuse? ( dev-python/llfuse[${PYTHON_USEDEP}] ) | ||
" | ||
|
||
DEPEND=" | ||
dev-python/setuptools_scm[${PYTHON_USEDEP}] | ||
dev-python/cython[${PYTHON_USEDEP}] | ||
${RDEPEND} | ||
" |