Codebase list kitchensink-clojure / f6a6ea0
Removed 0001-maint-Fix-Clojure-1.9-warnings.patch (applied upstream). Thomas Goirand 3 years ago
3 changed file(s) with 1 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
77 - Fixed VCS URLs.
88 - Change Maintainer field.
99 - Rework git repository from scratch using upstream as base.
10 * Removed 0001-maint-Fix-Clojure-1.9-warnings.patch (applied upstream).
1011
1112 -- Thomas Goirand <zigo@debian.org> Wed, 04 Nov 2020 22:08:07 +0100
1213
+0
-29
debian/patches/0001-maint-Fix-Clojure-1.9-warnings.patch less more
0 From 648486306882013f383baf45df680d970d382a4a Mon Sep 17 00:00:00 2001
1 From: Russell Mull <russell.mull@puppetlabs.com>
2 Date: Tue, 26 Sep 2017 13:59:08 -0700
3 Subject: [PATCH] (maint) Fix Clojure 1.9 warnings
4
5 In verison 1.9, clojure gets the boolean? and uuid? predicates in clojure.core.
6 Exclude these from kitchensink.core to avoid duplicate definition warnings.
7 ---
8 CHANGELOG.md | 7 +++++++
9 src/puppetlabs/kitchensink/core.clj | 1 +
10 2 files changed, 8 insertions(+)
11 ---
12 Note: CHANGELOG.md part skipped in this patch.
13
14 diff --git a/src/puppetlabs/kitchensink/core.clj b/src/puppetlabs/kitchensink/core.clj
15 index d3d9f68..2ce0f11 100644
16 --- a/src/puppetlabs/kitchensink/core.clj
17 +++ b/src/puppetlabs/kitchensink/core.clj
18 @@ -5,6 +5,7 @@
19 ;; altogether. But who has time for that?
20
21 (ns puppetlabs.kitchensink.core
22 + (:refer-clojure :exclude [boolean? uuid?])
23 (:import [org.ini4j Ini Config BasicProfileSection]
24 [javax.naming.ldap LdapName]
25 [java.io StringWriter Reader File])
26 --
27 2.11.0
28
+0
-1
debian/patches/series less more
0 0001-maint-Fix-Clojure-1.9-warnings.patch