From owner-dev-commits-ports-main@freebsd.org Wed Jul 21 21:14:54 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 7459C66CF05; Wed, 21 Jul 2021 21:14:54 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GVSyj2x4Bz3HLM; Wed, 21 Jul 2021 21:14:53 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 09526252CC; Wed, 21 Jul 2021 21:14:53 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16LLEqEA087486; Wed, 21 Jul 2021 21:14:52 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16LLEqlN087485; Wed, 21 Jul 2021 21:14:52 GMT (envelope-from git) Date: Wed, 21 Jul 2021 21:14:52 GMT Message-Id: <202107212114.16LLEqlN087485@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 5e87f51e200f - main - www/py-utidylib: Fix build after 1d58266f9c6a7ad2bad040feeddc77376673b51f MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 5e87f51e200fca2d1dff480c5b9a7bcd1f331dc6 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2021 21:14:54 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=5e87f51e200fca2d1dff480c5b9a7bcd1f331dc6 commit 5e87f51e200fca2d1dff480c5b9a7bcd1f331dc6 Author: Po-Chuan Hsieh AuthorDate: 2021-07-21 21:13:23 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-21 21:13:23 +0000 www/py-utidylib: Fix build after 1d58266f9c6a7ad2bad040feeddc77376673b51f - Bump PORTREVISION for package change --- www/py-utidylib/Makefile | 3 ++- www/py-utidylib/files/patch-tidy-lib.py | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/www/py-utidylib/Makefile b/www/py-utidylib/Makefile index 182249f473e3..ce4287e08c8b 100644 --- a/www/py-utidylib/Makefile +++ b/www/py-utidylib/Makefile @@ -2,6 +2,7 @@ PORTNAME= utidylib PORTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +14,7 @@ COMMENT= Python interface to tidy-lib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libtidy.so.5:www/tidy-html5 +LIB_DEPENDS= libtidy5.so:www/tidy-html5 USES= python:3.6+ USE_PYTHON= autoplist concurrent distutils diff --git a/www/py-utidylib/files/patch-tidy-lib.py b/www/py-utidylib/files/patch-tidy-lib.py new file mode 100644 index 000000000000..2c728e31fa0b --- /dev/null +++ b/www/py-utidylib/files/patch-tidy-lib.py @@ -0,0 +1,11 @@ +--- tidy/lib.py.orig 2021-05-02 11:39:44 UTC ++++ tidy/lib.py +@@ -7,6 +7,8 @@ import weakref + from tidy.error import InvalidOptionError, OptionArgError + + LIBNAMES = ( ++ # FreeBSD ++ "libtidy5.so", + # Linux + "libtidy.so", + # MacOS