summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-03-09 08:51:08 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-03-09 08:51:08 -0300
commitd5faf88b3221097906ef9fbc841503226d4124ad (patch)
tree6171662d6b73775bca5235accdc7aa378b052f9b /libre
parentde4bcb3416bcf4d279794f21d6bd2bf257b0a167 (diff)
calibre-2.20.0-2.parabola1: fix FS#43934 -> https://bugs.archlinux.org/task/43934
Diffstat (limited to 'libre')
-rw-r--r--libre/calibre/PKGBUILD12
-rw-r--r--libre/calibre/incompatibility-pyqt5.4.1.patch28
2 files changed, 35 insertions, 5 deletions
diff --git a/libre/calibre/PKGBUILD b/libre/calibre/PKGBUILD
index 25acabc2d..2eacbd6e3 100644
--- a/libre/calibre/PKGBUILD
+++ b/libre/calibre/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 128074 2015-02-21 15:29:54Z jelle $
+# $Id: PKGBUILD 128957 2015-03-08 19:47:53Z jelle $
# Maintainer (Arch): Jelle van der Waa <jelle@vdwaa.nl>
# Maintainer (Arch): Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor (Arch): Giovanni Scafora <giovanni@archlinux.org>
@@ -10,7 +10,7 @@
pkgname=calibre
_pkgname=$pkgname-libre
pkgver=2.20.0
-pkgrel=1.parabola1
+pkgrel=2.parabola1
pkgdesc="Ebook management application, without nonfree decompression engine for RAR archives"
arch=('i686' 'x86_64' 'mips64el')
url="http://$pkgname-ebook.com/"
@@ -31,9 +31,11 @@ conflicts=($_pkgname)
install=$pkgname.install
mksource=("http://download.$pkgname-ebook.com/${pkgver}/$pkgname-${pkgver}.tar.xz")
source=("https://repo.parabola.nu/other/${_pkgname}/${_pkgname}-${pkgver}.tar.xz"
+ 'incompatibility-pyqt5.4.1.patch'
'libre.patch')
mkmd5sums=('94f033006e6cc7b96abf62944368fc83')
md5sums=('7511774936f784ff6d716552fd0cedf6'
+ 'cb28c339c0ab543a96e56363eeef3e8c'
'7e964e5c88affc299b69e8c2744a4393')
mksource(){
@@ -54,17 +56,14 @@ prepare(){
# Remove unneeded files and libs
rm -rf resources/${pkgname}-portable.* \
- src/six.py \
src/cherrypy \
src/html5lib \
src/chardet
sed -i "s/shlex.split(ldflags)/& + ['-fPIC']/" setup/extensions.py
- #sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) + ['-fPIC']/" setup/extensions.py
# Use python2
sed -i 's:\(env[ ]\+python$\|/usr/bin/python$\):\12:g' $(find . -regex ".*\.py\|.*\.recipe")
- sed -i "/pyqt_sip_dir/ s:=.*:= '/usr/share/sip/Py2-PyQt5':" setup/build_environment.py
# Desktop integration (e.g. enforce arch defaults)
sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
@@ -80,6 +79,9 @@ prepare(){
-e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
-e "s/^Name=calibre/Name=Calibre/g" \
-i src/$pkgname/linux.py
+
+ # Fixes FS#43934
+ patch -Np1 -i $srcdir/incompatibility-pyqt5.4.1.patch
}
build() {
diff --git a/libre/calibre/incompatibility-pyqt5.4.1.patch b/libre/calibre/incompatibility-pyqt5.4.1.patch
new file mode 100644
index 000000000..e2f44e19e
--- /dev/null
+++ b/libre/calibre/incompatibility-pyqt5.4.1.patch
@@ -0,0 +1,28 @@
+From 72d47ba9377d70e786bf3d93b323544188c894bd Mon Sep 17 00:00:00 2001
+From: Kovid Goyal <kovid@kovidgoyal.net>
+Date: Thu, 5 Mar 2015 07:50:28 +0530
+Subject: [PATCH] =?UTF-8?q?Fix=20incompatibility=20with=20PyQt=205.4.1.=20?=
+ =?UTF-8?q?Fixes=20#1427684=20["TypeError:=20QPixmap():=20argument=201=20h?=
+ =?UTF-8?q?as=20unexpected=20type"=20=E2=80=93=20incompatibility=20with=20?=
+ =?UTF-8?q?Qt=205.4.1=3F](https://bugs.launchpad.net/calibre/+bug/1427684)?=
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+---
+ src/calibre/gui2/widgets.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/calibre/gui2/widgets.py b/src/calibre/gui2/widgets.py
+index 0e84267..ed40a97 100644
+--- a/src/calibre/gui2/widgets.py
++++ b/src/calibre/gui2/widgets.py
+@@ -295,7 +295,7 @@ class ImageView(QWidget, ImageDropMixin): # {{{
+ def __init__(self, parent=None, show_size_pref_name=None, default_show_size=False):
+ QWidget.__init__(self, parent)
+ self.show_size_pref_name = ('show_size_on_cover_' + show_size_pref_name) if show_size_pref_name else None
+- self._pixmap = QPixmap(self)
++ self._pixmap = QPixmap()
+ self.setMinimumSize(QSize(150, 200))
+ ImageDropMixin.__init__(self)
+ self.draw_border = True