Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Nov 2020 11:11:39 +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: r554182 - in head/devel: . py-filedepot
Message-ID:  <202011061111.0A6BBdoU081851@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Fri Nov  6 11:11:39 2020
New Revision: 554182
URL: https://svnweb.freebsd.org/changeset/ports/554182

Log:
  Add py-filedepot 0.8.0
  
  DEPOT is a framework for easily storing and serving files in web applications.
  
  DEPOT supports storing files in multiple backends, like:
  - Local Disk
  - In Memory (for tests)
  - On GridFS
  - On Amazon S3 (or compatible services)
  and integrates with database by providing files attached to your SQLAlchemy or
  Ming/MongoDB models with respect to transactions behaviours (files are rolled
  back too).
  
  WWW: https://github.com/amol-/depot

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Nov  6 11:11:33 2020	(r554181)
+++ head/devel/Makefile	Fri Nov  6 11:11:39 2020	(r554182)
@@ -4390,6 +4390,7 @@
     SUBDIR += py-fastprogress
     SUBDIR += py-fbprophet
     SUBDIR += py-filebytes
+    SUBDIR += py-filedepot
     SUBDIR += py-filemagic
     SUBDIR += py-first
     SUBDIR += py-five.globalrequest

Added: head/devel/py-filedepot/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-filedepot/Makefile	Fri Nov  6 11:11:39 2020	(r554182)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	filedepot
+PORTVERSION=	0.8.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Toolkit for storing files and attachments in web applications
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} >= 3300
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}anyascii>=0:textproc/py-anyascii@${PY_FLAVOR}
+.endif
+
+.include <bsd.port.post.mk>

Added: head/devel/py-filedepot/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-filedepot/distinfo	Fri Nov  6 11:11:39 2020	(r554182)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1604480692
+SHA256 (filedepot-0.8.0.tar.gz) = 25316ecd352e16524b4d321dbad08e9beb563d5de5447f3ed312daec5d011849
+SIZE (filedepot-0.8.0.tar.gz) = 23412

Added: head/devel/py-filedepot/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-filedepot/pkg-descr	Fri Nov  6 11:11:39 2020	(r554182)
@@ -0,0 +1,12 @@
+DEPOT is a framework for easily storing and serving files in web applications.
+
+DEPOT supports storing files in multiple backends, like:
+- Local Disk
+- In Memory (for tests)
+- On GridFS
+- On Amazon S3 (or compatible services)
+and integrates with database by providing files attached to your SQLAlchemy or
+Ming/MongoDB models with respect to transactions behaviours (files are rolled
+back too).
+
+WWW: https://github.com/amol-/depot



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