Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Apr 2020 15:47:33 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533345 - in head/devel: . py-watchgod
Message-ID:  <202004291547.03TFlXRW094575@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Wed Apr 29 15:47:33 2020
New Revision: 533345
URL: https://svnweb.freebsd.org/changeset/ports/533345

Log:
  Add py-watchgod 0.6
  
  watchgod is a simple, modern file watching and code reload in python.
  
  watchgod is inspired by watchdog, hence the name, but tries to fix some of the
  frustrations I found with watchdog, namely: separate approaches for each OS, an
  inelegant approach to concurrency using threading, challenges around debouncing
  changes and bugs which weren't being fixed.
  
  WWW: https://github.com/samuelcolvin/watchgod

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Apr 29 15:46:32 2020	(r533344)
+++ head/devel/Makefile	Wed Apr 29 15:47:33 2020	(r533345)
@@ -5205,6 +5205,7 @@
     SUBDIR += py-wadllib
     SUBDIR += py-warlock
     SUBDIR += py-watchdog
+    SUBDIR += py-watchgod
     SUBDIR += py-wcwidth
     SUBDIR += py-weakrefmethod
     SUBDIR += py-weblib

Added: head/devel/py-watchgod/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-watchgod/Makefile	Wed Apr 29 15:47:33 2020	(r533345)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	watchgod
+PORTVERSION=	0.6
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Simple, modern file watching and code reload in python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python:3.5+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-watchgod/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-watchgod/distinfo	Wed Apr 29 15:47:33 2020	(r533345)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588163949
+SHA256 (watchgod-0.6.tar.gz) = e9cca0ab9c63f17fc85df9fd8bd18156ff00aff04ebe5976cee473f4968c6858
+SIZE (watchgod-0.6.tar.gz) = 10812

Added: head/devel/py-watchgod/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-watchgod/pkg-descr	Wed Apr 29 15:47:33 2020	(r533345)
@@ -0,0 +1,8 @@
+watchgod is a simple, modern file watching and code reload in python.
+
+watchgod is inspired by watchdog, hence the name, but tries to fix some of the
+frustrations I found with watchdog, namely: separate approaches for each OS, an
+inelegant approach to concurrency using threading, challenges around debouncing
+changes and bugs which weren't being fixed.
+
+WWW: https://github.com/samuelcolvin/watchgod



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