svn commit: r476823 - in head/devel: . py-applicationinsights

David Naylor dbn at FreeBSD.org
Fri Aug 10 09:53:29 UTC 2018


Author: dbn
Date: Fri Aug 10 09:53:27 2018
New Revision: 476823
URL: https://svnweb.freebsd.org/changeset/ports/476823

Log:
  devel/py-applicationinsights: add port
  
  Application Insights is a service that allows developers to keep their
  application available, performing and succeeding. This Python module will
  allow you to send telemetry of various kinds (event, trace, exception, etc.)
  to the Application Insights service where they can be visualized in the
  Azure Portal.

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Aug 10 09:43:08 2018	(r476822)
+++ head/devel/Makefile	Fri Aug 10 09:53:27 2018	(r476823)
@@ -4339,6 +4339,7 @@
     SUBDIR += py-apns2
     SUBDIR += py-appdirs
     SUBDIR += py-application
+    SUBDIR += py-applicationinsights
     SUBDIR += py-apptools
     SUBDIR += py-apscheduler
     SUBDIR += py-archetypes.querywidget

Added: head/devel/py-applicationinsights/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-applicationinsights/Makefile	Fri Aug 10 09:53:27 2018	(r476823)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	applicationinsights
+DISTVERSIONPREFIX=	v
+DISTVERSION=	0.11.5
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbn at FreeBSD.org
+COMMENT=	Applications Insights SDK for Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+USE_GITHUB=	yes
+GH_ACCOUNT=	Microsoft
+GH_PROJECT=	ApplicationInsights-Python
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-applicationinsights/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-applicationinsights/distinfo	Fri Aug 10 09:53:27 2018	(r476823)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1533670977
+SHA256 (Microsoft-ApplicationInsights-Python-v0.11.5_GH0.tar.gz) = fa03c07be65ab69003c4771352f507fb8f84f1e86e0b3454a44633e924a48e1c
+SIZE (Microsoft-ApplicationInsights-Python-v0.11.5_GH0.tar.gz) = 66875

Added: head/devel/py-applicationinsights/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-applicationinsights/pkg-descr	Fri Aug 10 09:53:27 2018	(r476823)
@@ -0,0 +1,7 @@
+Application Insights is a service that allows developers to keep their
+application available, performing and succeeding. This Python module will
+allow you to send telemetry of various kinds (event, trace, exception, etc.)
+to the Application Insights service where they can be visualized in the
+Azure Portal.
+
+WWW: https://github.com/Microsoft/ApplicationInsights-Python


More information about the svn-ports-all mailing list