From owner-svn-ports-head@freebsd.org Sun Sep 2 16:14:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0583FFF34F9; Sun, 2 Sep 2018 16:14:25 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B33827E695; Sun, 2 Sep 2018 16:14:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9F321B987; Sun, 2 Sep 2018 16:14:24 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w82GEOj8080636; Sun, 2 Sep 2018 16:14:24 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w82GEO3k080634; Sun, 2 Sep 2018 16:14:24 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201809021614.w82GEO3k080634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 2 Sep 2018 16:14:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478804 - head/archivers/py-borgbackup X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/archivers/py-borgbackup X-SVN-Commit-Revision: 478804 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2018 16:14:25 -0000 Author: swills Date: Sun Sep 2 16:14:23 2018 New Revision: 478804 URL: https://svnweb.freebsd.org/changeset/ports/478804 Log: archivers/py-borgbackup: Update to 1.1.7 PR: 231079 Submitted by: jjuanino@gmail.com (maintainer) Added: head/archivers/py-borgbackup/pkg-message (contents, props changed) Modified: head/archivers/py-borgbackup/Makefile (contents, props changed) head/archivers/py-borgbackup/distinfo (contents, props changed) Modified: head/archivers/py-borgbackup/Makefile ============================================================================== --- head/archivers/py-borgbackup/Makefile Sun Sep 2 16:05:56 2018 (r478803) +++ head/archivers/py-borgbackup/Makefile Sun Sep 2 16:14:23 2018 (r478804) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= borgbackup -DISTVERSION= 1.1.6 +DISTVERSION= 1.1.7 CATEGORIES= archivers python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/archivers/py-borgbackup/distinfo ============================================================================== --- head/archivers/py-borgbackup/distinfo Sun Sep 2 16:05:56 2018 (r478803) +++ head/archivers/py-borgbackup/distinfo Sun Sep 2 16:14:23 2018 (r478804) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529092806 -SHA256 (borgbackup-1.1.6.tar.gz) = a1d2e474c85d3ad3d59b3f8209b5549653c88912082ea0159d27a2e80c910930 -SIZE (borgbackup-1.1.6.tar.gz) = 3441523 +TIMESTAMP = 1535819065 +SHA256 (borgbackup-1.1.7.tar.gz) = f7b51a132e9edfbe1cacb4f478b28caf3622d79fffcb369bdae9f92d8c8a7fdc +SIZE (borgbackup-1.1.7.tar.gz) = 3446832 Added: head/archivers/py-borgbackup/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-borgbackup/pkg-message Sun Sep 2 16:14:23 2018 (r478804) @@ -0,0 +1,22 @@ +In order to mount locally a remote archive or an entire repository as a FUSE +filesystem, it is required to load fuse module: + +# kldload fuse + +To load the module at boot time, add + +fuse_load="YES" + +to /boot/loader.conf by running: + +sysrc fuse_load="YES" + +Also, if you plan to mount borg repositories as non root user, you need to run + +# sysctl vfs.usermount=1 + +and add the line + +vfs.usermount=1 + +to /etc/sysctl.conf to ensure the setting is loaded at boot time.