From owner-svn-ports-head@freebsd.org Fri Apr 14 14:26:57 2017 Return-Path: Delivered-To: svn-ports-head@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 26058D3DCCA; Fri, 14 Apr 2017 14:26:57 +0000 (UTC) (envelope-from mat@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 DCF9DB2E; Fri, 14 Apr 2017 14:26:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3EEQuw3066309; Fri, 14 Apr 2017 14:26:56 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3EEQtMm066304; Fri, 14 Apr 2017 14:26:55 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201704141426.v3EEQtMm066304@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 14 Apr 2017 14:26:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438515 - in head/textproc: . py-autopep8 X-SVN-Group: ports-head 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.23 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, 14 Apr 2017 14:26:57 -0000 Author: mat Date: Fri Apr 14 14:26:55 2017 New Revision: 438515 URL: https://svnweb.freebsd.org/changeset/ports/438515 Log: Add textproc/py-autopep8 1.3.1. autopep8 automatically formats Python code to conform to the PEP 8 style guide. It uses the pycodestyle utility to determine what parts of the code needs to be formatted. autopep8 is capable of fixing most of the formatting issues that can be reported by pycodestyle. Sponsored by: Absolight Added: head/textproc/py-autopep8/ head/textproc/py-autopep8/Makefile (contents, props changed) head/textproc/py-autopep8/distinfo (contents, props changed) head/textproc/py-autopep8/pkg-descr (contents, props changed) Modified: head/textproc/Makefile (contents, props changed) Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Apr 14 14:17:25 2017 (r438514) +++ head/textproc/Makefile Fri Apr 14 14:26:55 2017 (r438515) @@ -1244,6 +1244,7 @@ SUBDIR += py-agate-excel SUBDIR += py-alabaster SUBDIR += py-asv + SUBDIR += py-autopep8 SUBDIR += py-awesome-slugify SUBDIR += py-bugzillatools SUBDIR += py-chardet Added: head/textproc/py-autopep8/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-autopep8/Makefile Fri Apr 14 14:26:55 2017 (r438515) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= autopep8 +PORTVERSION= 1.3.1 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= automatically formats Python code to conform to the PEP 8 style guide + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycodestyle>=2.3:devel/py-pycodestyle + +USES= python +USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + +OPTIONS_DEFINE= DOCS + +PORTDOCS= README.rst + +post-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} + +.include Added: head/textproc/py-autopep8/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-autopep8/distinfo Fri Apr 14 14:26:55 2017 (r438515) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492175834 +SHA256 (autopep8-1.3.1.tar.gz) = 405eaa5199c74a0570125916e6af44d39343c1fcaaafee117fc329a3f86048c4 +SIZE (autopep8-1.3.1.tar.gz) = 107541 Added: head/textproc/py-autopep8/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-autopep8/pkg-descr Fri Apr 14 14:26:55 2017 (r438515) @@ -0,0 +1,6 @@ +autopep8 automatically formats Python code to conform to the PEP 8 style guide. +It uses the pycodestyle utility to determine what parts of the code needs to be +formatted. autopep8 is capable of fixing most of the formatting issues that can +be reported by pycodestyle. + +WWW: https://github.com/hhatto/autopep8/