Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Nov 2020 19:00:01 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555657 - in head/devel: . py-sentry-sdk
Message-ID:  <202011181900.0AIJ011Y072065@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Wed Nov 18 19:00:01 2020
New Revision: 555657
URL: https://svnweb.freebsd.org/changeset/ports/555657

Log:
  Add devel/py-sentry-sdk
  
  Sentry SDK is a Python client for Sentry (http://getsentry.com/).
  
  It enables automatic reporting of errors and exceptions as well as
  identifies performance issues in the application.
  
  It is intended to replace Raven.
  
  WWW: https://github.com/getsentry/sentry-python

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Nov 18 18:14:06 2020	(r555656)
+++ head/devel/Makefile	Wed Nov 18 19:00:01 2020	(r555657)
@@ -5050,6 +5050,7 @@
     SUBDIR += py-selectors2
     SUBDIR += py-semantic_version
     SUBDIR += py-semver
+    SUBDIR += py-sentry-sdk
     SUBDIR += py-serializable
     SUBDIR += py-serpent
     SUBDIR += py-setproctitle

Added: head/devel/py-sentry-sdk/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sentry-sdk/Makefile	Wed Nov 18 19:00:01 2020	(r555657)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	sentry-sdk
+PORTVERSION=	0.19.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Client for Sentry
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}certifi>=0:security/py-certifi@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}urllib3>=0:net/py-urllib3@${PY_FLAVOR}
+# Some dependencies are still missing from the ports collection.
+# TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aiohttp>=0:www/py-aiohttp@${PY_FLAVOR} \
+#                 ${PYTHON_PKGNAMEPREFIX}bottle>=0:www/py-bottle@${PY_FLAVOR} \
+#                 ${PYTHON_PKGNAMEPREFIX}tornado>=0:www/py-tornado@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+# do-test:
+#         @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test)
+
+.include <bsd.port.mk>

Added: head/devel/py-sentry-sdk/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sentry-sdk/distinfo	Wed Nov 18 19:00:01 2020	(r555657)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605720624
+SHA256 (sentry-sdk-0.19.3.tar.gz) = fd48f627945511c140546939b4d73815be4860cd1d2b9149577d7f6563e7bd60
+SIZE (sentry-sdk-0.19.3.tar.gz) = 97126

Added: head/devel/py-sentry-sdk/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-sentry-sdk/pkg-descr	Wed Nov 18 19:00:01 2020	(r555657)
@@ -0,0 +1,8 @@
+Sentry SDK is a Python client for Sentry (http://getsentry.com/).
+
+It enables automatic reporting of errors and exceptions as well as identifies
+performance issues in the application.
+
+It is intended to replace Raven.
+
+WWW: https://github.com/getsentry/sentry-python



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