From owner-svn-ports-head@freebsd.org Sat Dec 26 10:23:32 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 502694B4A57; Sat, 26 Dec 2020 10:23:32 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D30Jh1s1hz3Mq3; Sat, 26 Dec 2020 10:23:32 +0000 (UTC) (envelope-from antoine@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 32EB013990; Sat, 26 Dec 2020 10:23:32 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BQANWMC042133; Sat, 26 Dec 2020 10:23:32 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BQANVKT042128; Sat, 26 Dec 2020 10:23:31 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <202012261023.0BQANVKT042128@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 26 Dec 2020 10:23:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559283 - in head/devel: . libfshfs X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head/devel: . libfshfs X-SVN-Commit-Revision: 559283 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.34 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: Sat, 26 Dec 2020 10:23:32 -0000 Author: antoine Date: Sat Dec 26 10:23:30 2020 New Revision: 559283 URL: https://svnweb.freebsd.org/changeset/ports/559283 Log: New port: devel/libfshfs Library and tools to access the Mac OS Hierarchical File System (HFS) WWW: https://github.com/libyal/libfshfs Added: head/devel/libfshfs/ head/devel/libfshfs/Makefile (contents, props changed) head/devel/libfshfs/distinfo (contents, props changed) head/devel/libfshfs/pkg-descr (contents, props changed) head/devel/libfshfs/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Dec 26 10:17:20 2020 (r559282) +++ head/devel/Makefile Sat Dec 26 10:23:30 2020 (r559283) @@ -1170,6 +1170,7 @@ SUBDIR += libfreefare SUBDIR += libfsapfs SUBDIR += libfsext + SUBDIR += libfshfs SUBDIR += libfsntfs SUBDIR += libftdi SUBDIR += libftdi1 Added: head/devel/libfshfs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfshfs/Makefile Sat Dec 26 10:23:30 2020 (r559283) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= libfshfs +# If/When moving from experimental to alpha, switch to DISTVERSIONPREFIX to prevent PORTEPOCH +DISTVERSION= experimental-20201104 +CATEGORIES= devel +MASTER_SITES= https://github.com/libyal/libfshfs/releases/download/${PORTVERSION:E}/ \ + LOCAL/antoine + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library and tools to access the Mac OS Hierarchical File System (HFS) + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-python --with-openssl=no +CONFIGURE_ENV= PYTHON_CONFIG=${PYTHON_CMD}-config +USES= libtool pathfix python:3.5+ +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E} + +OPTIONS_DEFINE= NLS + +NLS_USES= gettext +NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE} +NLS_CONFIGURE_OFF= --disable-nls + +.include Added: head/devel/libfshfs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfshfs/distinfo Sat Dec 26 10:23:30 2020 (r559283) @@ -0,0 +1,3 @@ +TIMESTAMP = 1604738737 +SHA256 (libfshfs-experimental-20201104.tar.gz) = b7c566986a8ece99c5427eb13fb2122b640d1b9cf5d8056b54f7139837aa9fa9 +SIZE (libfshfs-experimental-20201104.tar.gz) = 1914552 Added: head/devel/libfshfs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfshfs/pkg-descr Sat Dec 26 10:23:30 2020 (r559283) @@ -0,0 +1,3 @@ +Library and tools to access the Mac OS Hierarchical File System (HFS) + +WWW: https://github.com/libyal/libfshfs Added: head/devel/libfshfs/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libfshfs/pkg-plist Sat Dec 26 10:23:30 2020 (r559283) @@ -0,0 +1,17 @@ +bin/fshfsinfo +include/libfshfs.h +include/libfshfs/codepage.h +include/libfshfs/definitions.h +include/libfshfs/error.h +include/libfshfs/extern.h +include/libfshfs/features.h +include/libfshfs/types.h +lib/libfshfs.a +lib/libfshfs.so +lib/libfshfs.so.1 +lib/libfshfs.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pyfshfs.a +%%PYTHON_SITELIBDIR%%/pyfshfs.so +libdata/pkgconfig/libfshfs.pc +man/man1/fshfsinfo.1.gz +man/man3/libfshfs.3.gz