From owner-svn-ports-all@freebsd.org Tue May 28 13:35:41 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 5985715C1F4D; Tue, 28 May 2019 13:35:41 +0000 (UTC) (envelope-from koobs@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 F0D9F81289; Tue, 28 May 2019 13:35:40 +0000 (UTC) (envelope-from koobs@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 B39B01B0A6; Tue, 28 May 2019 13:35:40 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4SDZeM4051328; Tue, 28 May 2019 13:35:40 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4SDZe6Q051326; Tue, 28 May 2019 13:35:40 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201905281335.x4SDZe6Q051326@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 28 May 2019 13:35:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502892 - head/www/py-bleach X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/www/py-bleach X-SVN-Commit-Revision: 502892 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F0D9F81289 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.945,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Tue, 28 May 2019 13:35:41 -0000 Author: koobs Date: Tue May 28 13:35:39 2019 New Revision: 502892 URL: https://svnweb.freebsd.org/changeset/ports/502892 Log: www/py-bleach: Update to 3.1.0 Changelog: https://github.com/mozilla/bleach/blob/v3.1.0/CHANGES Modified: head/www/py-bleach/Makefile head/www/py-bleach/distinfo head/www/py-bleach/pkg-descr Modified: head/www/py-bleach/Makefile ============================================================================== --- head/www/py-bleach/Makefile Tue May 28 13:34:26 2019 (r502891) +++ head/www/py-bleach/Makefile Tue May 28 13:35:39 2019 (r502892) @@ -2,28 +2,32 @@ # $FreeBSD$ PORTNAME= bleach -PORTVERSION= 2.1.3 +PORTVERSION= 3.1.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Easy whitelist-based HTML-sanitizing tool +COMMENT= Easy safelist-based HTML-sanitizing tool LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}html5lib>=0.99999999:www/py-html5lib@${PY_FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.0.0:devel/py-pytest@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pytest-runner>=2.0:devel/py-pytest-runner@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}webencodings>0:converters/py-webencodings@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.0.0:devel/py-pytest@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils NO_ARCH= yes +# This is a development script +# TODO: Remove from sdist (via MANIFEST.ini) +post-extract: + ${RM} ${WRKSRC}/bleach/_vendor/pip_install_vendor.sh + do-test: - @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs .include Modified: head/www/py-bleach/distinfo ============================================================================== --- head/www/py-bleach/distinfo Tue May 28 13:34:26 2019 (r502891) +++ head/www/py-bleach/distinfo Tue May 28 13:35:39 2019 (r502892) @@ -1,3 +1,3 @@ -TIMESTAMP = 1526364338 -SHA256 (bleach-2.1.3.tar.gz) = eb7386f632349d10d9ce9d4a838b134d4731571851149f9cc2c05a9a837a9a44 -SIZE (bleach-2.1.3.tar.gz) = 60141 +TIMESTAMP = 1559046690 +SHA256 (bleach-3.1.0.tar.gz) = 3fdf7f77adcf649c9911387df51254b813185e32b2c6619f690b593a617e19fa +SIZE (bleach-3.1.0.tar.gz) = 167814 Modified: head/www/py-bleach/pkg-descr ============================================================================== --- head/www/py-bleach/pkg-descr Tue May 28 13:34:26 2019 (r502891) +++ head/www/py-bleach/pkg-descr Tue May 28 13:35:39 2019 (r502892) @@ -2,4 +2,4 @@ Bleach is a Python HTML sanitizing library that escape attributes based on a white list. Bleach is intended for sanitizing text from untrusted sources. -WWW: https://github.com/jsocol/bleach +WWW: https://github.com/mozilla/bleach