gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnunet-scheme] 07/07: Remove now unused patches.


From: gnunet
Subject: [gnunet-scheme] 07/07: Remove now unused patches.
Date: Sun, 06 Feb 2022 10:53:30 +0100

This is an automated email from the git hooks/post-receive script.

maxime-devos pushed a commit to branch master
in repository gnunet-scheme.

commit eda9192b23b22a3bb87ff6723fc5bf36555db401
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sat Feb 5 20:44:53 2022 +0000

    Remove now unused patches.
    
    * 0001-Fix-non-revealed-port-is-closed-ports.test.patch: Delete.
    * 0001-ice-9-read-Parse-properly.patch: Likewise.
    * .reuse/dep5: Update licensing information.
---
 .reuse/dep5                                        |  8 ---
 ...ix-non-revealed-port-is-closed-ports.test.patch | 35 -------------
 0001-ice-9-read-Parse-properly.patch               | 59 ----------------------
 3 files changed, 102 deletions(-)

diff --git a/.reuse/dep5 b/.reuse/dep5
index 34abeaa..ff910c1 100644
--- a/.reuse/dep5
+++ b/.reuse/dep5
@@ -10,11 +10,3 @@ License: LicenseRef-Verbatim
 Files: doc/configuration.tm doc/contributing.tm doc/distributed-hash-table.tm 
doc/network-size-estimation.tm doc/network-structures.tm 
doc/service-communication.tm doc/scheme-gnunet.tm 
 Copyright: 2021 2022 GNUnet e.V.
 License: GFDL-1.3-no-invariants-or-later
-
-Files: 0001-ice-9-read-Parse-properly.patch
-Copyright: 2021 Maxime Devos
-License: LGPL-3.0-or-later
-
-Files: 0001-Fix-non-revealed-port-is-closed-ports.test.patch
-Copyright: 2020 Rob Browning
-License: LGPL-3.0-or-later
diff --git a/0001-Fix-non-revealed-port-is-closed-ports.test.patch 
b/0001-Fix-non-revealed-port-is-closed-ports.test.patch
deleted file mode 100644
index 0a1798e..0000000
--- a/0001-Fix-non-revealed-port-is-closed-ports.test.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From ac8dc55ebbd43306eb54989f096a6814dadda974 Mon Sep 17 00:00:00 2001
-From: Rob Browning <rlb@defaultvalue.org>
-Date: Sat, 19 Sep 2020 14:09:04 -0500
-Subject: [PATCH] Fix "non-revealed port is closed" ports.test
-
-Don't close the test port's file descriptor because the port still has a
-reference to it, and could still close it at any time when finally
-garbage collected.  This did soemetimes break subsequent tests.
-
-Bug: https://debbugs.gnu.org/43521
----
- test-suite/tests/ports.test | 7 ++++---
- 1 file changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/test-suite/tests/ports.test b/test-suite/tests/ports.test
-index 31fb2b0a8..9dca62df8 100644
---- a/test-suite/tests/ports.test
-+++ b/test-suite/tests/ports.test
-@@ -623,9 +623,10 @@
-         (seek fdes 0 SEEK_CUR)
- 
-         ;; If we get here, it might be because PORT was not GC'd, we
--        ;; don't know (and we can't use a guardian because it would keep
--        ;; PORT alive.)
--        (close-fdes fdes)
-+        ;; don't know, and we can't use a guardian because it would keep
-+        ;; PORT alive, and we can't close the descriptor because
-+        ;; subseuqent opens may re-use it, and then if this port is
-+        ;; garbage collected, it'll close the descriptor unexpectedly.
-         (throw 'unresolved))
-       (lambda args
-         (system-error-errno args)))))
--- 
-2.32.0
-
diff --git a/0001-ice-9-read-Parse-properly.patch 
b/0001-ice-9-read-Parse-properly.patch
deleted file mode 100644
index 2ff1c7d..0000000
--- a/0001-ice-9-read-Parse-properly.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From 40b0b29c05d521cd8901988fa2bc71547f917f48 Mon Sep 17 00:00:00 2001
-From: Maxime Devos <maximedevos@telenet.be>
-Date: Sun, 18 Jul 2021 19:59:32 +0200
-Subject: [PATCH] ice-9/read: Parse #{}}# properly.
-
-This is a regression since Guile 3.0.2 and breaks compilation
-of a Guile library.
-
-* module/ice-9/read.scm
-  (%read)[read-parenthesized]: When SAW-BRACE? is #t but CH isn't
-  #\#, don't eat CH.
-* test-suite/tests/reader.test
-  ("#{}#): Add four test cases.
----
- module/ice-9/read.scm        | 7 +++++--
- test-suite/tests/reader.test | 5 +++++
- 2 files changed, 10 insertions(+), 2 deletions(-)
-
-diff --git a/module/ice-9/read.scm b/module/ice-9/read.scm
-index ac407739f..283933064 100644
---- a/module/ice-9/read.scm
-+++ b/module/ice-9/read.scm
-@@ -556,12 +556,15 @@
-     (string->symbol
-      (list->string
-       (let lp ((saw-brace? #f))
--        (let ((ch (next-not-eof)))
-+        (let lp/inner ((ch (next-not-eof))
-+                       (saw-brace? saw-brace?))
-           (cond
-            (saw-brace?
-             (if (eqv? ch #\#)
-                 '()
--                (cons #\} (lp #f))))
-+                ;; Don't eat CH, see
-+                ;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49623>.
-+                (cons #\} (lp/inner ch #f))))
-            ((eqv? ch #\})
-             (lp #t))
-            ((eqv? ch #\\)
-diff --git a/test-suite/tests/reader.test b/test-suite/tests/reader.test
-index 1481a0a5d..ad7c6d575 100644
---- a/test-suite/tests/reader.test
-+++ b/test-suite/tests/reader.test
-@@ -536,6 +536,11 @@
- 
- (with-test-prefix "#{}#"
-   (pass-if (equal? (read-string "#{}#") '#{}#))
-+  ;; See <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=49623>
-+  (pass-if (equal? (read-string "#{}}#") (string->symbol "}")))
-+  (pass-if (equal? (read-string "#{}}}#") (string->symbol "}}")))
-+  (pass-if (equal? (read-string "#{{}}#") (string->symbol "{}")))
-+  (pass-if (equal? (read-string "#{{}b}#") (string->symbol "{}b")))
-   (pass-if (not (equal? (read-string "(a #{.}# b)") '(a . b))))
-   (pass-if (equal? (read-string "#{a}#") 'a))
-   (pass-if (equal? (read-string "#{a b}#") '#{a b}#))
--- 
-2.32.0
-

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]