From owner-svn-ports-head@freebsd.org Thu Jan 3 19:25:12 2019 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 4297314341D4; Thu, 3 Jan 2019 19:25:12 +0000 (UTC) (envelope-from pi@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) server-signature RSA-PSS (4096 bits) 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 DB1028AD8F; Thu, 3 Jan 2019 19:25:11 +0000 (UTC) (envelope-from pi@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 C566825AED; Thu, 3 Jan 2019 19:25:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x03JPBRp040483; Thu, 3 Jan 2019 19:25:11 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x03JPBfr040480; Thu, 3 Jan 2019 19:25:11 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201901031925.x03JPBfr040480@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 3 Jan 2019 19:25:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489204 - in head/sysutils: . zsm X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/sysutils: . zsm X-SVN-Commit-Revision: 489204 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DB1028AD8F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.998,0] 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: Thu, 03 Jan 2019 19:25:12 -0000 Author: pi Date: Thu Jan 3 19:25:10 2019 New Revision: 489204 URL: https://svnweb.freebsd.org/changeset/ports/489204 Log: New port: sysutils/zsm A console program that manages ZFS snapshots. - Manage multiple sets of rolling snapshots. - Configure a custom schedule via the config file. - Run in background by adding it to crontab. Technically, most of the functionality is in zsm-lib, and zsm is just a thin console interface. WWW: https://zsm.rtfd.io/ PR: 234280 Submitted by: Matthias Lindvall Added: head/sysutils/zsm/ head/sysutils/zsm/Makefile (contents, props changed) head/sysutils/zsm/distinfo (contents, props changed) head/sysutils/zsm/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jan 3 19:23:39 2019 (r489203) +++ head/sysutils/Makefile Thu Jan 3 19:25:10 2019 (r489204) @@ -1481,6 +1481,7 @@ SUBDIR += zrep SUBDIR += zrepl SUBDIR += zsd + SUBDIR += zsm SUBDIR += zxfer .include Added: head/sysutils/zsm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsm/Makefile Thu Jan 3 19:25:10 2019 (r489204) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= zsm +PORTVERSION= 0.2.0 +CATEGORIES= sysutils python +MASTER_SITES= CHEESESHOP + +MAINTAINER= mattias.lindvall@gmail.com +COMMENT= ZFS Snapshot Manager + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=6.7:devel/py-click@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pid>=2.2.0:devel/py-pid@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}zsm-lib>=0.2.0:devel/py-zsm-lib@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.6.4:devel/py-pytest@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} LC_ALL=en_US.UTF-8 ${PYTHON_CMD} -m pytest) + +.include Added: head/sysutils/zsm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsm/distinfo Thu Jan 3 19:25:10 2019 (r489204) @@ -0,0 +1,3 @@ +TIMESTAMP = 1545507449 +SHA256 (zsm-0.2.0.tar.gz) = 098d8ca87f8e92560b2b69ef5aff6835428bd64da599d01493946f311cf15a53 +SIZE (zsm-0.2.0.tar.gz) = 4760 Added: head/sysutils/zsm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/zsm/pkg-descr Thu Jan 3 19:25:10 2019 (r489204) @@ -0,0 +1,10 @@ +A console program that manages ZFS snapshots. + +- Manage multiple sets of rolling snapshots. +- Configure a custom schedule via the config file. +- Run in background by adding it to crontab. + +Technically, most of the functionality is in zsm-lib, +and zsm is just a thin console interface. + +WWW: https://zsm.rtfd.io/