From owner-svn-ports-all@freebsd.org Wed Nov 4 03:43:40 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 93C7144F1F7; Wed, 4 Nov 2020 03:43:40 +0000 (UTC) (envelope-from kevans@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 4CQsvJ3NCkz470c; Wed, 4 Nov 2020 03:43:40 +0000 (UTC) (envelope-from kevans@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 574AB27642; Wed, 4 Nov 2020 03:43:40 +0000 (UTC) (envelope-from kevans@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0A43heR2029554; Wed, 4 Nov 2020 03:43:40 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0A43hdpl029551; Wed, 4 Nov 2020 03:43:39 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <202011040343.0A43hdpl029551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Wed, 4 Nov 2020 03:43:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r554050 - head/sysutils/quickjail X-SVN-Group: ports-head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: head/sysutils/quickjail X-SVN-Commit-Revision: 554050 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, 04 Nov 2020 03:43:40 -0000 Author: kevans Date: Wed Nov 4 03:43:39 2020 New Revision: 554050 URL: https://svnweb.freebsd.org/changeset/ports/554050 Log: sysutils/quickjail: update to 0.2.1 0.2.0 mainly featured quickshell(1), which is a shortcut for invocations like: $ quickjail path=/mnt command=/bin/sh # Equivalent: $ quickshell /mnt This update also simplifies the port by just using the bsd.prog.mk install builds with USES=uidfix. PLIST_FILES was split out into a pkg-plist while it was growing in numbers and was otherwise tempting me to come up with some less greppable incantations to generate it. Added: head/sysutils/quickjail/pkg-plist (contents, props changed) Modified: head/sysutils/quickjail/Makefile head/sysutils/quickjail/distinfo Modified: head/sysutils/quickjail/Makefile ============================================================================== --- head/sysutils/quickjail/Makefile Wed Nov 4 03:38:32 2020 (r554049) +++ head/sysutils/quickjail/Makefile Wed Nov 4 03:43:39 2020 (r554050) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= quickjail -PORTVERSION= 0.1.2 +PORTVERSION= 0.2.1 CATEGORIES= sysutils MASTER_SITES= https://git.kevans.dev/kevans/${PORTNAME}/archive/${PORTVERSION}.tar.gz?dummy=/ @@ -11,13 +11,14 @@ COMMENT= Utility to quickly create transient single-co LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING +USES= uidfix + WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz +MAKE_ENV+= BINDIR="${PREFIX}/bin" \ + MANDIR="${PREFIX}/share/man/man" -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.gz \ - ${STAGEDIR}${MAN1PREFIX}/share/man/man1 +pre-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/share/man/man1 .include Modified: head/sysutils/quickjail/distinfo ============================================================================== --- head/sysutils/quickjail/distinfo Wed Nov 4 03:38:32 2020 (r554049) +++ head/sysutils/quickjail/distinfo Wed Nov 4 03:43:39 2020 (r554050) @@ -1,3 +1,3 @@ -TIMESTAMP = 1595998385 -SHA256 (quickjail-0.1.2.tar.gz) = 60435a3642dfd5c5d7597149a3fef827dae11ea6487a01d0eca4cb0dbfdfb32f -SIZE (quickjail-0.1.2.tar.gz) = 3815 +TIMESTAMP = 1604455224 +SHA256 (quickjail-0.2.1.tar.gz) = ceffff417e3ee8b969fdc0803c83b14c431eac977b7288396ac63ee7900df3b7 +SIZE (quickjail-0.2.1.tar.gz) = 4547 Added: head/sysutils/quickjail/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/quickjail/pkg-plist Wed Nov 4 03:43:39 2020 (r554050) @@ -0,0 +1,4 @@ +bin/quickjail +bin/quickshell +share/man/man1/quickjail.1.gz +share/man/man1/quickshell.1.gz