[naga] 01/02: Import svn://svn.debian.org/svn/pkg-java/trunk/naga at 15844

Ximin Luo infinity0 at debian.org
Fri Oct 21 23:19:23 UTC 2016


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository naga.

commit 7dcc566886c66aa728bb3ead6c803d9221ac0712
Author: Ximin Luo <infinity0 at debian.org>
Date:   Sat Oct 22 00:56:22 2016 +0200

    Import svn://svn.debian.org/svn/pkg-java/trunk/naga@15844
---
 debian/README.source                       |   5 +
 debian/changelog                           |  27 +
 debian/compat                              |   1 +
 debian/control                             |  28 +
 debian/copyright                           |  41 ++
 debian/libnaga-java.javadoc                |   1 +
 debian/libnaga-java.jlibs                  |   1 +
 debian/patches/copyright_boilerplate.patch | 938 +++++++++++++++++++++++++++++
 debian/patches/series                      |   1 +
 debian/rules                               |  21 +
 debian/source/format                       |   1 +
 debian/version.properties                  |   5 +
 12 files changed, 1070 insertions(+)

diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..6ab9bc2
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,5 @@
+naga for Debian
+---------------
+
+The original tarball has been produced from the upstream subversion repository,
+revision 57.
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..443d764
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,27 @@
+naga (2.1-4) UNRELEASED; urgency=low
+
+  * 
+
+ -- Michael Banck <mbanck at debian.org>  Sat, 10 Mar 2012 10:58:43 +0100
+
+naga (2.1-3) unstable; urgency=low
+
+  * debian/control (Maintainer): Moved to pkg-java. 
+  * debian/control (DM-Upload-Allowed, Vcs-Browser, Vcs-Svn): New fields.
+  * debian/control (Standards-Version): Bumped to 3.9.3.
+
+ -- Michael Banck <mbanck at debian.org>  Fri, 09 Mar 2012 19:42:51 +0100
+
+naga (2.1-2) unstable; urgency=low
+
+  * debian/patches/copyright_boilerplate.patch: New patch, adding copyright
+    boilerplate to each source file, taken from upstream Subversion revison
+    76. 
+
+ -- Michael Banck <mbanck at debian.org>  Tue, 01 Nov 2011 14:02:06 +0100
+
+naga (2.1-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Michael Banck <mbanck at debian.org>  Sun, 30 Oct 2011 21:01:43 +0100
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..fb18312
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: naga
+Section: java
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Michael Banck <mbanck at debian.org>
+Build-Depends: debhelper (>= 7.0.50~), javahelper, ant, default-jdk
+Standards-Version: 3.9.3
+Homepage: http://code.google.com/p/naga/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/naga
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/naga
+DM-Upload-Allowed: yes
+
+
+Package: libnaga-java
+Architecture: all
+Depends: ${shlibs:Depends}, ${java:Depends}, ${misc:Depends}
+Description: Simplified Java NIO asynchronous sockets
+ Naga aims to be a very small NIO library that provides a handful of java
+ classes to wrap the usual Socket and ServerSocket with asynchronous NIO
+ counterparts.
+ .
+ All of this is driven from a single thread, making it useful for both client
+ (e.g. allowing I/O to be done in the AWT-thread without any need for threads)
+ and server programming (1 thread for all connections instead of 2
+ threads/connection).
+ .
+ Naga contains the code needed to get NIO up and running without having to code
+ partially read buffers and setting various selection key flags.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..ff5838f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,41 @@
+This work was packaged for Debian by:
+
+    Michael Banck <mbanck at debian.org> on Sun, 30 Oct 2011 21:01:43 +0100
+
+It was downloaded from:
+
+    http://code.google.com/p/naga/
+
+Upstream Author:
+
+    Christoffer Lerno
+
+Copyright:
+
+    Copyright (C) 2008-2011 Christoffer Lerno
+
+License: MIT License
+
+    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 THE
+    AUTHORS OR COPYRIGHT HOLDERS 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.
+
+The Debian packaging is:
+
+    Copyright (C) 2011 Michael Banck <mbanck at debian.org>
+
+and is licensed under the MIT license (see above) as well.
diff --git a/debian/libnaga-java.javadoc b/debian/libnaga-java.javadoc
new file mode 100644
index 0000000..6efeb2b
--- /dev/null
+++ b/debian/libnaga-java.javadoc
@@ -0,0 +1 @@
+_BUILD/docs/api
diff --git a/debian/libnaga-java.jlibs b/debian/libnaga-java.jlibs
new file mode 100644
index 0000000..aeeeb2b
--- /dev/null
+++ b/debian/libnaga-java.jlibs
@@ -0,0 +1 @@
+_DIST/*.jar
diff --git a/debian/patches/copyright_boilerplate.patch b/debian/patches/copyright_boilerplate.patch
new file mode 100644
index 0000000..71d489d
--- /dev/null
+++ b/debian/patches/copyright_boilerplate.patch
@@ -0,0 +1,938 @@
+Index: naga-2.1/src/main/naga/SocketObserver.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/SocketObserver.java	2011-11-01 14:12:03.936502922 +0100
++++ naga-2.1/src/main/naga/SocketObserver.java	2011-11-01 14:12:20.280506780 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ /**
+Index: naga-2.1/src/main/naga/SocketObserverAdapter.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/SocketObserverAdapter.java	2011-11-01 14:12:03.944504500 +0100
++++ naga-2.1/src/main/naga/SocketObserverAdapter.java	2011-11-01 14:12:20.284506731 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ /**
+Index: naga-2.1/src/main/naga/SocketChannelResponder.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/SocketChannelResponder.java	2011-11-01 14:12:03.876503656 +0100
++++ naga-2.1/src/main/naga/SocketChannelResponder.java	2011-11-01 14:12:20.284506731 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import naga.packetreader.RawPacketReader;
+Index: naga-2.1/src/main/naga/PacketWriter.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/PacketWriter.java	2011-11-01 14:12:03.860502454 +0100
++++ naga-2.1/src/main/naga/PacketWriter.java	2011-11-01 14:12:20.284506731 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.nio.ByteBuffer;
+Index: naga-2.1/src/main/naga/NIOUtils.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/NIOUtils.java	2011-11-01 14:12:04.120504012 +0100
++++ naga-2.1/src/main/naga/NIOUtils.java	2011-11-01 14:12:20.284506731 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/NIOService.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/NIOService.java	2011-11-01 14:12:04.100503979 +0100
++++ naga-2.1/src/main/naga/NIOService.java	2011-11-01 14:12:20.288503610 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/exception/ProtocolViolationException.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/exception/ProtocolViolationException.java	2011-11-01 14:12:03.868503754 +0100
++++ naga-2.1/src/main/naga/exception/ProtocolViolationException.java	2011-11-01 14:12:20.288503610 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.exception;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/ConnectionAcceptor.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/ConnectionAcceptor.java	2011-11-01 14:12:04.048503223 +0100
++++ naga-2.1/src/main/naga/ConnectionAcceptor.java	2011-11-01 14:12:20.288503610 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.net.InetSocketAddress;
+Index: naga-2.1/src/main/naga/NIOAbstractSocket.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/NIOAbstractSocket.java	2011-11-01 14:12:04.032503978 +0100
++++ naga-2.1/src/main/naga/NIOAbstractSocket.java	2011-11-01 14:12:20.288503610 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.net.InetSocketAddress;
+Index: naga-2.1/src/main/naga/NIOServerSocket.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/NIOServerSocket.java	2011-11-01 14:12:04.040502763 +0100
++++ naga-2.1/src/main/naga/NIOServerSocket.java	2011-11-01 14:12:20.288503610 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.net.ServerSocket;
+Index: naga-2.1/src/main/naga/eventmachine/DelayedAction.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/eventmachine/DelayedAction.java	2011-11-01 14:12:03.888506023 +0100
++++ naga-2.1/src/main/naga/eventmachine/DelayedAction.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.eventmachine;
+ 
+ import java.util.Date;
+Index: naga-2.1/src/main/naga/eventmachine/EventMachine.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/eventmachine/EventMachine.java	2011-11-01 14:12:03.896503970 +0100
++++ naga-2.1/src/main/naga/eventmachine/EventMachine.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.eventmachine;
+ 
+ import naga.NIOService;
+Index: naga-2.1/src/main/naga/eventmachine/DelayedEvent.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/eventmachine/DelayedEvent.java	2011-11-01 14:12:03.912502936 +0100
++++ naga-2.1/src/main/naga/eventmachine/DelayedEvent.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.eventmachine;
+ 
+ /**
+Index: naga-2.1/src/main/naga/ServerSocketObserver.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/ServerSocketObserver.java	2011-11-01 14:12:03.956502677 +0100
++++ naga-2.1/src/main/naga/ServerSocketObserver.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/ServerSocketObserverAdapter.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/ServerSocketObserverAdapter.java	2011-11-01 14:12:03.920505911 +0100
++++ naga-2.1/src/main/naga/ServerSocketObserverAdapter.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/PacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/PacketReader.java	2011-11-01 14:12:04.108503322 +0100
++++ naga-2.1/src/main/naga/PacketReader.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import naga.exception.ProtocolViolationException;
+Index: naga-2.1/src/main/naga/ServerSocketChannelResponder.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/ServerSocketChannelResponder.java	2011-11-01 14:12:04.056502845 +0100
++++ naga-2.1/src/main/naga/ServerSocketChannelResponder.java	2011-11-01 14:12:20.292501606 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.io.IOException;
+Index: naga-2.1/src/main/naga/ChannelResponder.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/ChannelResponder.java	2011-11-01 14:12:03.928503578 +0100
++++ naga-2.1/src/main/naga/ChannelResponder.java	2011-11-01 14:12:20.296509938 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.net.InetSocketAddress;
+Index: naga-2.1/src/main/naga/NIOSocket.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/NIOSocket.java	2011-11-01 14:12:03.964504255 +0100
++++ naga-2.1/src/main/naga/NIOSocket.java	2011-11-01 14:12:20.296509938 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga;
+ 
+ import java.net.Socket;
+Index: naga-2.1/src/main/naga/examples/Rot13Server.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/examples/Rot13Server.java	2011-11-01 14:12:03.972504436 +0100
++++ naga-2.1/src/main/naga/examples/Rot13Server.java	2011-11-01 14:12:20.300504861 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.examples;
+ 
+ import naga.*;
+Index: naga-2.1/src/main/naga/examples/ValidationServer.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/examples/ValidationServer.java	2011-11-01 14:12:04.016504734 +0100
++++ naga-2.1/src/main/naga/examples/ValidationServer.java	2011-11-01 14:12:20.300504861 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.examples;
+ 
+ import naga.*;
+Index: naga-2.1/src/main/naga/examples/EchoServer.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/examples/EchoServer.java	2011-11-01 14:12:03.976503270 +0100
++++ naga-2.1/src/main/naga/examples/EchoServer.java	2011-11-01 14:12:20.300504861 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.examples;
+ 
+ import naga.*;
+Index: naga-2.1/src/main/naga/examples/ValidationClient.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/examples/ValidationClient.java	2011-11-01 14:12:04.024504356 +0100
++++ naga-2.1/src/main/naga/examples/ValidationClient.java	2011-11-01 14:12:20.300504861 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.examples;
+ 
+ import naga.NIOService;
+Index: naga-2.1/src/main/naga/packetwriter/RegularPacketWriter.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetwriter/RegularPacketWriter.java	2011-11-01 14:12:03.844505164 +0100
++++ naga-2.1/src/main/naga/packetwriter/RegularPacketWriter.java	2011-11-01 14:12:20.300504861 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetwriter;
+ 
+ import naga.NIOUtils;
+Index: naga-2.1/src/main/naga/packetwriter/RawPacketWriter.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetwriter/RawPacketWriter.java	2011-11-01 14:12:03.852503111 +0100
++++ naga-2.1/src/main/naga/packetwriter/RawPacketWriter.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetwriter;
+ 
+ import naga.PacketWriter;
+Index: naga-2.1/src/main/naga/eventmachine/ExceptionObserver.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/eventmachine/ExceptionObserver.java	2011-11-01 14:12:03.904503593 +0100
++++ naga-2.1/src/main/naga/eventmachine/ExceptionObserver.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.eventmachine;
+ 
+ /**
+Index: naga-2.1/src/main/naga/packetreader/RawPacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/RawPacketReader.java	2011-11-01 14:12:03.764503624 +0100
++++ naga-2.1/src/main/naga/packetreader/RawPacketReader.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetreader;
+ 
+ import naga.PacketReader;
+Index: naga-2.1/src/main/naga/packetreader/DelimiterPacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/DelimiterPacketReader.java	2011-11-01 14:12:03.772503806 +0100
++++ naga-2.1/src/main/naga/packetreader/DelimiterPacketReader.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetreader;
+ 
+ import naga.PacketReader;
+@@ -135,4 +156,4 @@
+ 		}
+ 		return null;
+ 	}
+-}
+\ No newline at end of file
++}
+Index: naga-2.1/src/main/naga/packetreader/AsciiLinePacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/AsciiLinePacketReader.java	2011-11-01 14:12:03.780503430 +0100
++++ naga-2.1/src/main/naga/packetreader/AsciiLinePacketReader.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetreader;
+ 
+ /**
+Index: naga-2.1/src/main/naga/packetreader/ZeroDelimitedPacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/ZeroDelimitedPacketReader.java	2011-11-01 14:12:03.788505846 +0100
++++ naga-2.1/src/main/naga/packetreader/ZeroDelimitedPacketReader.java	2011-11-01 14:12:20.304508723 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetreader;
+ 
+ /**
+Index: naga-2.1/src/main/naga/packetreader/RegularPacketReader.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/RegularPacketReader.java	2011-11-01 14:12:03.796503794 +0100
++++ naga-2.1/src/main/naga/packetreader/RegularPacketReader.java	2011-11-01 14:12:20.308506719 +0100
+@@ -1,3 +1,24 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ package naga.packetreader;
+ 
+ import naga.NIOUtils;
+Index: naga-2.1/src/main/naga/packetreader/package-info.java
+===================================================================
+--- naga-2.1.orig/src/main/naga/packetreader/package-info.java	2011-11-01 14:12:03.808502809 +0100
++++ naga-2.1/src/main/naga/packetreader/package-info.java	2011-11-01 14:12:20.308506719 +0100
+@@ -1,4 +1,25 @@
++/*
++Copyright (c) 2008-2011 Christoffer Lernö
++
++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 THE
++AUTHORS OR COPYRIGHT HOLDERS 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.
++*/
+ /**
+  * Package containing various ready-to-use {@code PacketReader} implementations.
+  */
+-package naga.packetreader;
+\ No newline at end of file
++package naga.packetreader;
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..9c44655
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+copyright_boilerplate.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6d5dcac
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh --with javahelper $@ 
+
+override_dh_auto_configure:
+	cp debian/version.properties $(CURDIR)
+	dh_auto_configure --with-javahelper
+
+override_dh_auto_clean:
+	rm -rf _BUILD _DIST version.properties
+	dh_clean
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/version.properties b/debian/version.properties
new file mode 100644
index 0000000..869a3c5
--- /dev/null
+++ b/debian/version.properties
@@ -0,0 +1,5 @@
+#Build Number for ANT. Do not edit!
+#Sun Apr 25 09:31:26 CEST 2010
+build.number=42
+major.version=2
+minor.version=1

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/naga.git



More information about the pkg-java-commits mailing list