From owner-svn-ports-all@freebsd.org Wed Jun 24 10:23:54 2020 Return-Path: Delivered-To: svn-ports-all@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 5C64E34A74C; Wed, 24 Jun 2020 10:23:54 +0000 (UTC) (envelope-from bofh@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 49sK4V1l1Jz3dcW; Wed, 24 Jun 2020 10:23:54 +0000 (UTC) (envelope-from bofh@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 370C7100F7; Wed, 24 Jun 2020 10:23:54 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05OANsmE012528; Wed, 24 Jun 2020 10:23:54 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05OANrC9012524; Wed, 24 Jun 2020 10:23:53 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <202006241023.05OANrC9012524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Wed, 24 Jun 2020 10:23:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r540024 - head/sysutils/acltool X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: head/sysutils/acltool X-SVN-Commit-Revision: 540024 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jun 2020 10:23:54 -0000 Author: bofh Date: Wed Jun 24 10:23:53 2020 New Revision: 540024 URL: https://svnweb.freebsd.org/changeset/ports/540024 Log: sysutils/acltool: Update version 1.16.1=>1.16.2 - Fixes a bug with handling invalid command line options - Adds support for libedit - Better documentation (man pages) - Installs stripped binaries PR: 247422 Submitted by: pen@lysator.liu.se (maintainer) Approved by: pen@lysator.liu.se (maintainer) MFH: 2020Q2 (blanket: bug fix) Relnotes: https://github.com/ptrrkssn/acltool/releases Added: head/sysutils/acltool/pkg-plist (contents, props changed) Modified: head/sysutils/acltool/Makefile head/sysutils/acltool/distinfo head/sysutils/acltool/pkg-descr Modified: head/sysutils/acltool/Makefile ============================================================================== --- head/sysutils/acltool/Makefile Wed Jun 24 10:22:14 2020 (r540023) +++ head/sysutils/acltool/Makefile Wed Jun 24 10:23:53 2020 (r540024) @@ -1,39 +1,39 @@ # $FreeBSD$ -PORTNAME= acltool -DISTVERSIONPREFIX=v -DISTVERSION= 1.16.1 -CATEGORIES= sysutils security +PORTNAME= acltool +DISTVERSIONPREFIX= v +DISTVERSION= 1.16.2 +CATEGORIES= sysutils security -MAINTAINER= pen@lysator.liu.se -COMMENT= ACL manipulation utility +MAINTAINER= pen@lysator.liu.se +COMMENT= ACL manipulation tool -LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE -OPTIONS_DEFINE= READLINE SAMBA -OPTIONS_DEFAULT=READLINE +OPTIONS_DEFINE= SAMBA -READLINE_USES= readline -READLINE_DESC= Build with GNU Readline for interactive editing +OPTIONS_RADIO= LINE_EDITOR +OPTIONS_RADIO_LINE_EDITOR= READLINE LIBEDIT +OPTIONS_DEFAULT= READLINE -SAMBA_USES= samba -SAMBA_DESC= Build with Samba (libsmbclient) for SMB support +SAMBA_USES= samba +SAMBA_DESC= Build with Samba (libsmbclient) for SMB support -READLINE_CONFIGURE_WITH=readline -SAMBA_CONFIGURE_WITH=libsmbclient +READLINE_USES= readline +READLINE_DESC= Build with GNU Readline for interactive editing -USE_GITHUB= yes -GH_ACCOUNT= ptrrkssn +LIBEDIT_USES= libedit +LIBEDIT_DESC= Build with BSD Libedit for interactive editing -GNU_CONFIGURE= yes +SAMBA_CONFIGURE_WITH= libsmbclient +READLINE_CONFIGURE_WITH= readline +LIBEDIT_CONFIGURE_WITH= libedit -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 +USE_GITHUB= yes +GH_ACCOUNT= ptrrkssn + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip .include Modified: head/sysutils/acltool/distinfo ============================================================================== --- head/sysutils/acltool/distinfo Wed Jun 24 10:22:14 2020 (r540023) +++ head/sysutils/acltool/distinfo Wed Jun 24 10:23:53 2020 (r540024) @@ -1,3 +1,3 @@ -TIMESTAMP = 1591542398 -SHA256 (ptrrkssn-acltool-v1.16.1_GH0.tar.gz) = 15430b64cb493571f6e46a38482402746bee7ed134c0e99d7976d231cab1c7d5 -SIZE (ptrrkssn-acltool-v1.16.1_GH0.tar.gz) = 147094 +TIMESTAMP = 1592575611 +SHA256 (ptrrkssn-acltool-v1.16.2_GH0.tar.gz) = d54011efb3d5cc24aedad88e3684d1c9dea218515bb1f18d9caac33f8bbae501 +SIZE (ptrrkssn-acltool-v1.16.2_GH0.tar.gz) = 146485 Modified: head/sysutils/acltool/pkg-descr ============================================================================== --- head/sysutils/acltool/pkg-descr Wed Jun 24 10:22:14 2020 (r540023) +++ head/sysutils/acltool/pkg-descr Wed Jun 24 10:23:53 2020 (r540024) @@ -1,7 +1,10 @@ -This is a port of acltool, an ACL manipulation CLI tool. +This is a port of acltool, an NFSv4/ZFS ACL utiltity. -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. +This is a tool to manage NFSv4/ZFS (also known as Extended on MacOS) ACLs. +That is listing, creating, editing, searching, stripping, sorting and +removing redundant entries and more. WWW: https://github.com/ptrrkssn/acltool + +- Peter Eriksson +pen@lysator.liu.se Added: head/sysutils/acltool/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/acltool/pkg-plist Wed Jun 24 10:23:53 2020 (r540024) @@ -0,0 +1,8 @@ +bin/acltool +bin/edac +bin/lac +bin/sac +man/man1/acltool.1.gz +man/man1/edac.1.gz +man/man1/lac.1.gz +man/man1/sac.1.gz