From owner-svn-ports-all@FreeBSD.ORG Tue Jul 16 17:54:55 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3083E45A; Tue, 16 Jul 2013 17:54:55 +0000 (UTC) (envelope-from gblach@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 09CF2882; Tue, 16 Jul 2013 17:54:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6GHssPX034896; Tue, 16 Jul 2013 17:54:54 GMT (envelope-from gblach@svn.freebsd.org) Received: (from gblach@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6GHssih034892; Tue, 16 Jul 2013 17:54:54 GMT (envelope-from gblach@svn.freebsd.org) Message-Id: <201307161754.r6GHssih034892@svn.freebsd.org> From: Grzegorz Blach Date: Tue, 16 Jul 2013 17:54:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323117 - in head/security: . please X-SVN-Group: ports-head 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.14 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: Tue, 16 Jul 2013 17:54:55 -0000 Author: gblach Date: Tue Jul 16 17:54:53 2013 New Revision: 323117 URL: http://svnweb.freebsd.org/changeset/ports/323117 Log: Add new port security/please: Please aims to be little sudo without bells and whistles. Only pam authentication and executing command. Approved by: crees (mentor) Added: head/security/please/ head/security/please/Makefile (contents, props changed) head/security/please/distinfo (contents, props changed) head/security/please/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jul 16 17:52:47 2013 (r323116) +++ head/security/Makefile Tue Jul 16 17:54:53 2013 (r323117) @@ -716,6 +716,7 @@ SUBDIR += pkcs11-helper SUBDIR += pks SUBDIR += pktsuckers + SUBDIR += please SUBDIR += polarssl SUBDIR += poly1305aes SUBDIR += portsentry Added: head/security/please/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/please/Makefile Tue Jul 16 17:54:53 2013 (r323117) @@ -0,0 +1,23 @@ +# Created by: Grzegorz Blach +# $FreeBSD$ + +PORTNAME= please +PORTVERSION= 1.0 +CATEGORIES= security + +MAINTAINER= gblach@FreeBSD.org +COMMENT= Execute a command as root + +LICENSE= BSD + +BUILD_DEPENDS= rst2man:${PORTSDIR}/textproc/py-docutils + +USE_GITHUB= yes +GH_ACCOUNT= MagikBSD +GH_TAGNAME= ${PORTVERSION} +GH_COMMIT= 71c64bc + +PLIST_FILES= bin/please +MAN1= please.1 + +.include Added: head/security/please/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/please/distinfo Tue Jul 16 17:54:53 2013 (r323117) @@ -0,0 +1,2 @@ +SHA256 (please-1.0.tar.gz) = ac40234675906b356ca8ee17957fde81b67f42d4e7d5cf5a0fcd2494298fa0fd +SIZE (please-1.0.tar.gz) = 2921 Added: head/security/please/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/please/pkg-descr Tue Jul 16 17:54:53 2013 (r323117) @@ -0,0 +1,8 @@ +Please aims to be little sudo without bells and whistles. Only pam +authentication and executing command. + +Name please fits into unix naming conventions. Where we have daemon instead of +background process. We are killing processes, not closing processes. Now we can +please to run privileged process. + +WWW: https://github.com/MagikBSD/please