Package Details: geeqie-git 2.1.r260.gf1c1ccb9-1

Git Clone URL: https://aur.archlinux.org/geeqie-git.git (read-only, click to copy)
Package Base: geeqie-git
Description: Lightweight image viewer
Upstream URL: https://github.com/BestImageViewer/geeqie
Licenses: GPL-2.0-or-later
Conflicts: geeqie
Provides: geeqie
Submitter: Zuf
Maintainer: xiota
Last Packager: xiota
Votes: 43
Popularity: 0.000000
First Submitted: 2012-01-06 16:19 (UTC)
Last Updated: 2024-01-20 08:08 (UTC)

Pinned Comments

xiota commented on 2024-01-21 00:40 (UTC) (edited on 2024-01-21 00:42 (UTC) by xiota)

webp is currently broken. To view webp, or any other unsupported format, enable: Preferences / Advanced / Use external preview extraction.

Create and add the following scripts:

geeqie-identify.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

case "$extension" in
  webp)
    exit 0
    ;;

  *)
    exit 1
    ;;
esac

geeqie-decode.sh

#!/usr/bin/env bash

filename=$(basename -- "$1")
extension="${filename##*.}"

output=$(mktemp --tmpdir geeqie_djxl_XXXXXX.jpg)

case "$extension" in
  webp)
    convert "$1" "$output"
    mv "$output" "$2"
    ;;
esac

Latest Comments

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

JDAturbo commented on 2022-01-25 14:43 (UTC)

Needs pandoc as an added build dependency: ERROR: File pandoc not installed

ipha commented on 2021-09-18 18:14 (UTC)

Good idea. Werror is patched out now.

andrius4669 commented on 2021-09-18 14:09 (UTC)

misc.c: In function ‘open_archive’:
misc.c:442:9: error: ignoring return value of ‘chdir’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
  442 |         chdir(destination_dir);
      |         ^~~~~~~~~~~~~~~~~~~~~~
misc.c:447:9: error: ignoring return value of ‘chdir’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
  447 |         chdir(current_dir);
      |         ^~~~~~~~~~~~~~~~~~

should probably patch out '-Werror' present in configure.ac as things caught by that will eventually get fixed by upstream either way, and it's fragile to compiler version changes.

JDAturbo commented on 2021-07-16 13:31 (UTC)

The source URL should be changed to git+git://git.geeqie.org/geeqie.git.

deadite66 commented on 2021-05-15 11:55 (UTC)

depends: libdjvu needs changing to djvulibre

Ray commented on 2021-01-30 01:25 (UTC)

Geeqie will no longer install in YAY or in pamac. Please update the AUR build. Geeqie is an invaluable tool

rouelle commented on 2020-12-11 04:52 (UTC)

I removed lines 34 and 35 of the PKGBUILD before building the package: 34 --disable-lua \ 35 --disable-pdf

The last commit, on 2020-12-10, makes geeqie perfectly usable in Wayland but you have to check "Use GPU acceleration via Clutter library" in Settings → Image.

The pdf preview is a bitmap of the first page (if multi-page document), better than only having a pdf icon.

shapeshifter commented on 2020-06-18 06:24 (UTC)

Has anyone managed to get this to work under Wayland (sway)? For me, it launches but no image is displayed, just a black or gray background. I can interact with it but the images aren't rendered.

ipha commented on 2020-04-09 20:13 (UTC) (edited on 2020-04-09 20:14 (UTC) by ipha)

The github mirror used to be up to date...

I'll switch it back to the self hosted repo, but it's really unstable. It frequently goes down and when it is up it's incredibly slow, I'm currently cloning at a blazing 15KB/s.

jkl commented on 2020-04-09 18:36 (UTC)

It seems that the geeqie git is not on github, but here: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git