From owner-svn-ports-all@freebsd.org Mon Jun 27 20:01:43 2016 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 B2120B84689; Mon, 27 Jun 2016 20:01:43 +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 6C95D29B3; Mon, 27 Jun 2016 20:01:43 +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 u5RK1gl1089127; Mon, 27 Jun 2016 20:01:42 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5RK1gOI089123; Mon, 27 Jun 2016 20:01:42 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201606272001.u5RK1gOI089123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 27 Jun 2016 20:01:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417681 - 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-all@freebsd.org X-Mailman-Version: 2.1.22 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, 27 Jun 2016 20:01:43 -0000 Author: madpilot Date: Mon Jun 27 20:01:42 2016 New Revision: 417681 URL: https://svnweb.freebsd.org/changeset/ports/417681 Log: Update to 2.60.0. Modified: head/deskutils/calibre/Makefile head/deskutils/calibre/distinfo head/deskutils/calibre/files/patch-setup_build__environment.py head/deskutils/calibre/pkg-plist Modified: head/deskutils/calibre/Makefile ============================================================================== --- head/deskutils/calibre/Makefile Mon Jun 27 19:49:51 2016 (r417680) +++ head/deskutils/calibre/Makefile Mon Jun 27 20:01:42 2016 (r417681) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= calibre -PORTVERSION= 2.59.0 +PORTVERSION= 2.60.0 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ Modified: head/deskutils/calibre/distinfo ============================================================================== --- head/deskutils/calibre/distinfo Mon Jun 27 19:49:51 2016 (r417680) +++ head/deskutils/calibre/distinfo Mon Jun 27 20:01:42 2016 (r417681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1466172933 -SHA256 (calibre-2.59.0.tar.xz) = b846f44574366bee3d8cb9326c655609ba61877ec112da253d9c46ba522a31f3 -SIZE (calibre-2.59.0.tar.xz) = 40487560 +TIMESTAMP = 1467024179 +SHA256 (calibre-2.60.0.tar.xz) = 30cca18269fcf94400bdc428e7ac706b6265e550b9572668f998ebab5de5c83b +SIZE (calibre-2.60.0.tar.xz) = 40604012 Modified: head/deskutils/calibre/files/patch-setup_build__environment.py ============================================================================== --- head/deskutils/calibre/files/patch-setup_build__environment.py Mon Jun 27 19:49:51 2016 (r417680) +++ head/deskutils/calibre/files/patch-setup_build__environment.py Mon Jun 27 20:01:42 2016 (r417681) @@ -1,11 +1,11 @@ ---- setup/build_environment.py.orig 2016-05-20 11:45:27 UTC +--- setup/build_environment.py.orig 2016-06-24 01:54:27 UTC +++ setup/build_environment.py -@@ -103,7 +103,7 @@ def get_sip_dir(q): +@@ -98,7 +98,7 @@ pyqt['sip_bin'] = os.environ.get('SIP_BI + from PyQt5.QtCore import PYQT_CONFIGURATION + pyqt['sip_flags'] = PYQT_CONFIGURATION['sip_flags'] + def get_sip_dir(): +- q = os.environ.get('SIP_DIR', sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'sip')) ++ q = os.environ.get('SIP_DIR', sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'py-sip')) + for x in ('', 'Py2-PyQt5', 'PyQt5', 'sip/PyQt5'): + base = os.path.join(q, x) if os.path.exists(os.path.join(base, 'QtWidgets')): - return base - raise EnvironmentError('Failed to find the location of the PyQt5 .sip files') --pyqt['pyqt_sip_dir'] = get_sip_dir(sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'sip')) -+pyqt['pyqt_sip_dir'] = get_sip_dir(sys.prefix if iswindows else os.path.join(sys.prefix, 'share', 'py-sip')) - pyqt['sip_inc_dir'] = sysconfig.get_path('include') - - glib_flags = subprocess.check_output([PKGCONFIG, '--libs', 'glib-2.0']).strip() if islinux else '' Modified: head/deskutils/calibre/pkg-plist ============================================================================== --- head/deskutils/calibre/pkg-plist Mon Jun 27 19:49:51 2016 (r417680) +++ head/deskutils/calibre/pkg-plist Mon Jun 27 20:01:42 2016 (r417681) @@ -107,6 +107,7 @@ lib/calibre/calibre/devices/kobo/__init_ lib/calibre/calibre/devices/kobo/bookmark.py lib/calibre/calibre/devices/kobo/books.py lib/calibre/calibre/devices/kobo/driver.py +lib/calibre/calibre/devices/kobo/kobotouch_config.py lib/calibre/calibre/devices/manager.py lib/calibre/calibre/devices/mime.py lib/calibre/calibre/devices/misc.py @@ -352,6 +353,8 @@ lib/calibre/calibre/ebooks/metadata/mobi lib/calibre/calibre/ebooks/metadata/odt.py lib/calibre/calibre/ebooks/metadata/opf.py lib/calibre/calibre/ebooks/metadata/opf2.py +lib/calibre/calibre/ebooks/metadata/opf3.py +lib/calibre/calibre/ebooks/metadata/opf3_test.py lib/calibre/calibre/ebooks/metadata/pdb.py lib/calibre/calibre/ebooks/metadata/pdf.py lib/calibre/calibre/ebooks/metadata/plucker.py @@ -473,6 +476,7 @@ lib/calibre/calibre/ebooks/oeb/polish/te lib/calibre/calibre/ebooks/oeb/polish/tests/container.py lib/calibre/calibre/ebooks/oeb/polish/tests/main.py lib/calibre/calibre/ebooks/oeb/polish/tests/parsing.py +lib/calibre/calibre/ebooks/oeb/polish/tests/structure.py lib/calibre/calibre/ebooks/oeb/polish/toc.py lib/calibre/calibre/ebooks/oeb/polish/utils.py lib/calibre/calibre/ebooks/oeb/reader.py @@ -771,6 +775,7 @@ lib/calibre/calibre/gui2/device_drivers/ lib/calibre/calibre/gui2/device_drivers/configwidget_ui.py lib/calibre/calibre/gui2/device_drivers/mtp_config.py lib/calibre/calibre/gui2/device_drivers/mtp_folder_browser.py +lib/calibre/calibre/gui2/device_drivers/tabbed_device_config.py lib/calibre/calibre/gui2/dialogs/__init__.py lib/calibre/calibre/gui2/dialogs/add_empty_book.py lib/calibre/calibre/gui2/dialogs/add_from_isbn.py @@ -1346,6 +1351,7 @@ lib/calibre/calibre/utils/rapydscript.py lib/calibre/calibre/utils/recycle_bin.py lib/calibre/calibre/utils/resources.py lib/calibre/calibre/utils/rss_gen.py +lib/calibre/calibre/utils/run_tests.py lib/calibre/calibre/utils/search_query_parser.py lib/calibre/calibre/utils/serve_coffee.py lib/calibre/calibre/utils/sftp.py