mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
- Update to 2.64.0
- Remove patch integrated upstream
This commit is contained in:
parent
7a4e9f3405
commit
0539d058fd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=420160
@ -2,7 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= calibre
|
||||
PORTVERSION= 2.63.0
|
||||
PORTVERSION= 2.64.0
|
||||
CATEGORIES= deskutils python
|
||||
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1469190811
|
||||
SHA256 (calibre-2.63.0.tar.xz) = 0672a155edfafd50a507ebcfa20de2cfc23780e082eccbb89374f8aab3d98fe7
|
||||
SIZE (calibre-2.63.0.tar.xz) = 40700876
|
||||
TIMESTAMP = 1470991499
|
||||
SHA256 (calibre-2.64.0.tar.xz) = 29d71f6eccef09385a50221ed94d7db52fe96128de1bca0c2e301f3b1a9c4b4a
|
||||
SIZE (calibre-2.64.0.tar.xz) = 40765340
|
||||
|
@ -1,20 +0,0 @@
|
||||
--- 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
|
@ -899,9 +899,7 @@ lib/calibre/calibre/gui2/preferences/coloring.py
|
||||
lib/calibre/calibre/gui2/preferences/columns.py
|
||||
lib/calibre/calibre/gui2/preferences/columns_ui.py
|
||||
lib/calibre/calibre/gui2/preferences/conversion.py
|
||||
lib/calibre/calibre/gui2/preferences/conversion_ui.py
|
||||
lib/calibre/calibre/gui2/preferences/create_custom_column.py
|
||||
lib/calibre/calibre/gui2/preferences/create_custom_column_ui.py
|
||||
lib/calibre/calibre/gui2/preferences/device_debug.py
|
||||
lib/calibre/calibre/gui2/preferences/device_user_defined.py
|
||||
lib/calibre/calibre/gui2/preferences/email_ui.py
|
||||
@ -936,7 +934,6 @@ lib/calibre/calibre/gui2/preferences/texture_chooser.py
|
||||
lib/calibre/calibre/gui2/preferences/toolbar.py
|
||||
lib/calibre/calibre/gui2/preferences/toolbar_ui.py
|
||||
lib/calibre/calibre/gui2/preferences/tweaks.py
|
||||
lib/calibre/calibre/gui2/preferences/tweaks_ui.py
|
||||
lib/calibre/calibre/gui2/proceed.py
|
||||
lib/calibre/calibre/gui2/progress_indicator/__init__.py
|
||||
lib/calibre/calibre/gui2/save.py
|
||||
|
Loading…
Reference in New Issue
Block a user