chiark / gitweb /
nntpid: Provide proper copyright licence
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 21 Dec 2014 14:57:06 +0000 (14:57 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 21 Dec 2014 15:12:40 +0000 (15:12 +0000)
Authors are:
 Simon Tatham
 Colin Watson
 Richard Kettlewell
 Ian Jackson

Simon says, in email to me:

  Simon Tatham writes ("Re: nntpid"):
  > Ian Jackson <ijackson@chiark.greenend.org.uk> wrote:
  > > Since IIRC it was yours originally we should probably pick your
  > > preferred licence which AIUI is MIT.
  >
  > It is, yes.

Colin writes on IRC:

02:34 <col> Republic,Diziet: anything DFSG-free is fine by me for my
            nntpid contributions

Richard and me on IRC:

14:44 <Diziet> [Richard]: Oh, speaking of usenet things, did you see the
               email exchange with Simon about nntpid licence ?  Are
               you happy with MIT ?
14:44 <[Richard]> y

debian/changelog
debian/copyright
scripts/ChiarkNNTP.pm
scripts/nntpid

index c72dbc1712bf698d74dda81f713814961d492c6d..6cf191abc2ee05d8f73c837dc0fe5a7784053ee3 100644 (file)
@@ -1,3 +1,10 @@
+chiark-utils (4.4.2) unstable; urgency=low
+
+  Copyright licencing fixes:
+  * nntpid: Provice actual licence (dual MIT/GPL3+).  Closes:#773650.
+
+ --
+
 chiark-utils (4.4.1) unstable; urgency=low
 
   Safety and convenience fix:
index 532965b4896417b936cdf9c93c230d6c3e9a6db5..2112302d88a7fe8416c6eece1b3330f25f507b6f 100644 (file)
@@ -69,6 +69,13 @@ random-word, remountresizereiserfs, summarise-mailbox-preserving-privacy
  Miscellaneous utilities.
  Copyright 2004,2006 Ian Jackson <ian@chiark.greenend.org.uk>
 
+nntpid
+ Utility for finding usenet articles by messageid from an NNTP server
+ Copyright -2011 Simon Tatham
+ Copyright 2011 Richard Kettlewell
+ Copyright 2011 Colin Watson
+ Copyright 2011 Ian Jackson
+ Dual licence MIT/GPL3+
 
 The chiark utilities are all free software; you can redistribute them
 and/or modify them under the terms of the GNU General Public License
index 5b69e281391f3d731368caff99704631ccf7c2b0..f31652e739df121d8201c69df81e06e289e91e2d 100644 (file)
@@ -1,5 +1,31 @@
 #!/usr/bin/perl
 
+# Originally by Simon Tatham
+# Modified by Richard Kettlewell, Colin Watson, Ian Jackson
+#
+# Copyright -2011 Simon Tatham
+# Copyright 2011 Richard Kettlewell
+# Copyright 2011 Colin Watson
+# Copyright 2011 Ian Jackson
+#
+# 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
+# SOFTWARE IN THE PUBLIC INTEREST, INC. 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.
+
 use strict qw(subs);
 use warnings;
 
index e0e286a52af99703596667bf8c6e17db026eb1aa..0de52a5c60bc9dca0c8086bb2d0a00789d19768b 100755 (executable)
@@ -2,6 +2,29 @@
 
 # Originally by Simon Tatham
 # Modified by Richard Kettlewell, Colin Watson, Ian Jackson
+#
+# Copyright -2011 Simon Tatham
+# Copyright 2011 Richard Kettlewell
+# Copyright 2011 Colin Watson
+# Copyright 2011 Ian Jackson
+#
+# 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
+# SOFTWARE IN THE PUBLIC INTEREST, INC. 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.
 
 use ChiarkNNTP;