GNU bug report logs -
#39378
[PATCH] gnu: Add FIM.
Previous Next
Reported by: Leo Famulari <leo <at> famulari.name>
Date: Fri, 31 Jan 2020 22:53:02 UTC
Severity: normal
Tags: patch
Done: Leo Famulari <leo <at> famulari.name>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 39378 in the body.
You can then email your comments to 39378 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#39378
; Package
guix-patches
.
(Fri, 31 Jan 2020 22:53:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Leo Famulari <leo <at> famulari.name>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 31 Jan 2020 22:53:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/image-viewers.scm (fim): New variable.
---
gnu/packages/image-viewers.scm | 41 ++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm
index 85d3a153e7..51f584dfbb 100644
--- a/gnu/packages/image-viewers.scm
+++ b/gnu/packages/image-viewers.scm
@@ -13,6 +13,7 @@
;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon <at> gmail.com>
;;; Copyright © 2019 Pierre Langlois <pierre.langlois <at> gmx.com>
;;; Copyright © 2020 Peng Mei Yu <pengmeiyu <at> riseup.net>
+;;; Copyright © 2020 Leo Famulari <leo <at> famulari.name>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -40,11 +41,13 @@
#:use-module (guix build-system python)
#:use-module (gnu packages autotools)
#:use-module (gnu packages algebra)
+ #:use-module (gnu packages bison)
#:use-module (gnu packages boost)
#:use-module (gnu packages check)
#:use-module (gnu packages compression)
#:use-module (gnu packages curl)
#:use-module (gnu packages documentation)
+ #:use-module (gnu packages flex)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
@@ -56,6 +59,7 @@
#:use-module (gnu packages graphics)
#:use-module (gnu packages image)
#:use-module (gnu packages imagemagick)
+ #:use-module (gnu packages linux)
#:use-module (gnu packages maths)
#:use-module (gnu packages perl)
#:use-module (gnu packages perl-check)
@@ -63,7 +67,10 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages readline)
+ #:use-module (gnu packages sdl)
#:use-module (gnu packages qt)
+ #:use-module (gnu packages video)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xorg)
#:use-module (gnu packages))
@@ -596,3 +603,37 @@ with tiling window managers. Features include:
@end itemize\n")
(home-page "https://github.com/eXeC64/imv")
(license license:expat)))
+
+(define-public fim
+ (package
+ (name "fim")
+ (version "0.6")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://download.savannah.nongnu.org/releases/"
+ "fbi-improved/fim-" version "-trunk.tar.gz"))
+ (sha256
+ (base32
+ "124b7c4flx5ygmy5sqq0gpvxqzafnknbcj6f45ddnbdxik9lazzp"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("flex" ,flex)
+ ("bison" ,bison)
+ ("perl" ,perl)))
+ (inputs
+ `(("aalib" ,aalib)
+ ("alsa-lib" ,alsa-lib)
+ ("giflib" ,giflib)
+ ("libexif" ,libexif)
+ ("libjpeg" ,libjpeg-8)
+ ("libpng" ,libpng)
+ ("libtiff" ,libtiff)
+ ("libxrandr" ,libxrandr)
+ ("libxrender" ,libxrender)
+ ("readline" ,readline)
+ ("sdl" ,sdl)))
+ (synopsis "Image viewer with framebuffer support")
+ (description "FIM is an image viewer that supports both X and the Linux
+framebuffer.")
+ (home-page "https://www.nongnu.org/fbi-improved/")
+ (license license:gpl2+)))
--
2.25.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#39378
; Package
guix-patches
.
(Fri, 31 Jan 2020 23:28:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 39378 <at> debbugs.gnu.org (full text, mbox):
----- Ursprüngliche Mitteilung -----
> * gnu/packages/image-viewers.scm (fim): New variable.
> ---
> gnu/packages/image-viewers.scm | 41 ++++++++++++++++++++++++++++++++++
> 1 file changed, 41 insertions(+)
>
> diff --git a/gnu/packages/image-viewers.scm
> b/gnu/packages/image-viewers.scm index 85d3a153e7..51f584dfbb 100644
> --- a/gnu/packages/image-viewers.scm
> +++ b/gnu/packages/image-viewers.scm
> @@ -13,6 +13,7 @@
> ;;; Copyright © 2019 Guy Fleury Iteriteka <hoonandon <at> gmail.com>
> ;;; Copyright © 2019 Pierre Langlois <pierre.langlois <at> gmx.com>
> ;;; Copyright © 2020 Peng Mei Yu <pengmeiyu <at> riseup.net>
> +;;; Copyright © 2020 Leo Famulari <leo <at> famulari.name>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -40,11 +41,13 @@
> #:use-module (guix build-system python)
> #:use-module (gnu packages autotools)
> #:use-module (gnu packages algebra)
> + #:use-module (gnu packages bison)
> #:use-module (gnu packages boost)
> #:use-module (gnu packages check)
> #:use-module (gnu packages compression)
> #:use-module (gnu packages curl)
> #:use-module (gnu packages documentation)
> + #:use-module (gnu packages flex)
> #:use-module (gnu packages fontutils)
> #:use-module (gnu packages freedesktop)
> #:use-module (gnu packages gettext)
> @@ -56,6 +59,7 @@
> #:use-module (gnu packages graphics)
> #:use-module (gnu packages image)
> #:use-module (gnu packages imagemagick)
> + #:use-module (gnu packages linux)
> #:use-module (gnu packages maths)
> #:use-module (gnu packages perl)
> #:use-module (gnu packages perl-check)
> @@ -63,7 +67,10 @@
> #:use-module (gnu packages pkg-config)
> #:use-module (gnu packages python)
> #:use-module (gnu packages python-xyz)
> + #:use-module (gnu packages readline)
> + #:use-module (gnu packages sdl)
> #:use-module (gnu packages qt)
> + #:use-module (gnu packages video)
> #:use-module (gnu packages xdisorg)
> #:use-module (gnu packages xorg)
> #:use-module (gnu packages))
> @@ -596,3 +603,37 @@ with tiling window managers. Features include:
> @end itemize\n")
> (home-page "https://github.com/eXeC64/imv")
> (license license:expat)))
> +
> +(define-public fim
> + (package
> + (name "fim")
> + (version "0.6")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append
> "http://download.savannah.nongnu.org/releases/" +
> "fbi-improved/fim-" version "-trunk.tar.gz")) +
> (sha256 + (base32
> +
> "124b7c4flx5ygmy5sqq0gpvxqzafnknbcj6f45ddnbdxik9lazzp")))) +
> (build-system gnu-build-system) + (native-inputs
> + `(("flex" ,flex)
> + ("bison" ,bison)
> + ("perl" ,perl)))
> + (inputs
> + `(("aalib" ,aalib)
> + ("alsa-lib" ,alsa-lib)
> + ("giflib" ,giflib)
> + ("libexif" ,libexif)
> + ("libjpeg" ,libjpeg-8)
> + ("libpng" ,libpng)
> + ("libtiff" ,libtiff)
> + ("libxrandr" ,libxrandr)
> + ("libxrender" ,libxrender)
> + ("readline" ,readline)
> + ("sdl" ,sdl)))
> + (synopsis "Image viewer with framebuffer support")
> + (description "FIM is an image viewer that supports both X and the
> Linux +framebuffer.")
Maybe add to the description that it's quite leightweight still supporting many image formats.
> + (home-page "https://www.nongnu.org/fbi-improved/")
> + (license license:gpl2+)))
> --
> 2.25.0
>
>
>
>
Information forwarded
to
guix-patches <at> gnu.org
:
bug#39378
; Package
guix-patches
.
(Sun, 02 Feb 2020 06:06:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 39378 <at> debbugs.gnu.org (full text, mbox):
On Sat, Feb 01, 2020 at 12:27:09AM +0100, Jonathan Brielmaier wrote:
> > + (synopsis "Image viewer with framebuffer support")
> > + (description "FIM is an image viewer that supports both X and the
> > Linux +framebuffer.")
>
> Maybe add to the description that it's quite leightweight still supporting many image formats.
Perhaps, but I measured some of the image viewers int the same module,
and FIM is in the middle of the pack in terms of being lightweight.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#39378
; Package
guix-patches
.
(Fri, 10 Jul 2020 21:39:02 GMT)
Full text and
rfc822 format available.
Message #14 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Fri, Jan 31, 2020 at 05:51:51PM -0500, Leo Famulari wrote:
> * gnu/packages/image-viewers.scm (fim): New variable.
> ---
> gnu/packages/image-viewers.scm | 41 ++++++++++++++++++++++++++++++++++
> 1 file changed, 41 insertions(+)
Thanks!
> + (inputs
> + `(("aalib" ,aalib)
> + ("alsa-lib" ,alsa-lib)
> + ("giflib" ,giflib)
> + ("libexif" ,libexif)
> + ("libjpeg" ,libjpeg-8)
libjpeg-8 doesn't exist anymore. The package builds fine when this is
replaced by libjpeg-turbo, and it seems to work, too, in my limited
testing. Is such a change reasonable in your opinion?
From the build log:
| use 'inkscape' for SVG files : no
| use 'fig2dev' for FIG files : no
| JP2 (JPEG-2K) file support (JasPer) : no
Is there a specific reason we don't want support for these formats?
Regards,
Jakub Kądziołka
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
Leo Famulari <leo <at> famulari.name>
:
You have taken responsibility.
(Wed, 29 Dec 2021 19:41:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Leo Famulari <leo <at> famulari.name>
:
bug acknowledged by developer.
(Wed, 29 Dec 2021 19:41:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 39378-done <at> debbugs.gnu.org (full text, mbox):
I decided not to continue with this patch, so I'm closing this ticket.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 27 Jan 2022 12:24:12 GMT)
Full text and
rfc822 format available.
This bug report was last modified 3 years and 137 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.