Codebase list cl-postmodern / 7dc615e
sbcl-2.1.0.patch, simple-date-broken-tests.patch: drop patches, applied upstream Sébastien Villemot 2 years ago
4 changed file(s) with 2 addition(s) and 37 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream snapshot
33 * d/copyright: reflect upstream changes
4 * sbcl-2.1.0.patch, simple-date-broken-tests.patch: drop patches, applied
5 upstream
46
57 -- Sébastien Villemot <sebastien@debian.org> Wed, 08 Dec 2021 11:05:11 +0100
68
+0
-20
debian/patches/sbcl-2.1.0.patch less more
0 Description: The type declamation for BYTE-LENGTH contradicts its
1 default value which trips sbcl 2:2.1.0-1 when inlining. This patch
2 corrects the declamation.
3 Author: Dennis Filder <d.filder@web.de>
4 Bug-Debian: https://bugs.debian.org/980689
5 Applied-Upstream: https://github.com/marijnh/Postmodern/commit/d702405ad617e27509521c3b6fc8806198cf2ead
6 Last-Update: 2021-02-11
7 ---
8 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
9 --- a/cl-postgres/strings-utf-8.lisp
10 +++ b/cl-postgres/strings-utf-8.lisp
11 @@ -13,7 +13,7 @@
12
13 (declaim (inline enc-read-string))
14 (declaim (ftype (function (t &key (:null-terminated t)
15 - (:byte-length unsigned-byte))
16 + (:byte-length fixnum))
17 string)
18 enc-read-string))
19 (defun enc-read-string (input &key null-terminated (byte-length -1))
0 sbcl-2.1.0.patch
1 simple-date-broken-tests.patch
+0
-15
debian/patches/simple-date-broken-tests.patch less more
0 Description: Remove broken test
1 Origin: upstream, https://github.com/marijnh/Postmodern/commit/04725f6761f347cef920062f67e6e01a483ca70c
2 Last-Update: 2021-02-11
3 ---
4 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
5 --- a/simple-date/tests.lisp
6 +++ b/simple-date/tests.lisp
7 @@ -21,7 +21,6 @@
8 (is (= 30 (simple-date::days-in-month 8 2000)))
9 (is (= 31 (simple-date::days-in-month 9 2000)))
10 (is (= 31 (simple-date::days-in-month 10 2000)))
11 - (is (= 29 (simple-date::days-in-month 11 2000)))
12 (is (= 28 (simple-date::days-in-month 11 2001))))
13
14 (defmacro with-random-dates (amount &body body)