From owner-svn-ports-head@freebsd.org Thu Feb 16 19:59:53 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1F9FCE27A4; Thu, 16 Feb 2017 19:59:53 +0000 (UTC) (envelope-from lifanov@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 mx1.freebsd.org (Postfix) with ESMTPS id 8A05615BA; Thu, 16 Feb 2017 19:59:53 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1GJxq8d093553; Thu, 16 Feb 2017 19:59:52 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1GJxqjJ093551; Thu, 16 Feb 2017 19:59:52 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201702161959.v1GJxqjJ093551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Thu, 16 Feb 2017 19:59:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434249 - head/sysutils/fusefs-afuse X-SVN-Group: ports-head 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.23 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: Thu, 16 Feb 2017 19:59:53 -0000 Author: lifanov Date: Thu Feb 16 19:59:52 2017 New Revision: 434249 URL: https://svnweb.freebsd.org/changeset/ports/434249 Log: unbreak sysutils/fusefs-afuse - replace GOOGLE_CODE with GITHUB - pass maintainership to submitter PR: 216979 Submitted by: Chris Hutchinson Modified: head/sysutils/fusefs-afuse/Makefile head/sysutils/fusefs-afuse/pkg-descr Modified: head/sysutils/fusefs-afuse/Makefile ============================================================================== --- head/sysutils/fusefs-afuse/Makefile Thu Feb 16 19:46:23 2017 (r434248) +++ head/sysutils/fusefs-afuse/Makefile Thu Feb 16 19:59:52 2017 (r434249) @@ -3,18 +3,17 @@ PORTNAME= afuse PORTVERSION= 0.4.1 +PORTREVISION= 1 CATEGORIES= sysutils -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= http://BSDforge.com/projects/source/sysutils/afuse/ PKGNAMEPREFIX= fusefs- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@BSDforge.com COMMENT= File system automounting implemented in user-space using FUSE LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN= Unfetchable (google code has gone away) - USES= fuse pkgconfig GNU_CONFIGURE= yes Modified: head/sysutils/fusefs-afuse/pkg-descr ============================================================================== --- head/sysutils/fusefs-afuse/pkg-descr Thu Feb 16 19:46:23 2017 (r434248) +++ head/sysutils/fusefs-afuse/pkg-descr Thu Feb 16 19:59:52 2017 (r434249) @@ -1,16 +1,18 @@ -Afuse is an automounting file system implemented in user-space using -FUSE. Afuse currently implements the most basic functionality that can -be expected by an automounter; that is it manages a directory of virtual -directories. If one of these virtual directories is accessed and is not -already automounted, afuse will attempt to mount a filesystem onto that -directory. If the mount succeeds the requested access proceeds as normal, -otherwise it will fail with an error. +Afuse is an automounting file system implemented in user-space +using FUSE. Afuse currently implements the most basic +functionality that can be expected by an automounter; that is it +manages a directory of virtual directories. If one of these virtual +directories is accessed and is not already automounted, afuse will +attempt to mount a filesystem onto that directory. If the mount +succeeds the requested access proceeds as normal, otherwise it will +fail with an error. -The advantage of using afuse over traditional automounters is that afuse -is designed to run entirely in user-space by individual users. This way an -automounting action can take advantage of the invoking users environment, -for example allowing access to an ssh-agent for password-less sshfs -mounts, or allowing access to a graphical environment to get user input -to complete a mount (i.e. popping up a window asking for a password). +The advantage of using afuse over traditional automounters is that +afuse is designed to run entirely in user-space by individual users. +This way an automounting action can take advantage of the invoking +users environment, for example allowing access to an ssh-agent for +password-less sshfs mounts, or allowing access to a graphical +environment to get user input to complete a mount (i.e. popping up +a window asking for a password). -WWW: http://afuse.sourceforge.net/ +WWW: https://github.com/pcarrier/afuse