Index: head/ports-mgmt/poudriere-devel/Makefile =================================================================== --- head/ports-mgmt/poudriere-devel/Makefile (revision 415512) +++ head/ports-mgmt/poudriere-devel/Makefile (revision 415513) @@ -1,39 +1,39 @@ # $FreeBSD$ PORTNAME= poudriere -DISTVERSION= 3.1.99.20160518 +DISTVERSION= 3.1.99.20160519 PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ GH PKGNAMESUFFIX= -devel MAINTAINER= bdrewery@FreeBSD.org COMMENT= Port build and test system LICENSE= BSD2CLAUSE CONFLICTS_INSTALL= poudriere-[0-9]* USE_GITHUB= yes GH_ACCOUNT= freebsd -GH_TAGNAME= 3.0-1657-g0b204f0 +GH_TAGNAME= 3.0-1658-g99b3286 #DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${GH_TAGNAME} GNU_CONFIGURE= yes ETCDIR= ${PREFIX}/etc/poudriere.d OPTIONS_DEFINE= ZSH QEMU EXAMPLES OPTIONS_DEFAULT=ZSH OPTIONS_SUB= yes QEMU_DESC= Add qemu-user-static to compile ports for non-x86 architectures QEMU_RUN_DEPENDS= qemu-user-static>0:emulators/qemu-user-static post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ ${INSTALL_DATA} ${WRKSRC}/completions/zsh/_poudriere \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ .include Index: head/ports-mgmt/poudriere-devel/distinfo =================================================================== --- head/ports-mgmt/poudriere-devel/distinfo (revision 415512) +++ head/ports-mgmt/poudriere-devel/distinfo (revision 415513) @@ -1,3 +1,3 @@ -TIMESTAMP = 1463612045 -SHA256 (freebsd-poudriere-3.1.99.20160518-3.0-1657-g0b204f0_GH0.tar.gz) = b64e9635f8d73a839ad44479db50672bc471c9d9b350da6a1a314e89c11bf75f -SIZE (freebsd-poudriere-3.1.99.20160518-3.0-1657-g0b204f0_GH0.tar.gz) = 2937267 +TIMESTAMP = 1463679819 +SHA256 (freebsd-poudriere-3.1.99.20160519-3.0-1658-g99b3286_GH0.tar.gz) = ee5173cededa409ff3e64de0c11bbb08ad84cc49dec311c8ba197f59e7547105 +SIZE (freebsd-poudriere-3.1.99.20160519-3.0-1658-g99b3286_GH0.tar.gz) = 2937271 Index: head/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_include_fs.sh =================================================================== --- head/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_include_fs.sh (revision 415512) +++ head/ports-mgmt/poudriere-devel/files/patch-src_share_poudriere_include_fs.sh (revision 415513) @@ -1,15 +1,15 @@ --- src/share/poudriere/include/fs.sh.orig 2016-05-18 22:58:28 UTC +++ src/share/poudriere/include/fs.sh @@ -191,10 +191,10 @@ destroyfs() { zfs destroy -rf ${fs} rmdir ${mnt} else -- rm -rfx ${mnt} || : -+ rm -rf ${mnt} || : +- rm -rfx ${mnt} 2>/dev/null || : ++ rm -rf ${mnt} 2>/dev/null || : if [ -d "${mnt}" ]; then chflags -R 0 ${mnt} - rm -rfx ${mnt} + rm -rf ${mnt} fi fi }