From owner-svn-ports-all@freebsd.org Thu Oct 20 15:16:45 2016 Return-Path: Delivered-To: svn-ports-all@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 CBED6C1A3F4; Thu, 20 Oct 2016 15:16:45 +0000 (UTC) (envelope-from novel@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 9022CE1C; Thu, 20 Oct 2016 15:16:45 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u9KFGi3u056682; Thu, 20 Oct 2016 15:16:44 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9KFGiao056678; Thu, 20 Oct 2016 15:16:44 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610201516.u9KFGiao056678@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 20 Oct 2016 15:16:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424331 - in head/devel: . py-oslo.cache X-SVN-Group: ports-head 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.23 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: Thu, 20 Oct 2016 15:16:45 -0000 Author: novel Date: Thu Oct 20 15:16:44 2016 New Revision: 424331 URL: https://svnweb.freebsd.org/changeset/ports/424331 Log: Add py-oslo.cache 1.14.0, cache storage for OpenStack projects. PR: 213542 Submitted by: Alexander Nusov Added: head/devel/py-oslo.cache/ head/devel/py-oslo.cache/Makefile (contents, props changed) head/devel/py-oslo.cache/distinfo (contents, props changed) head/devel/py-oslo.cache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 20 14:48:17 2016 (r424330) +++ head/devel/Makefile Thu Oct 20 15:16:44 2016 (r424331) @@ -4329,6 +4329,7 @@ SUBDIR += py-ordereddict SUBDIR += py-os-client-config SUBDIR += py-osc-lib + SUBDIR += py-oslo.cache SUBDIR += py-oslo.concurrency SUBDIR += py-oslo.config SUBDIR += py-oslo.context Added: head/devel/py-oslo.cache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.cache/Makefile Thu Oct 20 15:16:44 2016 (r424331) @@ -0,0 +1,26 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= oslo.cache +PORTVERSION= 1.14.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Cache storage for OpenStack projects + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}oslo.utils>=3.16.0:devel/py-oslo.utils \ + ${PYTHON_PKGNAMEPREFIX}oslo.log>=1.14.0:devel/py-oslo.log \ + ${PYTHON_PKGNAMEPREFIX}oslo.i18n>=2.1.0:devel/py-oslo.i18n \ + ${PYTHON_PKGNAMEPREFIX}oslo.config>=3.14.0:devel/py-oslo.config \ + ${PYTHON_PKGNAMEPREFIX}dogpile.cache>=0.6.1:devel/py-dogpile.cache + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-oslo.cache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.cache/distinfo Thu Oct 20 15:16:44 2016 (r424331) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476297283 +SHA256 (oslo.cache-1.14.0.tar.gz) = 3ba84b421f80c5a6609789cf17b1da86aab465a96e68298620e839fafec3f0be +SIZE (oslo.cache-1.14.0.tar.gz) = 45780 Added: head/devel/py-oslo.cache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-oslo.cache/pkg-descr Thu Oct 20 15:16:44 2016 (r424331) @@ -0,0 +1,6 @@ +oslo.cache aims to provide a generic caching mechanism for OpenStack projects +by wrapping the dogpile.cache library. The dogpile.cache library provides +support memoization, key value storage and interfaces to common caching +backends such as Memcached. + +WWW: https://pypi.python.org/pypi/oslo.cache