From owner-svn-ports-head@freebsd.org Fri Jul 22 21:33:47 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 C1267B9E107; Fri, 22 Jul 2016 21:33:47 +0000 (UTC) (envelope-from madpilot@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 918F41691; Fri, 22 Jul 2016 21:33:47 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6MLXkHv095310; Fri, 22 Jul 2016 21:33:46 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6MLXkEj095306; Fri, 22 Jul 2016 21:33:46 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607222133.u6MLXkEj095306@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 22 Jul 2016 21:33:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418936 - in head/deskutils/calibre: . 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-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: Fri, 22 Jul 2016 21:33:47 -0000 Author: madpilot Date: Fri Jul 22 21:33:46 2016 New Revision: 418936 URL: https://svnweb.freebsd.org/changeset/ports/418936 Log: - Update to 2.63.0 - Add missing direct dependencies reported by poudriere Added: head/deskutils/calibre/files/patch-setup_build.py (contents, props changed) Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo head/deskutils/calibre/pkg-plist Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Fri Jul 22 20:49:47 2016 (r418935) +++ head/deskutils/calibre/Makefile Fri Jul 22 21:33:46 2016 (r418936) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 2.62.0 +PORTVERSION= 2.63.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ @@ -57,12 +57,14 @@ RUN_DEPENDS= xdg-open:devel/xdg-utils \ USE_RC_SUBR= calibre EXTRACT_BEFORE_ARGS= -x -s '/^calibre/~-src/' -f -USES= desktop-file-utils pkgconfig python:2 shared-mime-info shebangfix tar:xz +USES= desktop-file-utils pkgconfig python:2 shared-mime-info \ + shebangfix ssl tar:xz SHEBANG_FILES= resources/calibre-portable.sh \ src/calibre/ebooks/metadata/odt.py \ src/calibre/utils/*.py \ src/odf/*.py -USE_QT5= buildtools_build dbus qmake_build +USE_QT5= buildtools_build core dbus gui qmake_build widgets +USE_GL= gl WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION} CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Fri Jul 22 20:49:47 2016 (r418935) +++ head/deskutils/calibre/distinfo Fri Jul 22 21:33:46 2016 (r418936) @@ -1,3 +1,3 @@ -TIMESTAMP = 1467965226 -SHA256 (calibre-2.62.0.tar.xz) = ca4e7b13bfbf3950e32c91d163bd31a310fb386375d4c02f4bde8dd7b49b1a97 -SIZE (calibre-2.62.0.tar.xz) = 40671664 +TIMESTAMP = 1469190811 +SHA256 (calibre-2.63.0.tar.xz) = 0672a155edfafd50a507ebcfa20de2cfc23780e082eccbb89374f8aab3d98fe7 +SIZE (calibre-2.63.0.tar.xz) = 40700876 Added: head/deskutils/calibre/files/patch-setup_build.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/calibre/files/patch-setup_build.py Fri Jul 22 21:33:46 2016 (r418936) @@ -0,0 +1,20 @@ +--- setup/build.py.orig 2016-07-22 02:21:05 UTC ++++ setup/build.py +@@ -79,7 +79,7 @@ def is_ext_allowed(ext): + only = ext.get('only', '') + if only: + only = only.split() +- q = 'windows' if iswindows else 'osx' if isosx else 'linux' ++ q = 'windows' if iswindows else 'osx' if isosx else 'bsd' if isbsd else 'linux' + return q in only + return True + +@@ -94,6 +94,8 @@ def parse_extension(ext): + ans = ext.pop('windows_' + k, ans) + elif isosx: + ans = ext.pop('osx_' + k, ans) ++ elif isbsd: ++ ans = ext.pop('bsd_' + k, ans) + else: + ans = ext.pop('linux_' + k, ans) + return ans Modified: head/deskutils/calibre/pkg-plist ============================================================================== --- head/deskutils/calibre/pkg-plist Fri Jul 22 20:49:47 2016 (r418935) +++ head/deskutils/calibre/pkg-plist Fri Jul 22 21:33:46 2016 (r418936) @@ -1597,6 +1597,7 @@ lib/calibre/tinycss/version.py %%DATADIR%%/catalog/stylesheet.css %%DATADIR%%/catalog/template.xhtml %%DATADIR%%/coffee-script.js +%%DATADIR%%/common-user-agents.txt %%DATADIR%%/compiled_coffeescript.zip %%DATADIR%%/content-server/autoreload.js %%DATADIR%%/content-server/calibre.png