mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
Compare commits
5 commits
e68ec94fdb
...
edb31b3c80
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
edb31b3c80 | ||
|
|
da55841cd9 | ||
|
|
6a62ff0170 | ||
|
|
de4a3116b2 | ||
|
|
4b9b2595e4 |
7 changed files with 617 additions and 45 deletions
|
|
@ -2072,7 +2072,6 @@ dist_patch_DATA = \
|
||||||
%D%/packages/patches/python-chai-drop-python2.patch \
|
%D%/packages/patches/python-chai-drop-python2.patch \
|
||||||
%D%/packages/patches/python-clarabel-blas.patch \
|
%D%/packages/patches/python-clarabel-blas.patch \
|
||||||
%D%/packages/patches/python-docrepr-fix-tests.patch \
|
%D%/packages/patches/python-docrepr-fix-tests.patch \
|
||||||
%D%/packages/patches/python-feedparser-missing-import.patch \
|
|
||||||
%D%/packages/patches/python-gpg-setup-72.patch \
|
%D%/packages/patches/python-gpg-setup-72.patch \
|
||||||
%D%/packages/patches/python-hdmedians-replace-nose.patch \
|
%D%/packages/patches/python-hdmedians-replace-nose.patch \
|
||||||
%D%/packages/patches/python-louvain-fix-test.patch \
|
%D%/packages/patches/python-louvain-fix-test.patch \
|
||||||
|
|
|
||||||
|
|
@ -29417,7 +29417,7 @@ running into parallelism problems when having to change directory.")
|
||||||
(define-public sbcl-simple-matrix
|
(define-public sbcl-simple-matrix
|
||||||
(package
|
(package
|
||||||
(name "sbcl-simple-matrix")
|
(name "sbcl-simple-matrix")
|
||||||
(version "3.10")
|
(version "3.12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
|
@ -29426,7 +29426,7 @@ running into parallelism problems when having to change directory.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name "cl-simple-matrix" version))
|
(file-name (git-file-name "cl-simple-matrix" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04aysbpbwadqsk1sva9iy59mf8gwpf1zb1nmf7ha9c0db2g2hipj"))))
|
(base32 "0kmwxq01gbbblmpkacwzg7i3x8dddlkfkvi57ipa4njsfd3pss4v"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(native-inputs (list sbcl-fiveam))
|
(native-inputs (list sbcl-fiveam))
|
||||||
(synopsis "Matrix library for Common Lisp")
|
(synopsis "Matrix library for Common Lisp")
|
||||||
|
|
@ -29483,7 +29483,7 @@ library are feedforward neural networks trained using backpropagation.")
|
||||||
(define-public sbcl-simple-optimization
|
(define-public sbcl-simple-optimization
|
||||||
(package
|
(package
|
||||||
(name "sbcl-simple-optimization")
|
(name "sbcl-simple-optimization")
|
||||||
(version "1.2")
|
(version "2.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
|
@ -29492,7 +29492,7 @@ library are feedforward neural networks trained using backpropagation.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name "cl-simple-optimization" version))
|
(file-name (git-file-name "cl-simple-optimization" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "197iq6b7g0zdfz6nqyx69cvp6j39ax4aijc8x3w71rmmlfps515k"))))
|
(base32 "0hfqz960vj510cbx8p7g677mqbabzf6s9l8mzd0cp6f2gaz0dm00"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(native-inputs (list sbcl-fiveam))
|
(native-inputs (list sbcl-fiveam))
|
||||||
(inputs (list sbcl-simple-matrix))
|
(inputs (list sbcl-simple-matrix))
|
||||||
|
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
Since feedparser messes with Python’s internals by assigning
|
|
||||||
to __code__ it needs to import SGMLParseError too. It also
|
|
||||||
expects SGMLParseError, which was turned into AssertionError by
|
|
||||||
https://github.com/python/cpython/commit/e34bbfd61f405eef89e8aa50672b0b25022de320
|
|
||||||
|
|
||||||
--- feedparser-6.0.10/feedparser/sgml.py.orig 2023-03-18 09:24:50.976316932 +0100
|
|
||||||
+++ feedparser-6.0.10/feedparser/sgml.py 2023-03-18 09:26:32.971928811 +0100
|
|
||||||
@@ -28,6 +28,7 @@
|
|
||||||
import re
|
|
||||||
|
|
||||||
import sgmllib
|
|
||||||
+from sgmllib import SGMLParseError
|
|
||||||
|
|
||||||
__all__ = [
|
|
||||||
'sgmllib',
|
|
||||||
@@ -41,6 +42,7 @@
|
|
||||||
'shorttagopen',
|
|
||||||
'starttagopen',
|
|
||||||
'endbracket',
|
|
||||||
+ 'SGMLParseError',
|
|
||||||
]
|
|
||||||
|
|
||||||
# sgmllib defines a number of module-level regular expressions that are
|
|
||||||
--- feedparser-6.0.10/feedparser/html.py.orig 2023-03-18 09:32:03.647114745 +0100
|
|
||||||
+++ feedparser-6.0.10/feedparser/html.py 2023-03-18 09:46:05.021142671 +0100
|
|
||||||
@@ -349,7 +349,7 @@
|
|
||||||
|
|
||||||
try:
|
|
||||||
return sgmllib.SGMLParser.parse_declaration(self, i)
|
|
||||||
- except sgmllib.SGMLParseError:
|
|
||||||
+ except AssertionError:
|
|
||||||
# Escape the doctype declaration and continue parsing.
|
|
||||||
self.handle_data('<')
|
|
||||||
return i+1
|
|
||||||
|
|
@ -189,7 +189,7 @@ it.")
|
||||||
(define-public trealla
|
(define-public trealla
|
||||||
(package
|
(package
|
||||||
(name "trealla")
|
(name "trealla")
|
||||||
(version "2.89.7")
|
(version "2.89.10")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
|
@ -198,7 +198,7 @@ it.")
|
||||||
(url "https://github.com/trealla-prolog/trealla")
|
(url "https://github.com/trealla-prolog/trealla")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0z3zx66v1qx80b97vmb8hhpb52jjbjs9rfz31myw6mf2fsgqb2b7"))
|
(base32 "169r9bnym6rfz19m7nk3fyfxw4izgacvn28zrfzds4lmy3jgxpqq"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -44,6 +44,7 @@
|
||||||
;;; Copyright © 2024, 2025-2026 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2024, 2025-2026 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
;;; Copyright © 2025 Roman Scherer <roman@burningswell.com>
|
;;; Copyright © 2025 Roman Scherer <roman@burningswell.com>
|
||||||
;;; Copyright © 2025 Liam Hupfer <liam@hpfr.net>
|
;;; Copyright © 2025 Liam Hupfer <liam@hpfr.net>
|
||||||
|
;;; Copyright © 2026 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
|
@ -262,6 +263,29 @@ Forget screen recording apps and blurry video. Enjoy a lightweight, purely
|
||||||
text-based approach to terminal recording.")
|
text-based approach to terminal recording.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public asciinema-agg
|
||||||
|
(package
|
||||||
|
(name "asciinema-agg")
|
||||||
|
(home-page "https://github.com/asciinema/agg")
|
||||||
|
(version "1.7.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "04vbj7mmn8cdgrh1563ghadfanpw4ga1jbm2i7jnp6m69qyafiz9"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments (list #:install-source? #f))
|
||||||
|
(inputs (cargo-inputs 'asciinema-agg))
|
||||||
|
(synopsis "Asciinema gif generator")
|
||||||
|
(description
|
||||||
|
"Agg is a command-line tool for generating animated GIF files from
|
||||||
|
asciinema-created terminal session recordings.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
|
||||||
(define-public libtsm
|
(define-public libtsm
|
||||||
(let ((commit "f70e37982f382b03c6939dac3d5f814450bda253")
|
(let ((commit "f70e37982f382b03c6939dac3d5f814450bda253")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
|
||||||
|
|
@ -5558,20 +5558,19 @@ Integration Center (4DN-DCIC).")
|
||||||
(define-public python-feedparser
|
(define-public python-feedparser
|
||||||
(package
|
(package
|
||||||
(name "python-feedparser")
|
(name "python-feedparser")
|
||||||
(version "6.0.11")
|
(version "6.0.12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "feedparser" version ".tar.gz"))
|
(uri (pypi-uri "feedparser" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1mc4856draxac5s7acywq060a0awng195cpbs1js1wn6cixl1l69"))
|
(base32 "0a22z6jx9lhw5glfb2nxf77bq9nfa0xqs3yy3rfyzs731blnrxv4"))))
|
||||||
(patches (search-patches "python-feedparser-missing-import.patch"))))
|
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:test-backend #~'custom
|
#:test-backend #~'custom
|
||||||
#:test-flags #~(list "tests/runtests.py")))
|
#:test-flags #~(list "tests/runtests.py")))
|
||||||
(native-inputs (list python-setuptools))
|
(native-inputs (list python-setuptools python-wheel))
|
||||||
(propagated-inputs (list python-sgmllib3k))
|
(propagated-inputs (list python-sgmllib3k))
|
||||||
(home-page "https://github.com/kurtmckee/feedparser")
|
(home-page "https://github.com/kurtmckee/feedparser")
|
||||||
(synopsis "Parse feeds in Python")
|
(synopsis "Parse feeds in Python")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue