From owner-svn-ports-head@freebsd.org Sun Jul 19 13:08:27 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 704EA35EA41; Sun, 19 Jul 2020 13:08:27 +0000 (UTC) (envelope-from matthew@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4B8lXq273Bz4YxX; Sun, 19 Jul 2020 13:08:27 +0000 (UTC) (envelope-from matthew@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 2762A1BDC3; Sun, 19 Jul 2020 13:08:27 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06JD8Rq3076089; Sun, 19 Jul 2020 13:08:27 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06JD8QF2076086; Sun, 19 Jul 2020 13:08:26 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <202007191308.06JD8QF2076086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sun, 19 Jul 2020 13:08:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r542575 - in head/devel/py-shellingham: . files X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: in head/devel/py-shellingham: . files X-SVN-Commit-Revision: 542575 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.33 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: Sun, 19 Jul 2020 13:08:27 -0000 Author: matthew Date: Sun Jul 19 13:08:26 2020 New Revision: 542575 URL: https://svnweb.freebsd.org/changeset/ports/542575 Log: Update to 1.3.2 ChangeLog: https://github.com/sarugaku/shellingham/blob/1.3.2/CHANGELOG.rst Add a minimal `setup.py` file -- the upstream package has switched to the pep517 (https://www.python.org/dev/peps/pep-0517/) setup style, and in the absense of built-in support for that, hack things so that setuptools can still work. Added: head/devel/py-shellingham/files/ head/devel/py-shellingham/files/patch-setup.py (contents, props changed) Modified: head/devel/py-shellingham/Makefile head/devel/py-shellingham/distinfo Modified: head/devel/py-shellingham/Makefile ============================================================================== --- head/devel/py-shellingham/Makefile Sun Jul 19 12:59:53 2020 (r542574) +++ head/devel/py-shellingham/Makefile Sun Jul 19 13:08:26 2020 (r542575) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= shellingham -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-shellingham/distinfo ============================================================================== --- head/devel/py-shellingham/distinfo Sun Jul 19 12:59:53 2020 (r542574) +++ head/devel/py-shellingham/distinfo Sun Jul 19 13:08:26 2020 (r542575) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554961907 -SHA256 (shellingham-1.3.1.tar.gz) = 985b23bbd1feae47ca6a6365eacd314d93d95a8a16f8f346945074c28fe6f3e0 -SIZE (shellingham-1.3.1.tar.gz) = 7938 +TIMESTAMP = 1581576192 +SHA256 (shellingham-1.3.2.tar.gz) = 576c1982bea0ba82fb46c36feb951319d7f42214a82634233f58b40d858a751e +SIZE (shellingham-1.3.2.tar.gz) = 9679 Added: head/devel/py-shellingham/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-shellingham/files/patch-setup.py Sun Jul 19 13:08:26 2020 (r542575) @@ -0,0 +1,8 @@ +--- setup.py.orig 2019-12-09 07:04:35 UTC ++++ setup.py +@@ -0,0 +1,5 @@ ++ ++import setuptools ++if __name__ == "__main__": ++ setuptools.setup(use_scm_version=True) ++