GNU bug report logs - #75726
[PATCH] gnu: Add dillo.

Previous Next

Package: guix-patches;

Reported by: Andy Tai <atai <at> atai.org>

Date: Tue, 21 Jan 2025 09:31:02 UTC

Severity: normal

Tags: patch

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Z572 <zhengjunjie <at> iscas.ac.cn>
Cc: tracker <at> debbugs.gnu.org
Subject: bug#75726: closed ([PATCH] gnu: Add dillo.)
Date: Wed, 22 Jan 2025 03:01:02 +0000
[Message part 1 (text/plain, inline)]
Your message dated Wed, 22 Jan 2025 11:00:10 +0800
with message-id <87zfjj1rk5.fsf <at> iscas.ac.cn>
and subject line Re: [bug#75726] [PATCH v2] gnu: Add dillo.
has caused the debbugs.gnu.org bug report #75726,
regarding [PATCH] gnu: Add dillo.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)


-- 
75726: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=75726
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Andy Tai <atai <at> atai.org>
To: guix-patches <at> gnu.org
Cc: Andy Tai <atai <at> atai.org>
Subject: [PATCH] gnu: Add dillo.
Date: Tue, 21 Jan 2025 01:30:23 -0800
* gnu/packages/web.scm (dillo): New variable.

Change-Id: I7adc2c0e79ba2e167cd873bb4d42920bd1af83e8
---
 gnu/packages/web.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 377ba2a36f..586eeeffbc 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -137,6 +137,7 @@ (define-module (gnu packages web)
   #:use-module (gnu packages emacs)
   #:use-module (gnu packages emacs-xyz)
   #:use-module (gnu packages flex)
+  #:use-module (gnu packages fltk)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
   #:use-module (gnu packages gcc)
@@ -218,6 +219,7 @@ (define-module (gnu packages web)
   #:use-module (gnu packages vim)
   #:use-module (gnu packages wget)
   #:use-module (gnu packages xdisorg)
+  #:use-module (gnu packages xorg)
   #:use-module (gnu packages xml)
   #:use-module ((srfi srfi-1) #:select (delete-duplicates)))
 
@@ -9730,6 +9732,39 @@ (define-public yder
 console, a file, syslog, journald, or a callback function.")
     (license license:lgpl2.1)))
 
+(define-public dillo
+  (package
+    (name "dillo")
+    (version "3.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/dillo-browser/dillo")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "19rr09b4xvnz7isng8pzxm5879g3pqvml5v8vh4gbwwn93dnlwpn"))))
+    (build-system gnu-build-system)
+    (native-inputs (list autoconf automake))
+    (inputs (list fltk
+                  fontconfig
+                  openssl
+                  libjpeg-turbo
+                  libpng
+                  libwebp
+                  libxext
+                  libx11
+                  libxfixes
+                  libxft
+                  libxrender
+                  zlib))
+    (home-page "https://dillo-browser.github.io/")
+    (synopsis "Lightweight web browser")
+    (description "Dillo is a lightweight, text-based web browser.")
+    (license license:gpl3+)))
+
+
 (define-public ulfius
   (package
     (name "ulfius")

base-commit: c985075db3e6682d8a5a231c01c770aa5a147f72
-- 
2.34.1



[Message part 3 (message/rfc822, inline)]
From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Andy Tai <atai <at> atai.org>
Cc: 75726-done <at> debbugs.gnu.org
Subject: Re: [bug#75726] [PATCH v2] gnu: Add dillo.
Date: Wed, 22 Jan 2025 11:00:10 +0800
[Message part 4 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:

> * gnu/packages/web.scm (dillo): New variable.

* gnu/packages/web-browsers.scm (dillo): New variable.

>
> Change-Id: I7899fa3d9f213e0e641cea6856af3c2048245d25
> ---
>  gnu/packages/web-browsers.scm | 34 ++++++++++++++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>
> diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
> index d680761f74..c0138eea17 100644
> --- a/gnu/packages/web-browsers.scm
> +++ b/gnu/packages/web-browsers.scm
> @@ -1044,6 +1044,40 @@ (define-public av-98
>  @end itemize")
>      (license license:bsd-2)))
>  
> +(define-public dillo
> +  (package
> +    (name "dillo")
> +    (version "3.2.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/dillo-browser/dillo")
> +             (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "19rr09b4xvnz7isng8pzxm5879g3pqvml5v8vh4gbwwn93dnlwpn"))))
> +    (build-system gnu-build-system)
> +    (native-inputs (list autoconf automake))
> +    (inputs (list fltk
> +                  fontconfig
> +                  openssl
> +                  libjpeg-turbo
> +                  libpng
> +                  libwebp
> +                  libxext
> +                  libx11
> +                  libxfixes
> +                  libxft
> +                  libxrender
> +                  zlib))
> +    (home-page "https://dillo-browser.github.io/")
> +    (synopsis "Very small and fast graphical web browser")
> +    (description
> +     "Dillo is a minimalistic web browser particularly intended for
> +-older or slower computers and embedded systems.")
> +    (license license:gpl3+)))
> +
>  (define-public edbrowse
>    (package
>      (name "edbrowse")
>
> base-commit: c985075db3e6682d8a5a231c01c770aa5a147f72
pushed, closing.
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 179 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.