Skip to content

Commit 708b2f8

Browse files
authored
Merge pull request #5 from rabbitholecomputing/dev_relicense
Relicense to MIT
2 parents 6ceefd8 + 1480b37 commit 708b2f8

6 files changed

Lines changed: 42 additions & 713 deletions

File tree

GPL-3.0.md

Lines changed: 0 additions & 675 deletions
This file was deleted.

LICENSE.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
## CUEParser - Copyright (c) 2023 Rabbit Hole Computing™
22

3-
**The CUEParser library is licensed under the GPL version 3 or any later version.**
3+
**The CUEParser library is licensed under the MIT license.**
44

5-
https://www.gnu.org/licenses/gpl-3.0.html
5+
Copyright (c) 2023 Rabbit Hole Computing
66

7-
This program is free software: you can redistribute it and/or modify
8-
it under the terms of the GNU General Public License as published by
9-
the Free Software Foundation, either version 3 of the License, or
10-
(at your option) any later version. 
7+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
118

12-
This program is distributed in the hope that it will be useful,
13-
but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15-
GNU General Public License for more details. 
9+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
11+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1612

17-
The full GPL-3.0 license text is included in [GPL-3.0.md](GPL-3.0.md).

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ For usage examples, checkout:
2828
INDEX 01 07:55:65
2929
```
3030

31-
Authored by Petteri Aimonen \
32-
Licensed under GPL3, see: [LICENSE.md](LICENSE.md) \
33-
Copyright (c) 2023 Rabbit Hole Computing™
31+
Licensed under MIT, see: [LICENSE.md](LICENSE.md) \
32+
Copyright (c) 2023 Rabbit Hole Computing™

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.0.0",
44
"repository": { "type": "git", "url": "https://github.com/rabbitholecomputing/CUEParser.git"},
55
"authors": [{ "name": "Petteri Aimonen", "email": "jpa@git.mail.kapsi.fi" }],
6-
"license": "GPL-3.0-or-later",
6+
"license": "MIT",
77
"frameworks": "*",
88
"platforms": "*"
99
}

src/CUEParser.cpp

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/*
22
* Simple CUE sheet parser suitable for embedded systems.
33
*
4-
* Copyright (c) 2023 Rabbit Hole Computing
4+
* Copyright (c) 2023 Rabbit Hole Computing
55
*
6-
* This program is free software: you can redistribute it and/or modify
7-
* it under the terms of the GNU General Public License as published by
8-
* the Free Software Foundation, either version 3 of the License, or
9-
* (at your option) any later version.
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the “Software”), to
8+
* deal in the Software without restriction, including without limitation the
9+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10+
* sell copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
1012
*
11-
* This program is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
* GNU General Public License for more details.
13+
* The above copyright notice and this permission notice shall be included in
14+
* all copies or substantial portions of the Software.
1515
*
16-
* You should have received a copy of the GNU General Public License
17-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22+
* IN THE SOFTWARE.
1823
*/
1924

2025
// Refer to e.g. https://www.gnu.org/software/ccd2cue/manual/html_node/CUE-sheet-format.html#CUE-sheet-format
@@ -318,4 +323,4 @@ void CUEParser::remove_dot_slash(char * filename, size_t length)
318323
{
319324
memmove(filename, filename + 2, length - 2);
320325
}
321-
}
326+
}

src/CUEParser.h

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
/*
22
* Simple CUE sheet parser suitable for embedded systems.
33
*
4-
* Copyright (c) 2023 Rabbit Hole Computing
4+
* Copyright (c) 2023 Rabbit Hole Computing
55
*
6-
* This program is free software: you can redistribute it and/or modify
7-
* it under the terms of the GNU General Public License as published by
8-
* the Free Software Foundation, either version 3 of the License, or
9-
* (at your option) any later version.
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the “Software”), to
8+
* deal in the Software without restriction, including without limitation the
9+
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10+
* sell copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
1012
*
11-
* This program is distributed in the hope that it will be useful,
12-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
* GNU General Public License for more details.
13+
* The above copyright notice and this permission notice shall be included in
14+
* all copies or substantial portions of the Software.
1515
*
16-
* You should have received a copy of the GNU General Public License
17-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22+
* IN THE SOFTWARE.
1823
*/
1924

2025
#pragma once

0 commit comments

Comments
 (0)