a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package
Like last time, where this caused no complaints.
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
Upstream changes:
0.43 Sat May 1 22:23:55 CST 2010
* Support for getting REMOTE_PORT -- rgs
0.42_01 Fri Apr 2 12:59:48 EDT 2010
* Patch to t/01live.t to prevent spurious win32 test failures.
pkgsrc changes:
- Use correct module type for perl install routine
Upstream changes:
0.42 Thu Feb 18 10:13:11 PST 2010
* Inline uri_unescape to drop URI::Escape which is the only non-core
dependency of this distribution. -- miyagawa
* Do not special case COOKIE and sets Cookie header to HTTP_COOKIE. -- miyagawa
O'Reilly's WebSite server misuses COOKIE environment instead of
HTTP_COOKIE. We don't need to replicate that bug since
HTTP::Server::Simple is a server, not a CGI library like CGI.pm.
0.41_01 Tue Feb 2 12:08:15 PST 2010
* Pluggable CGI class support based on a patch from NANIS
pkgsrc changes:
- Adding license (perl license)
Upstream changes:
0.40 Mon Aug 17 22:01:07 EDT 2009
* After a fork, we need to reset the random seed lest we have
duplicated random numbers in both forks.
0.39 Mon Aug 17 09:41:05 EDT 2009
* Added signature tests
0.38_04 Wed Aug 12 20:15:14 EDT 2009
Another pass at the Win32 fixes from KMX
0.38_03 Sat Apr 11 18:47:29 EDT 2009
* Subject: [rt.cpan.org #44961] [PATCH] xdg reports select() is problematic on win32
0.38_02 Fri Apr 10 20:57:19 EDT 2009
* Specify an HTTP version for our GETs should get escaping to wokr
0.38_01 Mon Mar 2 18:11:46 EST 2009
* http://rt.cpan.org/Ticket/Attachment/568795/286902/ from confound++ for
http://rt.cpan.org/Public/Bug/Display.html?id=28122
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
0.34
* Call setup_environment if a Net::Server is being used, for consistency.
* Don't print_banner if a Net::Server is being used.
* Make header parsing comply with RFC 2616. [rt.cpan.org #21411]
0.33 Fri Apr 25 13:57:30 EDT 2008
* The new support for background processes notifying the parent
didn't quite work right for some apps using HSS. It's been
reverted for now and the tests TODOED
0.32 Thu Apr 24 09:45:14 EDT 2008
* At least Apache and lighttpd put unencoded strings into PATH_INFO,
so so should we.
* Patch from ntyni@iki.fi to make backgrounding of the standalone
server's server process deterministic. [rt.cpan.org #28122]
0.31 Sun Mar 16 20:51:04 EDT 2008
* Test suite parallelization fixes. Thanks to Slaven Rezic
0.30 Tue Mar 11 12:14:24 EDT 2008
* Minor doc fix from Paul Miller.
* Fixing doc style from "$this" to "$self" like any self-respecting perl code
0.29 Fri Feb 15 11:43:29 EST 2008
* new example section from almut on perlmonks
0.28 Tue Jan 15 09:33:58 EST 2008
* New restartability support from Mark Stosberg
After reviewing the code in HTTP::Server::Simple,
Catalyst::Engine::HTTP and HTTP::Server::Brick, I found and
implemented an updated signal handling approach that I like and
understand, and actually works.
The current code restarted immediately if a SIGHUP came in, no
matter what was happening, including if a request was in process of
being fulfilled.
The new code works more like "apachectl graceful". It waits for the
current request cycle to finish, and then restarts the server.
This code has to be integrated in the core, but its just about
the same amount of signal handling code that was there... it just
works better. It's also written in such a way I think subclass/mixin
authors could rewrite just these parts if they wanted.
Also, it looks like a Net::Server based sub-class would already be
doing its own thing with SIGHUP handling, and should continue to
be unaffected.
Based on patch provided in PR 36156.
0.27
* 0.26 release apparently didn't get to cpan correctly
0.26
* Supports multi-line encoded values in query_sting (like foo%0Abar) -- Dobrica Pavlinusic
* Fixes to URI unescaping to behave like apache does
0.24
* Hopefully deal with an odd case where a poorly behaved Internet Explorer could crash the server.
Thanks to the Catalyst project.
0.23
Fix a release-engineering messup. Thanks to ANDK
0.22 Wed Oct 18 23:36:34 EDT 2006
* Query string processing improvements
0.21 Wed Oct 18 23:31:42 EDT 2006
[rt.cpan.org #21727] [PATCH] Support for Perl 5.004
-- Sebastien Aperghis-Tramoni
0.20
Require POSIX only if we need it, rather than "use" it all the time
[cpan #17533] - Brad Bowman
0.19
Catch and ignore SIGPIPE, so broken pipes from the client don't cause
Standalone to drop all the way back to the shell.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
www/p5-HTTP-Server-Simple into the NetBSD Packages Collection.
HTTP::Server::Simple Perl5 module is a very simple standalone HTTP
daemon with no non-core module dependencies. It's ideal for building
a standalone http-based UI to your existing tools.