Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Feb 2018 12:20:42 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r460925 - in head/devel: . py-expiringdict
Message-ID:  <201802041220.w14CKg7E089185@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Sun Feb  4 12:20:42 2018
New Revision: 460925
URL: https://svnweb.freebsd.org/changeset/ports/460925

Log:
  New port: devel/py-expiringdict
  
  expiringdict is a Python caching library.  The core of the library is
  ExpiringDict class which is an ordered dictionary with auto-expiring values for
  caching purposes.  Expiration happens on any access, object is locked during
  cleanup from expired values.  ExpiringDict can not store more than max_len
  elements - the oldest will be deleted.
  
  WWW: https://github.com/mailgun/expiringdict

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Feb  4 11:42:27 2018	(r460924)
+++ head/devel/Makefile	Sun Feb  4 12:20:42 2018	(r460925)
@@ -4418,6 +4418,7 @@
     SUBDIR += py-evdev
     SUBDIR += py-eventlib
     SUBDIR += py-exam
+    SUBDIR += py-expiringdict
     SUBDIR += py-extras
     SUBDIR += py-extremes
     SUBDIR += py-ezpyinline

Added: head/devel/py-expiringdict/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-expiringdict/Makefile	Sun Feb  4 12:20:42 2018	(r460925)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	expiringdict
+PORTVERSION=	1.1.4
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	antoine@FreeBSD.org
+COMMENT=	Dictionary with auto-expiring values for caching purposes
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+.include <bsd.port.mk>

Added: head/devel/py-expiringdict/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-expiringdict/distinfo	Sun Feb  4 12:20:42 2018	(r460925)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1509629327
+SHA256 (expiringdict-1.1.4.tar.gz) = 9275c3f3aa6cabe394355b6454100eb1cdfe395c6b592c26603a2a0f9e3a0587
+SIZE (expiringdict-1.1.4.tar.gz) = 6900

Added: head/devel/py-expiringdict/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-expiringdict/pkg-descr	Sun Feb  4 12:20:42 2018	(r460925)
@@ -0,0 +1,7 @@
+expiringdict is a Python caching library.  The core of the library is
+ExpiringDict class which is an ordered dictionary with auto-expiring values for
+caching purposes.  Expiration happens on any access, object is locked during
+cleanup from expired values.  ExpiringDict can not store more than max_len
+elements - the oldest will be deleted.
+
+WWW: https://github.com/mailgun/expiringdict



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