8
0

Accepting request 484289 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/484289
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-HTTP-Server-Simple?expand=0&rev=21
This commit is contained in:
Stephan Kulow
2017-04-06 13:04:17 +00:00
committed by Git OBS Bridge
parent 3adae98c18
commit ebc032e594
4 changed files with 27 additions and 19 deletions

View File

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

View File

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

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sat Apr 1 05:52:45 UTC 2017 - coolo@suse.com
- updated to 0.52
see /usr/share/doc/packages/perl-HTTP-Server-Simple/Changes
0.52 2017-03-31
- Add . to lib in Makefile.PL to support perl 5.25.11
-------------------------------------------------------------------
Sun Sep 20 08:56:11 UTC 2015 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-HTTP-Server-Simple
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
Name: perl-HTTP-Server-Simple
Version: 0.51
Version: 0.52
Release: 0
%define cpan_name HTTP-Server-Simple
Summary: Lightweight HTTP server
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/HTTP-Server-Simple/
Source0: http://www.cpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -44,9 +44,8 @@ This is a simple standalone HTTP server. By default, it doesn't thread or
fork. It does, however, act as a simple frontend which can be used to build
a standalone web-based application or turn a CGI into one.
It is possible to use the Net::Server manpage classes to create forking,
pre-forking, and other types of more complicated servers; see the
/net_server manpage.
It is possible to use Net::Server classes to create forking, pre-forking,
and other types of more complicated servers; see net_server.
By default, the server traps a few signals:
@@ -57,14 +56,14 @@ By default, the server traps a few signals:
that in order to provide restart-on-SIGHUP, HTTP::Server::Simple sets a
SIGHUP handler during initialisation. If your request handling code forks
you need to make sure you reset this or unexpected things will happen if
somebody sends a HUP to all running processes spawned by your app (e.g.
by "kill -HUP <script>")
somebody sends a HUP to all running processes spawned by your app (e.g. by
"kill -HUP <script>")
* PIPE
If the server detects a broken pipe while writing output to the client,
it ignores the signal. Otherwise, a client closing the connection early
could kill the server.
If the server detects a broken pipe while writing output to the client, it
ignores the signal. Otherwise, a client closing the connection early could
kill the server.
%prep
%setup -q -n %{cpan_name}-%{version}