From owner-svn-ports-head@freebsd.org Tue Nov 27 16:19:27 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E622E11526CE; Tue, 27 Nov 2018 16:19:26 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 77D0683C5A; Tue, 27 Nov 2018 16:19:26 +0000 (UTC) (envelope-from wg@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 59AB61DAE5; Tue, 27 Nov 2018 16:19:26 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wARGJQwB023644; Tue, 27 Nov 2018 16:19:26 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wARGJPGq023642; Tue, 27 Nov 2018 16:19:25 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201811271619.wARGJPGq023642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 27 Nov 2018 16:19:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486019 - head/sysutils/iocage-devel X-SVN-Group: ports-head X-SVN-Commit-Author: wg X-SVN-Commit-Paths: head/sysutils/iocage-devel X-SVN-Commit-Revision: 486019 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 77D0683C5A X-Spamd-Result: default: False [1.23 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.03)[0.032,0]; NEURAL_SPAM_MEDIUM(0.69)[0.687,0]; NEURAL_SPAM_LONG(0.51)[0.511,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2018 16:19:27 -0000 Author: wg Date: Tue Nov 27 16:19:25 2018 New Revision: 486019 URL: https://svnweb.freebsd.org/changeset/ports/486019 Log: sysutils/iocage-devel: update to 1.0.0.20181026 iocage project has changed directions and will no longer change underlying library. PORTEPOCH was bumped for this reason as it wont move to 2.x anytime soon. Approved by: maintainer Deleted: head/sysutils/iocage-devel/pkg-message Modified: head/sysutils/iocage-devel/Makefile head/sysutils/iocage-devel/distinfo head/sysutils/iocage-devel/pkg-descr Modified: head/sysutils/iocage-devel/Makefile ============================================================================== --- head/sysutils/iocage-devel/Makefile Tue Nov 27 16:18:56 2018 (r486018) +++ head/sysutils/iocage-devel/Makefile Tue Nov 27 16:19:25 2018 (r486019) @@ -1,19 +1,19 @@ # $FreeBSD$ PORTNAME= iocage-devel -PORTVERSION= 2.0.0.20181008 +PORTVERSION= 1.0.0.20181026 +PORTEPOCH= 1 CATEGORIES= sysutils python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= maintainers@iocage.io +MAINTAINER= wg@FreeBSD.org COMMENT= FreeBSD jail manager written in Python3 LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.0.0:devel/py-pytest-runner@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libiocage>0:devel/py-libiocage@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}netifaces>0:net/py-netifaces@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}netifaces>0:net/py-netifaces@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}click>=6.7:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tqdm>=4.10.0:misc/py-tqdm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}coloredlogs>0:devel/py-coloredlogs@${PY_FLAVOR} \ @@ -27,7 +27,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}libiocage>0:devel/ USE_GITHUB= yes GH_ACCOUNT= iocage GH_PROJECT= iocage -GH_TAGNAME= 810ff4ee +GH_TAGNAME= c4016ac NO_ARCH= yes USES= python:3.6+ Modified: head/sysutils/iocage-devel/distinfo ============================================================================== --- head/sysutils/iocage-devel/distinfo Tue Nov 27 16:18:56 2018 (r486018) +++ head/sysutils/iocage-devel/distinfo Tue Nov 27 16:19:25 2018 (r486019) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538750744 -SHA256 (iocage-iocage-2.0.0.20181008-810ff4ee_GH0.tar.gz) = c6dadbf73a8ccb7091e8c8baab0d32cb6f2d5ae9bfd43e856f0488b18ff62d64 -SIZE (iocage-iocage-2.0.0.20181008-810ff4ee_GH0.tar.gz) = 362896 +TIMESTAMP = 1542708791 +SHA256 (iocage-iocage-1.0.0.20181026-c4016ac_GH0.tar.gz) = df96aa350274198e257d6d392cc6f280b8719bdafe3a382f40268f654817a371 +SIZE (iocage-iocage-1.0.0.20181026-c4016ac_GH0.tar.gz) = 318964 Modified: head/sysutils/iocage-devel/pkg-descr ============================================================================== --- head/sysutils/iocage-devel/pkg-descr Tue Nov 27 16:18:56 2018 (r486018) +++ head/sysutils/iocage-devel/pkg-descr Tue Nov 27 16:19:25 2018 (r486019) @@ -1,7 +1,6 @@ -iocage is a jail/container manager amalgamating some of the best features and -technologies the FreeBSD operating system has to offer. It is geared for ease -of use with a simple and easy to understand command syntax. This development -version aims to replace the library with a more solid code base while keeping -the same CLI. +iocage is a jail/container manager amalgamating some of the best +features and technologies the FreeBSD operating system has +to offer. It is geared for ease of use with a simple and easy +to understand command syntax. WWW: https://github.com/iocage/iocage