From owner-svn-ports-head@freebsd.org Tue Mar 13 12:26:33 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 CD052F4961A; Tue, 13 Mar 2018 12:26:32 +0000 (UTC) (envelope-from tobik@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 740C57A503; Tue, 13 Mar 2018 12:26:32 +0000 (UTC) (envelope-from tobik@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 6B11019DC0; Tue, 13 Mar 2018 12:26:32 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2DCQWg1083672; Tue, 13 Mar 2018 12:26:32 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2DCQVNe083667; Tue, 13 Mar 2018 12:26:31 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803131226.w2DCQVNe083667@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 13 Mar 2018 12:26:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464367 - in head/sysutils: . fusefs-hfsfuse X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/sysutils: . fusefs-hfsfuse X-SVN-Commit-Revision: 464367 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.25 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: Tue, 13 Mar 2018 12:26:33 -0000 Author: tobik Date: Tue Mar 13 12:26:31 2018 New Revision: 464367 URL: https://svnweb.freebsd.org/changeset/ports/464367 Log: New port: sysutils/fusefs-hfsfuse FUSE driver for HFS+ based on NetBSD's kernel driver with modifications. This driver is read-only and cannot write to or damage the target filesystem in any way. hfsfuse also includes a standalone tool, hfsdump, to inspect the contents of an HFS+ volume without FUSE. WWW: https://github.com/0x09/hfsfuse PR: 226244 Added: head/sysutils/fusefs-hfsfuse/ head/sysutils/fusefs-hfsfuse/Makefile (contents, props changed) head/sysutils/fusefs-hfsfuse/distinfo (contents, props changed) head/sysutils/fusefs-hfsfuse/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Mar 13 11:57:29 2018 (r464366) +++ head/sysutils/Makefile Tue Mar 13 12:26:31 2018 (r464367) @@ -365,6 +365,7 @@ SUBDIR += fusefs-gnome-vfs SUBDIR += fusefs-gstfs SUBDIR += fusefs-gunzip + SUBDIR += fusefs-hfsfuse SUBDIR += fusefs-httpfs SUBDIR += fusefs-ifuse SUBDIR += fusefs-libs Added: head/sysutils/fusefs-hfsfuse/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-hfsfuse/Makefile Tue Mar 13 12:26:31 2018 (r464367) @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= hfsfuse +DISTVERSION= g20180118 +CATEGORIES= sysutils +PKGNAMEPREFIX= fusefs- + +MAINTAINER= tobik@FreeBSD.org +COMMENT= FUSE driver for HFS+ filesystems + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/src/COPYING + +LIB_DEPENDS= libublio.so:devel/libublio \ + libutf8proc.so:textproc/utf8proc + +USES= fuse gmake +USE_GITHUB= yes +GH_ACCOUNT= 0x09 +GH_TAGNAME= d021835629c3fb37bd5bf8d364d5196f1db53867 + +MAKE_ARGS= WITH_UBLIO=system WITH_UTF8PROC=system + +PLIST_FILES= bin/hfsdump bin/hfsfuse +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + cd ${WRKSRC} && ${INSTALL_PROGRAM} hfsdump hfsfuse \ + ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/fusefs-hfsfuse/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-hfsfuse/distinfo Tue Mar 13 12:26:31 2018 (r464367) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520943359 +SHA256 (0x09-hfsfuse-g20180118-d021835629c3fb37bd5bf8d364d5196f1db53867_GH0.tar.gz) = 035cc518ed2c58088e2a59b7a204da74cb82c6bf4ed16b64455e2e93347f8d3b +SIZE (0x09-hfsfuse-g20180118-d021835629c3fb37bd5bf8d364d5196f1db53867_GH0.tar.gz) = 205481 Added: head/sysutils/fusefs-hfsfuse/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/fusefs-hfsfuse/pkg-descr Tue Mar 13 12:26:31 2018 (r464367) @@ -0,0 +1,10 @@ +FUSE driver for HFS+ based on NetBSD's kernel driver with +modifications. + +This driver is read-only and cannot write to or damage the target +filesystem in any way. + +hfsfuse also includes a standalone tool, hfsdump, to inspect the +contents of an HFS+ volume without FUSE. + +WWW: https://github.com/0x09/hfsfuse