Package Details: comictagger 1.5.5-2

Git Clone URL: https://aur.archlinux.org/comictagger.git (read-only, click to copy)
Package Base: comictagger
Description: Application for writing metadata to digital comics, written in Python and PyQt
Upstream URL: https://github.com/comictagger/comictagger
Licenses: Apache
Submitter: loathingkernel
Maintainer: loathingkernel (exu)
Last Packager: loathingkernel
Votes: 2
Popularity: 0.000015
First Submitted: 2020-11-28 15:25 (UTC)
Last Updated: 2023-05-23 23:24 (UTC)

Latest Comments

1 2 Next › Last »

loathingkernel commented on 2022-12-28 15:24 (UTC) (edited on 2022-12-28 15:26 (UTC) by loathingkernel)

@RealStickman I have added you as a co-maintainer, feel free to push your updated PKGBUILD

Remember to add yourself as a co-maintainer to the PKGBUILD file too

exu commented on 2022-12-28 14:02 (UTC) (edited on 2022-12-28 14:06 (UTC) by exu)

@loathingkernel I'm willing to co-maintain. I also updated the PKGBUILD and .SRCINFO to 1.5.5, see below.

Edit: simple git-diff that's hopefully less cluttered

diff --git a/.SRCINFO b/.SRCINFO
index 75b4901..60dd063 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
 pkgbase = comictagger
    pkgdesc = Application for writing metadata to digital comics, written in Python and PyQt
-   pkgver = 1.4.8
+   pkgver = 1.5.5
    pkgrel = 1
    url = https://github.com/comictagger/comictagger
    arch = any
@@ -11,6 +11,7 @@ pkgbase = comictagger
    makedepends = python-wheel
    makedepends = git
    depends = python
+   depends = python-appdirs
    depends = python-beautifulsoup4
    depends = python-importlib-metadata
    depends = python-natsort
@@ -18,14 +19,15 @@ pkgbase = comictagger
    depends = python-pillow
    depends = python-py7zr
    depends = python-pycountry
+   depends = python-pyicu
+   depends = python-rapidfuzz
    depends = python-requests
    depends = python-text2digits
-   depends = python-thefuzz
    depends = python-typing_extensions
    depends = python-wordninja
    depends = python-unrar-cffi
    depends = python-pyqt5
-   source = git+https://github.com/comictagger/comictagger.git#tag=1.4.8
+   source = git+https://github.com/comictagger/comictagger.git#tag=1.5.5
    sha256sums = SKIP

 pkgname = comictagger
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ba5ac68
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*.zst
+/comictagger/
+/pkg/
+/src/
diff --git a/PKGBUILD b/PKGBUILD
index 6d32c53..a98f1a8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,14 @@
 # Maintainer: loathingkernel <loathingkernel _a_ gmail _d_ com>

 pkgname=comictagger
-pkgver=1.4.8
+pkgver=1.5.5
 pkgrel=1
 pkgdesc='Application for writing metadata to digital comics, written in Python and PyQt'
 arch=(any)
 url='https://github.com/comictagger/comictagger'
 license=(Apache)
 depends=(python
+         python-appdirs
          python-beautifulsoup4
          python-importlib-metadata
          python-natsort
@@ -15,9 +16,10 @@ depends=(python
          python-pillow
          python-py7zr
          python-pycountry
+         python-pyicu
+         python-rapidfuzz
          python-requests
          python-text2digits
-         python-thefuzz
          python-typing_extensions
          python-wordninja
          python-unrar-cffi
@@ -27,7 +29,7 @@ makedepends=(python-{build,installer}
              python-setuptools-scm
              python-wheel)
 makedepends+=(git)
-_tag=1.4.8
+_tag=1.5.5
 source=(git+https://github.com/comictagger/comictagger.git#tag=$_tag)
 sha256sums=('SKIP')

loathingkernel commented on 2022-10-26 15:27 (UTC)

Looking for co-maintainers as I don't regularly use this package.

brolyxxx commented on 2022-04-16 14:02 (UTC)

@loathingkernel all good now, thanks for maintaining this package

loathingkernel commented on 2022-04-16 11:50 (UTC)

@brolyxxx should be fixed, please update and try again

brolyxxx commented on 2022-04-16 09:31 (UTC)

Hi, the package keeps crashing at startup with the following message:

from comictaggerlib import ctversion
ImportError: cannot import name 'ctversion' from 'comictaggerlib' (/usr/lib/python3.10/site-packages/comictaggerlib/__init__.py)

I tried to add more makedepends as suggested by lordwelch on github (issue [#267] (https://github.com/comictagger/comictagger/issues/267)) but the error persists.

Is anyone able to run this program?

quentinhill commented on 2022-01-30 15:37 (UTC)

I reached out to comictagger@gmail.com asking for clarification between the two repos, and who is the current active maintainer. If/when I hear back, I will update here.

loathingkernel commented on 2022-01-30 11:41 (UTC)

I don't really understand what is going on with the two repositories. Some stuff from lordwelch is being merged in the commictagger repo, some aren't. The versions are completely different. If anyone knows, please clear it up for me.

hzu commented on 2021-12-23 08:49 (UTC)

By the way, you might want to limit the Python version to 3.6/3.7 as it does not work at all with Python 3.10 now that Arch have moved over to Python 3.10. The comictagger wiki also says to use 3.6 or 3.7. (see: https://github.com/comictagger/comictagger/wiki/Installation)