svn commit: r454419 - in head/www: . qutebrowser

Roman Bogorodskiy novel at FreeBSD.org
Sat Nov 18 09:41:20 UTC 2017


Author: novel
Date: Sat Nov 18 09:41:18 2017
New Revision: 454419
URL: https://svnweb.freebsd.org/changeset/ports/454419

Log:
  Qutebrowser is a keyboard-focused browser with a minimal GUI.
  It's based on Python and PyQt5 and free software, licensed under the GPL.
  
  It was inspired by other browsers/addons like dwb and Vimperator/Pentadactyl.
  
  Reviewed by:		lwhsu
  Differential Revision:	https://reviews.freebsd.org/D13113

Added:
  head/www/qutebrowser/
  head/www/qutebrowser/Makefile   (contents, props changed)
  head/www/qutebrowser/distinfo   (contents, props changed)
  head/www/qutebrowser/pkg-descr   (contents, props changed)
  head/www/qutebrowser/pkg-message   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sat Nov 18 09:39:37 2017	(r454418)
+++ head/www/Makefile	Sat Nov 18 09:41:18 2017	(r454419)
@@ -1898,6 +1898,7 @@
     SUBDIR += quickie
     SUBDIR += qupzilla-qt4
     SUBDIR += qupzilla-qt5
+    SUBDIR += qutebrowser
     SUBDIR += radicale
     SUBDIR += red5
     SUBDIR += redaxo

Added: head/www/qutebrowser/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/qutebrowser/Makefile	Sat Nov 18 09:41:18 2017	(r454419)
@@ -0,0 +1,25 @@
+# $FreeBSD$
+
+PORTNAME=	qutebrowser
+DISTVERSION=	1.0.3
+CATEGORIES=	www
+
+MAINTAINER=	novel at FreeBSD.org
+COMMENT=	Keyboard-focused browser with a minimal GUI
+
+LICENSE=	GPLv3
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py-attrs \
+		${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments \
+		${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2 \
+		${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml \
+		${PYTHON_PKGNAMEPREFIX}pyPEG2>=0:textproc/py3-pyPEG2
+
+USES=		python:3.5+ pyqt:5
+USE_PYQT=	core opengl printsupport sql webkit webkitwidgets widgets qml
+USE_QT5=	sql-sqlite3
+USE_PYTHON=	distutils autoplist
+USE_GITHUB=	yes
+GH_TAGNAME=	v${DISTVERSION}
+
+.include <bsd.port.mk>

Added: head/www/qutebrowser/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/qutebrowser/distinfo	Sat Nov 18 09:41:18 2017	(r454419)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1510404914
+SHA256 (qutebrowser-qutebrowser-1.0.3-v1.0.3_GH0.tar.gz) = 00e6b4c101351482e68d4e3b3718b1e6f0722a54a353769bdda3acfba72b5805
+SIZE (qutebrowser-qutebrowser-1.0.3-v1.0.3_GH0.tar.gz) = 2803721

Added: head/www/qutebrowser/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/qutebrowser/pkg-descr	Sat Nov 18 09:41:18 2017	(r454419)
@@ -0,0 +1,6 @@
+Qutebrowser is a keyboard-focused browser with a minimal GUI.
+It's based on Python and PyQt5 and free software, licensed under the GPL.
+
+It was inspired by other browsers/addons like dwb and Vimperator/Pentadactyl.
+
+WWW: https://www.qutebrowser.org/

Added: head/www/qutebrowser/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/qutebrowser/pkg-message	Sat Nov 18 09:41:18 2017	(r454419)
@@ -0,0 +1,6 @@
+Currently, the port supports only the QtWebKit backend.
+
+On the first start, qutebrowser will warn that it cannot use QtWebEngine,
+one should press 'Force QtWebKit backend'. Or one could simply start it with:
+
+  qutebrowser --backend webkit


More information about the svn-ports-all mailing list