From owner-svn-ports-head@freebsd.org Mon Jul 18 18:46:29 2016 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 A6959B9D0DD; Mon, 18 Jul 2016 18:46:29 +0000 (UTC) (envelope-from jbeich@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 616A4154F; Mon, 18 Jul 2016 18:46:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6IIkSUX073184; Mon, 18 Jul 2016 18:46:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6IIkSmZ073180; Mon, 18 Jul 2016 18:46:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607181846.u6IIkSmZ073180@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 18 Jul 2016 18:46:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418729 - in head/sysutils: . fusefs-squashfuse 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.22 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: Mon, 18 Jul 2016 18:46:29 -0000 Author: jbeich Date: Mon Jul 18 18:46:27 2016 New Revision: 418729 URL: https://svnweb.freebsd.org/changeset/ports/418729 Log: sysutils/fusefs-squashfuse: add new port PR: 210645 Submitted by: jsmith@resonatingmedia.com Squashfuse is a command line utility for mounting SquashFS archives in user-space. It supports almost all features of the SquashFS format. https://github.com/vasi/squashfuse Added: head/sysutils/fusefs-squashfuse/ head/sysutils/fusefs-squashfuse/Makefile (contents, props changed) head/sysutils/fusefs-squashfuse/distinfo (contents, props changed) head/sysutils/fusefs-squashfuse/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile (contents, props changed) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Jul 18 18:29:59 2016 (r418728) +++ head/sysutils/Makefile Mon Jul 18 18:46:27 2016 (r418729) @@ -340,6 +340,7 @@ SUBDIR += fusefs-simple-mtpfs SUBDIR += fusefs-smbnetfs SUBDIR += fusefs-sqlfs + SUBDIR += fusefs-squashfuse SUBDIR += fusefs-sshfs SUBDIR += fusefs-unionfs SUBDIR += fusefs-wdfs Added: head/sysutils/fusefs-squashfuse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-squashfuse/Makefile Mon Jul 18 18:46:27 2016 (r418729) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= squashfuse +PORTVERSION= 0.1.100 +CATEGORIES= sysutils +PKGNAMEPREFIX= fusefs- + +MAINTAINER= jsmith@resonatingmedia.com +COMMENT= Mount a squashfs archive and treat it like a local file system + +LICENSE= GPLv2 + +USE_GITHUB= yes +GH_ACCOUNT= vasi + +USES= autoreconf fuse libtool pkgconfig +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-silent-rules + +PLIST_FILES= bin/squashfuse bin/squashfuse_ll man/man1/squashfuse.1.gz + +.include Added: head/sysutils/fusefs-squashfuse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-squashfuse/distinfo Mon Jul 18 18:46:27 2016 (r418729) @@ -0,0 +1,3 @@ +TIMESTAMP = 1468267228 +SHA256 (vasi-squashfuse-0.1.100_GH0.tar.gz) = dda02875735570d24d682cf35846f0165199e0d4ce38e0703e5aabe0318292e6 +SIZE (vasi-squashfuse-0.1.100_GH0.tar.gz) = 55708 Added: head/sysutils/fusefs-squashfuse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-squashfuse/pkg-descr Mon Jul 18 18:46:27 2016 (r418729) @@ -0,0 +1,4 @@ +Squashfuse is a command line utility for mounting SquashFS archives +in user-space. It supports almost all features of the SquashFS format. + +WWW: https://github.com/vasi/squashfuse