r1997 - in packages/libfcgi-procmanager-perl/trunk: . debian

Krzysztof Krzyzaniak eloy at costa.debian.org
Wed Jan 18 12:22:53 UTC 2006


Author: eloy
Date: 2006-01-18 12:22:53 +0000 (Wed, 18 Jan 2006)
New Revision: 1997

Added:
   packages/libfcgi-procmanager-perl/trunk/debian/
   packages/libfcgi-procmanager-perl/trunk/debian/changelog
   packages/libfcgi-procmanager-perl/trunk/debian/compat
   packages/libfcgi-procmanager-perl/trunk/debian/control
   packages/libfcgi-procmanager-perl/trunk/debian/copyright
   packages/libfcgi-procmanager-perl/trunk/debian/rules
   packages/libfcgi-procmanager-perl/trunk/debian/watch
Log:
Load libfcgi-procmanager-perl-0.17 into
packages/libfcgi-procmanager-perl/trunk.


Added: packages/libfcgi-procmanager-perl/trunk/debian/changelog
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/changelog	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/changelog	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1,6 @@
+libfcgi-procmanager-perl (0.17-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Wed, 18 Jan 2006 12:44:53 +0100
+

Added: packages/libfcgi-procmanager-perl/trunk/debian/compat
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/compat	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/compat	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1 @@
+4

Added: packages/libfcgi-procmanager-perl/trunk/debian/control
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/control	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/control	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1,22 @@
+Source: libfcgi-procmanager-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.6.2
+
+Package: libfcgi-procmanager-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description: Functions for managing FastCGI applications.
+ FCGI::ProcManager is used to serve as a FastCGI process manager.  By
+ re-implementing it in perl, developers can more finely tune performance in
+ their web applications, and can take advantage of copy-on-write semantics
+ prevalent in UNIX kernel process management.  The process manager should
+ be invoked before the caller''s request loop
+ .
+ The primary routine, pm_manage, enters a loop in which it maintains a
+ number of FastCGI servers (via fork(2)), and which reaps those servers
+ when they die (via wait(2)).

Added: packages/libfcgi-procmanager-perl/trunk/debian/copyright
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/copyright	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/copyright	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1,27 @@
+This is the debian package for the FCGI-ProcManager module.
+It was created by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> using dh-make-perl.
+
+It was downloaded from:
+http://search.cpan.org/CPAN/authors/id/J/JU/JURACH/FCGI-ProcManager-0.17.tar.gz
+
+Upstream author: James Jurach <muaddib at erf.net>
+
+FCGI-ProcManager - A Perl FCGI Process Manager
+ Copyright (c) 2000, FundsXpress Financial Network, Inc.
+
+This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+BECAUSE THIS LIBRARY IS LICENSED FREE OF CHARGE, THIS LIBRARY IS
+ BEING PROVIDED "AS IS WITH ALL FAULTS," WITHOUT ANY WARRANTIES
+ OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT
+ LIMITATION, ANY IMPLIED WARRANTIES OF TITLE, NONINFRINGEMENT,
+ MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND THE
+ ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY,
+ AND EFFORT IS WITH THE YOU.  See the GNU Lesser General Public
+ License for more details.
+ 
+On Debian systems, the complete text of the GNU Lesser  General 
+Public License can be found in /usr/share/common-licenses/LGPL file.

Added: packages/libfcgi-procmanager-perl/trunk/debian/rules
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/rules	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/rules	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1,67 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs ChangeLog
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+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/libfcgi-procmanager-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libfcgi-procmanager-perl/trunk/debian/watch
===================================================================
--- packages/libfcgi-procmanager-perl/trunk/debian/watch	2006-01-18 12:22:32 UTC (rev 1996)
+++ packages/libfcgi-procmanager-perl/trunk/debian/watch	2006-01-18 12:22:53 UTC (rev 1997)
@@ -0,0 +1,4 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+http://mirrors.kernel.org/cpan/modules/by-module/FCGI/FCGI-ProcManager-([\d\.]+)\.tar\.gz
+




More information about the Pkg-perl-cvs-commits mailing list