r974 - in packages/libnet-easytcp-perl/trunk: . debian util

Gunnar Wolf gwolf@costa.debian.org
Wed, 11 May 2005 15:02:02 +0000


Author: gwolf
Date: 2005-05-11 15:02:01 +0000 (Wed, 11 May 2005)
New Revision: 974

Added:
   packages/libnet-easytcp-perl/trunk/debian/
   packages/libnet-easytcp-perl/trunk/debian/changelog
   packages/libnet-easytcp-perl/trunk/debian/control
   packages/libnet-easytcp-perl/trunk/debian/copyright
   packages/libnet-easytcp-perl/trunk/debian/rules
Modified:
   packages/libnet-easytcp-perl/trunk/util/attack.pl
   packages/libnet-easytcp-perl/trunk/util/client.pl
   packages/libnet-easytcp-perl/trunk/util/server.pl
Log:
Load libnet-easytcp-perl-0.17 into packages/libnet-easytcp-perl/trunk.


Added: packages/libnet-easytcp-perl/trunk/debian/changelog
===================================================================
--- packages/libnet-easytcp-perl/trunk/debian/changelog	2005-05-11 15:01:30 UTC (rev 973)
+++ packages/libnet-easytcp-perl/trunk/debian/changelog	2005-05-11 15:02:01 UTC (rev 974)
@@ -0,0 +1,6 @@
+libnet-easytcp-perl (0.17-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Shiju p. Nair <shiju@infovillage.net>  Mon, 25 Nov 2002 09:39:00 +0300
+

Added: packages/libnet-easytcp-perl/trunk/debian/control
===================================================================
--- packages/libnet-easytcp-perl/trunk/debian/control	2005-05-11 15:01:30 UTC (rev 973)
+++ packages/libnet-easytcp-perl/trunk/debian/control	2005-05-11 15:02:01 UTC (rev 974)
@@ -0,0 +1,23 @@
+Source: libnet-easytcp-perl
+Section: interpreters
+Priority: optional
+Build-Depends: debhelper (>= 3.0.5), perl (>= 5.8.0-7)
+Maintainer: Shiju p. Nair <shiju@infovillage.net>
+Standards-Version: 3.5.1
+
+Package: libnet-easytcp-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description:  Easily create secure, bandwidth-friendly TCP/IP clients and servers
+ This class allows you to easily create TCP/IP clients and
+ servers and provides an OO interface to manage the connection(s).
+ This allows you to concentrate on the application rather
+ than on the transport.
+ .    
+  - One easy module to create both clients and servers
+  - Object Oriented interface
+  - Event-based callbacks in server mode
+  - Internal protocol to take care of all the common
+    transport problems
+  - Transparent encryption
+  - Transparent compression

Added: packages/libnet-easytcp-perl/trunk/debian/copyright
===================================================================
--- packages/libnet-easytcp-perl/trunk/debian/copyright	2005-05-11 15:01:30 UTC (rev 973)
+++ packages/libnet-easytcp-perl/trunk/debian/copyright	2005-05-11 15:02:01 UTC (rev 974)
@@ -0,0 +1,23 @@
+This package was debianized by Shiju p. Nair <shiju@infovillage.net> on
+Mon, 25 Nov 2002 09:39:00 +0300
+
+It was downloaded from:
+
+   http://search.cpan.org/CPAN/authors/id/M/MN/MNAGUIB/EasyTCP-0.17.tar.gz
+
+Upstream Author(s):
+   
+   Mina Naguib <mnaguib@cpan.org>
+
+Copyright:
+
+   Copyright (C) 2001-2002 Mina Naguib
+	
+   This is free software; you can redistribute it and/or modify
+   it under the same terms as Perl itself.
+
+   On Debian GNU/Linux systems, the complete text of the GNU General
+   Public License and the Artistic licence under which Perl is
+   distributed can be found in `/usr/share/common-licenses/GPL' and
+   `/usr/share/common-licenses/Artistic' respectively.
+		    

Added: packages/libnet-easytcp-perl/trunk/debian/rules
===================================================================
--- packages/libnet-easytcp-perl/trunk/debian/rules	2005-05-11 15:01:30 UTC (rev 973)
+++ packages/libnet-easytcp-perl/trunk/debian/rules	2005-05-11 15:02:01 UTC (rev 974)
@@ -0,0 +1,89 @@
+#!/usr/bin/make -f
+#-*- makefile -*-
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Christoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export DH_COMPAT=3
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =`pwd`/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	#$(MAKE) install DESTDIR=`pwd`/debian/tmp
+	$(MAKE) install PREFIX=$(TMP)/usr
+
+	-find $(TMP) -depth -type d | xargs rmdir 2>/dev/null
+	 
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+#	dh_testversion
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installexamples
+	dh_installmenu
+#	dh_installemacsen
+#	dh_installinit
+	dh_installcron
+	dh_installman
+#	dh_undocumented
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libnet-easytcp-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *


Property changes on: packages/libnet-easytcp-perl/trunk/util/attack.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libnet-easytcp-perl/trunk/util/client.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libnet-easytcp-perl/trunk/util/server.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *