Date: Wed, 7 Mar 2018 21:36:03 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463834 - in head/databases: . py-marshmallow-sqlalchemy Message-ID: <201803072136.w27La3ol061590@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: feld Date: Wed Mar 7 21:36:03 2018 New Revision: 463834 URL: https://svnweb.freebsd.org/changeset/ports/463834 Log: SQLAlchemy integration with the marshmallow (de)serialization library. WWW: https://marshmallow-sqlalchemy.readthedocs.io/ Added: head/databases/py-marshmallow-sqlalchemy/ head/databases/py-marshmallow-sqlalchemy/Makefile (contents, props changed) head/databases/py-marshmallow-sqlalchemy/distinfo (contents, props changed) head/databases/py-marshmallow-sqlalchemy/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Mar 7 21:34:03 2018 (r463833) +++ head/databases/Makefile Wed Mar 7 21:36:03 2018 (r463834) @@ -791,6 +791,7 @@ SUBDIR += py-kyotocabinet SUBDIR += py-leveldb SUBDIR += py-lmdb + SUBDIR += py-marshmallow-sqlalchemy SUBDIR += py-motor SUBDIR += py-mycli SUBDIR += py-mysql-connector-python Added: head/databases/py-marshmallow-sqlalchemy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-marshmallow-sqlalchemy/Makefile Wed Mar 7 21:36:03 2018 (r463834) @@ -0,0 +1,24 @@ +# Created by: Mark Felder <feld@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= marshmallow-sqlalchemy +PORTVERSION= 0.13.2 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= SQLAlchemy integration with the marshmallow serialization library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}marshmallow>=2.0.0:devel/py-marshmallow@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy12>=1.2:databases/py-sqlalchemy12@${FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/databases/py-marshmallow-sqlalchemy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-marshmallow-sqlalchemy/distinfo Wed Mar 7 21:36:03 2018 (r463834) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520443928 +SHA256 (marshmallow-sqlalchemy-0.13.2.tar.gz) = 9804ef2829f781f469a06528d107c2a763f109c687266ab8b1f000f9684184ae +SIZE (marshmallow-sqlalchemy-0.13.2.tar.gz) = 39999 Added: head/databases/py-marshmallow-sqlalchemy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-marshmallow-sqlalchemy/pkg-descr Wed Mar 7 21:36:03 2018 (r463834) @@ -0,0 +1,3 @@ +SQLAlchemy integration with the marshmallow (de)serialization library. + +WWW: https://marshmallow-sqlalchemy.readthedocs.io/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803072136.w27La3ol061590>