Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Nov 2020 03:43:39 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r554050 - head/sysutils/quickjail
Message-ID:  <202011040343.0A43hdpl029551@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011040343.0A43hdpl029551>