Skip to content

Commit

Permalink
Add WTFPL license from http://www.wtfpl.net/
Browse files Browse the repository at this point in the history
  • Loading branch information
schnoddelbotz authored and hoshsadiq committed Feb 8, 2022
1 parent a10d699 commit f424cf8
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
41 changes: 41 additions & 0 deletions cobra/cmd/license_wtfpl.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// Copyright © 2015 Steve Francia <spf@spf13.com>.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Parts inspired by https://github.com/ryanuber/go-license

package cmd

func initWtfpl() {
Licenses["wtfpl"] = License{
Name: "WTFPL – Do What the Fuck You Want to Public License",
PossibleMatches: []string{"WTFPL", "wtf"},
Header: `
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed. `,
Text: `DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE (WTFPL)
{{ .copyright }}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
`,
}
}
1 change: 1 addition & 0 deletions cobra/cmd/licenses.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ func init() {
initGpl3()
initLgpl()
initAgpl()
initWtfpl()
}

// getLicense returns license specified by user in flag or in config.
Expand Down

0 comments on commit f424cf8

Please sign in to comment.