diff options
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | COPYING | 14 | ||||
-rw-r--r-- | Makefile | 10 | ||||
-rwxr-xr-x | bin/cdxget | 6 | ||||
-rwxr-xr-x | bin/fmt-metadata | 7 | ||||
-rwxr-xr-x | bin/gitify | 6 | ||||
-rwxr-xr-x | bin/poolify | 6 | ||||
-rwxr-xr-x | bin/urlkey2url | 6 |
8 files changed, 61 insertions, 0 deletions
@@ -1 +1,7 @@ +# Copyright (c) 2017 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. /dat/ @@ -0,0 +1,14 @@ + 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.
+
+ 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,3 +1,10 @@ +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. + SHELL=bash -o pipefail PATH:=$(CURDIR)/bin:$(PATH) export PATH @@ -21,6 +28,9 @@ all: $(MAKE) dat/git .PHONY: all +COPYING: + curl -L http://www.wtfpl.net/txt/copying/ >$@ + # Stage 1 ###################################################################### # # Fetch a listing of all relevant URLs. @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. url='http://web.archive.org/cdx/search/cdx' s='?' diff --git a/bin/fmt-metadata b/bin/fmt-metadata index c92419b..ec82451 100755 --- a/bin/fmt-metadata +++ b/bin/fmt-metadata @@ -1,4 +1,11 @@ #!/usr/bin/env ruby +# Copyright (c) 2017 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. + require 'time' snapshot = ARGV.first.to_i @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. empty() { [[ $(stat -c %s "$1") -eq 0 ]] diff --git a/bin/poolify b/bin/poolify index 92e3cce..b49cbd9 100755 --- a/bin/poolify +++ b/bin/poolify @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017, 2023 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. url2murl() { local x diff --git a/bin/urlkey2url b/bin/urlkey2url index 5d0ec3d..813e66f 100755 --- a/bin/urlkey2url +++ b/bin/urlkey2url @@ -1,4 +1,10 @@ #!/usr/bin/env bash +# Copyright (c) 2017 Luke Shumaker <lukeshu@lukeshu.com> +# +# 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 for +# more details. for arg in "$@"; do keydomain="${arg%%)*}" |