Package Details: comic-dl 2024.02.10-1

Git Clone URL: https://aur.archlinux.org/comic-dl.git (read-only, click to copy)
Package Base: comic-dl
Description: Command line tool to download Comics and Manga from various Manga and Comic sites easily.
Upstream URL: https://github.com/Xonshiz/comic-dl
Licenses: MIT
Submitter: BrainDamage
Maintainer: patlefort
Last Packager: patlefort
Votes: 1
Popularity: 0.000014
First Submitted: 2019-10-12 02:28 (UTC)
Last Updated: 2024-02-10 18:48 (UTC)

Latest Comments

patlefort commented on 2022-09-02 14:04 (UTC)

Fixed. I know beautifulsoup4 is there twice, I'll fix it next update.

captn3m0 commented on 2022-09-02 12:13 (UTC)

phantomjs can be dropped as a dependency (orphan package on AUR, and unmaintained upstream). It hasn't been a requirement for quite some time:

Requirement for Selenium and PhantomJS completely removed [2017.06.12] (https://github.com/Xonshiz/comic-dl/blob/master/Changelog.md)

cfscrape is also no longer a dependency: https://github.com/Xonshiz/comic-dl/commit/72f728bad0227ad28620072d200cc5a4211d82ff

patlefort commented on 2022-04-19 06:48 (UTC)

I've found a way to make it work. Also the versioning changed again upstream.

patlefort commented on 2022-04-11 23:20 (UTC)

I'm not knowledgeable enough in python to fix this package. If somebody else want to take it just tell me. It might be just not updated upstream for python 3.10 yet but I don't know.

patlefort commented on 2021-10-16 19:25 (UTC)

I changed the versioning so to update, reinstall the package.

qubidt commented on 2020-12-20 11:29 (UTC)

The /usr/bin/comic-dl script created by the PKGBUILD breaks arguments before passing it to the python script (and also unnecessarily depends on bash). Fix:

diff --git a/PKGBUILD b/PKGBUILD
index edd56d1..6d59f52 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,8 +14,8 @@ source=("https://github.com/Xonshiz/comic-dl/archive/$pkgver.tar.gz")
 prepare() {
    cd "$srcdir/$pkgname-$pkgver"
    sed --in-place s/"'comic_dl.sites'"/"'comic_dl.sites', 'comic_dl.readcomiconline'"/ setup.py
-   printf '%s\n' '#!/bin/env bash' >> comic-dl
-   printf 'python %s/comic_dl/__main__.py $*' "$(python -c 'import site; print(site.getsitepackages()[0])')" >> comic-dl
+   printf '%s\n' '#!/bin/sh' >> comic-dl
+   printf 'python %s/comic_dl/__main__.py "$@"' "$(python -c 'import site; print(site.getsitepackages()[0])')" >> comic-dl
    chmod +x comic-dl
 }