Fix Jerboa prelude import conflicts for macOS build

ober

f59d7c753a7275a91572f2beaf29fa17adf06c5e

diff --git a/gitsafe/allowlist.ss b/gitsafe/allowlist.ss
index 0fe9d42..ac21ae1 100644
--- a/gitsafe/allowlist.ss
+++ b/gitsafe/allowlist.ss
@@ -13,7 +13,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std pregexp)
           (std misc ports)
           (std misc string)
diff --git a/gitsafe/config.ss b/gitsafe/config.ss
index 78b7bf0..ec04de5 100644
--- a/gitsafe/config.ss
+++ b/gitsafe/config.ss
@@ -22,7 +22,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std text json)
           (std misc ports)
           (std misc string))
diff --git a/gitsafe/entropy.ss b/gitsafe/entropy.ss
index f57f4f9..7798271 100644
--- a/gitsafe/entropy.ss
+++ b/gitsafe/entropy.ss
@@ -15,7 +15,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude))
+           (except (jerboa prelude) meta atom?))
 
   ;; --- Thresholds ---
   (def *entropy-threshold-hex*     3.0)
diff --git a/gitsafe/git.ss b/gitsafe/git.ss
index ef7867d..f2e5ce1 100644
--- a/gitsafe/git.ss
+++ b/gitsafe/git.ss
@@ -23,7 +23,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std pregexp)
           (std misc process)
           (std misc string)
diff --git a/gitsafe/main-binary.ss b/gitsafe/main-binary.ss
index 3117c8c..8561f92 100644
--- a/gitsafe/main-binary.ss
+++ b/gitsafe/main-binary.ss
@@ -12,7 +12,7 @@
                 iota 1+ 1-
                 partition
                 make-date make-time)
-        (jerboa prelude)
+         (except (jerboa prelude) meta atom?)
         (std misc process)
         (std misc ports)
         (gitsafe config)
diff --git a/gitsafe/main.ss b/gitsafe/main.ss
index cce8f0d..edd26b0 100644
--- a/gitsafe/main.ss
+++ b/gitsafe/main.ss
@@ -29,7 +29,7 @@
     (library-directories)))
 
 ;; --- Now we can import gitsafe modules ---
-(import (jerboa prelude)
+ (import (except (jerboa prelude) meta atom?)
         (std misc process)
         (std misc ports)
         (gitsafe config)
diff --git a/gitsafe/output.ss b/gitsafe/output.ss
index 039aa96..e52440d 100644
--- a/gitsafe/output.ss
+++ b/gitsafe/output.ss
@@ -12,7 +12,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std text json)
           (gitsafe scanner))
 
diff --git a/gitsafe/patterns.ss b/gitsafe/patterns.ss
index 81cf5e3..39af509 100644
--- a/gitsafe/patterns.ss
+++ b/gitsafe/patterns.ss
@@ -19,7 +19,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std pregexp))
 
   ;; --- Secret pattern struct ---
diff --git a/gitsafe/scanner.ss b/gitsafe/scanner.ss
index 7874593..92824c4 100644
--- a/gitsafe/scanner.ss
+++ b/gitsafe/scanner.ss
@@ -26,7 +26,7 @@
                   iota 1+ 1-
                   partition
                   make-date make-time)
-          (jerboa prelude)
+           (except (jerboa prelude) meta atom?)
           (std pregexp)
           (std misc string)
           (std misc ports)
diff --git a/test/test-gitsafe.ss b/test/test-gitsafe.ss
index 651725f..ec53544 100644
--- a/test/test-gitsafe.ss
+++ b/test/test-gitsafe.ss
@@ -24,7 +24,7 @@
                 (string-append jerboa-dir "/lib")))
     (library-directories)))
 
-(import (jerboa prelude)
+ (import (except (jerboa prelude) meta atom?)
         (std test)
         (std pregexp)
         (gitsafe entropy)