From owner-svn-ports-all@freebsd.org Wed Mar 7 21:36:04 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20F64F33124; Wed, 7 Mar 2018 21:36:04 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB4CD707FC; Wed, 7 Mar 2018 21:36:03 +0000 (UTC) (envelope-from feld@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 A8E1727524; Wed, 7 Mar 2018 21:36:03 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w27La3PK061594; Wed, 7 Mar 2018 21:36:03 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w27La3ol061590; Wed, 7 Mar 2018 21:36:03 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201803072136.w27La3ol061590@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 7 Mar 2018 21:36:03 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: feld X-SVN-Commit-Paths: in head/databases: . py-marshmallow-sqlalchemy X-SVN-Commit-Revision: 463834 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.25 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: Wed, 07 Mar 2018 21:36:04 -0000 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 +# $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 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/