From owner-svn-ports-all@freebsd.org Fri Feb 26 13:19:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39CBAAB5F48; Fri, 26 Feb 2016 13:19:09 +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 mx1.freebsd.org (Postfix) with ESMTPS id E5CF6EA8; Fri, 26 Feb 2016 13:19:08 +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 u1QDJ7kb071991; Fri, 26 Feb 2016 13:19:07 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1QDJ7vt071988; Fri, 26 Feb 2016 13:19:07 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602261319.u1QDJ7vt071988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 26 Feb 2016 13:19:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409607 - in head/textproc/py-pytidylib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 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 Feb 2016 13:19:09 -0000 Author: koobs Date: Fri Feb 26 13:19:07 2016 New Revision: 409607 URL: https://svnweb.freebsd.org/changeset/ports/409607 Log: textproc/py-pytidylib: Update to 0.2.4 - Update PORTVERSION and distinfo checksum (0.2.4) - Update COMMENT to more closely match setup.py:description - Update test target - Remove TEST_DEPENDS (pytest is not required) - Enable NO_ARCH (architecture independent) - Patch setup.py to enable setuptools test command Added: head/textproc/py-pytidylib/files/ head/textproc/py-pytidylib/files/patch-setup.py (contents, props changed) Modified: head/textproc/py-pytidylib/Makefile head/textproc/py-pytidylib/distinfo Modified: head/textproc/py-pytidylib/Makefile ============================================================================== --- head/textproc/py-pytidylib/Makefile Fri Feb 26 13:08:46 2016 (r409606) +++ head/textproc/py-pytidylib/Makefile Fri Feb 26 13:19:07 2016 (r409607) @@ -2,24 +2,25 @@ # $FreeBSD$ PORTNAME= pytidylib -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Python wrapper for HTML Tidy +COMMENT= Python wrapper for HTML Tidy (tidylib) LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libtidy.so:${PORTSDIR}/www/tidy-lib -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest USES= python USE_PYTHON= distutils autoplist -regression-test: build - @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/textproc/py-pytidylib/distinfo ============================================================================== --- head/textproc/py-pytidylib/distinfo Fri Feb 26 13:08:46 2016 (r409606) +++ head/textproc/py-pytidylib/distinfo Fri Feb 26 13:19:07 2016 (r409607) @@ -1,2 +1,2 @@ -SHA256 (pytidylib-0.2.3.tar.gz) = e7d28eb3191b80ede405691820368630f2fa0d64885b389ae42f8f50ad6a11e5 -SIZE (pytidylib-0.2.3.tar.gz) = 86515 +SHA256 (pytidylib-0.2.4.tar.gz) = 0af07bd8ebd256af70ca925ada9337faf16d85b3072624f975136a5134150ab6 +SIZE (pytidylib-0.2.4.tar.gz) = 86650 Added: head/textproc/py-pytidylib/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-pytidylib/files/patch-setup.py Fri Feb 26 13:19:07 2016 (r409607) @@ -0,0 +1,9 @@ +--- setup.py.orig 2016-02-26 12:55:44 UTC ++++ setup.py +@@ -84,5 +84,6 @@ setup( + 'Topic :: Text Processing :: Markup :: HTML', + 'Topic :: Text Processing :: Markup :: XML', + ], ++ test_suite='tests', + ) +