From owner-svn-ports-head@freebsd.org Thu Aug 16 11:56:49 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5326810872F6; Thu, 16 Aug 2018 11:56:49 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0110B7DA12; Thu, 16 Aug 2018 11:56:49 +0000 (UTC) (envelope-from nivit@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CF55F18FDC; Thu, 16 Aug 2018 11:56:48 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7GBumNU035001; Thu, 16 Aug 2018 11:56:48 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7GBumDo034996; Thu, 16 Aug 2018 11:56:48 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <201808161156.w7GBumDo034996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Thu, 16 Aug 2018 11:56:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477322 - in head/www/googler: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/www/googler: . files X-SVN-Commit-Revision: 477322 X-SVN-Commit-Repository: ports 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.27 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: Thu, 16 Aug 2018 11:56:49 -0000 Author: nivit Date: Thu Aug 16 11:56:47 2018 New Revision: 477322 URL: https://svnweb.freebsd.org/changeset/ports/477322 Log: - Update to 3.6 - Add x11/xclip as run dependency (x11/xsel does not work) Changes: https://github.com/jarun/googler/releases/tag/v3.6 Added: head/www/googler/files/ head/www/googler/files/patch-googler (contents, props changed) Modified: head/www/googler/Makefile head/www/googler/distinfo Modified: head/www/googler/Makefile ============================================================================== --- head/www/googler/Makefile Thu Aug 16 11:38:58 2018 (r477321) +++ head/www/googler/Makefile Thu Aug 16 11:56:47 2018 (r477322) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= googler -PORTVERSION= 3.2 +PORTVERSION= 3.6 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= www MAINTAINER= nivit@FreeBSD.org @@ -12,6 +12,8 @@ COMMENT= Google Search, Google Site Search, Google New LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= xclip:x11/xclip USES= python:3.3+ shebangfix SHEBANG_FILES= googler Modified: head/www/googler/distinfo ============================================================================== --- head/www/googler/distinfo Thu Aug 16 11:38:58 2018 (r477321) +++ head/www/googler/distinfo Thu Aug 16 11:56:47 2018 (r477322) @@ -1,3 +1,3 @@ -TIMESTAMP = 1500360091 -SHA256 (jarun-googler-v3.2_GH0.tar.gz) = 62c43871e2095fc05a2b632173f3d80b952531dc7bb306b24dcacdbc0472ae5a -SIZE (jarun-googler-v3.2_GH0.tar.gz) = 58102 +TIMESTAMP = 1534410147 +SHA256 (jarun-googler-v3.6_GH0.tar.gz) = 514218f5155a2c1bd653462a503507beafca9d7ddff7203aeabb3ab4812e4b44 +SIZE (jarun-googler-v3.6_GH0.tar.gz) = 71738 Added: head/www/googler/files/patch-googler ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/googler/files/patch-googler Thu Aug 16 11:56:47 2018 (r477322) @@ -0,0 +1,14 @@ +--- googler.orig 2018-05-23 03:22:46 UTC ++++ googler +@@ -2083,9 +2083,9 @@ class GooglerCmd(object): + try: + # try copying the url to clipboard using native utilities + if sys.platform.startswith(('linux', 'freebsd', 'openbsd')): +- if shutil.which('xsel') is None: ++ if shutil.which('xclip') is None: + raise FileNotFoundError +- copier_params = ['xsel', '-b', '-i'] ++ copier_params = ['xclip', '-selection', 'clipboard'] + elif sys.platform == 'darwin': + copier_params = ['pbcopy'] + elif sys.platform == 'win32':