From owner-svn-ports-all@freebsd.org Sat May 9 15:15:01 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id F0C352EC622; Sat, 9 May 2020 15:15:01 +0000 (UTC) (envelope-from swills@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 49K9jd5WvQz3xPK; Sat, 9 May 2020 15:15:01 +0000 (UTC) (envelope-from swills@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 B8E231DE32; Sat, 9 May 2020 15:15:01 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 049FF1oC026768; Sat, 9 May 2020 15:15:01 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 049FF0CX026761; Sat, 9 May 2020 15:15:00 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202005091515.049FF0CX026761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 9 May 2020 15:15:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534780 - in head/databases: . py-pymemcache X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/databases: . py-pymemcache X-SVN-Commit-Revision: 534780 X-SVN-Commit-Repository: ports 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.32 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: Sat, 09 May 2020 15:15:02 -0000 Author: swills Date: Sat May 9 15:15:00 2020 New Revision: 534780 URL: https://svnweb.freebsd.org/changeset/ports/534780 Log: databases/py-pymemcache: create port A comprehensive, fast, pure-Python memcached client. pymemcache supports the following features: * Complete implementation of the memcached text protocol. * Configurable timeouts for socket connect and send/recv calls. * Access to the "noreply" flag, which can significantly increase the speed of writes. * Flexible, modular and simple approach to serialization and deserialization. * The (optional) ability to treat network and memcached errors as cache misses. WWW: https://github.com/pinterest/pymemcache PR: 246314 Submitted by: Alessandro Sagratini Added: head/databases/py-pymemcache/ head/databases/py-pymemcache/Makefile (contents, props changed) head/databases/py-pymemcache/distinfo (contents, props changed) head/databases/py-pymemcache/pkg-descr (contents, props changed) Modified: head/databases/Makefile (contents, props changed) Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat May 9 14:29:08 2020 (r534779) +++ head/databases/Makefile Sat May 9 15:15:00 2020 (r534780) @@ -790,6 +790,7 @@ SUBDIR += py-pycql SUBDIR += py-pyhs SUBDIR += py-pylibmc + SUBDIR += py-pymemcache SUBDIR += py-pymssql SUBDIR += py-pymysql SUBDIR += py-pyodbc Added: head/databases/py-pymemcache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pymemcache/Makefile Sat May 9 15:15:00 2020 (r534780) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= pymemcache +PORTVERSION= 3.1.1 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ale_sagra@hotmail.com +COMMENT= Comprehensive, fast, pure-Python memcached client + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +DEVELOPER= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v + +.include Added: head/databases/py-pymemcache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pymemcache/distinfo Sat May 9 15:15:00 2020 (r534780) @@ -0,0 +1,3 @@ +TIMESTAMP = 1588673573 +SHA256 (pymemcache-3.1.1.tar.gz) = 39cb4ed728fad0d71386730898b467d3d56994fcabfea324d8b2e743fa158bff +SIZE (pymemcache-3.1.1.tar.gz) = 44464 Added: head/databases/py-pymemcache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pymemcache/pkg-descr Sat May 9 15:15:00 2020 (r534780) @@ -0,0 +1,13 @@ +A comprehensive, fast, pure-Python memcached client. + +pymemcache supports the following features: + + * Complete implementation of the memcached text protocol. + * Configurable timeouts for socket connect and send/recv calls. + * Access to the "noreply" flag, which can significantly increase the speed of + writes. + * Flexible, modular and simple approach to serialization and deserialization. + * The (optional) ability to treat network and memcached errors as cache + misses. + +WWW: https://github.com/pinterest/pymemcache