From owner-svn-ports-head@freebsd.org Wed Jul 10 00:14:42 2019 Return-Path: Delivered-To: svn-ports-head@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 7D9CF15E9981; Wed, 10 Jul 2019 00:14:42 +0000 (UTC) (envelope-from yuri@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 1DCFB8DA19; Wed, 10 Jul 2019 00:14:42 +0000 (UTC) (envelope-from yuri@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 F3BC074B1; Wed, 10 Jul 2019 00:14:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x6A0EftI071532; Wed, 10 Jul 2019 00:14:41 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6A0Ef3L071529; Wed, 10 Jul 2019 00:14:41 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201907100014.x6A0Ef3L071529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 10 Jul 2019 00:14:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r506324 - in head/devel: . py-absl X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-absl X-SVN-Commit-Revision: 506324 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1DCFB8DA19 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.94)[-0.942,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-head@freebsd.org X-Mailman-Version: 2.1.29 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: Wed, 10 Jul 2019 00:14:42 -0000 Author: yuri Date: Wed Jul 10 00:14:40 2019 New Revision: 506324 URL: https://svnweb.freebsd.org/changeset/ports/506324 Log: New port: devel/py-absl: Abseil Python Common Libraries PR: 226400 Submitted by: Anthony Added: head/devel/py-absl/ head/devel/py-absl/Makefile (contents, props changed) head/devel/py-absl/distinfo (contents, props changed) head/devel/py-absl/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jul 9 23:31:03 2019 (r506323) +++ head/devel/Makefile Wed Jul 10 00:14:40 2019 (r506324) @@ -4077,6 +4077,7 @@ SUBDIR += py-XStatic-term.js SUBDIR += py-XStatic-tv4 SUBDIR += py-ZopeUndo + SUBDIR += py-absl SUBDIR += py-adb SUBDIR += py-addict SUBDIR += py-aenum Added: head/devel/py-absl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-absl/Makefile Wed Jul 10 00:14:40 2019 (r506324) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= absl +DISTVERSION= 0.7.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= absl-py-${PORTVERSION} + +MAINTAINER= amzo1337@gmail.com +COMMENT= Abseil Python Common Libraries + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-absl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-absl/distinfo Wed Jul 10 00:14:40 2019 (r506324) @@ -0,0 +1,3 @@ +TIMESTAMP = 1562695293 +SHA256 (absl-py-0.7.1.tar.gz) = b943d1c567743ed0455878fcd60bc28ac9fae38d129d1ccfad58079da00b8951 +SIZE (absl-py-0.7.1.tar.gz) = 99948 Added: head/devel/py-absl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-absl/pkg-descr Wed Jul 10 00:14:40 2019 (r506324) @@ -0,0 +1,9 @@ +Abseil is an open source collection of libraries drawn from the most fundamental +pieces of Google internal codebase. These libraries are the nuts-and-bolts that +underpin almost everything Google runs. Bits and pieces of these APIs are +embedded in most of our open source projects, and Abseil aims to bring them +together into one comprehensive project. Abseil encompasses the most basic +building blocks of Googles codebase: code that is production-tested and will be +fully maintained for years to come. + +WWW: https://github.com/abseil/abseil-py