--- procserv-2.6.0.orig/debian/control +++ procserv-2.6.0/debian/control @@ -0,0 +1,27 @@ +Source: procserv +Section: utils +Priority: optional +Maintainer: Ralph Lange +Build-Depends: debhelper (>= 7.0.50~), libtelnet-dev +Standards-Version: 3.9.3 +Vcs-Darcs: http://darcs.debian.org/darcs/collab-maint/procserv +Vcs-Browser: http://darcs.debian.org/cgi-bin/darcsweb.cgi?r=collab-maint/procserv;a=summary +Homepage: http://sourceforge.net/projects/procserv/ + +Package: procserv +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: telnet +Description: Process server with telnet console and log access + procServ is a wrapper that starts an arbitrary command as a child process in + the background, connecting its standard input and output to a TCP port for + telnet access. It supports logging, child restart (manual or automatic on + exit), and more. + . + procServ does not have the rich feature set of the screen utility, + but is intended to provide running a command in a system service style, + in a small, robust way. + Handling multiple users, authorization, authentication, central logging + is done best on a higher level, using a package like conserver. + . + For security reasons, procServ only accepts connections from localhost. --- procserv-2.6.0.orig/debian/rules +++ procserv-2.6.0/debian/rules @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure -- --docdir=\$${prefix}/share/doc/procserv + +override_dh_auto_install: + dh_auto_install + # Remove extra ChangeLog and COPYING files installed by upstream make + rm $(CURDIR)/debian/procserv/usr/share/doc/procserv/ChangeLog + rm $(CURDIR)/debian/procserv/usr/share/doc/procserv/COPYING --- procserv-2.6.0.orig/debian/copyright +++ procserv-2.6.0/debian/copyright @@ -0,0 +1,64 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: procServ +Upstream-Contact: Ralph Lange +Source: http://sourceforge.net/projects/procserv/ + +Files: * +Copyright: 2003-2008 David H. Thompson + 2008-2012 Ralph Lange +License: GPL3+ + This package is free software; you can redistribute it + and/or modify it under the terms of the GNU General Public + License as published by the Free Software Foundation; either + version 3 of the License, or (at your option) any later + version. + . + This package is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the GNU General Public License for more + details. + . + You should have received a copy of the GNU General Public + License along with this package; if not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301 USA + . + On Debian systems, the complete text of the GNU General + Public License can be found in + `/usr/share/common-licenses/GPL-3'. + +Files: libtelnet.* +Copyright: public domain +License: public-domain + The author or authors of this code dedicate any and all copyright + interest in this code to the public domain. We make this dedication + for the benefit of the public at large and to the detriment of our + heirs and successors. We intend this dedication to be an overt act of + relinquishment in perpetuity of all present and future rights to this + code under copyright law. + +Files: debian/* +Copyright: 2009 Michael Davidsaver + 2009-2012 Ralph Lange +License: GPL-2+ + This program is free software; you can redistribute it + and/or modify it under the terms of the GNU General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later + version. + . + This program is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the GNU General Public License for more + details. + . + You should have received a copy of the GNU General Public + License along with this package; if not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301 USA + . + On Debian systems, the full text of the GNU General Public + License version 2 can be found in the file + '/usr/share/common-licenses/GPL-2'. --- procserv-2.6.0.orig/debian/changelog +++ procserv-2.6.0/debian/changelog @@ -0,0 +1,66 @@ +procserv (2.6.0-1) unstable; urgency=low + * new upstream version + * control: bumped Standards-Version to 3.9.3 with no changes, + fixed debhelper dependency, added libtelnet dependency + * copyright: changed to machine readable format, added libtelnet info + * rules: switched to using overrides + + -- Ralph Lange Fri, 13 Apr 2012 16:04:21 +0200 + +procserv (2.5.1-1) unstable; urgency=low + * new upstream version + * copyright: corrected years + * control: bumped Standards-Version to 3.8.4 with no changes + * rules: changed from CDBS based rules to plain debhelper+dh + + -- Ralph Lange Wed, 24 Mar 2010 11:50:16 -0500 + +procserv (2.5.0-5) unstable; urgency=low + + * rules: build package in "." (default) to prevent CDBS from generating + strange warnings and running the configure script twice + * control: added Vcs-* entries pointing to the collab-maint repository + * Added a watch file pointing to the SourceForge download + + -- Ralph Lange Mon, 04 Jan 2010 16:19:35 -0500 + +procserv (2.5.0-4) unstable; urgency=low + + * control: package now Suggests: telnet + * removed .hg* stuff from package build + + -- Ralph Lange Thu, 31 Dec 2009 11:22:24 -0500 + +procserv (2.5.0-3) unstable; urgency=low + + * control: added ${misc:Depends} for debhelper + + -- Ralph Lange Wed, 30 Dec 2009 16:18:46 -0500 + +procserv (2.5.0-2) unstable; urgency=low + + * control: removed unused Depends, changed Section and Priority, updated + Description + * rules: simplified by adding extra argument to configure to change doc + location + + -- Ralph Lange Tue, 29 Dec 2009 15:12:46 -0500 + +procserv (2.5.0-1) unstable; urgency=low + + * New Upstream Version + + -- Michael Davidsaver Tue, 15 Dec 2009 16:59:46 -0500 + +procserv (2.4.1-1) unstable; urgency=low + + * version bump + + -- Michael Davidsaver Wed, 21 Oct 2009 12:11:32 -0400 + +procserv (2.4.0-1) unstable; urgency=low + + * Initial release + + -- Michael Davidsaver Fri, 28 Aug 2009 11:10:45 -0400 + --- procserv-2.6.0.orig/debian/compat +++ procserv-2.6.0/debian/compat @@ -0,0 +1 @@ +7 --- procserv-2.6.0.orig/debian/watch +++ procserv-2.6.0/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/procserv/procServ-(.+)\.tar\.gz