File: 0001-Build-in-offline-mode-with-local-repo.patch

package info (click to toggle)
leiningen-clojure 2.9.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,348 kB
  • sloc: xml: 881; sh: 770; lisp: 46; makefile: 34; java: 16
file content (20 lines) | stat: -rw-r--r-- 598 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Elana Hashman <ehashman@debian.org>
Date: Thu, 21 Dec 2017 18:09:35 +0000
Subject: Build in offline mode with local repo

---
 project.clj | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/project.clj b/project.clj
index 5660644..524a362 100644
--- a/project.clj
+++ b/project.clj
@@ -38,4 +38,6 @@
                    :offline (comp (partial not-any? identity)
                                   (juxt :online :disabled))}
   :source-paths ["leiningen-core/src" "src"]
-  :eval-in :leiningen)
+  :eval-in :leiningen
+  :offline? true
+  :local-repo "debian/maven-repo")