From owner-svn-ports-head@freebsd.org Fri Jul 10 06:32:00 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 B26FB3607EF; Fri, 10 Jul 2020 06:32:00 +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) 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 4B339X4L5Tz4BQX; Fri, 10 Jul 2020 06:32:00 +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 79A241DE1E; Fri, 10 Jul 2020 06:32:00 +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 06A6W0wo008889; Fri, 10 Jul 2020 06:32:00 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06A6W0Zk008888; Fri, 10 Jul 2020 06:32:00 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202007100632.06A6W0Zk008888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 10 Jul 2020 06:32:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541845 - 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: 541845 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: Fri, 10 Jul 2020 06:32:00 -0000 Author: kai Date: Fri Jul 10 06:31:59 2020 New Revision: 541845 URL: https://svnweb.freebsd.org/changeset/ports/541845 Log: textproc/scancode-toolkit: Relax version requirements * Prepare the port for the upcoming updates of textproc/py-fingerprints and textproc/py-pyahocorasick by relaxing the version requirements of these. * Bump PORTREVISION due package change. 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 Jul 10 06:30:38 2020 (r541844) +++ head/textproc/scancode-toolkit/Makefile Fri Jul 10 06:31:59 2020 (r541845) @@ -3,7 +3,7 @@ PORTNAME= scancode-toolkit DISTVERSIONPREFIX= v DISTVERSION= 3.0.2 -PORTREVISION= 3 +PORTREVISION= 4 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 Jul 10 06:30:38 2020 (r541844) +++ head/textproc/scancode-toolkit/files/patch-setup.py Fri Jul 10 06:31:59 2020 (r541845) @@ -1,17 +1,18 @@ --- setup.py.orig 2019-02-15 14:34:52 UTC +++ setup.py -@@ -125,9 +125,7 @@ setup( +@@ -125,25 +125,21 @@ setup( # cluecode # Some nltk version ranges are buggy 'nltk >= 3.2, < 4.0', - 'publicsuffix2', - 'py2-ipaddress >= 2.0, <3.5', - 'url >= 0.1.4, < 0.1.6', +- 'fingerprints == 0.5.4', + 'url >= 0.1.4', - 'fingerprints == 0.5.4', ++ 'fingerprints >= 0.5.4', # extractcode -@@ -135,15 +133,13 @@ setup( + 'patch >= 1.15, < 1.20 ', # to work around bug http://bugs.python.org/issue19839 # on multistream bzip2 files: this can removed in Python 3. 'bz2file >= 0.98', @@ -29,6 +30,15 @@ 'saneyaml', # licensedcode +@@ -151,7 +147,7 @@ setup( + 'intbitset >= 2.3.0, < 3.0', + 'boolean.py >= 3.5, < 4.0', + 'license_expression >= 0.99, < 1.0', +- 'pyahocorasick >= 1.1, < 1.2', ++ 'pyahocorasick >= 1.1', + + # multiple + 'lxml >= 4.0.0, < 5.0.0', @@ -167,8 +163,7 @@ setup( 'binaryornot >= 0.4.0', 'chardet >= 3.0.0, <4.0.0',