GNU bug report logs -
#52425
[PATCH] gnu: sbcl-aserve: Add HTML5 elements to htmlgen.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 52425 in the body.
You can then email your comments to 52425 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#52425
; Package
guix-patches
.
(Sat, 11 Dec 2021 08:10:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 11 Dec 2021 08:10:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (sbcl-aserve)[origin]: Add patches.
* gnu/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch:
New file.
* gnu/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch:
New file.
---
sbcl-aserve's upstream, Portable AllegroServe, only supports HTML 4
elements. This patch adds support for HTML 5 elements by using patches
obtained from Portable AllegroServe's upstream —
https://github.com/franzinc/aserve/
gnu/packages/lisp-xyz.scm | 14 ++++-
...-fix-bugs-in-rfe12668-implementation.patch | 43 +++++++++++++
...12668-add-HTML-5-elements-to-htmlgen.patch | 63 +++++++++++++++++++
3 files changed, 117 insertions(+), 3 deletions(-)
create mode 100644 gnu/packages/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch
create mode 100644 gnu/packages/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 635f8e48cb..273e65dacd 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17905,10 +17905,11 @@ functions allow Lisp programs to explore the web.")
(define-public sbcl-aserve
;; There does not seem to be proper releases.
- (let ((commit "cac1d6920998ddcbee8310a873414732e707d8e5"))
+ (let ((commit "cac1d6920998ddcbee8310a873414732e707d8e5")
+ (revision "2"))
(package
(name "sbcl-aserve")
- (version (git-version "1.2.50" "1" commit))
+ (version (git-version "1.2.50" revision commit))
(source
(origin
(method git-fetch)
@@ -17919,7 +17920,14 @@ functions allow Lisp programs to explore the web.")
(commit commit)))
(file-name (git-file-name "aserve" version))
(sha256
- (base32 "0ak6mqp84sjr0a7h5svr16vra4bf4fcx6wpir0n88dc1vjwy5xqa"))))
+ (base32 "0ak6mqp84sjr0a7h5svr16vra4bf4fcx6wpir0n88dc1vjwy5xqa"))
+ (patches (search-patches
+ ;; Add HTML5 elements to htmlgen.
+ ;; Adapted from https://github.com/franzinc/aserve/ commits:
+ ;; * e47bd763: "rfe12668: add HTML 5 elements to htmlgen"
+ ;; * 7371ce59: "fix bugs in rfe12668 implementation"
+ "sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch"
+ "sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch"))))
(build-system asdf-build-system/sbcl)
(arguments
`(#:phases
diff --git a/gnu/packages/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch b/gnu/packages/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch
new file mode 100644
index 0000000000..c7a8e05aae
--- /dev/null
+++ b/gnu/packages/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch
@@ -0,0 +1,43 @@
+From 8110ebd55d5bf659cd40dab2df59d80dafdb367a Mon Sep 17 00:00:00 2001
+From: Kevin Layer <layer <at> franz.com>
+Date: Mon, 10 Feb 2014 11:10:42 -0800
+Subject: [PATCH 2/2] fix bugs in rfe12668 implementation
+
+The previous commit added :embed and :keygen but they were already
+there. Resolve this issue.
+
+Change-Id: Ieb962a12880394e67d973835945005446833fab7
+---
+ aserve/htmlgen/htmlgen.cl | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/aserve/htmlgen/htmlgen.cl b/aserve/htmlgen/htmlgen.cl
+index 0c0d6e8..f77d6de 100644
+--- a/aserve/htmlgen/htmlgen.cl
++++ b/aserve/htmlgen/htmlgen.cl
+@@ -658,7 +658,6 @@
+ (def-std-html :dt t nil)
+
+ (def-std-html :em t nil)
+-(def-std-html :embed t nil)
+
+ (def-std-html :fieldset t nil)
+ (def-std-html :font t nil)
+@@ -685,7 +684,6 @@
+ (def-std-html :isindex nil nil)
+
+ (def-std-html :kbd t nil)
+-(def-std-html :keygen nil nil)
+
+ (def-std-html :label t nil)
+ (def-std-html :layer t nil)
+@@ -782,5 +780,5 @@
+ (def-std-html :menuitem t nil)
+ (def-std-html :details t nil)
+ (def-std-html :datalist t nil)
+-(def-std-html :keygen t nil)
++(def-std-html :keygen nil nil)
+ (def-std-html :output t nil)
+--
+2.25.1
+
diff --git a/gnu/packages/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch b/gnu/packages/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch
new file mode 100644
index 0000000000..93962e10ec
--- /dev/null
+++ b/gnu/packages/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch
@@ -0,0 +1,63 @@
+From 940679fb75073a59186099e3dd7fb381e727db6b Mon Sep 17 00:00:00 2001
+From: Kevin Layer <layer <at> franz.com>
+Date: Thu, 31 Oct 2013 04:27:29 -0700
+Subject: [PATCH 1/2] rfe12668: add HTML 5 elements to htmlgen
+
+Add the new elements listed here:
+ http://www.w3.org/TR/html5-diff/#new-elements
+
+Change-Id: I7f64363751130644caf90ecdd65c13175d77ae97
+---
+ aserve/htmlgen/htmlgen.cl | 38 ++++++++++++++++++++++++++++++++++++--
+ 1 file changed, 36 insertions(+), 2 deletions(-)
+
+diff --git a/aserve/htmlgen/htmlgen.cl b/aserve/htmlgen/htmlgen.cl
+index 59248ef..0c0d6e8 100644
+--- a/aserve/htmlgen/htmlgen.cl
++++ b/aserve/htmlgen/htmlgen.cl
+@@ -747,6 +747,40 @@
+
+ (def-std-html :var t nil)
+
+-(def-std-html :wbr nil nil)
+-
+ (def-std-html :xmp t nil)
++
++;; html 5
++
++(def-std-html :section t nil)
++(def-std-html :article t nil)
++(def-std-html :main t nil)
++(def-std-html :aside t nil)
++(def-std-html :hgroup t nil)
++(def-std-html :header t nil)
++(def-std-html :footer t nil)
++(def-std-html :nav t nil)
++(def-std-html :figure t nil)
++(def-std-html :figcaption t nil)
++
++(def-std-html :video t nil)
++(def-std-html :audio t nil)
++(def-std-html :source t nil)
++(def-std-html :track t nil)
++(def-std-html :embed t nil)
++(def-std-html :mark t nil)
++(def-std-html :progress t nil)
++(def-std-html :meter t nil)
++(def-std-html :time t nil)
++(def-std-html :data t nil)
++(def-std-html :dialog t nil)
++(def-std-html :ruby t nil)
++(def-std-html :rt t nil)
++(def-std-html :rp t nil)
++(def-std-html :bdi t nil)
++(def-std-html :wbr nil nil)
++(def-std-html :canvas t nil)
++(def-std-html :menuitem t nil)
++(def-std-html :details t nil)
++(def-std-html :datalist t nil)
++(def-std-html :keygen t nil)
++(def-std-html :output t nil)
+--
+2.25.1
+
base-commit: cfdf66e6bfc463b041965b64fc95174c90f046e0
--
2.25.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#52425
; Package
guix-patches
.
(Sat, 11 Dec 2021 10:41:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 52425 <at> debbugs.gnu.org (full text, mbox):
Foo Chuan Wei <chuanwei.foo <at> hotmail.com> skribis:
> * gnu/packages/lisp-xyz.scm (sbcl-aserve)[origin]: Add patches.
> * gnu/patches/sbcl-aserve-rfe12668-add-HTML-5-elements-to-htmlgen.patch:
> New file.
> * gnu/patches/sbcl-aserve-fix-bugs-in-rfe12668-implementation.patch:
> New file.
> ---
> sbcl-aserve's upstream, Portable AllegroServe, only supports HTML 4
> elements. This patch adds support for HTML 5 elements by using patches
> obtained from Portable AllegroServe's upstream —
> https://github.com/franzinc/aserve/
Have you tried submitting these patches to Portable AllegroServe?
If they accept them we could then use a regular package update instead
of adding patches.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#52425
; Package
guix-patches
.
(Sat, 11 Dec 2021 14:14:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 52425 <at> debbugs.gnu.org (full text, mbox):
On 2021-12-11 10:37 +0000, Guillaume Le Vaillant wrote:
> Have you tried submitting these patches to Portable AllegroServe?
> If they accept them we could then use a regular package update instead
> of adding patches.
In Portable AllegroServe's issue tracker, there is an existing
patch for adding HTML5 elements to htmlgen [1]. Unfortunately, Portable
AllegroServe is more or less abandoned, so the patch was not applied.
[1]: https://sourceforge.net/p/portableaserve/patches/13/
Reply sent
to
Guillaume Le Vaillant <glv <at> posteo.net>
:
You have taken responsibility.
(Sun, 12 Dec 2021 09:30:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Foo Chuan Wei <chuanwei.foo <at> hotmail.com>
:
bug acknowledged by developer.
(Sun, 12 Dec 2021 09:30:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 52425-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Patch pushed as d1072f21ba446fe470b171575f5e3202aef17a04 with shorter
names for the patches, and I also added them to the 'dist_patch_DATA'
list of patches in "gnu/local.mk".
Thanks.
[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
.
(Sun, 09 Jan 2022 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 3 years and 163 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.