From owner-svn-ports-all@freebsd.org Thu Dec 20 02:07:34 2018 Return-Path: Delivered-To: svn-ports-all@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 6CEDE13524F6; Thu, 20 Dec 2018 02:07:34 +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) 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 0EAB2854C7; Thu, 20 Dec 2018 02:07:34 +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 024CB1EA46; Thu, 20 Dec 2018 02:07:34 +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 wBK27XOM056665; Thu, 20 Dec 2018 02:07:33 GMT (envelope-from kevans@FreeBSD.org) Received: (from kevans@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBK27XbR056662; Thu, 20 Dec 2018 02:07:33 GMT (envelope-from kevans@FreeBSD.org) Message-Id: <201812200207.wBK27XbR056662@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevans set sender to kevans@FreeBSD.org using -f From: Kyle Evans Date: Thu, 20 Dec 2018 02:07:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487826 - head/devel/py-sarge X-SVN-Group: ports-head X-SVN-Commit-Author: kevans X-SVN-Commit-Paths: head/devel/py-sarge X-SVN-Commit-Revision: 487826 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0EAB2854C7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 20 Dec 2018 02:07:34 -0000 Author: kevans (src committer) Date: Thu Dec 20 02:07:33 2018 New Revision: 487826 URL: https://svnweb.freebsd.org/changeset/ports/487826 Log: devel/py-sarge: Update to 0.1.5 Highlights of the update: - Improved errors - Fixed compatibility with Python 3.7 (async is now a keyword) - Updated tutorial example on progress monitoring PR: 233298 Submitted by: Mattias Lindvall Reviewed by: koobs (ports) Approved by: koobs (ports), kevans (maintainer) Modified: head/devel/py-sarge/Makefile head/devel/py-sarge/distinfo head/devel/py-sarge/pkg-descr Modified: head/devel/py-sarge/Makefile ============================================================================== --- head/devel/py-sarge/Makefile Thu Dec 20 02:06:59 2018 (r487825) +++ head/devel/py-sarge/Makefile Thu Dec 20 02:07:33 2018 (r487826) @@ -2,15 +2,16 @@ # $FreeBSD$ PORTNAME= sarge -PORTVERSION= 0.1.4 +PORTVERSION= 0.1.5 +DISTVERSIONSUFFIX= .post0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= kevans@FreeBSD.org +MAINTAINER= mattias.lindvall@gmail.com COMMENT= Wrapper for subprocess which provides command pipeline functionality -LICENSE= BSD2CLAUSE +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= python Modified: head/devel/py-sarge/distinfo ============================================================================== --- head/devel/py-sarge/distinfo Thu Dec 20 02:06:59 2018 (r487825) +++ head/devel/py-sarge/distinfo Thu Dec 20 02:07:33 2018 (r487826) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475906135 -SHA256 (sarge-0.1.4.tar.gz) = 59f93216723ddd9062d17cbbb90ed9e69267b84825cf0bde0b7f8d934c424823 -SIZE (sarge-0.1.4.tar.gz) = 50472 +TIMESTAMP = 1542564450 +SHA256 (sarge-0.1.5.post0.tar.gz) = da8cc90883f8e5ab4af0d746438f608662f5f2a35da2e858517927edefa134b0 +SIZE (sarge-0.1.5.post0.tar.gz) = 17860 Modified: head/devel/py-sarge/pkg-descr ============================================================================== --- head/devel/py-sarge/pkg-descr Thu Dec 20 02:06:59 2018 (r487825) +++ head/devel/py-sarge/pkg-descr Thu Dec 20 02:07:33 2018 (r487826) @@ -1,7 +1,3 @@ - - - - The sarge package provides a wrapper for subprocess which provides command pipeline functionality. @@ -15,9 +11,9 @@ https://bitbucket.org/vinay.sajip/sarge/ The latest documentation (kept updated between releases) is on Read The Docs: -http://sarge.readthedocs.org/ +https://sarge.readthedocs.org/ Please report any problems or suggestions for improvement either via the mailing list or the issue tracker. -WWW: http://sarge.readthedocs.org/ +WWW: https://sarge.readthedocs.org/