summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2008-04-13 07:10:19 +0000
committerjlam <jlam@pkgsrc.org>2008-04-13 07:10:19 +0000
commit2b23beee8d4803048ac8976f79e32373e935f84f (patch)
tree004c073d86035bfc4153f06ce45e354f59ca8cf6 /www
parent11e2c5049d209d4d63caffb3811868c6eb91b075 (diff)
downloadpkgsrc-2b23beee8d4803048ac8976f79e32373e935f84f.tar.gz
Update www/thin to 0.8.0. Changes from version 0.7.1 include:
* Fix server crash when header too large. * Add --require (-r) option to require a library before executing your script. * Rename --rackup short option to -R, warn and load as rackup when file ends with .ru. * List supported adapters in command usage. * Add file adapter to built-in adapter, serve static files in current directory. * Allow disabling signal handling in Server with :signals => false * Make Server.new arguments more flexible, can now specify any of host, port, app or hash options. * Add --backend option to specified which backend to use. * Serve static file only on GET and HEAD requests in Rails adapter. * Add threaded option to run server in threaded mode; calling the application in a thread allowing for concurrency in the Rack adapter. * Guess which adapter to use from directory (chdir option) or use specified one in 'adapter' option.
Diffstat (limited to 'www')
-rw-r--r--www/thin/Makefile4
-rw-r--r--www/thin/PLIST15
-rw-r--r--www/thin/distinfo8
3 files changed, 17 insertions, 10 deletions
diff --git a/www/thin/Makefile b/www/thin/Makefile
index 58abb9f070f..05890855e2b 100644
--- a/www/thin/Makefile
+++ b/www/thin/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1.1.1 2008/04/04 15:26:44 jlam Exp $
+# $NetBSD: Makefile,v 1.2 2008/04/13 07:10:19 jlam Exp $
-DISTNAME= thin-0.7.1
+DISTNAME= thin-0.8.0
CATEGORIES= www
MAINTAINER= pkgsrc-users@NetBSD.org
diff --git a/www/thin/PLIST b/www/thin/PLIST
index 153c02341ce..2659d24c57d 100644
--- a/www/thin/PLIST
+++ b/www/thin/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/04 15:26:44 jlam Exp $
+@comment $NetBSD: PLIST,v 1.2 2008/04/13 07:10:19 jlam Exp $
bin/thin
${GEM_HOME}/cache/thin-${PKGVERSION}.gem
${GEM_LIBDIR}/CHANGELOG
@@ -10,13 +10,14 @@ ${GEM_LIBDIR}/benchmark/abc
${GEM_LIBDIR}/benchmark/benchmarker.rb
${GEM_LIBDIR}/benchmark/runner
${GEM_LIBDIR}/bin/thin
-${GEM_LIBDIR}/doc/benchmarks.txt
${GEM_LIBDIR}/example/adapter.rb
${GEM_LIBDIR}/example/config.ru
${GEM_LIBDIR}/example/monit_sockets
${GEM_LIBDIR}/example/monit_unixsock
${GEM_LIBDIR}/example/ramaze.ru
${GEM_LIBDIR}/example/thin.god
+${GEM_LIBDIR}/example/thin_solaris_smf.erb
+${GEM_LIBDIR}/example/thin_solaris_smf.readme.txt
${GEM_LIBDIR}/example/vlad.rake
${GEM_LIBDIR}/ext/thin_parser/common.rl
${GEM_LIBDIR}/ext/thin_parser/ext_help.h
@@ -25,6 +26,7 @@ ${GEM_LIBDIR}/ext/thin_parser/parser.c
${GEM_LIBDIR}/ext/thin_parser/parser.h
${GEM_LIBDIR}/ext/thin_parser/parser.rl
${GEM_LIBDIR}/ext/thin_parser/thin.c
+${GEM_LIBDIR}/lib/rack/adapter/loader.rb
${GEM_LIBDIR}/lib/rack/adapter/rails.rb
${GEM_LIBDIR}/lib/rack/handler/thin.rb
${GEM_LIBDIR}/lib/thin.rb
@@ -49,6 +51,8 @@ ${GEM_LIBDIR}/lib/thin/stats.html.erb
${GEM_LIBDIR}/lib/thin/stats.rb
${GEM_LIBDIR}/lib/thin/statuses.rb
${GEM_LIBDIR}/lib/thin/version.rb
+${GEM_LIBDIR}/lib/thin_backend.bundle
+${GEM_LIBDIR}/lib/thin_parser.bundle
${GEM_LIBDIR}/lib/thin_parser.${RUBY_DLEXT}
${GEM_LIBDIR}/spec/backends/swiftiply_client_spec.rb
${GEM_LIBDIR}/spec/backends/tcp_server_spec.rb
@@ -66,7 +70,8 @@ ${GEM_LIBDIR}/spec/logging_spec.rb
${GEM_LIBDIR}/spec/perf/request_perf_spec.rb
${GEM_LIBDIR}/spec/perf/response_perf_spec.rb
${GEM_LIBDIR}/spec/perf/server_perf_spec.rb
-${GEM_LIBDIR}/spec/rack_rails_spec.rb
+${GEM_LIBDIR}/spec/rack/loader_spec.rb
+${GEM_LIBDIR}/spec/rack/rails_adapter_spec.rb
${GEM_LIBDIR}/spec/rails_app/app/controllers/application.rb
${GEM_LIBDIR}/spec/rails_app/app/controllers/simple_controller.rb
${GEM_LIBDIR}/spec/rails_app/app/helpers/application_helper.rb
@@ -115,10 +120,12 @@ ${GEM_LIBDIR}/spec/response_spec.rb
${GEM_LIBDIR}/spec/runner_spec.rb
${GEM_LIBDIR}/spec/server/builder_spec.rb
${GEM_LIBDIR}/spec/server/pipelining_spec.rb
+${GEM_LIBDIR}/spec/server/robustness_spec.rb
${GEM_LIBDIR}/spec/server/stopping_spec.rb
${GEM_LIBDIR}/spec/server/swiftiply.yml
${GEM_LIBDIR}/spec/server/swiftiply_spec.rb
${GEM_LIBDIR}/spec/server/tcp_spec.rb
+${GEM_LIBDIR}/spec/server/threaded_spec.rb
${GEM_LIBDIR}/spec/server/unix_socket_spec.rb
${GEM_LIBDIR}/spec/server_spec.rb
${GEM_LIBDIR}/spec/spec_helper.rb
@@ -150,6 +157,7 @@ ${GEM_HOME}/specifications/thin-${PKGVERSION}.gemspec
@dirrm ${GEM_LIBDIR}/spec/rails_app/app/controllers
@dirrm ${GEM_LIBDIR}/spec/rails_app/app
@dirrm ${GEM_LIBDIR}/spec/rails_app
+@dirrm ${GEM_LIBDIR}/spec/rack
@dirrm ${GEM_LIBDIR}/spec/perf
@dirrm ${GEM_LIBDIR}/spec/controllers
@dirrm ${GEM_LIBDIR}/spec/configs
@@ -165,7 +173,6 @@ ${GEM_HOME}/specifications/thin-${PKGVERSION}.gemspec
@dirrm ${GEM_LIBDIR}/ext/thin_parser
@dirrm ${GEM_LIBDIR}/ext
@dirrm ${GEM_LIBDIR}/example
-@dirrm ${GEM_LIBDIR}/doc
@dirrm ${GEM_LIBDIR}/bin
@dirrm ${GEM_LIBDIR}/benchmark
@dirrm ${GEM_LIBDIR}
diff --git a/www/thin/distinfo b/www/thin/distinfo
index 6777ae6b8d5..ca71bd3bcd3 100644
--- a/www/thin/distinfo
+++ b/www/thin/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2008/04/04 15:26:44 jlam Exp $
+$NetBSD: distinfo,v 1.2 2008/04/13 07:10:19 jlam Exp $
-SHA1 (thin-0.7.1.gem) = eb624015923c92c74816c14a1cac5a34b62de4f2
-RMD160 (thin-0.7.1.gem) = ce764f4942a971a34f5bc1723ba1ff87e57c171b
-Size (thin-0.7.1.gem) = 125440 bytes
+SHA1 (thin-0.8.0.gem) = e800e30a3d9377f04e153f3d4d43cc9e31cada6e
+RMD160 (thin-0.8.0.gem) = 6a5f4f4d7bd4b8f24e67535ed79648b8fb208200
+Size (thin-0.8.0.gem) = 169984 bytes