- Update RUN_DEPENDS
- Bump PORTREVISION for package change
Bump msgpack requirement to 0.5.6 which is the only acceptable 0.5.x version [1].
PR: 227717
Reported by: <iron.udjin@gmail.com>
Submitted by: sunpoet (myself)
Approved by: Jose Garcia Juanino <jjuanino@gmail.com>
Reference: https://github.com/borgbackup/borg/issues/3753 [1]
This can be removed with newer liblz4 since the file format has been changed back to ASCII.
PR: 225235
Submitted by: Jose Garcia Juanino <jjuanino@gmail.com> (maintainer)
Reference: https://github.com/lz4/lz4/pull/454
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the
current python flavor. It can be used in dependency lines when the
port itself is not python flavored. For example, deskutils/calibre.
By default, all the flavors are generated. To only generate flavors
for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.
In all the ports with Python dependencies, the *_DEPENDS entries MUST
end with the flavor so that the framework knows which to build/use.
This is done by appending '@${PY_FLAVOR}' after the origin (or
@${FLAVOR} if in a Python module with Python flavors, as the content
will be the same). For example:
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
PR: 223071
Reviewed by: portmgr, python
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D12464
Poudriere in particulr did not properly handle DEPENDS_ARGS which
made these ports not properly install dependencies. That bug
is being addressed along with adding FLAVORS support to it.
With hat: portmgr
MFH: 2017Q2
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo
PR: 210149
Submitted by: mat
Exp-run by: antoine
Sponsored by: The FreeBSD Foundation, Absolight
Differential Revision: https://reviews.freebsd.org/D6577
BorgBackup (short: Borg) is a deduplicating backup program. Optionally, it
supports compression and authenticated encryption.
The main goal of Borg is to provide an efficient and secure way to backup data.
The data deduplication technique used makes Borg suitable for daily backups
since only changes are stored. The authenticated encryption technique makes it
suitable for backups to not fully trusted targets.
WWW: https://pypi.python.org/pypi/borgbackup
Note: NO_PACKAGE=yes had to be set because this port only works with Python 3
and depends on other Python ports which are currently only built with Python
2.7 by default. Discussed in the freebsd-python mailing list:
https://lists.freebsd.org/pipermail/freebsd-python/2016-April/010144.html
PR: 207715
Submitted by: José García Juanino <jjuanino@gmail.com>