From 82c378b0c9e95ec94c40911a23199868f5981d2d Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 26 Jan 2017 19:57:26 -0400 Subject: - Changed the license from MPL 2.0 to MIT. --- luxc/src/lux.clj | 5 ----- luxc/src/lux/analyser.clj | 5 ----- luxc/src/lux/analyser/base.clj | 5 ----- luxc/src/lux/analyser/case.clj | 5 ----- luxc/src/lux/analyser/env.clj | 5 ----- luxc/src/lux/analyser/host.clj | 5 ----- luxc/src/lux/analyser/lambda.clj | 5 ----- luxc/src/lux/analyser/lux.clj | 5 ----- luxc/src/lux/analyser/meta.clj | 5 ----- luxc/src/lux/analyser/module.clj | 5 ----- luxc/src/lux/analyser/parser.clj | 5 ----- luxc/src/lux/analyser/record.clj | 5 ----- luxc/src/lux/base.clj | 5 ----- luxc/src/lux/compiler.clj | 5 ----- luxc/src/lux/compiler/base.clj | 5 ----- luxc/src/lux/compiler/cache.clj | 5 ----- luxc/src/lux/compiler/cache/ann.clj | 5 ----- luxc/src/lux/compiler/cache/type.clj | 5 ----- luxc/src/lux/compiler/case.clj | 5 ----- luxc/src/lux/compiler/host.clj | 5 ----- luxc/src/lux/compiler/io.clj | 5 ----- luxc/src/lux/compiler/lambda.clj | 5 ----- luxc/src/lux/compiler/lux.clj | 5 ----- luxc/src/lux/compiler/module.clj | 5 ----- luxc/src/lux/compiler/parallel.clj | 5 ----- luxc/src/lux/host.clj | 5 ----- luxc/src/lux/host/generics.clj | 5 ----- luxc/src/lux/lexer.clj | 5 ----- luxc/src/lux/lib/loader.clj | 5 ----- luxc/src/lux/optimizer.clj | 4 ---- luxc/src/lux/parser.clj | 5 ----- luxc/src/lux/reader.clj | 5 ----- luxc/src/lux/repl.clj | 5 ----- luxc/src/lux/type.clj | 5 ----- luxc/src/lux/type/host.clj | 5 ----- 35 files changed, 174 deletions(-) (limited to 'luxc/src') diff --git a/luxc/src/lux.clj b/luxc/src/lux.clj index a013d2421..76778346d 100644 --- a/luxc/src/lux.clj +++ b/luxc/src/lux.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux (:gen-class) (:require [lux.base :as & :refer [|let |do return return* |case]] diff --git a/luxc/src/lux/analyser.clj b/luxc/src/lux/analyser.clj index f28d55e23..51b5b4028 100644 --- a/luxc/src/lux/analyser.clj +++ b/luxc/src/lux/analyser.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser (:require (clojure [template :refer [do-template]]) clojure.core.match diff --git a/luxc/src/lux/analyser/base.clj b/luxc/src/lux/analyser/base.clj index e5e793c34..3f95e072a 100644 --- a/luxc/src/lux/analyser/base.clj +++ b/luxc/src/lux/analyser/base.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.base (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/analyser/case.clj b/luxc/src/lux/analyser/case.clj index 8bb5cca35..a37b6ebf3 100644 --- a/luxc/src/lux/analyser/case.clj +++ b/luxc/src/lux/analyser/case.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.case (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/analyser/env.clj b/luxc/src/lux/analyser/env.clj index 5c0133821..90fa39dfb 100644 --- a/luxc/src/lux/analyser/env.clj +++ b/luxc/src/lux/analyser/env.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.env (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/analyser/host.clj b/luxc/src/lux/analyser/host.clj index 8c6b1ac80..d89de457b 100644 --- a/luxc/src/lux/analyser/host.clj +++ b/luxc/src/lux/analyser/host.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.host (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/analyser/lambda.clj b/luxc/src/lux/analyser/lambda.clj index b460a2e18..fdea7521a 100644 --- a/luxc/src/lux/analyser/lambda.clj +++ b/luxc/src/lux/analyser/lambda.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.lambda (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/analyser/lux.clj b/luxc/src/lux/analyser/lux.clj index 2d439dd03..5f3626900 100644 --- a/luxc/src/lux/analyser/lux.clj +++ b/luxc/src/lux/analyser/lux.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.lux (:require (clojure [template :refer [do-template]] [set :as set]) diff --git a/luxc/src/lux/analyser/meta.clj b/luxc/src/lux/analyser/meta.clj index 931558374..120bab1b0 100644 --- a/luxc/src/lux/analyser/meta.clj +++ b/luxc/src/lux/analyser/meta.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.meta (:require (clojure [template :refer [do-template]]) clojure.core.match diff --git a/luxc/src/lux/analyser/module.clj b/luxc/src/lux/analyser/module.clj index 272f37e64..c6a079cab 100644 --- a/luxc/src/lux/analyser/module.clj +++ b/luxc/src/lux/analyser/module.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.module (:refer-clojure :exclude [alias]) (:require (clojure [string :as string] diff --git a/luxc/src/lux/analyser/parser.clj b/luxc/src/lux/analyser/parser.clj index b52abacee..976940701 100644 --- a/luxc/src/lux/analyser/parser.clj +++ b/luxc/src/lux/analyser/parser.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.parser (:require (clojure [template :refer [do-template]]) clojure.core.match diff --git a/luxc/src/lux/analyser/record.clj b/luxc/src/lux/analyser/record.clj index 4b3e9243d..9268f4c22 100644 --- a/luxc/src/lux/analyser/record.clj +++ b/luxc/src/lux/analyser/record.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.analyser.record (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/base.clj b/luxc/src/lux/base.clj index f47677852..bad60bb96 100644 --- a/luxc/src/lux/base.clj +++ b/luxc/src/lux/base.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.base (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/compiler.clj b/luxc/src/lux/compiler.clj index 91dde8898..4792a1809 100644 --- a/luxc/src/lux/compiler.clj +++ b/luxc/src/lux/compiler.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler (:refer-clojure :exclude [compile]) (:require (clojure [string :as string] diff --git a/luxc/src/lux/compiler/base.clj b/luxc/src/lux/compiler/base.clj index 9a990d9fc..e57fc1e2b 100644 --- a/luxc/src/lux/compiler/base.clj +++ b/luxc/src/lux/compiler/base.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.base (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/compiler/cache.clj b/luxc/src/lux/compiler/cache.clj index 3d09a9c88..8ca319d66 100644 --- a/luxc/src/lux/compiler/cache.clj +++ b/luxc/src/lux/compiler/cache.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.cache (:refer-clojure :exclude [load]) (:require [clojure.string :as string] diff --git a/luxc/src/lux/compiler/cache/ann.clj b/luxc/src/lux/compiler/cache/ann.clj index a4dbb1605..5256fa0af 100644 --- a/luxc/src/lux/compiler/cache/ann.clj +++ b/luxc/src/lux/compiler/cache/ann.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.cache.ann (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/compiler/cache/type.clj b/luxc/src/lux/compiler/cache/type.clj index 18440b6fc..6bddef9c1 100644 --- a/luxc/src/lux/compiler/cache/type.clj +++ b/luxc/src/lux/compiler/cache/type.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.cache.type (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/compiler/case.clj b/luxc/src/lux/compiler/case.clj index 1bc87ff9b..aac3b6c98 100644 --- a/luxc/src/lux/compiler/case.clj +++ b/luxc/src/lux/compiler/case.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.case (:require (clojure [set :as set] [template :refer [do-template]]) diff --git a/luxc/src/lux/compiler/host.clj b/luxc/src/lux/compiler/host.clj index 5b8703a51..15413e637 100644 --- a/luxc/src/lux/compiler/host.clj +++ b/luxc/src/lux/compiler/host.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.host (:require (clojure [string :as string] [set :as set] diff --git a/luxc/src/lux/compiler/io.clj b/luxc/src/lux/compiler/io.clj index 6e5aced34..3ee19988f 100644 --- a/luxc/src/lux/compiler/io.clj +++ b/luxc/src/lux/compiler/io.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.io (:require (lux [base :as & :refer [|case |let |do return* return fail*]]) (lux.compiler [base :as &&]) diff --git a/luxc/src/lux/compiler/lambda.clj b/luxc/src/lux/compiler/lambda.clj index 82e4979bb..006476bef 100644 --- a/luxc/src/lux/compiler/lambda.clj +++ b/luxc/src/lux/compiler/lambda.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.lambda (:require (clojure [string :as string] [set :as set] diff --git a/luxc/src/lux/compiler/lux.clj b/luxc/src/lux/compiler/lux.clj index 222c40a9d..e7e274519 100644 --- a/luxc/src/lux/compiler/lux.clj +++ b/luxc/src/lux/compiler/lux.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.lux (:require (clojure [string :as string] [set :as set] diff --git a/luxc/src/lux/compiler/module.clj b/luxc/src/lux/compiler/module.clj index 445876e1f..9ca4e040b 100644 --- a/luxc/src/lux/compiler/module.clj +++ b/luxc/src/lux/compiler/module.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.module (:require (clojure [string :as string] [set :as set] diff --git a/luxc/src/lux/compiler/parallel.clj b/luxc/src/lux/compiler/parallel.clj index 08f780a90..1c4da1a11 100644 --- a/luxc/src/lux/compiler/parallel.clj +++ b/luxc/src/lux/compiler/parallel.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.compiler.parallel (:require (clojure [string :as string] [set :as set] diff --git a/luxc/src/lux/host.clj b/luxc/src/lux/host.clj index 5a9fade72..f0b45723d 100644 --- a/luxc/src/lux/host.clj +++ b/luxc/src/lux/host.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.host (:require (clojure [string :as string] [template :refer [do-template]]) diff --git a/luxc/src/lux/host/generics.clj b/luxc/src/lux/host/generics.clj index 70912f9d0..5dd95bb9b 100644 --- a/luxc/src/lux/host/generics.clj +++ b/luxc/src/lux/host/generics.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.host.generics (:require (clojure [string :as string] [template :refer [do-template]]) diff --git a/luxc/src/lux/lexer.clj b/luxc/src/lux/lexer.clj index 579fc3fad..38fa15cd0 100644 --- a/luxc/src/lux/lexer.clj +++ b/luxc/src/lux/lexer.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.lexer (:require (clojure [template :refer [do-template]] [string :as string]) diff --git a/luxc/src/lux/lib/loader.clj b/luxc/src/lux/lib/loader.clj index 1e160746d..19c5111ec 100644 --- a/luxc/src/lux/lib/loader.clj +++ b/luxc/src/lux/lib/loader.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.lib.loader (:refer-clojure :exclude [load]) (:require (lux [base :as & :refer [|let |do return return* |case]])) diff --git a/luxc/src/lux/optimizer.clj b/luxc/src/lux/optimizer.clj index 88d0a68b3..a3ce2c089 100644 --- a/luxc/src/lux/optimizer.clj +++ b/luxc/src/lux/optimizer.clj @@ -1,7 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. (ns lux.optimizer (:require (lux [base :as & :refer [|let |do return return* |case defvariant]]) (lux.analyser [base :as &a] diff --git a/luxc/src/lux/parser.clj b/luxc/src/lux/parser.clj index 1b56cf213..3323dadfc 100644 --- a/luxc/src/lux/parser.clj +++ b/luxc/src/lux/parser.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.parser (:require [clojure.template :refer [do-template]] clojure.core.match diff --git a/luxc/src/lux/reader.clj b/luxc/src/lux/reader.clj index 43875ed95..6fea32c16 100644 --- a/luxc/src/lux/reader.clj +++ b/luxc/src/lux/reader.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.reader (:require [clojure.string :as string] clojure.core.match diff --git a/luxc/src/lux/repl.clj b/luxc/src/lux/repl.clj index 28f820693..22c2f47d2 100644 --- a/luxc/src/lux/repl.clj +++ b/luxc/src/lux/repl.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.repl (:require clojure.core.match clojure.core.match.array diff --git a/luxc/src/lux/type.clj b/luxc/src/lux/type.clj index 6f91cfa01..cebe60d9c 100644 --- a/luxc/src/lux/type.clj +++ b/luxc/src/lux/type.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.type (:refer-clojure :exclude [deref apply merge bound?]) (:require [clojure.template :refer [do-template]] diff --git a/luxc/src/lux/type/host.clj b/luxc/src/lux/type/host.clj index 0f2ffde63..b255f97c5 100644 --- a/luxc/src/lux/type/host.clj +++ b/luxc/src/lux/type/host.clj @@ -1,8 +1,3 @@ -;; Copyright (c) Eduardo Julian. All rights reserved. -;; This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. -;; If a copy of the MPL was not distributed with this file, -;; You can obtain one at http://mozilla.org/MPL/2.0/. - (ns lux.type.host (:require clojure.core.match clojure.core.match.array -- cgit v1.2.3