Package Details: kcc 7.0.0-2

Git Clone URL: https://aur.archlinux.org/kcc.git (read-only, click to copy)
Package Base: kcc
Description: Kindle Comic Converter converts comic files or folders to ePub or Panel View MOBI
Upstream URL: https://github.com/ciromattia/kcc
Licenses: ISC
Submitter: Schnouki
Maintainer: Schnouki
Last Packager: Schnouki
Votes: 30
Popularity: 0.110171
First Submitted: 2013-09-09 21:19 (UTC)
Last Updated: 2024-11-25 17:45 (UTC)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

pr3martins commented on 2022-05-05 21:35 (UTC)

Following the tip from @r3b311i0n, I just installed downgrade and then changed the python-slugify to version 5.0.2-3, and then I used the following command, pretty intuitive.

sudo downgrade python-slugify

r3b311i0n commented on 2022-05-02 20:32 (UTC)

Doesn't work with new python-slugify (v6.1.2-1).

Schnouki commented on 2022-01-31 11:26 (UTC)

Hmm, looks like I somehow overwrote the patch file with a bad version after updating the PKGBUILD. Sorry about that. The fixed patch (with the same fix as described by @Kicer) has the correct checksum.

Sincere apologies about that, I'll test more carefully before pushing in the future.

Kicer commented on 2022-01-28 16:44 (UTC)

replace '@@ -255,4 +255,4 @@' in patch file with '@@ -255,7 +255,7 @@'

katt commented on 2022-01-26 15:15 (UTC)

Even with checksums fixed it fails while patching:

==> Starting prepare()...
patching file kindlecomicconverter/image.py
Hunk #1 FAILED at 255.
1 out of 1 hunk FAILED -- saving rejects to file kindlecomicconverter/image.py.rej
==> ERROR: A failure occurred in prepare().

eNV25 commented on 2022-01-25 12:58 (UTC)

incorrect checksum for kcc-py310.patch as of 5.5.2-4

Schnouki commented on 2022-01-24 21:52 (UTC)

Alright, pushed an update with that patch. Thanks for the heads-up, @phayman and @Sakus!

Sakus commented on 2022-01-13 21:42 (UTC)

same error as the reports from 2020 and 2021. Fixed by editing "$HOME/.local/lib/python3.10/site-packages/kindlecomicconverter/image.py" according to @phayman's instructions.

Schnouki commented on 2022-01-12 16:03 (UTC)

@phayman I'm afraid I'm not able to reproduce this issue using Python 3.10 and python-pillow 9.0.0. Could you please share the exact settings or command line that you're using, and maybe your source file as well? (you can email it at schnouki@schnouki.net if it's not public)

phayman commented on 2021-12-19 22:54 (UTC)

KCC runs into an issue with python 3.10, but the fix mentioned here works for me. Line 258 of /usr/lib/python3.10/site-packages/kindlecomicconverter/image.py should be changed from

self.image = ImageOps.autocontrast(Image.eval(self.image, lambda a: 255 * (a / 255.) ** gamma))

to

self.image = ImageOps.autocontrast(Image.eval(self.image, lambda a: int(255 * (a / 255.) ** gamma)))