8
0
OBS User unknown
2007-02-16 06:11:04 +00:00
committed by Git OBS Bridge
parent 8000ca7ea3
commit 1f237f974c
4 changed files with 59 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96e2a37a7733ef3e6463f2e76bfa13b20bc684a5aec7a8052ab97f61e0db1964
size 63092

3
Net-Server-0.95.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e4091d0d8c4c4c05ca2a70b77a2cbe8531a236ce2260067e2f173f378b722a52
size 66522

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Wed Feb 14 14:11:29 CET 2007 - anicka@suse.cz
- update to 0.95
- Warn clean on the chld hanlder in PreFork.
* Allow lock_file for lock serialization to only be opened once
* Add additional log messages during failure in accept
* Fix double decrement bug in PreFork.pm
* Fix precedence bug with non-parened open
* Check setuid better after POSIX setuid
* Update Syslog options parsing
* Allow no_client_stdout to work with Multiplex
* Allow Sys::SysLog keyworks be passed through the ->log method
* Allow more characters through in syslog_ident
* Fix Fork server bug which had post_accept_hook called twice
* Added pre_fork_hook to Fork server to handle removed duplicate
post_accept_hook call.
* Reopen STDIN/STDOUT to /dev/null at end of child connection
to avoid spurious warnings
* Don't process STDIN/STDOUT in post_accept if udp_true
* Cleanup child processing code in PreFork server
* Try and let tests fail gracefully if localhost is not setup
properly
* Add numerous tests for configuration passing.
* Add perldoc about adding your own custom options
-------------------------------------------------------------------
Tue Oct 24 14:09:34 CEST 2006 - anicka@suse.cz

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Net-Server (Version 0.94)
# spec file for package perl-Net-Server (Version 0.95)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
@@ -12,13 +12,13 @@
Name: perl-Net-Server
URL: http://cpan.org/modules/by-module/Net/
License: Artistic License, GNU General Public License (GPL) - all versions
License: Artistic License, GNU General Public License (GPL)
Group: Development/Libraries/Perl
Requires: perl = %{perl_version}
Autoreqprov: on
Summary: Net::Server - Extensible, general Perl server engine
Version: 0.94
Release: 9
Version: 0.95
Release: 1
Source: Net-Server-%{version}.tar.bz2
Requires: perl-IO-Multiplex
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -34,7 +34,7 @@ Authors:
Paul T. Seamons <paul@seamons.com>
%prep
%setup -n Net-Server-%{version}
%setup -q -n Net-Server-%{version}
%build
perl Makefile.PL
@@ -55,6 +55,7 @@ make DESTDIR=$RPM_BUILD_ROOT install_vendor
%doc README MANIFEST Changes
%doc examples
%dir %{perl_vendorlib}/Net
%{perl_vendorlib}/Net/Server.pod
%{perl_vendorlib}/Net/Server.pm
%{perl_vendorlib}/Net/Server
%dir %{perl_vendorarch}/auto/Net
@@ -62,6 +63,29 @@ make DESTDIR=$RPM_BUILD_ROOT install_vendor
/var/adm/perl-modules/perl-Net-Server
%changelog -n perl-Net-Server
* Wed Feb 14 2007 - anicka@suse.cz
- update to 0.95
- Warn clean on the chld hanlder in PreFork.
* Allow lock_file for lock serialization to only be opened once
* Add additional log messages during failure in accept
* Fix double decrement bug in PreFork.pm
* Fix precedence bug with non-parened open
* Check setuid better after POSIX setuid
* Update Syslog options parsing
* Allow no_client_stdout to work with Multiplex
* Allow Sys::SysLog keyworks be passed through the ->log method
* Allow more characters through in syslog_ident
* Fix Fork server bug which had post_accept_hook called twice
* Added pre_fork_hook to Fork server to handle removed duplicate
post_accept_hook call.
* Reopen STDIN/STDOUT to /dev/null at end of child connection
to avoid spurious warnings
* Don't process STDIN/STDOUT in post_accept if udp_true
* Cleanup child processing code in PreFork server
* Try and let tests fail gracefully if localhost is not setup
properly
* Add numerous tests for configuration passing.
* Add perldoc about adding your own custom options
* Tue Oct 24 2006 - anicka@suse.cz
- add perl-IO-Multiplex to Requires (#207466)
* Fri Sep 29 2006 - anicka@suse.cz