Skip to content

Commit

Permalink
maint: update copyrights.
Browse files Browse the repository at this point in the history
* COPYING, README.md, bootstrap.conf, configure.ac, local.mk,
specs/optparse_spec.yaml, specs/string_spec.yaml: Add 2015 to
copyright statement.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
  • Loading branch information
gvvaughan committed Jan 3, 2015
1 parent 3ace4f8 commit a609453
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ the terms of the MIT license (the same license as Lua itself),
unless noted otherwise in the body of that file.

====================================================================
Copyright (C) 2002-2014 stdlib authors
Copyright (C) 2002-2015 stdlib authors

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by the [stdlib project][github]


This is a collection of Lua libraries for Lua 5.1 and 5.2. The
libraries are copyright by their authors 2000-2014 (see the AUTHORS
libraries are copyright by their authors 2000-2015 (see the AUTHORS
file for details), and released under the MIT license (the same
license as Lua itself). There is no warranty.

Expand Down
2 changes: 1 addition & 1 deletion bootstrap.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bootstrap.conf (Stdlib) version 2014-10-04
#
# Copyright (C) 2013-2014 Gary V. Vaughan
# Copyright (C) 2013-2015 Gary V. Vaughan
# Written by Gary V. Vaughan, 2013

# This is free software; see the source for copying conditions. There is NO
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl configure.ac
dnl
dnl Copyright (c) 2012-2014 Free Software Foundation, Inc.
dnl Copyright (C) 2012-2015 Gary V. Vaughan
dnl Written by Gary V. Vaughan, 2012
dnl
dnl This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion local.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Local Make rules.
#
# Copyright (C) 2013-2014 Gary V. Vaughan
# Copyright (C) 2013-2015 Gary V. Vaughan
# Written by Gary V. Vaughan, 2013
#
# This program is free software; you can redistribute it and/or modify it
Expand Down
2 changes: 1 addition & 1 deletion specs/optparse_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ specify std.optparse:
help = [[
parseme (stdlib spec) 0α1
Copyright © 2014 Gary V. Vaughan
Copyright © 2015 Gary V. Vaughan
This test program comes with ABSOLUTELY NO WARRANTY.
Usage: parseme [<options>] <file>...
Expand Down
10 changes: 5 additions & 5 deletions specs/string_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ specify std.string:
- before:
subject = "This is a collection of Lua libraries for Lua 5.1 " ..
"and 5.2. The libraries are copyright by their authors 2000" ..
"-2014 (see the AUTHORS file for details), and released und" ..
"-2015 (see the AUTHORS file for details), and released und" ..
"er the MIT license (the same license as Lua itself). There" ..
" is no warranty."

Expand All @@ -702,29 +702,29 @@ specify std.string:
- it inserts newlines to wrap a string:
target = "This is a collection of Lua libraries for Lua 5.1 a" ..
"nd 5.2. The libraries are\ncopyright by their authors 2000" ..
"-2014 (see the AUTHORS file for details), and\nreleased un" ..
"-2015 (see the AUTHORS file for details), and\nreleased un" ..
"der the MIT license (the same license as Lua itself). Ther" ..
"e is no\nwarranty."
expect (f (subject)).to_be (target)
- it honours a column width parameter:
target = "This is a collection of Lua libraries for Lua 5.1 a" ..
"nd 5.2. The libraries\nare copyright by their authors 2000" ..
"-2014 (see the AUTHORS file for\ndetails), and released un" ..
"-2015 (see the AUTHORS file for\ndetails), and released un" ..
"der the MIT license (the same license as Lua\nitself). The" ..
"re is no warranty."
expect (f (subject, 72)).to_be (target)
- it supports indenting by a fixed number of columns:
target = " This is a collection of Lua libraries for L" ..
"ua 5.1 and 5.2. The\n libraries are copyright by th" ..
"eir authors 2000-2014 (see the\n AUTHORS file for d" ..
"eir authors 2000-2015 (see the\n AUTHORS file for d" ..
"etails), and released under the MIT license\n (the " ..
"same license as Lua itself). There is no warranty."
expect (f (subject, 72, 8)).to_be (target)
- context given a long unwrapped string:
- before:
target = " This is a collection of Lua libraries for Lua 5" ..
".1 and 5.2.\n The libraries are copyright by their author" ..
"s 2000-2014 (see\n the AUTHORS file for details), and rel" ..
"s 2000-2015 (see\n the AUTHORS file for details), and rel" ..
"eased under the MIT\n license (the same license as Lua it" ..
"self). There is no\n warranty."
- it can indent the first line differently:
Expand Down

0 comments on commit a609453

Please sign in to comment.