Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 Jul 2020 18:12:06 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541803 - in head/devel: . py-absl-py
Message-ID:  <202007091812.069IC6QK044004@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Jul  9 18:12:06 2020
New Revision: 541803
URL: https://svnweb.freebsd.org/changeset/ports/541803

Log:
  Add py-absl-py 0.9.0
  
  Abseil Python Common Libraries is a collection of Python library code for
  building Python applications. The code is collected from Google's own Python
  code base, and has been extensively tested and used in production.
  
  Features:
  - Simple application startup
  - Distributed commandline flags system
  - Custom logging module with additional features
  - Testing utilities
  
  WWW: https://github.com/abseil/abseil-py

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jul  9 18:11:01 2020	(r541802)
+++ head/devel/Makefile	Thu Jul  9 18:12:06 2020	(r541803)
@@ -4035,6 +4035,7 @@
     SUBDIR += py-XStatic-tv4
     SUBDIR += py-ZopeUndo
     SUBDIR += py-absl
+    SUBDIR += py-absl-py
     SUBDIR += py-adb
     SUBDIR += py-addict
     SUBDIR += py-aenum

Added: head/devel/py-absl-py/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-absl-py/Makefile	Thu Jul  9 18:12:06 2020	(r541803)
@@ -0,0 +1,24 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	absl-py
+PORTVERSION=	0.9.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Abseil Python Common Libraries
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PY_ENUM34} \
+		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-absl-py/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-absl-py/distinfo	Thu Jul  9 18:12:06 2020	(r541803)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1594308018
+SHA256 (absl-py-0.9.0.tar.gz) = 75e737d6ce7723d9ff9b7aa1ba3233c34be62ef18d5859e706b8fdc828989830
+SIZE (absl-py-0.9.0.tar.gz) = 104026

Added: head/devel/py-absl-py/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-absl-py/pkg-descr	Thu Jul  9 18:12:06 2020	(r541803)
@@ -0,0 +1,11 @@
+Abseil Python Common Libraries is a collection of Python library code for
+building Python applications. The code is collected from Google's own Python
+code base, and has been extensively tested and used in production.
+
+Features:
+- Simple application startup
+- Distributed commandline flags system
+- Custom logging module with additional features
+- Testing utilities
+
+WWW: https://github.com/abseil/abseil-py



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