Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Jan 2019 03:23:46 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r490111 - in head/deskutils: . py-py3status
Message-ID:  <201901130323.x0D3NkgT074145@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Sun Jan 13 03:23:46 2019
New Revision: 490111
URL: https://svnweb.freebsd.org/changeset/ports/490111

Log:
  py3status is an extensible i3status wrapper written in python.
  
  You can take control of your i3bar easily by:
  
     * using one of the available modules shipped with py3status
     * grouping multiple modules and automatically or manually cycle their display
     * writing your own modules and have their output displayed on your bar
     * handling click events on your i3bar and play with them in no time
     * seeing your clock tick every second whatever your i3status interval
  
     WWW: https://github.com/ultrabug/py3status
  
  Sponsored by:	iXsystems Inc.

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

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Sun Jan 13 03:00:58 2019	(r490110)
+++ head/deskutils/Makefile	Sun Jan 13 03:23:46 2019	(r490111)
@@ -202,6 +202,7 @@
     SUBDIR += py-bugwarrior
     SUBDIR += py-khal
     SUBDIR += py-khard
+    SUBDIR += py-py3status
     SUBDIR += py-pystash
     SUBDIR += py-send2trash
     SUBDIR += py-taskw

Added: head/deskutils/py-py3status/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/py-py3status/Makefile	Sun Jan 13 03:23:46 2019	(r490111)
@@ -0,0 +1,33 @@
+# Created by: Martin Wilke
+# $FreeBSD$
+
+PORTNAME=	py3status
+PORTVERSION=	3.15
+CATEGORIES=	deskutils python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	miwi@FreeBSD.org
+COMMENT=	Extensible i3status wrapper written in python
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}google-api-python-client>=0:www/py-google-api-python-client@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}python-gflags>=0:devel/py-python-gflags@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}oauth2client>0:security/py-oauth2client@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}gevent>0:devel/py-gevent@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyudev>0:devel/py-pyudev@${PY_FLAVOR}
+
+USES=		python:3.5+
+USE_PYTHON=	distutils autoplist
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	ultrabug
+GH_PROJECT=	py3status
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/deskutils/py-py3status/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/py-py3status/distinfo	Sun Jan 13 03:23:46 2019	(r490111)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1546576650
+SHA256 (ultrabug-py3status-3.15_GH0.tar.gz) = 79e487017e827e3428ae526f5c967f9e819b34a84bafee4fac2121d5de84ef1c
+SIZE (ultrabug-py3status-3.15_GH0.tar.gz) = 319839

Added: head/deskutils/py-py3status/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/py-py3status/pkg-descr	Sun Jan 13 03:23:46 2019	(r490111)
@@ -0,0 +1,11 @@
+py3status is an extensible i3status wrapper written in python.
+
+You can take control of your i3bar easily by:
+
+   * using one of the available modules shipped with py3status
+   * grouping multiple modules and automatically or manually cycle their display
+   * writing your own modules and have their output displayed on your bar
+   * handling click events on your i3bar and play with them in no time
+   * seeing your clock tick every second whatever your i3status interval
+
+WWW: https://github.com/ultrabug/py3status



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