Date: Fri, 12 Jun 2020 20:11:28 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r538631 - in head/sysutils: . acltool Message-ID: <202006122011.05CKBSLO025290@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Fri Jun 12 20:11:28 2020 New Revision: 538631 URL: https://svnweb.freebsd.org/changeset/ports/538631 Log: New port: sysutils/acltool: cli tool to display & updating filesystem ACLs This is a port of acltool, an ACL manipulation CLI tool. This is a tool to manage NFSv4/ZFS/SMB (also known as Extended on MacOS) style ACLs of filesystems. That is listing, creating, editing, searching, stripping, sorting, removing redundant entries and more. WWW: https://github.com/ptrrkssn/acltool PR: 246876 Submitted by: Peter Eriksson <pen@lysator.liu.se> Added: head/sysutils/acltool/ head/sysutils/acltool/Makefile (contents, props changed) head/sysutils/acltool/distinfo (contents, props changed) head/sysutils/acltool/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Jun 12 19:52:40 2020 (r538630) +++ head/sysutils/Makefile Fri Jun 12 20:11:28 2020 (r538631) @@ -16,6 +16,7 @@ SUBDIR += accounts-qml-module SUBDIR += accountsservice SUBDIR += acerhdf-kmod + SUBDIR += acltool SUBDIR += acpi_call SUBDIR += acpica-tools SUBDIR += acts Added: head/sysutils/acltool/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/acltool/Makefile Fri Jun 12 20:11:28 2020 (r538631) @@ -0,0 +1,39 @@ +# $FreeBSD$ + +PORTNAME= acltool +DISTVERSIONPREFIX=v +DISTVERSION= 1.16.1 +CATEGORIES= sysutils security + +MAINTAINER= pen@lysator.liu.se +COMMENT= ACL manipulation utility + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +OPTIONS_DEFINE= READLINE SAMBA +OPTIONS_DEFAULT=READLINE + +READLINE_USES= readline +READLINE_DESC= Build with GNU Readline for interactive editing + +SAMBA_USES= samba +SAMBA_DESC= Build with Samba (libsmbclient) for SMB support + +READLINE_CONFIGURE_WITH=readline +SAMBA_CONFIGURE_WITH=libsmbclient + +USE_GITHUB= yes +GH_ACCOUNT= ptrrkssn + +GNU_CONFIGURE= yes + +PLIST_FILES= bin/acltool \ + bin/edac bin/lac \ + bin/sac \ + man/man1/edac.1.gz \ + man/man1/lac.1.gz \ + man/man1/sac.1.gz \ + man/man1/acltool.1.gz + +.include <bsd.port.mk> Added: head/sysutils/acltool/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/acltool/distinfo Fri Jun 12 20:11:28 2020 (r538631) @@ -0,0 +1,3 @@ +TIMESTAMP = 1591542398 +SHA256 (ptrrkssn-acltool-v1.16.1_GH0.tar.gz) = 15430b64cb493571f6e46a38482402746bee7ed134c0e99d7976d231cab1c7d5 +SIZE (ptrrkssn-acltool-v1.16.1_GH0.tar.gz) = 147094 Added: head/sysutils/acltool/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/acltool/pkg-descr Fri Jun 12 20:11:28 2020 (r538631) @@ -0,0 +1,7 @@ +This is a port of acltool, an ACL manipulation CLI tool. + +This is a tool to manage NFSv4/ZFS/SMB (also known as Extended on MacOS) +style ACLs of filesystems. That is listing, creating, editing, searching, +stripping, sorting, removing redundant entries and more. + +WWW: https://github.com/ptrrkssn/acltool
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006122011.05CKBSLO025290>