From owner-svn-ports-head@freebsd.org Mon Oct 29 22:13:12 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 6BC6810EBABD; Mon, 29 Oct 2018 22:13:12 +0000 (UTC) (envelope-from sunpoet@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 1C1538657F; Mon, 29 Oct 2018 22:13:12 +0000 (UTC) (envelope-from sunpoet@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 061DB146A8; Mon, 29 Oct 2018 22:13:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9TMD8mF079090; Mon, 29 Oct 2018 22:13:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9TMD8c4079087; Mon, 29 Oct 2018 22:13:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201810292213.w9TMD8c4079087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 29 Oct 2018 22:13:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483411 - head/devel/py-jaraco.logging X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-jaraco.logging X-SVN-Commit-Revision: 483411 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Mon, 29 Oct 2018 22:13:12 -0000 Author: sunpoet Date: Mon Oct 29 22:13:07 2018 New Revision: 483411 URL: https://svnweb.freebsd.org/changeset/ports/483411 Log: Update to 1.5.2 - Add LICENSE_FILE - Sort *_DEPENDS - Add NO_ARCH - Update WWW - Take maintainership Changes: https://github.com/jaraco/jaraco.logging/blob/master/CHANGES.rst Modified: head/devel/py-jaraco.logging/Makefile head/devel/py-jaraco.logging/distinfo (contents, props changed) head/devel/py-jaraco.logging/pkg-descr (contents, props changed) Modified: head/devel/py-jaraco.logging/Makefile ============================================================================== --- head/devel/py-jaraco.logging/Makefile Mon Oct 29 22:12:59 2018 (r483410) +++ head/devel/py-jaraco.logging/Makefile Mon Oct 29 22:13:07 2018 (r483411) @@ -2,21 +2,24 @@ # $FreeBSD$ PORTNAME= jaraco.logging -PORTVERSION= 1.3.1 +PORTVERSION= 1.5.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org -COMMENT= Additional facilities to supplement Python's stdlib logging module +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Additional facilities to supplement Python stdlib logging module LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}tempora>0:devel/py-tempora@${PY_FLAVOR} -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>0:devel/py-setuptools_scm@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tempora>=0:devel/py-tempora@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include Modified: head/devel/py-jaraco.logging/distinfo ============================================================================== --- head/devel/py-jaraco.logging/distinfo Mon Oct 29 22:12:59 2018 (r483410) +++ head/devel/py-jaraco.logging/distinfo Mon Oct 29 22:13:07 2018 (r483411) @@ -1,2 +1,3 @@ -SHA256 (jaraco.logging-1.3.1.tar.gz) = e80e43a7b0d94bda2faacc1b996d5cc8bc6dcf20205048d18f4889f35e956580 -SIZE (jaraco.logging-1.3.1.tar.gz) = 4589 +TIMESTAMP = 1540844677 +SHA256 (jaraco.logging-1.5.2.tar.gz) = 23b10eb0d65afe042fad16eabdf5956bdc863e110c5cf3fa1b4bc59f3a7f37a5 +SIZE (jaraco.logging-1.5.2.tar.gz) = 7135 Modified: head/devel/py-jaraco.logging/pkg-descr ============================================================================== --- head/devel/py-jaraco.logging/pkg-descr Mon Oct 29 22:12:59 2018 (r483410) +++ head/devel/py-jaraco.logging/pkg-descr Mon Oct 29 22:13:07 2018 (r483411) @@ -1,3 +1,3 @@ Additional facilities to supplement Python's stdlib logging module. -WWW: https://pypi.org/project/jaraco.logging/ +WWW: https://github.com/jaraco/jaraco.logging