passenger 5.0.4 → 5.0.5
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +10 -0
- data/CHANGELOG +21 -0
- data/build/agents.rb +2 -2
- data/build/apache2.rb +6 -5
- data/build/common_library.rb +22 -7
- data/build/cxx_tests.rb +0 -3
- data/build/misc.rb +1 -1
- data/dev/parse_file_descriptor_log +119 -0
- data/doc/CloudLicensingConfiguration.html +387 -0
- data/doc/Design and Architecture.html +2430 -0
- data/doc/Packaging.html +488 -0
- data/doc/Security of user switching support.html +1833 -0
- data/doc/ServerOptimizationGuide.html +659 -0
- data/doc/ServerOptimizationGuide.txt.md +8 -0
- data/doc/Users guide Apache.html +9116 -0
- data/doc/Users guide Apache.idmap.txt +6 -2
- data/doc/Users guide Apache.txt +26 -7
- data/doc/Users guide Nginx.html +9025 -0
- data/doc/Users guide Nginx.idmap.txt +7 -3
- data/doc/Users guide Nginx.txt +29 -6
- data/doc/Users guide Standalone.html +3983 -0
- data/doc/Users guide.html +1748 -0
- data/doc/users_guide_snippets/installation.txt +4 -4
- data/ext/apache2/Configuration.cpp +16 -5
- data/ext/apache2/Configuration.hpp +4 -2
- data/ext/apache2/Hooks.cpp +44 -19
- data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
- data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
- data/ext/common/AgentsStarter.h +3 -2
- data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
- data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
- data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
- data/ext/common/ApplicationPool2/Process.h +2 -1
- data/ext/common/ApplicationPool2/Session.h +6 -6
- data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
- data/ext/common/ApplicationPool2/Socket.h +59 -27
- data/ext/common/ApplicationPool2/Spawner.h +2 -2
- data/ext/common/BackgroundEventLoop.cpp +6 -1
- data/ext/common/Constants.h +1 -1
- data/ext/common/EventedClient.h +1 -1
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/FileDescriptor.h +25 -6
- data/ext/common/Logging.cpp +107 -52
- data/ext/common/Logging.h +146 -19
- data/ext/common/MessageClient.h +2 -2
- data/ext/common/MessageServer.h +3 -2
- data/ext/common/RandomGenerator.h +8 -7
- data/ext/common/SafeLibev.h +5 -1
- data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
- data/ext/common/ServerKit/FdSinkChannel.h +5 -2
- data/ext/common/ServerKit/FdSourceChannel.h +5 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
- data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
- data/ext/common/ServerKit/HttpServer.h +6 -0
- data/ext/common/ServerKit/Server.h +40 -3
- data/ext/common/StaticString.h +20 -0
- data/ext/common/UnionStation/Connection.h +3 -1
- data/ext/common/UnionStation/Core.h +6 -4
- data/ext/common/Utils.cpp +4 -3
- data/ext/common/Utils/DateParsing.h +19 -5
- data/ext/common/Utils/FastStringStream.h +183 -0
- data/ext/common/Utils/IOUtils.cpp +47 -28
- data/ext/common/Utils/IOUtils.h +56 -12
- data/ext/common/Utils/MessagePassing.h +3 -3
- data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
- data/ext/common/Utils/ScopeGuard.h +16 -5
- data/ext/common/Utils/SpeedMeter.h +2 -2
- data/ext/common/Utils/StrIntUtils.cpp +6 -6
- data/ext/common/Utils/StrIntUtils.h +2 -1
- data/ext/common/agents/Base.cpp +56 -4
- data/ext/common/agents/Base.h +2 -1
- data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
- data/ext/common/agents/HelperAgent/Main.cpp +16 -5
- data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
- data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
- data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
- data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
- data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
- data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
- data/ext/common/agents/Watchdog/AdminServer.h +53 -11
- data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
- data/ext/common/agents/Watchdog/Main.cpp +13 -6
- data/ext/libeio/ecb.h +1 -1
- data/ext/libev/ev.c +13 -1
- data/ext/libev/ev.h +3 -0
- data/ext/nginx/Configuration.c +28 -6
- data/ext/nginx/Configuration.h +2 -1
- data/ext/nginx/ngx_http_passenger_module.c +5 -4
- data/ext/oxt/dynamic_thread_group.hpp +38 -5
- data/lib/phusion_passenger.rb +1 -1
- data/lib/phusion_passenger/common_library.rb +9 -5
- data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
- data/lib/phusion_passenger/packaging.rb +23 -37
- data/passenger.gemspec +21 -21
- metadata +4 -453
- metadata.gz.asc +7 -7
- data/.gitignore +0 -68
- data/.travis.yml +0 -16
- data/Gemfile +0 -17
- data/Gemfile.lock +0 -39
- data/Vagrantfile +0 -54
- data/debian.template/README.Debian +0 -15
- data/debian.template/changelog +0 -316
- data/debian.template/compat +0 -1
- data/debian.template/control.erb +0 -91
- data/debian.template/copyright +0 -385
- data/debian.template/libapache2-mod-passenger.install +0 -3
- data/debian.template/libapache2-mod-passenger.postinst +0 -36
- data/debian.template/libapache2-mod-passenger.prerm +0 -15
- data/debian.template/locations.ini.erb +0 -14
- data/debian.template/passenger-dev.install.erb +0 -3
- data/debian.template/passenger-doc.install.erb +0 -2
- data/debian.template/passenger.conf +0 -6
- data/debian.template/passenger.docs +0 -4
- data/debian.template/passenger.install.erb +0 -14
- data/debian.template/passenger.load +0 -3
- data/debian.template/passenger.manpages +0 -3
- data/debian.template/patches/series +0 -0
- data/debian.template/rules.erb +0 -76
- data/debian.template/source/format +0 -1
- data/ext/common/EventedBufferedInput.h +0 -458
- data/packaging/rpm/LICENSE.txt +0 -19
- data/packaging/rpm/Makefile +0 -13
- data/packaging/rpm/README.md +0 -41
- data/packaging/rpm/Vagrantfile +0 -38
- data/packaging/rpm/Vagrantfile.centos +0 -30
- data/packaging/rpm/build +0 -170
- data/packaging/rpm/create_project +0 -41
- data/packaging/rpm/git_update +0 -88
- data/packaging/rpm/image/Dockerfile +0 -37
- data/packaging/rpm/image/Gemfile +0 -3
- data/packaging/rpm/image/Gemfile.lock +0 -12
- data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
- data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
- data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
- data/packaging/rpm/image/site-defaults.cfg +0 -168
- data/packaging/rpm/internal/build_tasks.rb +0 -238
- data/packaging/rpm/internal/dummygpg +0 -11
- data/packaging/rpm/internal/exec_build +0 -42
- data/packaging/rpm/internal/get_distro_arch +0 -14
- data/packaging/rpm/internal/get_distro_id +0 -10
- data/packaging/rpm/internal/git_update +0 -27
- data/packaging/rpm/internal/inituidgid +0 -17
- data/packaging/rpm/internal/my_init +0 -344
- data/packaging/rpm/internal/python27 +0 -3
- data/packaging/rpm/internal/repo_update +0 -46
- data/packaging/rpm/internal/setuser +0 -26
- data/packaging/rpm/internal/tracking_helper +0 -40
- data/packaging/rpm/jenkins_release +0 -99
- data/packaging/rpm/lib/build_tasks_support.rb +0 -402
- data/packaging/rpm/lib/preprocessor.rb +0 -341
- data/packaging/rpm/nginx_spec/404.html +0 -119
- data/packaging/rpm/nginx_spec/50x.html +0 -119
- data/packaging/rpm/nginx_spec/index.html +0 -116
- data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
- data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
- data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
- data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
- data/packaging/rpm/nginx_spec/nginx.conf +0 -131
- data/packaging/rpm/nginx_spec/nginx.init +0 -144
- data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
- data/packaging/rpm/nginx_spec/nginx.service +0 -15
- data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
- data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
- data/packaging/rpm/nginx_spec/passenger.conf +0 -9
- data/packaging/rpm/nginx_spec/poweredby.png +0 -0
- data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
- data/packaging/rpm/passenger_spec/config.json +0 -30
- data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
- data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
- data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
- data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
- data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
- data/packaging/rpm/repo_update +0 -114
- data/packaging/rpm/setup-system +0 -61
- data/packaging/rpm/shell +0 -10
- data/test/.rspec +0 -4
- data/test/config.json.example +0 -42
- data/test/config.json.rpm-automation +0 -15
- data/test/config.json.travis +0 -15
- data/test/config.json.vagrant +0 -30
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
- data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
- data/test/cxx/BufferedIOTest.cpp +0 -364
- data/test/cxx/CachedFileStatTest.cpp +0 -402
- data/test/cxx/CxxTestMain.cpp +0 -181
- data/test/cxx/DataStructures/LStringTest.cpp +0 -275
- data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
- data/test/cxx/DateParsingTest.cpp +0 -75
- data/test/cxx/DechunkerTest.cpp +0 -250
- data/test/cxx/EventedBufferedInputTest.cpp +0 -758
- data/test/cxx/EventedClientTest.cpp +0 -523
- data/test/cxx/FileChangeCheckerTest.cpp +0 -331
- data/test/cxx/FileDescriptorTest.cpp +0 -69
- data/test/cxx/FilterSupportTest.cpp +0 -433
- data/test/cxx/IOUtilsTest.cpp +0 -861
- data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
- data/test/cxx/MessageIOTest.cpp +0 -360
- data/test/cxx/MessagePassingTest.cpp +0 -81
- data/test/cxx/MessageReadersWritersTest.cpp +0 -576
- data/test/cxx/MessageServerTest.cpp +0 -393
- data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
- data/test/cxx/RequestHandlerTest.cpp +0 -1463
- data/test/cxx/ResponseCacheTest.cpp +0 -322
- data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
- data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
- data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
- data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
- data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
- data/test/cxx/ServerKit/ServerTest.cpp +0 -408
- data/test/cxx/StaticStringTest.cpp +0 -220
- data/test/cxx/StringMapTest.cpp +0 -131
- data/test/cxx/SystemTimeTest.cpp +0 -37
- data/test/cxx/TemplateTest.cpp +0 -118
- data/test/cxx/TestSupport.cpp +0 -207
- data/test/cxx/TestSupport.h +0 -333
- data/test/cxx/UnionStationTest.cpp +0 -741
- data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
- data/test/cxx/UtilsTest.cpp +0 -672
- data/test/cxx/VariantMapTest.cpp +0 -191
- data/test/gdbinit.example +0 -34
- data/test/integration_tests/apache2_tests.rb +0 -585
- data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
- data/test/integration_tests/native_packaging_spec.rb +0 -368
- data/test/integration_tests/nginx_tests.rb +0 -402
- data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
- data/test/integration_tests/source_packaging_test.rb +0 -201
- data/test/integration_tests/spec_helper.rb +0 -22
- data/test/integration_tests/standalone_tests.rb +0 -392
- data/test/node/line_reader_spec.js +0 -338
- data/test/node/spec_helper.js +0 -65
- data/test/oxt/backtrace_test.cpp +0 -88
- data/test/oxt/counter.hpp +0 -55
- data/test/oxt/dynamic_thread_group_test.cpp +0 -131
- data/test/oxt/oxt_test_main.cpp +0 -27
- data/test/oxt/spin_lock_test.cpp +0 -59
- data/test/oxt/syscall_interruption_test.cpp +0 -39
- data/test/ruby/debug_logging_spec.rb +0 -145
- data/test/ruby/message_channel_spec.rb +0 -196
- data/test/ruby/rack/loader_spec.rb +0 -42
- data/test/ruby/rack/preloader_spec.rb +0 -48
- data/test/ruby/rails3.0/loader_spec.rb +0 -26
- data/test/ruby/rails3.0/preloader_spec.rb +0 -32
- data/test/ruby/rails3.1/loader_spec.rb +0 -26
- data/test/ruby/rails3.1/preloader_spec.rb +0 -32
- data/test/ruby/rails3.2/loader_spec.rb +0 -26
- data/test/ruby/rails3.2/preloader_spec.rb +0 -32
- data/test/ruby/rails4.0/loader_spec.rb +0 -28
- data/test/ruby/rails4.0/preloader_spec.rb +0 -34
- data/test/ruby/rails4.1/loader_spec.rb +0 -28
- data/test/ruby/rails4.1/preloader_spec.rb +0 -34
- data/test/ruby/request_handler_spec.rb +0 -747
- data/test/ruby/shared/loader_sharedspec.rb +0 -247
- data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
- data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
- data/test/ruby/spec_helper.rb +0 -114
- data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
- data/test/ruby/union_station_spec.rb +0 -288
- data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
- data/test/ruby/utils/hosts_file_parser.rb +0 -258
- data/test/ruby/utils/tee_input_spec.rb +0 -235
- data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
- data/test/ruby/utils_spec.rb +0 -41
- data/test/stub/apache2/httpd.conf.erb +0 -122
- data/test/stub/apache2/mime.types +0 -748
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +0 -23
- data/test/stub/index.html +0 -1
- data/test/stub/nginx/koi-utf +0 -109
- data/test/stub/nginx/koi-win +0 -103
- data/test/stub/nginx/mime.types +0 -70
- data/test/stub/nginx/nginx.conf.erb +0 -70
- data/test/stub/nginx/win-utf +0 -126
- data/test/stub/node/app.js +0 -133
- data/test/stub/node/public/.gitignore +0 -0
- data/test/stub/node/tmp/.gitignore +0 -0
- data/test/stub/rack/config.ru +0 -95
- data/test/stub/rack/library.rb +0 -16
- data/test/stub/rack/public/.gitignore +0 -0
- data/test/stub/rack/start.rb +0 -52
- data/test/stub/rack/tmp/.gitignore +0 -0
- data/test/stub/rails3.0/.gitignore +0 -4
- data/test/stub/rails3.0/Gemfile +0 -22
- data/test/stub/rails3.0/Gemfile.lock +0 -80
- data/test/stub/rails3.0/Rakefile +0 -10
- data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
- data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.0/config.ru +0 -4
- data/test/stub/rails3.0/config/application.rb +0 -48
- data/test/stub/rails3.0/config/boot.rb +0 -13
- data/test/stub/rails3.0/config/database.yml +0 -22
- data/test/stub/rails3.0/config/environment.rb +0 -5
- data/test/stub/rails3.0/config/environments/development.rb +0 -19
- data/test/stub/rails3.0/config/environments/production.rb +0 -48
- data/test/stub/rails3.0/config/environments/test.rb +0 -32
- data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.0/config/locales/en.yml +0 -5
- data/test/stub/rails3.0/config/routes.rb +0 -58
- data/test/stub/rails3.0/db/seeds.rb +0 -7
- data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.0/log/.gitignore +0 -0
- data/test/stub/rails3.0/public/404.html +0 -26
- data/test/stub/rails3.0/public/422.html +0 -26
- data/test/stub/rails3.0/public/500.html +0 -26
- data/test/stub/rails3.0/public/favicon.ico +0 -0
- data/test/stub/rails3.0/public/index.html +0 -279
- data/test/stub/rails3.0/public/robots.txt +0 -5
- data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.0/script/rails +0 -9
- data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
- data/test/stub/rails3.0/test/test_helper.rb +0 -13
- data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.1/.gitignore +0 -15
- data/test/stub/rails3.1/Gemfile +0 -37
- data/test/stub/rails3.1/Gemfile.lock +0 -115
- data/test/stub/rails3.1/README +0 -261
- data/test/stub/rails3.1/Rakefile +0 -7
- data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
- data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.1/app/models/.gitkeep +0 -0
- data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.1/config.ru +0 -4
- data/test/stub/rails3.1/config/application.rb +0 -48
- data/test/stub/rails3.1/config/boot.rb +0 -6
- data/test/stub/rails3.1/config/database.yml +0 -25
- data/test/stub/rails3.1/config/environment.rb +0 -5
- data/test/stub/rails3.1/config/environments/development.rb +0 -30
- data/test/stub/rails3.1/config/environments/production.rb +0 -60
- data/test/stub/rails3.1/config/environments/test.rb +0 -39
- data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
- data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.1/config/locales/en.yml +0 -5
- data/test/stub/rails3.1/config/routes.rb +0 -58
- data/test/stub/rails3.1/db/seeds.rb +0 -7
- data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.1/log/.gitkeep +0 -0
- data/test/stub/rails3.1/public/404.html +0 -26
- data/test/stub/rails3.1/public/422.html +0 -26
- data/test/stub/rails3.1/public/500.html +0 -26
- data/test/stub/rails3.1/public/favicon.ico +0 -0
- data/test/stub/rails3.1/public/index.html +0 -241
- data/test/stub/rails3.1/public/robots.txt +0 -5
- data/test/stub/rails3.1/script/rails +0 -6
- data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.1/test/test_helper.rb +0 -13
- data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails3.2/.gitignore +0 -15
- data/test/stub/rails3.2/Gemfile +0 -39
- data/test/stub/rails3.2/Gemfile.lock +0 -113
- data/test/stub/rails3.2/Rakefile +0 -7
- data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
- data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
- data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
- data/test/stub/rails3.2/app/models/.gitkeep +0 -0
- data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails3.2/config.ru +0 -4
- data/test/stub/rails3.2/config/application.rb +0 -62
- data/test/stub/rails3.2/config/boot.rb +0 -6
- data/test/stub/rails3.2/config/database.yml +0 -25
- data/test/stub/rails3.2/config/environment.rb +0 -5
- data/test/stub/rails3.2/config/environments/development.rb +0 -37
- data/test/stub/rails3.2/config/environments/production.rb +0 -67
- data/test/stub/rails3.2/config/environments/test.rb +0 -37
- data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
- data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
- data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
- data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
- data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails3.2/config/locales/en.yml +0 -5
- data/test/stub/rails3.2/config/routes.rb +0 -58
- data/test/stub/rails3.2/db/seeds.rb +0 -7
- data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
- data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
- data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
- data/test/stub/rails3.2/log/.gitkeep +0 -0
- data/test/stub/rails3.2/public/404.html +0 -26
- data/test/stub/rails3.2/public/422.html +0 -26
- data/test/stub/rails3.2/public/500.html +0 -25
- data/test/stub/rails3.2/public/favicon.ico +0 -0
- data/test/stub/rails3.2/public/index.html +0 -241
- data/test/stub/rails3.2/public/robots.txt +0 -5
- data/test/stub/rails3.2/script/rails +0 -6
- data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
- data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
- data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
- data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
- data/test/stub/rails3.2/test/test_helper.rb +0 -13
- data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
- data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
- data/test/stub/rails4.0/.gitignore +0 -16
- data/test/stub/rails4.0/Gemfile +0 -45
- data/test/stub/rails4.0/Gemfile.lock +0 -126
- data/test/stub/rails4.0/README.rdoc +0 -28
- data/test/stub/rails4.0/Rakefile +0 -6
- data/test/stub/rails4.0/app/assets/images/.keep +0 -0
- data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.0/app/mailers/.keep +0 -0
- data/test/stub/rails4.0/app/models/.keep +0 -0
- data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.0/bin/bundle +0 -3
- data/test/stub/rails4.0/bin/rails +0 -4
- data/test/stub/rails4.0/bin/rake +0 -4
- data/test/stub/rails4.0/config.ru +0 -4
- data/test/stub/rails4.0/config/application.rb +0 -23
- data/test/stub/rails4.0/config/boot.rb +0 -4
- data/test/stub/rails4.0/config/database.yml +0 -25
- data/test/stub/rails4.0/config/environment.rb +0 -5
- data/test/stub/rails4.0/config/environments/development.rb +0 -29
- data/test/stub/rails4.0/config/environments/production.rb +0 -80
- data/test/stub/rails4.0/config/environments/test.rb +0 -36
- data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
- data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.0/config/locales/en.yml +0 -23
- data/test/stub/rails4.0/config/routes.rb +0 -57
- data/test/stub/rails4.0/db/seeds.rb +0 -7
- data/test/stub/rails4.0/lib/assets/.keep +0 -0
- data/test/stub/rails4.0/lib/tasks/.keep +0 -0
- data/test/stub/rails4.0/log/.keep +0 -0
- data/test/stub/rails4.0/public/404.html +0 -58
- data/test/stub/rails4.0/public/422.html +0 -58
- data/test/stub/rails4.0/public/500.html +0 -57
- data/test/stub/rails4.0/public/favicon.ico +0 -0
- data/test/stub/rails4.0/public/robots.txt +0 -5
- data/test/stub/rails4.0/test/controllers/.keep +0 -0
- data/test/stub/rails4.0/test/fixtures/.keep +0 -0
- data/test/stub/rails4.0/test/helpers/.keep +0 -0
- data/test/stub/rails4.0/test/integration/.keep +0 -0
- data/test/stub/rails4.0/test/mailers/.keep +0 -0
- data/test/stub/rails4.0/test/models/.keep +0 -0
- data/test/stub/rails4.0/test/test_helper.rb +0 -15
- data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/rails4.1/.gitignore +0 -16
- data/test/stub/rails4.1/Gemfile +0 -45
- data/test/stub/rails4.1/Gemfile.lock +0 -129
- data/test/stub/rails4.1/README.rdoc +0 -28
- data/test/stub/rails4.1/Rakefile +0 -6
- data/test/stub/rails4.1/app/assets/images/.keep +0 -0
- data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
- data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
- data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
- data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
- data/test/stub/rails4.1/app/mailers/.keep +0 -0
- data/test/stub/rails4.1/app/models/.keep +0 -0
- data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
- data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
- data/test/stub/rails4.1/bin/bundle +0 -3
- data/test/stub/rails4.1/bin/rails +0 -4
- data/test/stub/rails4.1/bin/rake +0 -4
- data/test/stub/rails4.1/config.ru +0 -4
- data/test/stub/rails4.1/config/application.rb +0 -23
- data/test/stub/rails4.1/config/boot.rb +0 -4
- data/test/stub/rails4.1/config/database.yml +0 -25
- data/test/stub/rails4.1/config/environment.rb +0 -5
- data/test/stub/rails4.1/config/environments/development.rb +0 -29
- data/test/stub/rails4.1/config/environments/production.rb +0 -80
- data/test/stub/rails4.1/config/environments/test.rb +0 -36
- data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
- data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
- data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
- data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
- data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
- data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
- data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
- data/test/stub/rails4.1/config/locales/en.yml +0 -23
- data/test/stub/rails4.1/config/routes.rb +0 -57
- data/test/stub/rails4.1/db/seeds.rb +0 -7
- data/test/stub/rails4.1/lib/assets/.keep +0 -0
- data/test/stub/rails4.1/lib/tasks/.keep +0 -0
- data/test/stub/rails4.1/log/.keep +0 -0
- data/test/stub/rails4.1/public/404.html +0 -58
- data/test/stub/rails4.1/public/422.html +0 -58
- data/test/stub/rails4.1/public/500.html +0 -57
- data/test/stub/rails4.1/public/favicon.ico +0 -0
- data/test/stub/rails4.1/public/robots.txt +0 -5
- data/test/stub/rails4.1/test/controllers/.keep +0 -0
- data/test/stub/rails4.1/test/fixtures/.keep +0 -0
- data/test/stub/rails4.1/test/helpers/.keep +0 -0
- data/test/stub/rails4.1/test/integration/.keep +0 -0
- data/test/stub/rails4.1/test/mailers/.keep +0 -0
- data/test/stub/rails4.1/test/models/.keep +0 -0
- data/test/stub/rails4.1/test/test_helper.rb +0 -15
- data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
- data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
- data/test/stub/start_error.pl +0 -24
- data/test/stub/upload_data.txt +0 -494
- data/test/stub/wsgi/passenger_wsgi.py +0 -212
- data/test/stub/wsgi/public/.gitignore +0 -0
- data/test/stub/wsgi/tmp/.gitignore +0 -0
- data/test/support/allocate_memory.c +0 -14
- data/test/support/apache2_controller.rb +0 -258
- data/test/support/multipart.rb +0 -62
- data/test/support/nginx_controller.rb +0 -97
- data/test/support/placebo-preloader.rb +0 -88
- data/test/support/test_helper.rb +0 -455
- data/test/support/valgrind.h +0 -2539
- data/test/tut/tut.h +0 -1310
- data/test/tut/tut_reporter.h +0 -256
- data/test/valgrind-osx.supp +0 -7
metadata.gz.asc
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
|
3
3
|
Comment: GPGTools - http://gpgtools.org
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
=
|
5
|
+
iQEcBAABAgAGBQJVETeoAAoJECrHRaUKISqMEsYH+gM8l5Wjx+oIIZvBELNwMkQp
|
6
|
+
xSaZBuIiRH8ABREQT3T4ZCMx8FLzNzCpM3OGjTQgFNuahjPc0k9B/YciVhUHgYMW
|
7
|
+
/4vpsiwvs3CDNTXVoQ+tNFu+mhueWMRHlhL41gMdiCNrPvp/M8jXH/LBJ9YCrA1P
|
8
|
+
MoCQ/pZsHCLJqJyfgz4T7FRDuqK/RzVDhnLyPucOWEuxzuv+s5ktkCcSPpF0U/3c
|
9
|
+
79iZ0TLjU51R7pfnCiAsyTV1yhFb9aBoaMmP+9dyknFYotGd/1FLFIR1egCnywjf
|
10
|
+
9/RIpsAQQNKJvb6ybJBJ05ncxrpoGaSGvl2rC58ekhiMG2YOIWrkn1ek89Bqjm4=
|
11
|
+
=ECVg
|
12
12
|
-----END PGP SIGNATURE-----
|
data/.gitignore
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
.cache
|
2
|
-
.DS_Store
|
3
|
-
.rbx
|
4
|
-
.vagrant
|
5
|
-
autom4te.cache
|
6
|
-
*.o
|
7
|
-
*.so
|
8
|
-
*.bundle
|
9
|
-
*.pyc
|
10
|
-
*.a
|
11
|
-
*.lo
|
12
|
-
*.la
|
13
|
-
*.slo
|
14
|
-
*.dSYM
|
15
|
-
*.gch
|
16
|
-
*.swp
|
17
|
-
*~.nib
|
18
|
-
*.pbxuser
|
19
|
-
*.perspective
|
20
|
-
*.perspectivev3
|
21
|
-
*.mode1v3
|
22
|
-
*.mode2v3
|
23
|
-
xcuserdata
|
24
|
-
/config.rb
|
25
|
-
/buildout
|
26
|
-
build/cache
|
27
|
-
ext/common/libboost_oxt
|
28
|
-
ext/common/libpassenger_common
|
29
|
-
ext/apache2/module_libboost_oxt
|
30
|
-
ext/apache2/module_libpassenger_common
|
31
|
-
ext/libev/Makefile
|
32
|
-
ext/libev/config.h
|
33
|
-
ext/libev/config.log
|
34
|
-
ext/libev/config.status
|
35
|
-
ext/libev/libtool
|
36
|
-
ext/libev/stamp-h1
|
37
|
-
ext/libev/ev.3
|
38
|
-
ext/libev/ev.pod
|
39
|
-
ext/libev/.libs
|
40
|
-
ext/libeio/Makefile
|
41
|
-
ext/libeio/config.h
|
42
|
-
ext/libeio/config.log
|
43
|
-
ext/libeio/config.status
|
44
|
-
ext/libeio/eio.3
|
45
|
-
ext/libeio/eio.pod
|
46
|
-
ext/ruby/*/Makefile
|
47
|
-
ext/ruby/*/mkmf.log
|
48
|
-
ext/*.a
|
49
|
-
doc/rdoc
|
50
|
-
doc/cxxapi
|
51
|
-
doc/*.html
|
52
|
-
helper-scripts/download_binaries/Makefile
|
53
|
-
test/.gdbinit
|
54
|
-
test/test.log
|
55
|
-
test/apache2.log
|
56
|
-
test/config.yml
|
57
|
-
test/config.json
|
58
|
-
test/coverage
|
59
|
-
test/cxx/CxxTestMain
|
60
|
-
test/oxt/oxt_test_main
|
61
|
-
test/stub/apache2/*.log
|
62
|
-
test/stub/apache2/*.pid
|
63
|
-
test/stub/apache2/httpd.conf
|
64
|
-
test/stub/zsfa/mycook
|
65
|
-
test/stub/zsfa/foo
|
66
|
-
test/support/allocate_memory
|
67
|
-
pkg
|
68
|
-
node_modules
|
data/.travis.yml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
env:
|
4
|
-
- TEST_CXX=1 TEST_NODE=1
|
5
|
-
- TEST_CXX=1 SUDO=1
|
6
|
-
- TEST_RUBY=1 TEST_RUBY_VERSION=1.8.7 TEST_RUBYGEMS_VERSION=1.8.25
|
7
|
-
- TEST_RUBY=1 TEST_RUBY_VERSION=1.9.3
|
8
|
-
- TEST_NGINX=1 TEST_STANDALONE=1
|
9
|
-
- TEST_APACHE2=1
|
10
|
-
- TEST_SOURCE_PACKAGING=1 TEST_DEBIAN_PACKAGING=1
|
11
|
-
|
12
|
-
install: "true"
|
13
|
-
script: ./dev/ci/run_travis.sh
|
14
|
-
|
15
|
-
notifications:
|
16
|
-
slack: phusionnl:PH5p7JYXyv2XLDpICHh8Nj6F
|
data/Gemfile
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
source 'https://rubygems.org/'
|
2
|
-
|
3
|
-
group :base do
|
4
|
-
gem 'mime-types', '1.25'
|
5
|
-
gem 'rspec', '2.14.1'
|
6
|
-
gem 'rake'
|
7
|
-
gem 'drake'
|
8
|
-
gem 'json'
|
9
|
-
gem 'rack'
|
10
|
-
end
|
11
|
-
|
12
|
-
group :doc do
|
13
|
-
# Last version that worked on Ruby 1.8
|
14
|
-
gem 'nokogiri', '1.5.9'
|
15
|
-
gem 'mizuho'
|
16
|
-
gem 'bluecloth'
|
17
|
-
end
|
data/Gemfile.lock
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
bluecloth (2.2.0)
|
5
|
-
comp_tree (1.1.3)
|
6
|
-
diff-lcs (1.2.5)
|
7
|
-
drake (0.9.2.0.3.1)
|
8
|
-
comp_tree (>= 1.1.3)
|
9
|
-
json (1.8.2)
|
10
|
-
mime-types (1.25)
|
11
|
-
mizuho (0.9.20)
|
12
|
-
nokogiri (>= 1.4.0)
|
13
|
-
sqlite3
|
14
|
-
nokogiri (1.5.9)
|
15
|
-
rack (1.5.2)
|
16
|
-
rake (10.3.2)
|
17
|
-
rspec (2.14.1)
|
18
|
-
rspec-core (~> 2.14.0)
|
19
|
-
rspec-expectations (~> 2.14.0)
|
20
|
-
rspec-mocks (~> 2.14.0)
|
21
|
-
rspec-core (2.14.8)
|
22
|
-
rspec-expectations (2.14.5)
|
23
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
24
|
-
rspec-mocks (2.14.6)
|
25
|
-
sqlite3 (1.3.9)
|
26
|
-
|
27
|
-
PLATFORMS
|
28
|
-
ruby
|
29
|
-
|
30
|
-
DEPENDENCIES
|
31
|
-
bluecloth
|
32
|
-
drake
|
33
|
-
json
|
34
|
-
mime-types (= 1.25)
|
35
|
-
mizuho
|
36
|
-
nokogiri (= 1.5.9)
|
37
|
-
rack
|
38
|
-
rake
|
39
|
-
rspec (= 2.14.1)
|
data/Vagrantfile
DELETED
@@ -1,54 +0,0 @@
|
|
1
|
-
# This Vagrantfile sets up an Ubuntu VM, for the purpose of developing Phusion Passenger itself.
|
2
|
-
# It is NOT for setting up a Vagrant VM for the purpose of developing your own app. See:
|
3
|
-
# https://github.com/phusion/passenger/issues/1230#issuecomment-48337881
|
4
|
-
|
5
|
-
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
6
|
-
VAGRANTFILE_API_VERSION = "2"
|
7
|
-
|
8
|
-
CPUS = ENV.fetch('CPUS', 2).to_i
|
9
|
-
MEMORY = ENV.fetch('MEMORY', 2048).to_i
|
10
|
-
|
11
|
-
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
12
|
-
config.vm.box = "phusion-open-ubuntu-14.04-amd64"
|
13
|
-
config.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vbox.box"
|
14
|
-
config.ssh.forward_agent = true
|
15
|
-
|
16
|
-
# Use NFS to mount /vagrant because our unit tests expect a
|
17
|
-
# POSIX compliant filesystem.
|
18
|
-
config.vm.synced_folder ".", "/vagrant", :type => "nfs"
|
19
|
-
|
20
|
-
# Passenger Standalone and 'rails server'
|
21
|
-
config.vm.network :forwarded_port, :host => 3000, :guest => 3000
|
22
|
-
config.vm.network :forwarded_port, :host => 3001, :guest => 3001
|
23
|
-
config.vm.network :forwarded_port, :host => 3002, :guest => 3002
|
24
|
-
# Apache
|
25
|
-
config.vm.network :forwarded_port, :host => 8000, :guest => 8000
|
26
|
-
config.vm.network :forwarded_port, :host => 8001, :guest => 8001
|
27
|
-
config.vm.network :forwarded_port, :host => 8002, :guest => 8002
|
28
|
-
config.vm.network :forwarded_port, :host => 8003, :guest => 8003
|
29
|
-
config.vm.network :forwarded_port, :host => 8004, :guest => 8004
|
30
|
-
config.vm.network :forwarded_port, :host => 8005, :guest => 8005
|
31
|
-
config.vm.network :forwarded_port, :host => 8010, :guest => 8010
|
32
|
-
# Nginx
|
33
|
-
config.vm.network :forwarded_port, :host => 8100, :guest => 8100
|
34
|
-
config.vm.network :forwarded_port, :host => 8101, :guest => 8101
|
35
|
-
config.vm.network :forwarded_port, :host => 8102, :guest => 8102
|
36
|
-
config.vm.network :forwarded_port, :host => 8103, :guest => 8103
|
37
|
-
config.vm.network :forwarded_port, :host => 8104, :guest => 8104
|
38
|
-
config.vm.network :forwarded_port, :host => 8105, :guest => 8105
|
39
|
-
config.vm.network :forwarded_port, :host => 8110, :guest => 8110
|
40
|
-
|
41
|
-
config.vm.provider :virtualbox do |vb, override|
|
42
|
-
override.vm.network :private_network, :type => "dhcp"
|
43
|
-
vb.cpus = CPUS
|
44
|
-
vb.memory = MEMORY
|
45
|
-
end
|
46
|
-
|
47
|
-
config.vm.provider :vmware_fusion do |vf, override|
|
48
|
-
override.vm.box_url = "https://oss-binaries.phusionpassenger.com/vagrant/boxes/latest/ubuntu-14.04-amd64-vmwarefusion.box"
|
49
|
-
vf.vmx["numvcpus"] = CPUS.to_s
|
50
|
-
vf.vmx["memsize"] = MEMORY.to_s
|
51
|
-
end
|
52
|
-
|
53
|
-
config.vm.provision :shell, :path => "dev/vagrant/provision.sh"
|
54
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
Phusion Passenger module for Apache2
|
2
|
-
AKA mod_rails or mod_rack
|
3
|
-
|
4
|
-
This is the Phusion Passenger (mod_rails/mod_rack) Apache 2 module
|
5
|
-
package offering support for Ruby web applications based on Rails or
|
6
|
-
Rack. There is even experimental support for WSGI Python apps.
|
7
|
-
|
8
|
-
This package version manages the dependencies for you and will install
|
9
|
-
a fully working Apache2 setup with the module in place and activated. No
|
10
|
-
need to run any installers or other programs. The package does all that
|
11
|
-
for you.
|
12
|
-
|
13
|
-
All you need do is add your virtual host to your setup, and reload
|
14
|
-
Apache2. See the User Guide (passenger/Users guide.html or
|
15
|
-
passenger/Users guide.txt.gz) for more information.
|
data/debian.template/changelog
DELETED
@@ -1,316 +0,0 @@
|
|
1
|
-
ruby-passenger (1:4.0.5-1bbox1~precise1) precise; urgency=high
|
2
|
-
|
3
|
-
* New upstream release, 4.0.5. Fixes CVE-2013-2119
|
4
|
-
|
5
|
-
-- John Leach <john@brightbox.co.uk> Wed, 29 May 2013 16:02:35 +0100
|
6
|
-
|
7
|
-
ruby-passenger (1:4.0.4-1bbox1~precise1) precise; urgency=low
|
8
|
-
|
9
|
-
* New upstream release, 4.0.4
|
10
|
-
|
11
|
-
-- John Leach <john@brightbox.co.uk> Tue, 28 May 2013 12:02:36 +0100
|
12
|
-
|
13
|
-
ruby-passenger (1:4.0.3-bbox1~lucid1) lucid; urgency=low
|
14
|
-
|
15
|
-
* New upstream release, 4.0.3
|
16
|
-
* Remove packaging fix patches now applied upstream
|
17
|
-
* Set Breaks field to remove old passenger packages
|
18
|
-
|
19
|
-
-- John Leach <john@brightbox.co.uk> Sat, 25 May 2013 11:50:16 +0100
|
20
|
-
|
21
|
-
ruby-passenger (1:4.0.2-bbox2~lucid1) lucid; urgency=low
|
22
|
-
|
23
|
-
* New upstream release, 4.0.2
|
24
|
-
|
25
|
-
-- John Leach <john@brightbox.co.uk> Wed, 22 May 2013 14:04:01 +0000
|
26
|
-
|
27
|
-
passenger (1:3.0.14-1bbox1+ng) precise; urgency=low
|
28
|
-
|
29
|
-
* New upstream release, 3.0.14
|
30
|
-
* Bumped epoch to 1 to always prefer over the non-ruby-ng packages
|
31
|
-
|
32
|
-
-- John Leach <john@brightbox.co.uk> Wed, 25 Jul 2012 18:21:17 +0100
|
33
|
-
|
34
|
-
passenger (3.0.13-1bbox2+ng) precise; urgency=low
|
35
|
-
|
36
|
-
* Removed 01_disable_html5_documentation.patch
|
37
|
-
|
38
|
-
-- John Leach <john@brightbox.co.uk> Fri, 15 Jun 2012 16:10:50 +0100
|
39
|
-
|
40
|
-
passenger (3.0.13-1bbox1+ng) precise; urgency=low
|
41
|
-
|
42
|
-
* New upstream release, 3.0.13
|
43
|
-
|
44
|
-
-- John Leach <john@brightbox.co.uk> Fri, 15 Jun 2012 12:16:50 +0100
|
45
|
-
|
46
|
-
passenger (3.0.12-1bbox1+ng) lucid; urgency=low
|
47
|
-
|
48
|
-
* New upstream release, 3.0.12
|
49
|
-
|
50
|
-
-- John Leach <john@brightbox.co.uk> Fri, 13 Apr 2012 17:19:42 +0100
|
51
|
-
|
52
|
-
passenger (3.0.11-2bbox5) lucid; urgency=low
|
53
|
-
|
54
|
-
* Fix dependencies to avoid conflicts when upgrading from old
|
55
|
-
passenger-common packages
|
56
|
-
|
57
|
-
-- John Leach <john@brightbox.co.uk> Thu, 05 Apr 2012 12:51:50 +0100
|
58
|
-
|
59
|
-
passenger (3.0.11-2bbox4) lucid; urgency=low
|
60
|
-
|
61
|
-
* Added libgoogle-perftools-dev build dependency, for building with Ruby
|
62
|
-
Enterprise Edition
|
63
|
-
|
64
|
-
-- John Leach <john@brightbox.co.uk> Thu, 23 Feb 2012 20:19:41 +0000
|
65
|
-
|
66
|
-
passenger (3.0.11-2bbox3) lucid; urgency=low
|
67
|
-
|
68
|
-
* Added ruby1.9.1-dev build dependency
|
69
|
-
|
70
|
-
-- John Leach <john@brightbox.co.uk> Wed, 22 Feb 2012 23:34:40 +0000
|
71
|
-
|
72
|
-
passenger (3.0.11-2bbox2) lucid; urgency=low
|
73
|
-
|
74
|
-
* Support for ruby 1.9.x (adds passenger-common1.8 and
|
75
|
-
passenger-common1.9.1)
|
76
|
-
|
77
|
-
-- John Leach <john@brightbox.co.uk> Wed, 22 Feb 2012 17:43:02 +0000
|
78
|
-
|
79
|
-
passenger (3.0.11-1bbox1) lucid; urgency=low
|
80
|
-
|
81
|
-
* New upstream release, 3.0.11
|
82
|
-
|
83
|
-
-- John Leach <john@brightbox.co.uk> Mon, 28 Nov 2011 12:32:08 +0000
|
84
|
-
|
85
|
-
passenger (3.0.9-1bbox1) lucid; urgency=low
|
86
|
-
|
87
|
-
* New upstream release, 3.0.9
|
88
|
-
|
89
|
-
-- John Leach <john@brightbox.co.uk> Mon, 05 Sep 2011 22:21:03 +0100
|
90
|
-
|
91
|
-
passenger (3.0.8-1bbox1) lucid; urgency=low
|
92
|
-
|
93
|
-
* New upstream release, 3.0.8
|
94
|
-
* Added 01_disable_html5_documentation.patch to fix documentation build with
|
95
|
-
older versions of asciidoc
|
96
|
-
|
97
|
-
-- John Leach <john@brightbox.co.uk> Thu, 04 Aug 2011 22:28:58 +0100
|
98
|
-
|
99
|
-
passenger (3.0.7-1bbox2) lucid; urgency=low
|
100
|
-
|
101
|
-
* Made passenger-dev suitable for building nginx-passenger
|
102
|
-
|
103
|
-
-- John Leach <john@brightbox.co.uk> Fri, 15 Apr 2011 11:36:04 +0100
|
104
|
-
|
105
|
-
passenger (3.0.7-1bbox1) lucid; urgency=low
|
106
|
-
|
107
|
-
* New upstream version, 3.0.7
|
108
|
-
|
109
|
-
-- John Leach <john@brightbox.co.uk> Thu, 14 Apr 2011 21:54:24 +0100
|
110
|
-
|
111
|
-
passenger (3.0.4-1bbox1) lucid; urgency=low
|
112
|
-
|
113
|
-
* New upstream version
|
114
|
-
* Removed 01_add_missing_packaging_constants.patch as it's now upstream
|
115
|
-
* Initial passenger-dev package
|
116
|
-
|
117
|
-
-- John Leach <john@brightbox.co.uk> Thu, 03 Mar 2011 11:56:57 +0000
|
118
|
-
|
119
|
-
passenger (3.0.1-1bbox2) hardy; urgency=low
|
120
|
-
|
121
|
-
* Fixed packaging bug with vendored libev
|
122
|
-
|
123
|
-
-- John Leach <john@brightbox.co.uk> Sun, 12 Dec 2010 16:57:41 +0000
|
124
|
-
|
125
|
-
passenger (3.0.1-1bbox1) hardy; urgency=low
|
126
|
-
|
127
|
-
* New Upstream Version, 3.0.1
|
128
|
-
* Added 01_add_missing_packaging_constants.patch to fix issue #592
|
129
|
-
|
130
|
-
-- John Leach <john@brightbox.co.uk> Sun, 12 Dec 2010 14:20:31 +0000
|
131
|
-
|
132
|
-
passenger (3.0.0-1bbox3) hardy; urgency=low
|
133
|
-
|
134
|
-
* Fixed clean of vendored libev
|
135
|
-
|
136
|
-
-- John Leach <john@brightbox.co.uk> Thu, 11 Nov 2010 17:30:20 +0000
|
137
|
-
|
138
|
-
passenger (3.0.0-1bbox2) hardy; urgency=low
|
139
|
-
|
140
|
-
* Fixed packaging bug with vendored libev
|
141
|
-
|
142
|
-
-- John Leach <john@brightbox.co.uk> Wed, 19 Oct 2010 21:37:19 +0100
|
143
|
-
|
144
|
-
passenger (3.0.0-1bbox1) hardy; urgency=low
|
145
|
-
|
146
|
-
* New Upstream Version, 3.0.0
|
147
|
-
|
148
|
-
-- John Leach <john@brightbox.co.uk> Wed, 19 Oct 2010 12:57:07 +0100
|
149
|
-
|
150
|
-
passenger (3.0.0-1bbox1~pre3) hardy; urgency=low
|
151
|
-
|
152
|
-
* New Upstream Version, 3.0.0~pre3
|
153
|
-
|
154
|
-
-- John Leach <john@brightbox.co.uk> Wed, 20 Sep 2010 17:27:09 +0100
|
155
|
-
|
156
|
-
passenger (2.2.15-1bbox1) hardy; urgency=low
|
157
|
-
|
158
|
-
* New Upstream Version, 2.2.15
|
159
|
-
|
160
|
-
-- Ben Arblaster <ben@brightbox.co.uk> Tue, 06 Jul 2010 14:37:38 +0100
|
161
|
-
|
162
|
-
passenger (2.2.14-1bbox2) hardy; urgency=low
|
163
|
-
|
164
|
-
* New Upstream Version, 2.2.14
|
165
|
-
|
166
|
-
-- Ben Arblaster <ben@brightbox.co.uk> Wed, 23 Jun 2010 11:32:26 +0100
|
167
|
-
|
168
|
-
passenger (2.2.11-1bbox2) hardy; urgency=low
|
169
|
-
|
170
|
-
* Fix dependency on passenger-common
|
171
|
-
|
172
|
-
-- John Leach <john@brightbox.co.uk> Fri, 18 Jun 2010 07:41:26 +0100
|
173
|
-
|
174
|
-
passenger (2.2.11-1bbox1) hardy; urgency=low
|
175
|
-
|
176
|
-
* New Upstream Version, 2.2.11
|
177
|
-
|
178
|
-
-- John Leach <john@brightbox.co.uk> Fri, 05 Mar 2010 15:03:50 +0000
|
179
|
-
|
180
|
-
passenger (2.2.10-1bbox2) hardy; urgency=low
|
181
|
-
|
182
|
-
* Change depency from apache mpm to apache common package
|
183
|
-
|
184
|
-
-- John Leach <john@brightbox.co.uk> Thu, 04 Mar 2010 14:52:46 +0000
|
185
|
-
|
186
|
-
passenger (2.2.10-1bbox1) hardy; urgency=low
|
187
|
-
|
188
|
-
* New Upstream Version, 2.2.10
|
189
|
-
|
190
|
-
-- John Leach <john@brightbox.co.uk> Thu, 25 Feb 2010 15:31:42 +0000
|
191
|
-
|
192
|
-
passenger (2.2.9-1bbox1) hardy; urgency=low
|
193
|
-
|
194
|
-
* New Upstream Version, 2.2.9
|
195
|
-
|
196
|
-
-- John Leach <john@brightbox.co.uk> Fri, 08 Jan 2010 11:37:10 +0000
|
197
|
-
|
198
|
-
passenger (2.2.7-1bbox1) hardy; urgency=low
|
199
|
-
|
200
|
-
* New Upstream Version, 2.2.7
|
201
|
-
|
202
|
-
-- John Leach <john@brightbox.co.uk> Mon, 23 Nov 2009 20:04:04 +0000
|
203
|
-
|
204
|
-
passenger (2.2.5-1bbox1) hardy; urgency=low
|
205
|
-
|
206
|
-
* New Upstream Version, 2.2.5
|
207
|
-
|
208
|
-
-- John Leach <john@brightbox.co.uk> Thu, 03 Sep 2009 08:13:14 +0100
|
209
|
-
|
210
|
-
passenger (2.2.4-1bbox1) hardy; urgency=low
|
211
|
-
|
212
|
-
* New Upstream Version, 2.2.4
|
213
|
-
|
214
|
-
-- John Leach <john@brightbox.co.uk> Mon, 29 Jun 2009 11:05:34 +0100
|
215
|
-
|
216
|
-
passenger (2.2.2-1bbox2) hardy; urgency=low
|
217
|
-
|
218
|
-
* Changed dependency from librack to librack1.8
|
219
|
-
|
220
|
-
-- John Leach <john@brightbox.co.uk> Fri, 01 May 2009 13:05:22 +0100
|
221
|
-
|
222
|
-
passenger (2.2.2-1bbox1) hardy; urgency=low
|
223
|
-
|
224
|
-
* New Upstream Version, 2.2.2
|
225
|
-
* Updated dependency to librack 1.0.0
|
226
|
-
|
227
|
-
-- John Leach <john@brightbox.co.uk> Fri, 01 May 2009 12:21:43 +0100
|
228
|
-
|
229
|
-
passenger (2.2.1-1bbox2) hardy; urgency=low
|
230
|
-
|
231
|
-
* Conflicts with older versions of libapache2-mod-passenger
|
232
|
-
* libapache2-mod-passenger depends on exact version of passenger-common
|
233
|
-
|
234
|
-
-- John Leach <john@brightbox.co.uk> Wed, 22 Apr 2009 18:49:42 +0100
|
235
|
-
|
236
|
-
passenger (2.2.1-1bbox1) hardy; urgency=low
|
237
|
-
|
238
|
-
* New Upstream Version, 2.2.1
|
239
|
-
* Split into separate packages, to allow nginx support
|
240
|
-
|
241
|
-
-- John Leach <john@brightbox.co.uk> Mon, 20 Apr 2009 17:18:09 +0100
|
242
|
-
|
243
|
-
passenger (2.2.0-1bbox1) hardy; urgency=low
|
244
|
-
|
245
|
-
* New Upstream Version, 2.2
|
246
|
-
|
247
|
-
-- John Leach <john@brightbox.co.uk> Fri, 17 Apr 2009 10:34:14 +0100
|
248
|
-
|
249
|
-
passenger (2.1.3-1bbox1) hardy; urgency=low
|
250
|
-
|
251
|
-
* New upstream version, 2.1.3
|
252
|
-
|
253
|
-
-- John Leach <john@brightbox.co.uk> Sun, 05 Apr 2009 15:14:34 +0100
|
254
|
-
|
255
|
-
passenger (2.1.2-1bbox1) hardy; urgency=low
|
256
|
-
|
257
|
-
* New upstream version
|
258
|
-
|
259
|
-
-- John Leach <john@brightbox.co.uk> Sat, 14 Mar 2009 17:34:17 +0000
|
260
|
-
|
261
|
-
passenger (2.1.1.20090309-0bbox1) hardy; urgency=low
|
262
|
-
|
263
|
-
* New upstream version
|
264
|
-
|
265
|
-
-- John Leach <john@brightbox.co.uk> Wed, 11 Mar 2009 00:05:15 +0000
|
266
|
-
|
267
|
-
passenger (2.0.6-0bbox2) hardy; urgency=low
|
268
|
-
|
269
|
-
* Fixed depends to allow apache2-mpm-prefork instead of apache2-mpm-worker
|
270
|
-
|
271
|
-
-- John Leach <john@brightbox.co.uk> Sun, 11 Jan 2009 15:01:22 +0000
|
272
|
-
|
273
|
-
passenger (2.0.6-0bbox1) hardy; urgency=low
|
274
|
-
|
275
|
-
* New Upstream Version, 2.0.6
|
276
|
-
|
277
|
-
-- John Leach <john@brightbox.co.uk> Mon, 15 Dec 2008 19:29:13 +0000
|
278
|
-
|
279
|
-
passenger (2.0.5-0bbox1) hardy; urgency=low
|
280
|
-
|
281
|
-
* New Upstream Version, 2.0.5
|
282
|
-
|
283
|
-
-- John Leach <john@brightbox.co.uk> Fri, 05 Dec 2008 14:22:41 +0000
|
284
|
-
|
285
|
-
passenger (2.0.4-1bbox2) hardy; urgency=medium
|
286
|
-
|
287
|
-
* Added 11_fix_passenger-config_version.patch to fix bug in passenger-config
|
288
|
-
(Thanks to Rich Drummond)
|
289
|
-
* Changed depends to allow apache2-mpm-prefork instead of apache2-mpm-worker
|
290
|
-
|
291
|
-
-- John Leach <john@brightbox.co.uk> Wed, 03 Dec 2008 18:14:46 +0000
|
292
|
-
|
293
|
-
passenger (2.0.4-1bbox1) hardy; urgency=low
|
294
|
-
|
295
|
-
* New upstream version, 2.0.4
|
296
|
-
|
297
|
-
-- John Leach <john@brightbox.co.uk> Mon, 01 Dec 2008 23:00:11 +0000
|
298
|
-
|
299
|
-
passenger (2.0.3-1bbox4) hardy; urgency=low
|
300
|
-
|
301
|
-
* Tweaked build-depends for Ruby 1.8
|
302
|
-
|
303
|
-
-- John Leach <john@brightbox.co.uk> Wed, 26 Nov 2008 17:41:07 +0000
|
304
|
-
|
305
|
-
passenger (2.0.3-0ubuntu1~bbox3) hardy; urgency=low
|
306
|
-
|
307
|
-
* Change rubygems depends to suggests
|
308
|
-
* Fix typo in control that led to mod_passenger.so being put in /
|
309
|
-
|
310
|
-
-- John Leach <john@brightbox.co.uk> Wed, 26 Nov 2008 14:02:29 +0000
|
311
|
-
|
312
|
-
passenger (2.0.3-0ubuntu1~bbox2) intrepid; urgency=low
|
313
|
-
|
314
|
-
* Initial release: closes LP: #246719
|
315
|
-
|
316
|
-
-- Neil Wilson <neil@brightbox.co.uk> Sun, 17 Aug 2008 22:30:35 +0100
|