svn commit: r418936 - in head/deskutils/calibre: . files
Guido Falsi
madpilot at FreeBSD.org
Fri Jul 22 21:33:47 UTC 2016
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
More information about the svn-ports-all
mailing list