From owner-svn-ports-all@freebsd.org Fri Apr 26 22:43:17 2019 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 7A6B215A08BB; Fri, 26 Apr 2019 22:43:17 +0000 (UTC) (envelope-from kai@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 207BD8AAED; Fri, 26 Apr 2019 22:43:17 +0000 (UTC) (envelope-from kai@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 EF3F71A47E; Fri, 26 Apr 2019 22:43:16 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3QMhG37087174; Fri, 26 Apr 2019 22:43:16 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3QMhG7c087172; Fri, 26 Apr 2019 22:43:16 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201904262243.x3QMhG7c087172@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 26 Apr 2019 22:43:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500176 - in head/textproc/scancode-toolkit: . files X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/textproc/scancode-toolkit: . files X-SVN-Commit-Revision: 500176 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 207BD8AAED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,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: Fri, 26 Apr 2019 22:43:17 -0000 Author: kai Date: Fri Apr 26 22:43:16 2019 New Revision: 500176 URL: https://svnweb.freebsd.org/changeset/ports/500176 Log: textproc/scancode-toolkit: Fix runtime errors Unbreak at runtime after r499857 by relaxing the dependencies for devel/py-yaml. Approved by: mentors (implicit) Modified: head/textproc/scancode-toolkit/Makefile head/textproc/scancode-toolkit/files/patch-setup.py Modified: head/textproc/scancode-toolkit/Makefile ============================================================================== --- head/textproc/scancode-toolkit/Makefile Fri Apr 26 22:33:25 2019 (r500175) +++ head/textproc/scancode-toolkit/Makefile Fri Apr 26 22:43:16 2019 (r500176) @@ -3,6 +3,7 @@ PORTNAME= scancode-toolkit DISTVERSIONPREFIX= v DISTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= textproc python MAINTAINER= kai@FreeBSD.org Modified: head/textproc/scancode-toolkit/files/patch-setup.py ============================================================================== --- head/textproc/scancode-toolkit/files/patch-setup.py Fri Apr 26 22:33:25 2019 (r500175) +++ head/textproc/scancode-toolkit/files/patch-setup.py Fri Apr 26 22:43:16 2019 (r500176) @@ -11,7 +11,7 @@ 'fingerprints == 0.5.4', # extractcode -@@ -135,12 +133,10 @@ setup( +@@ -135,15 +133,13 @@ setup( # to work around bug http://bugs.python.org/issue19839 # on multistream bzip2 files: this can removed in Python 3. 'bz2file >= 0.98', @@ -24,7 +24,11 @@ + 'future >= 0.16.0', 'text-unidecode >= 1.0, < 2.0', # required by saneyaml - 'PyYAML >= 3.11, <=3.13', +- 'PyYAML >= 3.11, <=3.13', ++ 'PyYAML >= 3.11', + 'saneyaml', + + # licensedcode @@ -167,8 +163,7 @@ setup( 'binaryornot >= 0.4.0', 'chardet >= 3.0.0, <4.0.0',