From owner-svn-ports-all@freebsd.org Mon May 15 14:15:26 2017 Return-Path: Delivered-To: svn-ports-all@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 5548AD6DDFC; Mon, 15 May 2017 14:15:26 +0000 (UTC) (envelope-from feld@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 0D4621DB7; Mon, 15 May 2017 14:15:25 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4FEFPQ9047568; Mon, 15 May 2017 14:15:25 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4FEFO6l047567; Mon, 15 May 2017 14:15:24 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201705151415.v4FEFO6l047567@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 15 May 2017 14:15:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440930 - in head/multimedia/plexpy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 May 2017 14:15:26 -0000 Author: feld Date: Mon May 15 14:15:24 2017 New Revision: 440930 URL: https://svnweb.freebsd.org/changeset/ports/440930 Log: multimedia/plexpy: Add patch to disable new version check via github Software installed from packages should not attempt to update themselves from github. Added: head/multimedia/plexpy/files/patch-plexpy_config.py (contents, props changed) Modified: head/multimedia/plexpy/Makefile Modified: head/multimedia/plexpy/Makefile ============================================================================== --- head/multimedia/plexpy/Makefile Mon May 15 14:13:26 2017 (r440929) +++ head/multimedia/plexpy/Makefile Mon May 15 14:15:24 2017 (r440930) @@ -3,7 +3,7 @@ PORTNAME= plexpy PORTVERSION= 1.4.18 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia python DISTVERSIONPREFIX=v Added: head/multimedia/plexpy/files/patch-plexpy_config.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/plexpy/files/patch-plexpy_config.py Mon May 15 14:15:24 2017 (r440930) @@ -0,0 +1,18 @@ +--- plexpy/config.py.orig 2017-05-15 14:05:14 UTC ++++ plexpy/config.py +@@ -107,7 +107,7 @@ _CONFIG_DEFINITIONS = { + 'CACHE_DIR': (str, 'General', ''), + 'CACHE_IMAGES': (int, 'General', 1), + 'CACHE_SIZEMB': (int, 'Advanced', 32), +- 'CHECK_GITHUB': (int, 'General', 1), ++ 'CHECK_GITHUB': (int, 'General', 0), + 'CHECK_GITHUB_INTERVAL': (int, 'General', 360), + 'CHECK_GITHUB_ON_STARTUP': (int, 'General', 1), + 'CLEANUP_FILES': (int, 'General', 0), +@@ -812,4 +812,4 @@ class Config(object): + if self.CONFIG_VERSION == '6': + if self.GIT_USER.lower() == 'drzoidberg33': + self.GIT_USER = 'JonnyWong16' +- self.CONFIG_VERSION = '7' +\ No newline at end of file ++ self.CONFIG_VERSION = '7'