Package Details: kcc 6.0.0-1

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: 29
Popularity: 0.171549
First Submitted: 2013-09-09 21:19 (UTC)
Last Updated: 2024-04-23 15:26 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

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)))

Schnouki commented on 2020-11-13 15:44 (UTC)

@sunaurus You're absolutely right. Fixed now, thanks a lot! :)

sunaurus commented on 2020-11-04 19:57 (UTC)

I get the following error when building:

==> Starting build()...
Traceback (most recent call last):
  File "setup.py", line 16, in <module>
    import setuptools
ModuleNotFoundError: No module named 'setuptools'
==> ERROR: A failure occurred in build().
    Aborting...

It seems that makedepends=('python-setuptools') is missing: https://wiki.archlinux.org/index.php/Python_package_guidelines#setuptools