From owner-svn-ports-head@freebsd.org Wed Jul 13 21:02:12 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B1FAB97410; Wed, 13 Jul 2016 21:02:12 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0A8F14D1; Wed, 13 Jul 2016 21:02:11 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6DL2BDj052029; Wed, 13 Jul 2016 21:02:11 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6DL2AZ2051282; Wed, 13 Jul 2016 21:02:10 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201607132102.u6DL2AZ2051282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 13 Jul 2016 21:02:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418505 - in head/net-mgmt: . onionlauncher X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 21:02:12 -0000 Author: pawel Date: Wed Jul 13 21:02:10 2016 New Revision: 418505 URL: https://svnweb.freebsd.org/changeset/ports/418505 Log: OnionLauncher is a launcher for Tor written in Python and PyQt5. WWW: https://www.github.com/neelchauhan/OnionLauncher PR: 210743 Submitted by: Neel Chauhan Added: head/net-mgmt/onionlauncher/ head/net-mgmt/onionlauncher/Makefile (contents, props changed) head/net-mgmt/onionlauncher/distinfo (contents, props changed) head/net-mgmt/onionlauncher/pkg-descr (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Wed Jul 13 20:48:37 2016 (r418504) +++ head/net-mgmt/Makefile Wed Jul 13 21:02:10 2016 (r418505) @@ -189,6 +189,7 @@ SUBDIR += ocsinventory-agent SUBDIR += ocsinventory-ng SUBDIR += omping + SUBDIR += onionlauncher SUBDIR += openlldp SUBDIR += openvmps SUBDIR += p0f Added: head/net-mgmt/onionlauncher/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/onionlauncher/Makefile Wed Jul 13 21:02:10 2016 (r418505) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= onionlauncher +PORTVERSION= 0.0.1 +DISTVERSIONPREFIX= v +CATEGORIES= net-mgmt + +MAINTAINER= neel@neelc.org +COMMENT= Launcher for Tor + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}stem>=0.18:security/py-stem \ + tor:security/tor + +USE_GITHUB= yes +GH_ACCOUNT= neelchauhan +GH_PROJECT= OnionLauncher + +USES= pyqt:5 python +USE_PYTHON= autoplist distutils +USE_PYQT= core_run gui_run widgets_run + +NO_ARCH= yes + +.include Added: head/net-mgmt/onionlauncher/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/onionlauncher/distinfo Wed Jul 13 21:02:10 2016 (r418505) @@ -0,0 +1,3 @@ +TIMESTAMP = 1467378000 +SHA256 (neelchauhan-OnionLauncher-v0.0.1_GH0.tar.gz) = facafe8549c47bd7f5ad1e7228acbd8633363e0bd0f9c4bf99e679b92112b971 +SIZE (neelchauhan-OnionLauncher-v0.0.1_GH0.tar.gz) = 18545 Added: head/net-mgmt/onionlauncher/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/onionlauncher/pkg-descr Wed Jul 13 21:02:10 2016 (r418505) @@ -0,0 +1,3 @@ +OnionLauncher is a launcher for Tor written in Python and PyQt5. + +WWW: https://www.github.com/neelchauhan/OnionLauncher