forked from pool/perl-Net-Server
This commit is contained in:
committed by
Git OBS Bridge
parent
8000ca7ea3
commit
1f237f974c
@@ -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
3
Net-Server-0.95.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e4091d0d8c4c4c05ca2a70b77a2cbe8531a236ce2260067e2f173f378b722a52
|
||||||
|
size 66522
|
||||||
@@ -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
|
Tue Oct 24 14:09:34 CEST 2006 - anicka@suse.cz
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@@ -12,13 +12,13 @@
|
|||||||
|
|
||||||
Name: perl-Net-Server
|
Name: perl-Net-Server
|
||||||
URL: http://cpan.org/modules/by-module/Net/
|
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
|
Group: Development/Libraries/Perl
|
||||||
Requires: perl = %{perl_version}
|
Requires: perl = %{perl_version}
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
Summary: Net::Server - Extensible, general Perl server engine
|
Summary: Net::Server - Extensible, general Perl server engine
|
||||||
Version: 0.94
|
Version: 0.95
|
||||||
Release: 9
|
Release: 1
|
||||||
Source: Net-Server-%{version}.tar.bz2
|
Source: Net-Server-%{version}.tar.bz2
|
||||||
Requires: perl-IO-Multiplex
|
Requires: perl-IO-Multiplex
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@@ -34,7 +34,7 @@ Authors:
|
|||||||
Paul T. Seamons <paul@seamons.com>
|
Paul T. Seamons <paul@seamons.com>
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n Net-Server-%{version}
|
%setup -q -n Net-Server-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL
|
perl Makefile.PL
|
||||||
@@ -55,6 +55,7 @@ make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|||||||
%doc README MANIFEST Changes
|
%doc README MANIFEST Changes
|
||||||
%doc examples
|
%doc examples
|
||||||
%dir %{perl_vendorlib}/Net
|
%dir %{perl_vendorlib}/Net
|
||||||
|
%{perl_vendorlib}/Net/Server.pod
|
||||||
%{perl_vendorlib}/Net/Server.pm
|
%{perl_vendorlib}/Net/Server.pm
|
||||||
%{perl_vendorlib}/Net/Server
|
%{perl_vendorlib}/Net/Server
|
||||||
%dir %{perl_vendorarch}/auto/Net
|
%dir %{perl_vendorarch}/auto/Net
|
||||||
@@ -62,6 +63,29 @@ make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|||||||
/var/adm/perl-modules/perl-Net-Server
|
/var/adm/perl-modules/perl-Net-Server
|
||||||
|
|
||||||
%changelog -n 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
|
* Tue Oct 24 2006 - anicka@suse.cz
|
||||||
- add perl-IO-Multiplex to Requires (#207466)
|
- add perl-IO-Multiplex to Requires (#207466)
|
||||||
* Fri Sep 29 2006 - anicka@suse.cz
|
* Fri Sep 29 2006 - anicka@suse.cz
|
||||||
|
|||||||
Reference in New Issue
Block a user