Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Feb 2016 22:05:19 +0000 (UTC)
From:      Don Lewis <truckman@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r408600 - in head/devel: . py-delfick_error
Message-ID:  <201602092205.u19M5JZd081922@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: truckman
Date: Tue Feb  9 22:05:19 2016
New Revision: 408600
URL: https://svnweb.freebsd.org/changeset/ports/408600

Log:
  New port devel/py-delfick_error:
  
    The point of this exception class is to be able to create an error
    class that automatically combines keyword arguments given to the
    exception instance.
  
  Reviewed by:	koobs (previous version)
  Sponsored by:	Farsight Security, Inc.
  Differential Revision:	https://reviews.freebsd.org/D5234

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Feb  9 22:00:34 2016	(r408599)
+++ head/devel/Makefile	Tue Feb  9 22:05:19 2016	(r408600)
@@ -3994,6 +3994,7 @@
     SUBDIR += py-decorator
     SUBDIR += py-decoratortools
     SUBDIR += py-defusedxml
+    SUBDIR += py-delfick_error
     SUBDIR += py-deliciousapi
     SUBDIR += py-demjson
     SUBDIR += py-dexml

Added: head/devel/py-delfick_error/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-delfick_error/Makefile	Tue Feb  9 22:05:19 2016	(r408600)
@@ -0,0 +1,44 @@
+# $FreeBSD$
+
+PORTNAME=	delfick_error
+PORTVERSION=	1.7.2
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	truckman@FreeBSD.org
+COMMENT=	Customized exception class
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \
+		${PYTHON_PKGNAMEPREFIX}total-ordering>0:${PORTSDIR}/devel/py-total-ordering
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock \
+		${PYTHON_PKGNAMEPREFIX}noseofyeti>=1.4.9:${PORTSDIR}/devel/py-noseofyeti	\
+		${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
+
+OPTIONS_DEFINE=	DOCS
+DOCS_BUILD_DEPENDS=	\
+		${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx \
+		${PYTHON_PKGNAMEPREFIX}cloud_sptheme>0:${PORTSDIR}/textproc/py-cloud_sptheme
+
+NO_ARCH=	yes
+USES=		python
+USE_GITHUB=	yes
+GH_ACCOUNT=	delfick
+GH_TAGNAME=	6761e6c
+USE_PYTHON=	distutils autoplist
+
+PORTDOCS=	*
+
+post-build-DOCS-on:
+	cd ${WRKSRC}/docs && ${SH} build.sh
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	(cd ${WRKSRC}/docs/_build/html ; \
+	    ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "-not -name .buildinfo")
+
+do-test:
+	cd ${WRKSRC} && ${PYTHON_CMD} -m nose --with-noy
+
+.include <bsd.port.mk>

Added: head/devel/py-delfick_error/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-delfick_error/distinfo	Tue Feb  9 22:05:19 2016	(r408600)
@@ -0,0 +1,2 @@
+SHA256 (delfick-delfick_error-1.7.2-6761e6c_GH0.tar.gz) = 33201335a69fb5da1a7a3f16dd21ca2b70ca43d7f55086e85377e03a40b4b00a
+SIZE (delfick-delfick_error-1.7.2-6761e6c_GH0.tar.gz) = 9655

Added: head/devel/py-delfick_error/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-delfick_error/pkg-descr	Tue Feb  9 22:05:19 2016	(r408600)
@@ -0,0 +1,5 @@
+The point of this exception class is to be able to create an error
+class that automatically combines keyword arguments given to the
+exception instance
+
+WWW: http://github.com/delfick/delfick_error



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