GNU bug report logs -
#75726
[PATCH] gnu: Add dillo.
Previous Next
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.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75726 in the body.
You can then email your comments to 75726 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#75726
; Package
guix-patches
.
(Tue, 21 Jan 2025 09:31:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Andy Tai <atai <at> atai.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 21 Jan 2025 09:31:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75726
; Package
guix-patches
.
(Tue, 21 Jan 2025 12:18:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 75726 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Andy Tai <atai <at> atai.org> writes:
> * 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+)))
> +
see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49857 , should add it
to gnu/packages/web-browsers.scm, and maybe you can refer to the
previous synopsis and description.
> +
> (define-public ulfius
> (package
> (name "ulfius")
>
> base-commit: c985075db3e6682d8a5a231c01c770aa5a147f72
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75726
; Package
guix-patches
.
(Tue, 21 Jan 2025 16:46:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 75726 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/web.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
--
2.34.1
Reply sent
to
Z572 <zhengjunjie <at> iscas.ac.cn>
:
You have taken responsibility.
(Wed, 22 Jan 2025 03:01:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Andy Tai <atai <at> atai.org>
:
bug acknowledged by developer.
(Wed, 22 Jan 2025 03:01:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 75726-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (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)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 19 Feb 2025 12:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 22 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.