diff options
author | John Miner <jminer74@post.com> | 2019-06-02 20:16:24 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-06-02 20:49:22 +0000 |
commit | 9f41f37ae319d064e9496729d9edfe73c6db2814 (patch) | |
tree | c0dcf7996eee21a04c31d3ae588ab6b2b51f7139 /community/borgbackup | |
parent | 659f07a301ae37723d90bff7464513ae2be9a0ca (diff) | |
download | aports-9f41f37ae319d064e9496729d9edfe73c6db2814.tar.bz2 aports-9f41f37ae319d064e9496729d9edfe73c6db2814.tar.xz |
community/borgbackup: upgrade to 1.1.10
- py3-msgpack no longer a dependency as it's now bundled
Closes GH-8415
Diffstat (limited to 'community/borgbackup')
-rw-r--r-- | community/borgbackup/APKBUILD | 14 | ||||
-rw-r--r-- | community/borgbackup/msgpack-fix.patch | 13 |
2 files changed, 5 insertions, 22 deletions
diff --git a/community/borgbackup/APKBUILD b/community/borgbackup/APKBUILD index d384fe3027..8836a8e2c3 100644 --- a/community/borgbackup/APKBUILD +++ b/community/borgbackup/APKBUILD @@ -1,25 +1,22 @@ # Contributor: Olivier Mauras <olivier@mauras.ch> # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=borgbackup -pkgver=1.1.7 -pkgrel=3 +pkgver=1.1.10 +pkgrel=0 pkgdesc="Deduplicating backup program" url="https://borgbackup.readthedocs.io/" arch="all !s390x" # limited by py3-zmq license="BSD-3-Clause" -depends="python3 py3-msgpack py3-zmq" +depends="python3 py3-zmq" makedepends="python3-dev lz4-dev acl-dev attr-dev openssl-dev linux-headers py3-setuptools" -source="https://github.com/$pkgname/borg/releases/download/$pkgver/$pkgname-$pkgver.tar.gz - msgpack-fix.patch" +source="https://github.com/$pkgname/borg/releases/download/$pkgver/$pkgname-$pkgver.tar.gz" build() { - cd "$builddir" python3 setup.py build } package() { - cd "$builddir" python3 setup.py install --prefix=/usr --root="$pkgdir" # Clean some useless files. @@ -27,5 +24,4 @@ package() { find . -name '*.h' -delete -o -name '*.c' -delete -o -name '*.pyx' -delete } -sha512sums="586420b9cad7e731f2f1b8b05f3cd3dc606691c5a5ec307e887035d941ac5ac6d4c988783660969960a1221e4d9f2b865ee5558d4007ea7524632d0a50a8a402 borgbackup-1.1.7.tar.gz -0b30850df11124c7d699867a88852dc2c49c7e3b4025f1d75a3b4404ca5801d73ab21260f86a7725bb3b19650c8c0ddea05569f5696cb68b3e45c8faf54a97b6 msgpack-fix.patch" +sha512sums="9315335208f10427e3105e10819817d15fd05171479252903bd51eaacb016bc3ff792d505b9203ce0b9b41ec350472bdb9a23b0128e7fe156aaa47c1608451c0 borgbackup-1.1.10.tar.gz" diff --git a/community/borgbackup/msgpack-fix.patch b/community/borgbackup/msgpack-fix.patch deleted file mode 100644 index 102492abcc..0000000000 --- a/community/borgbackup/msgpack-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- borgbackup-1.1.7/setup.py.original -+++ borgbackup-1.1.7/setup.py -@@ -39,7 +39,9 @@ - # we are rather picky about msgpack versions, because a good working msgpack is - # very important for borg, see https://github.com/borgbackup/borg/issues/3753 - # best versions seem to be 0.4.6, 0.4.7, 0.4.8 and 0.5.6: -- 'msgpack-python >=0.4.6, <=0.5.6, !=0.5.0, !=0.5.1, !=0.5.2, !=0.5.3, !=0.5.4, !=0.5.5', -+ 'msgpack-python >=0.4.6, <=0.5.6, !=0.5.0, !=0.5.1, !=0.5.2, !=0.5.3, !=0.5.4, !=0.5.5;python_version <"3.4"', -+ 'msgpack-python >=0.4.6, <0.5;python_version=="3.4"', -+ 'msgpack >=0.5.6;python_version >="3.5"', - # if you can't satisfy the above requirement, these are versions that might - # also work ok, IF you make sure to use the COMPILED version of msgpack-python, - # NOT the PURE PYTHON fallback implementation: ==0.5.1, ==0.5.4 |