-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
borgbackup: update to 1.1.7, add borgmatic 1.2.2 #3471
Changes from all commits
417393f
a3b8c30
c40c8ab
d627aa6
9dd99e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
bin:bin/chacl | ||
bin:bin/getfacl | ||
bin:bin/setfacl | ||
lnk:libexec/libacl.so | ||
lnk:lib/libacl.so | ||
lnk:lib/libacl.so.1 | ||
lib:lib/libacl.so.1.1.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
bin:bin/attr | ||
bin:bin/getfattr | ||
bin:bin/setfattr | ||
lnk:libexec/libattr.so | ||
lnk:lib/libattr.so | ||
lnk:lib/libattr.so.1 | ||
lib:lib/libattr.so.1.1.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
borgbackup-1.1.5.tar.gz SHA1 0dec8c69617eb5a3ea9a4d340df5116dd1d434ea | ||
borgbackup-1.1.5.tar.gz SHA256 4356e6c712871f389e3cb1d6382e341ea635f9e5c65de1cd8fcd103d0fb66d3d | ||
borgbackup-1.1.5.tar.gz MD5 38736d939d39fa0f5523b58dc3e135d5 | ||
borgbackup-1.1.7.tar.gz SHA1 d012b8fb55b01efe5840af86012ab7d5a6e346f5 | ||
borgbackup-1.1.7.tar.gz SHA256 f7b51a132e9edfbe1cacb4f478b28caf3622d79fffcb369bdae9f92d8c8a7fdc | ||
borgbackup-1.1.7.tar.gz MD5 b45ac57fbf5566811e5a37e61d3a9d7c |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
msgpack-python-0.4.8.tar.gz SHA1 59d4af5f0598bd31469cad7df316d70e6b492b1d | ||
msgpack-python-0.4.8.tar.gz SHA256 1a2b19df0f03519ec7f19f826afb935b202d8979b0856c6fb3dc28955799f886 | ||
msgpack-python-0.4.8.tar.gz MD5 dcd854fb41ee7584ebbf35e049e6be98 | ||
msgpack-python-0.5.6.tar.gz SHA1 3522e33c8cd3c68d4cfedd9aa5defd177710da6a | ||
msgpack-python-0.5.6.tar.gz SHA256 378cc8a6d3545b532dfd149da715abae4fda2a3adb6d74e525d0d5e51f46909b | ||
msgpack-python-0.5.6.tar.gz MD5 6d644c06a87a5a111bbbf5b34b4be440 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
PKG_NAME = ruamel.yaml | ||
PKG_VERS = 0.15.78 | ||
PKG_EXT = tar.gz | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = https://files.pythonhosted.org/packages/source/r/$(PKG_NAME) | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = | ||
|
||
HOMEPAGE = https://bitbucket.org/ruamel/yaml | ||
COMMENT = YAML 1.2 loader/dumper package for python | ||
LICENSE = MIT | ||
|
||
include ../../mk/spksrc.python-wheel.mk |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ruamel.yaml-0.15.78.tar.gz SHA1 3897a81d7016b82c93080cdddcd673cc255d9dcc | ||
ruamel.yaml-0.15.78.tar.gz SHA256 85793c5fe321e9202eba521b0bb3e6303bcb61f6e56378f59e874ca36a7e9d5f | ||
ruamel.yaml-0.15.78.tar.gz MD5 68f010d49987fc31c46e22951af7c845 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# Cross compiled packages dependencies | ||
#borgbackup==1.1.5 | ||
#msgpack-python==0.4.8 | ||
#borgbackup==1.1.7 | ||
#msgpack-python==0.5.6 | ||
#ruamel.yaml==0.15.70 | ||
|
||
# Downloaded dependencies | ||
borgmatic==1.0.3 | ||
borgmatic==1.2.2 | ||
pykwalify==1.6.1 | ||
docopt==0.6.2 | ||
python-dateutil==2.4.2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
SPK_NAME = python3 | ||
SPK_SHORT_VERS = 3.5 | ||
SPK_VERS = $(SPK_SHORT_VERS).6 | ||
SPK_REV = 7 | ||
SPK_REV = 8 | ||
SPK_ICON = src/python3.png | ||
|
||
DEPENDS = cross/busybox cross/$(SPK_NAME) | ||
|
@@ -10,7 +10,7 @@ DEPENDS += cross/setuptools cross/pip cross/wheel | |
DEPENDS += cross/cffi cross/bcrypt cross/sqlite | ||
# Cross-compiled wheels | ||
DEPENDS += cross/lxml cross/pycrypto cross/pycurl cross/pyyaml | ||
DEPENDS += cross/msgpack-python cross/attr cross/acl cross/lz4 | ||
DEPENDS += cross/msgpack-python cross/ruamel.yaml | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why removing attr, acl and lz4 from Python 3? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These have just been added for HomeAssistant in #3396 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I know, attr, acl and lz4 are used by no other python3 dependent packages except for borgbackup. |
||
|
||
WHEELS = src/requirements.txt | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why updating Python 2.7? borgbackup runs on Python 3, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
borgbackup depends on python3, but I had to upgrade package msgpack-python that it is used by both python and python3 packages.