Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jul 2019 07:03:11 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507561 - in head/devel: . py-google-pasta
Message-ID:  <201907290703.x6T73BtK018300@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Mon Jul 29 07:03:10 2019
New Revision: 507561
URL: https://svnweb.freebsd.org/changeset/ports/507561

Log:
  New port: devel/py-google-pasta: Library to refactor python code through AST manipulation
  
  PR:		226400
  Submitted by:	Anthony <amzo1337@gmail.com>

Added:
  head/devel/py-google-pasta/
  head/devel/py-google-pasta/Makefile   (contents, props changed)
  head/devel/py-google-pasta/distinfo   (contents, props changed)
  head/devel/py-google-pasta/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Jul 29 06:38:30 2019	(r507560)
+++ head/devel/Makefile	Mon Jul 29 07:03:10 2019	(r507561)
@@ -4462,6 +4462,7 @@
     SUBDIR += py-gobject3
     SUBDIR += py-google-apputils
     SUBDIR += py-google-i18n-address
+    SUBDIR += py-google-pasta
     SUBDIR += py-googleapis-common-protos
     SUBDIR += py-grab
     SUBDIR += py-graphene

Added: head/devel/py-google-pasta/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-google-pasta/Makefile	Mon Jul 29 07:03:10 2019	(r507561)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	google-pasta
+PORTVERSION=	0.1.7
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	amzo1337@gmail.com
+COMMENT=	Library to refactor python code through AST manipulation
+
+LICENSE=	APACHE20
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-google-pasta/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-google-pasta/distinfo	Mon Jul 29 07:03:10 2019	(r507561)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1564217403
+SHA256 (google-pasta-0.1.7.tar.gz) = 79d1ce28b381d68e98ef7707d19909adb58912f8dae8734402454424fc76b8fe
+SIZE (google-pasta-0.1.7.tar.gz) = 37090

Added: head/devel/py-google-pasta/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-google-pasta/pkg-descr	Mon Jul 29 07:03:10 2019	(r507561)
@@ -0,0 +1,7 @@
+Google pasta aims to provide python source code refactoring through AST
+modifications.
+With the goal to be able to safely migrate code from one api to another.
+Refectory code to enfore a certain style and to facilitate moving or renaming
+python modules by rewriting import statements.
+
+WWW: https://github.com/google/pasta



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907290703.x6T73BtK018300>