diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2013-09-28 04:22:42 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2013-09-28 04:22:42 +0400 |
commit | 6eb8e9e658484c018e3ca63678538de9d969893d (patch) | |
tree | c20dd44157a942901aa600833d07b7833fea00af | |
parent | 955888d11be6922cc5a11521f7938af345480bf4 (diff) |
Use BSD3 license
-rw-r--r-- | LICENSE | 43 | ||||
-rw-r--r-- | krpc.cabal | 8 | ||||
-rw-r--r-- | src/Remote/KRPC.hs | 4 | ||||
-rw-r--r-- | src/Remote/KRPC/Protocol.hs | 8 | ||||
-rw-r--r-- | src/Remote/KRPC/Scheme.hs | 4 |
5 files changed, 38 insertions, 29 deletions
@@ -1,19 +1,30 @@ | |||
1 | Copyright (c) 2013 Sam T. | 1 | Copyright (c) 2013, Sam Truzjan |
2 | 2 | ||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of | 3 | All rights reserved. |
4 | this software and associated documentation files (the "Software"), to deal in | ||
5 | the Software without restriction, including without limitation the rights to | ||
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
7 | of the Software, and to permit persons to whom the Software is furnished to do | ||
8 | so, subject to the following conditions: | ||
9 | 4 | ||
10 | The above copyright notice and this permission notice shall be included in all | 5 | Redistribution and use in source and binary forms, with or without |
11 | copies or substantial portions of the Software. | 6 | modification, are permitted provided that the following conditions are met: |
12 | 7 | ||
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 8 | * Redistributions of source code must retain the above copyright |
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 9 | notice, this list of conditions and the following disclaimer. |
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 10 | |
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 11 | * Redistributions in binary form must reproduce the above |
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 12 | copyright notice, this list of conditions and the following |
18 | OUT 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 |
19 | SOFTWARE. | 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 | |||
20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
21 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
22 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
23 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
24 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
25 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
26 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
27 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
28 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
29 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
30 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
@@ -1,10 +1,10 @@ | |||
1 | name: krpc | 1 | name: krpc |
2 | version: 0.2.0.0 | 2 | version: 0.2.0.0 |
3 | license: MIT | 3 | license: BSD3 |
4 | license-file: LICENSE | 4 | license-file: LICENSE |
5 | author: Sam T. | 5 | author: Sam Truzjan |
6 | maintainer: Sam T. <pxqr.sta@gmail.com> | 6 | maintainer: Sam Truzjan <pxqr.sta@gmail.com> |
7 | copyright: (c) 2013, Sam T. | 7 | copyright: (c) 2013, Sam Truzjan |
8 | category: Network | 8 | category: Network |
9 | build-type: Simple | 9 | build-type: Simple |
10 | cabal-version: >= 1.10 | 10 | cabal-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 #-} |
20 | module Remote.KRPC.Protocol | 20 | module 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 |