From owner-svn-ports-all@freebsd.org Tue Jun 5 18:57:12 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 CC762FF2584; Tue, 5 Jun 2018 18:57:11 +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 1A0616BB63; Tue, 5 Jun 2018 18:57:09 +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 1078C2051A; Tue, 5 Jun 2018 18:57: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 w55Iv8MA042418; Tue, 5 Jun 2018 18:57:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w55Iv8aY042415; Tue, 5 Jun 2018 18:57:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201806051857.w55Iv8aY042415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 5 Jun 2018 18:57:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471795 - head/devel/py-canonicaljson X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-canonicaljson X-SVN-Commit-Revision: 471795 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 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: Tue, 05 Jun 2018 18:57:12 -0000 Author: sunpoet Date: Tue Jun 5 18:57:08 2018 New Revision: 471795 URL: https://svnweb.freebsd.org/changeset/ports/471795 Log: Update to 1.1.4 - Change MASTER_SITES to CHEESESHOP - Add missing RUN_DEPENDS - Take maintainership Changes: https://github.com/matrix-org/python-canonicaljson/blob/master/CHANGES.md Modified: head/devel/py-canonicaljson/Makefile head/devel/py-canonicaljson/distinfo head/devel/py-canonicaljson/pkg-descr Modified: head/devel/py-canonicaljson/Makefile ============================================================================== --- head/devel/py-canonicaljson/Makefile Tue Jun 5 18:57:02 2018 (r471794) +++ head/devel/py-canonicaljson/Makefile Tue Jun 5 18:57:08 2018 (r471795) @@ -2,29 +2,24 @@ # $FreeBSD$ PORTNAME= canonicaljson -PORTVERSION= 1.1.3 -DISTVERSIONPREFIX= v -PORTREVISION= 0 +PORTVERSION= 1.1.4 CATEGORIES= devel python +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Canonical JSON LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}frozendict>=1.0:devel/py-frozendict@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}simplejson>=3.6.5:devel/py-simplejson@${FLAVOR} + ${PYTHON_PKGNAMEPREFIX}simplejson>=3.6.5:devel/py-simplejson@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${FLAVOR} USES= python -USE_GITHUB= yes USE_PYTHON= autoplist distutils - -GH_ACCOUNT= matrix-org -GH_PROJECT= python-canonicaljson - NO_ARCH= yes do-test: Modified: head/devel/py-canonicaljson/distinfo ============================================================================== --- head/devel/py-canonicaljson/distinfo Tue Jun 5 18:57:02 2018 (r471794) +++ head/devel/py-canonicaljson/distinfo Tue Jun 5 18:57:08 2018 (r471795) @@ -1,3 +1,3 @@ -TIMESTAMP = 1523908667 -SHA256 (matrix-org-python-canonicaljson-v1.1.3_GH0.tar.gz) = b252582d0d8908a545c6b33f7509c13338c1033ad049b3e917bf730395224dc0 -SIZE (matrix-org-python-canonicaljson-v1.1.3_GH0.tar.gz) = 10112 +TIMESTAMP = 1528219967 +SHA256 (canonicaljson-1.1.4.tar.gz) = 45bce530ff5fd0ca93703f71bfb66de740a894a3b5dd6122398c6d8f18539725 +SIZE (canonicaljson-1.1.4.tar.gz) = 9355 Modified: head/devel/py-canonicaljson/pkg-descr ============================================================================== --- head/devel/py-canonicaljson/pkg-descr Tue Jun 5 18:57:02 2018 (r471794) +++ head/devel/py-canonicaljson/pkg-descr Tue Jun 5 18:57:08 2018 (r471795) @@ -1,5 +1,5 @@ -A JSON library for Python that provides features such as sorted keys, no -insignificant whitespace, minimal escaping where necessary and supports -frozendict immutable dictionaries. +Canonical JSON is a JSON library for Python that provides features such as +sorted keys, no insignificant whitespace, minimal escaping where necessary and +supports frozendict immutable dictionaries. WWW: https://github.com/matrix-org/python-canonicaljson