summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-09-28 04:22:42 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-09-28 04:22:42 +0400
commit6eb8e9e658484c018e3ca63678538de9d969893d (patch)
treec20dd44157a942901aa600833d07b7833fea00af
parent955888d11be6922cc5a11521f7938af345480bf4 (diff)
Use BSD3 license
-rw-r--r--LICENSE43
-rw-r--r--krpc.cabal8
-rw-r--r--src/Remote/KRPC.hs4
-rw-r--r--src/Remote/KRPC/Protocol.hs8
-rw-r--r--src/Remote/KRPC/Scheme.hs4
5 files changed, 38 insertions, 29 deletions
diff --git a/LICENSE b/LICENSE
index dd0c3581..4c30139e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,19 +1,30 @@
1Copyright (c) 2013 Sam T. 1Copyright (c) 2013, Sam Truzjan
2 2
3Permission is hereby granted, free of charge, to any person obtaining a copy of 3All rights reserved.
4this software and associated documentation files (the "Software"), to deal in
5the Software without restriction, including without limitation the rights to
6use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7of the Software, and to permit persons to whom the Software is furnished to do
8so, subject to the following conditions:
9 4
10The above copyright notice and this permission notice shall be included in all 5Redistribution and use in source and binary forms, with or without
11copies or substantial portions of the Software. 6modification, are permitted provided that the following conditions are met:
12 7
13THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 8 * Redistributions of source code must retain the above copyright
14IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 9 notice, this list of conditions and the following disclaimer.
15FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 10
16AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 11 * Redistributions in binary form must reproduce the above
17LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 12 copyright notice, this list of conditions and the following
18OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 13 disclaimer in the documentation and/or other materials provided
19SOFTWARE. 14 with the distribution.
15
16 * Neither the name of Sam Truzjan nor the names of other
17 contributors may be used to endorse or promote products derived
18 from this software without specific prior written permission.
19
20THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/krpc.cabal b/krpc.cabal
index fd8400e5..8db1c203 100644
--- a/krpc.cabal
+++ b/krpc.cabal
@@ -1,10 +1,10 @@
1name: krpc 1name: krpc
2version: 0.2.0.0 2version: 0.2.0.0
3license: MIT 3license: BSD3
4license-file: LICENSE 4license-file: LICENSE
5author: Sam T. 5author: Sam Truzjan
6maintainer: Sam T. <pxqr.sta@gmail.com> 6maintainer: Sam Truzjan <pxqr.sta@gmail.com>
7copyright: (c) 2013, Sam T. 7copyright: (c) 2013, Sam Truzjan
8category: Network 8category: Network
9build-type: Simple 9build-type: Simple
10cabal-version: >= 1.10 10cabal-version: >= 1.10
diff --git a/src/Remote/KRPC.hs b/src/Remote/KRPC.hs
index be5673d8..3659ec66 100644
--- a/src/Remote/KRPC.hs
+++ b/src/Remote/KRPC.hs
@@ -1,6 +1,6 @@
1-- | 1-- |
2-- Copyright : (c) Sam T. 2013 2-- Copyright : (c) Sam Truzjan 2013
3-- License : MIT 3-- License : BSD3
4-- Maintainer : pxqr.sta@gmail.com 4-- Maintainer : pxqr.sta@gmail.com
5-- Stability : experimental 5-- Stability : experimental
6-- Portability : portable 6-- Portability : portable
diff --git a/src/Remote/KRPC/Protocol.hs b/src/Remote/KRPC/Protocol.hs
index a569066f..06e54f78 100644
--- a/src/Remote/KRPC/Protocol.hs
+++ b/src/Remote/KRPC/Protocol.hs
@@ -1,6 +1,6 @@
1-- | 1-- |
2-- Copyright : (c) Sam T. 2013 2-- Copyright : (c) Sam Truzjan 2013
3-- License : MIT 3-- License : BSD3
4-- Maintainer : pxqr.sta@gmail.com 4-- Maintainer : pxqr.sta@gmail.com
5-- Stability : experimental 5-- Stability : experimental
6-- Portability : portable 6-- Portability : portable
@@ -18,9 +18,7 @@
18{-# LANGUAGE FunctionalDependencies #-} 18{-# LANGUAGE FunctionalDependencies #-}
19{-# LANGUAGE DefaultSignatures #-} 19{-# LANGUAGE DefaultSignatures #-}
20module Remote.KRPC.Protocol 20module Remote.KRPC.Protocol
21 ( 21 ( -- * Error
22
23 -- * Error
24 KError(..), ErrorCode, errorCode, mkKError 22 KError(..), ErrorCode, errorCode, mkKError
25 23
26 -- * Query 24 -- * Query
diff --git a/src/Remote/KRPC/Scheme.hs b/src/Remote/KRPC/Scheme.hs
index 1cf970ea..ebdc7740 100644
--- a/src/Remote/KRPC/Scheme.hs
+++ b/src/Remote/KRPC/Scheme.hs
@@ -1,6 +1,6 @@
1-- | 1-- |
2-- Copyright : (c) Sam T. 2013 2-- Copyright : (c) Sam Truzjan 2013
3-- License : MIT 3-- License : BSD3
4-- Maintainer : pxqr.sta@gmail.com 4-- Maintainer : pxqr.sta@gmail.com
5-- Stability : experimental 5-- Stability : experimental
6-- Portability : portable 6-- Portability : portable