Skip to content

Commit

Permalink
Merge pull request #5 from ksd5/master
Browse files Browse the repository at this point in the history
Various improvements
  • Loading branch information
jcarbaugh committed Aug 19, 2013
2 parents 59bb049 + c117206 commit aa0399c
Show file tree
Hide file tree
Showing 7 changed files with 712 additions and 594 deletions.
20 changes: 19 additions & 1 deletion README.md
@@ -1 +1,19 @@
# License template files
# License Templates

These files are designed to be used by `lice`, a command-line license generator
for software projects.

## Format/Structure

The template uses variables as placeholders to substitute values specified by
`lice`.

* `{{ year }}`: the year of the software's copyright.
* `{{ organization }}`: the name of the organization or individual who holds
the copyright to the software.
* `{{ project }}`: the name of the software project.

## Copyright

All licenses in this repository are copyrighted by their respective authors.
Everything else is released under CC0. See `LICENSE` for details.
1,224 changes: 632 additions & 592 deletions templates/gpl3.txt

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion templates/mit.txt
@@ -1,4 +1,3 @@
The MIT License (MIT)
Copyright (c) {{ year }} {{ organization }}

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
24 changes: 24 additions & 0 deletions templates/unlicense.txt
@@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

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 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.

For more information, please refer to <http://unlicense.org/>
5 changes: 5 additions & 0 deletions templates/wtfpl-header-warranty.txt
@@ -0,0 +1,5 @@
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://www.wtfpl.net/ for more details.
5 changes: 5 additions & 0 deletions templates/wtfpl-header.txt
@@ -0,0 +1,5 @@
Copyright © {{ year }} {{ organization }}
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See the COPYING file or http://www.wtfpl.net/
for more details.
27 changes: 27 additions & 0 deletions templates/x11.txt
@@ -0,0 +1,27 @@
Copyright (C) {{ year }} {{ organization }}

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:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

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 {{ organization }} 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.

Except as contained in this notice, the name of {{ organization }} shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from {{ organization }}.

{{ project }} is a trademark of {{ organization }}.

0 comments on commit aa0399c

Please sign in to comment.