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
Binary file
|
@@ -1,26 +0,0 @@
|
|
1
|
-
### Begin automatically installed Phusion Passenger load snippet ###
|
2
|
-
LoadModule passenger_module modules/mod_passenger.so
|
3
|
-
### End automatically installed Phusion Passenger load snippet ###
|
4
|
-
### Begin automatically installed Phusion Passenger config snippet ###
|
5
|
-
<IfModule mod_passenger.c>
|
6
|
-
PassengerRoot @PASSENGERROOT@
|
7
|
-
PassengerRuby /usr/bin/ruby
|
8
|
-
</IfModule>
|
9
|
-
### End automatically installed Phusion Passenger config snippet ###
|
10
|
-
|
11
|
-
# Deploying a web application: an example
|
12
|
-
|
13
|
-
# Suppose you have a web application in /somewhere. Add a virtual host to
|
14
|
-
# your Apache configuration file and set its DocumentRoot to /somewhere/public:
|
15
|
-
#
|
16
|
-
# <VirtualHost *:80>
|
17
|
-
# ServerName www.yourhost.com
|
18
|
-
# # Be sure to point to 'public'!
|
19
|
-
# DocumentRoot /somewhere/public
|
20
|
-
# <Directory /somewhere/public>
|
21
|
-
# # Relax Apache security settings
|
22
|
-
# AllowOverride all
|
23
|
-
# # <-- MultiViews must be turned off
|
24
|
-
# Options -MultiViews
|
25
|
-
# </Directory>
|
26
|
-
# </VirtualHost>
|
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
//// This file contains system-specific configuration options that the test suite needs.
|
3
|
-
//// Please customize it for your system.
|
4
|
-
|
5
|
-
// These are the usernames and group names of normal, non-administrator
|
6
|
-
// users and groups. Preferably, these are user and group accounts that
|
7
|
-
// are normally not used.
|
8
|
-
//
|
9
|
-
// These users and groups MUST be able to access this 'test' directory,
|
10
|
-
// otherwise the tests will fail.
|
11
|
-
|
12
|
-
///// Good values for Linux and FreeBSD. Same restrictions apply.
|
13
|
-
"normal_user_1": "games",
|
14
|
-
"normal_user_2": "daemon",
|
15
|
-
"default_user": "man",
|
16
|
-
"normal_group_1": "daemon",
|
17
|
-
"normal_group_2": "man",
|
18
|
-
"default_group": "games",
|
19
|
-
|
20
|
-
// A nonexistant username, group name, user ID and group ID.
|
21
|
-
"nonexistant_user": "xxxxxxxxxxxxxxxxxxx",
|
22
|
-
"nonexistant_group": "xxxxxxxxxxxxxxxxxxx",
|
23
|
-
"nonexistant_uid": 9999,
|
24
|
-
"nonexistant_gid": 9999,
|
25
|
-
|
26
|
-
// If you want to run the Nginx integration tests, then set the following
|
27
|
-
// config option to the full path of the Nginx binary. This Nginx binary *must*
|
28
|
-
// be compiled with Phusion Passenger support!
|
29
|
-
"nginx": "/usr/local/sbin/nginx"
|
30
|
-
}
|
@@ -1,478 +0,0 @@
|
|
1
|
-
# Based on http://pkgs.fedoraproject.org/cgit/rubygem-passenger.git/tree/
|
2
|
-
|
3
|
-
%global package_name <%= PASSENGER_RPM_NAME %>
|
4
|
-
%global package_version <%= PASSENGER_RPM_VERSION %>
|
5
|
-
%global package_release <%= PASSENGER_RPM_RELEASE %>
|
6
|
-
%global tarball_name <%= PASSENGER_TARBALL_NAME %>
|
7
|
-
%global tarball_version <%= PASSENGER_VERSION %>
|
8
|
-
%global apache_module_package_name <%= PASSENGER_APACHE_MODULE_RPM_NAME %>
|
9
|
-
%global namespace <%= PhusionPassenger::GLOBAL_NAMESPACE_DIRNAME %>
|
10
|
-
%global nginx_version <%= NGINX_RPM_VERSION %>
|
11
|
-
%global bundled_boost_version 1.54.0
|
12
|
-
%global is_enterprise <%= enterprise? ? 1 : 0 %>
|
13
|
-
%global release_dist .<%= @distribution %>
|
14
|
-
|
15
|
-
# Fedora <= 18 and RHEL <= 6 used the rubyabi requirement.
|
16
|
-
# This is gone in later versions.
|
17
|
-
%if 0%{?fc18}
|
18
|
-
%global uses_rubyabi 1
|
19
|
-
%global rubyabi 1.9.1
|
20
|
-
%endif
|
21
|
-
%if 0%{?el6}
|
22
|
-
%global uses_rubyabi 1
|
23
|
-
%global rubyabi 1.8
|
24
|
-
%endif
|
25
|
-
|
26
|
-
%if 0%{?fedora} >= 19
|
27
|
-
%global gem_extdir %{gem_extdir_mri}
|
28
|
-
%endif
|
29
|
-
%{!?gem_extdir: %global gem_extdir %{gem_instdir}/extdir}
|
30
|
-
|
31
|
-
%{!?_httpd_mmn: %{expand: %%global _httpd_mmn %%(cat %{_includedir}/httpd/.mmn 2>/dev/null || echo missing-httpd-devel)}}
|
32
|
-
%{!?_httpd_confdir: %{expand: %%global _httpd_confdir %%{_sysconfdir}/httpd/conf.d}}
|
33
|
-
# /etc/httpd/conf.d with httpd < 2.4 and defined as /etc/httpd/conf.modules.d with httpd >= 2.4
|
34
|
-
%{!?_httpd_modconfdir: %{expand: %%global _httpd_modconfdir %%{_sysconfdir}/httpd/conf.d}}
|
35
|
-
%{!?_httpd_moddir: %{expand: %%global _httpd_moddir %%{_libdir}/httpd/modules}}
|
36
|
-
|
37
|
-
%global ruby_dir_version %(ruby -rrbconfig -e 'puts RbConfig::CONFIG["ruby_version"]')
|
38
|
-
%global ruby_arch_name %(ruby -rrbconfig -e 'puts RbConfig::CONFIG["arch"]')
|
39
|
-
%{!?ruby_sitelibdir: %global ruby_sitelibdir %(ruby -rrbconfig -e 'puts RbConfig::CONFIG["sitelibdir"]')}
|
40
|
-
%{!?ruby_sitearchdir: %global ruby_sitearchdir %(ruby -rrbconfig -e 'puts RbConfig::CONFIG["sitearchdir"]')}
|
41
|
-
%global passenger_ruby_libdir %{ruby_sitelibdir}
|
42
|
-
%global locations_ini %{passenger_ruby_libdir}/phusion_passenger/locations.ini
|
43
|
-
|
44
|
-
|
45
|
-
Summary: Phusion Passenger application server
|
46
|
-
Name: %{package_name}
|
47
|
-
Version: %{package_version}
|
48
|
-
Release: %{package_release}%{?release_dist}
|
49
|
-
Group: System Environment/Daemons
|
50
|
-
# Passenger code uses MIT license.
|
51
|
-
# Bundled(Boost) uses Boost Software License
|
52
|
-
# BCrypt and Blowfish files use BSD license.
|
53
|
-
# Documentation is CC-BY-SA
|
54
|
-
# See: https://bugzilla.redhat.com/show_bug.cgi?id=470696#c146
|
55
|
-
License: Boost and BSD and BSD with advertising and MIT and zlib
|
56
|
-
URL: https://www.phusionpassenger.com
|
57
|
-
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
58
|
-
|
59
|
-
Source: http://s3.amazonaws.com/phusion-passenger/releases/%{tarball_name}-%{tarball_version}.tar.gz
|
60
|
-
Source1: http://nginx.org/download/nginx-%{nginx_version}.tar.gz
|
61
|
-
Source10: passenger.logrotate
|
62
|
-
Source11: apache-passenger.conf.in
|
63
|
-
Source12: config.json
|
64
|
-
|
65
|
-
# Make example config for tests ready for linux by default
|
66
|
-
Patch4: passenger_tests_default_config_example.patch
|
67
|
-
|
68
|
-
# Test tries to spawn 1000 threads with 256kb stacks. Default Linux settings
|
69
|
-
# deny allocating so much, causing test to fail. Let's use 8kb stacks instead.
|
70
|
-
Patch102: passenger_dynamic_thread_group.patch
|
71
|
-
|
72
|
-
# https://bugzilla.redhat.com/show_bug.cgi?id=985634
|
73
|
-
Patch107: rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch
|
74
|
-
|
75
|
-
Requires: rubygems
|
76
|
-
# XXX: Needed to run passenger standalone
|
77
|
-
Requires: rubygem(rack)
|
78
|
-
Requires: rubygem(rake)
|
79
|
-
%if 0%{?uses_rubyabi}
|
80
|
-
Requires: ruby(abi) = %{rubyabi}
|
81
|
-
%else
|
82
|
-
Requires: ruby(release)
|
83
|
-
%endif
|
84
|
-
|
85
|
-
%if 0%{?rhel} >= 6 || 0%{?fedora} >= 15
|
86
|
-
BuildRequires: libcurl-devel
|
87
|
-
%else
|
88
|
-
BuildRequires: curl-devel
|
89
|
-
%endif
|
90
|
-
|
91
|
-
%if 0%{?rhel} < 6 && 0%{?fedora} <= 16
|
92
|
-
Requires: rubygem(fastthread) >= 1.0.1
|
93
|
-
BuildRequires: rubygem(fastthread) >= 1.0.1
|
94
|
-
%endif
|
95
|
-
|
96
|
-
BuildRequires: httpd-devel
|
97
|
-
BuildRequires: libev-devel >= 4.0.0
|
98
|
-
BuildRequires: ruby
|
99
|
-
BuildRequires: ruby-devel
|
100
|
-
BuildRequires: rubygems
|
101
|
-
BuildRequires: rubygems-devel
|
102
|
-
BuildRequires: rubygem(rake) >= 0.8.1
|
103
|
-
BuildRequires: rubygem(rack)
|
104
|
-
BuildRequires: zlib-devel
|
105
|
-
BuildRequires: pcre-devel
|
106
|
-
BuildRequires: openssl-devel
|
107
|
-
|
108
|
-
Provides: %{package_name} = %{version}-%{release}
|
109
|
-
Provides: bundled(boost) = %{bundled_boost_version}
|
110
|
-
Obsoletes: rubygem(passenger) < 4.0.33
|
111
|
-
Obsoletes: rubygem-passenger < 4.0.33
|
112
|
-
Obsoletes: rubygem-passenger%{_isa} < 4.0.33
|
113
|
-
Obsoletes: rubygem-passenger-native < 4.0.33
|
114
|
-
Obsoletes: rubygem-passenger-native%{?_isa} < 4.0.33
|
115
|
-
%if %{is_enterprise}
|
116
|
-
Obsoletes: passenger
|
117
|
-
Conflicts: passenger-devel
|
118
|
-
Conflicts: passenger-doc
|
119
|
-
Conflicts: passenger-native-libs
|
120
|
-
Conflicts: mod_passenger
|
121
|
-
%endif
|
122
|
-
|
123
|
-
%description
|
124
|
-
Phusion Passenger® is a web server and application server, designed to be fast, robust
|
125
|
-
and lightweight. It takes a lot of complexity out of deploying web apps, adds powerful
|
126
|
-
enterprise-grade features that are useful in production, and makes administration much
|
127
|
-
easier and less complex. It supports Ruby, Python, Node.js and Meteor.
|
128
|
-
|
129
|
-
%package -n %{apache_module_package_name}
|
130
|
-
Summary: Apache Module for Phusion Passenger
|
131
|
-
Group: System Environment/Daemons
|
132
|
-
BuildRequires: httpd-devel
|
133
|
-
Requires: httpd-mmn = %{_httpd_mmn}
|
134
|
-
Requires: %{package_name} = %{version}-%{release}
|
135
|
-
%if %{is_enterprise}
|
136
|
-
Obsoletes: mod_passenger
|
137
|
-
%endif
|
138
|
-
License: Boost and BSD and BSD with advertising and MIT and zlib
|
139
|
-
|
140
|
-
%description -n %{apache_module_package_name}
|
141
|
-
This package contains the pluggable Apache server module for Phusion Passenger®.
|
142
|
-
|
143
|
-
%package devel
|
144
|
-
Summary: Phusion Passenger development files
|
145
|
-
Group: System Environment/Daemons
|
146
|
-
Requires: %{package_name}%{?_isa} = %{version}-%{release}
|
147
|
-
Provides: bundled(boost-devel) = %{bundled_boost_version}
|
148
|
-
Obsoletes: rubygem-passenger-devel < 4.0.33
|
149
|
-
Obsoletes: rubygem-passenger-devel%{?_isa} < 4.0.33
|
150
|
-
%if %{is_enterprise}
|
151
|
-
Obsoletes: passenger-devel
|
152
|
-
%endif
|
153
|
-
License: Boost and BSD and BSD with advertising and GPL+ and MIT and zlib
|
154
|
-
|
155
|
-
%description devel
|
156
|
-
This package contains development files for Phusion Passenger®. Installing this
|
157
|
-
package allows it to compile native extensions for non-standard Ruby interpreters,
|
158
|
-
and allows Passenger Standalone to use a different Nginx core version.
|
159
|
-
|
160
|
-
%package doc
|
161
|
-
Summary: Phusion Passenger documentation
|
162
|
-
Group: System Environment/Daemons
|
163
|
-
Requires: %{package_name} = %{version}-%{release}
|
164
|
-
Obsoletes: rubygem-passenger-doc < 4.0.33
|
165
|
-
%if %{is_enterprise}
|
166
|
-
Obsoletes: passenger-doc
|
167
|
-
%endif
|
168
|
-
BuildArch: noarch
|
169
|
-
License: CC-BY-SA and MIT and (MIT or GPL+)
|
170
|
-
|
171
|
-
%description doc
|
172
|
-
This package contains documentation files for Phusion Passenger®.
|
173
|
-
|
174
|
-
%package native-libs
|
175
|
-
Summary: Phusion Passenger native extensions
|
176
|
-
Group: System Environment/Daemons
|
177
|
-
Requires: %{package_name}%{?_isa} = %{version}-%{release}
|
178
|
-
Requires: ruby
|
179
|
-
Obsoletes: rubygem-passenger-native-libs < 4.0.33
|
180
|
-
Obsoletes: rubygem-passenger-native-libs%{?_isa} < 4.0.33
|
181
|
-
%if %{is_enterprise}
|
182
|
-
Obsoletes: passenger-native-libs
|
183
|
-
%endif
|
184
|
-
License: Boost and BSD and BSD with advertising and MIT and zlib
|
185
|
-
%description native-libs
|
186
|
-
This package contains Phusion Passenger® native extensions for Ruby.
|
187
|
-
It has been separated so that installing a new Ruby interpreter only
|
188
|
-
necessitates rebuilding this package.
|
189
|
-
|
190
|
-
|
191
|
-
%prep
|
192
|
-
%setup -q -n %{tarball_name}-%{tarball_version}
|
193
|
-
tar xzf %{SOURCE1}
|
194
|
-
|
195
|
-
%patch4 -p1 -b .lindefault
|
196
|
-
%patch102 -p1 -b .threadtest
|
197
|
-
|
198
|
-
# fix passenger boost for glibc >= 2.18
|
199
|
-
%if 0%{?fedora} >= 20
|
200
|
-
%patch107 -p1 -b .glibc-long
|
201
|
-
%endif
|
202
|
-
|
203
|
-
# Don't use bundled libev
|
204
|
-
%{__rm} -rf ext/libev
|
205
|
-
|
206
|
-
%build
|
207
|
-
export EXTRA_CFLAGS="${CFLAGS:-%optflags} -Wno-deprecated"
|
208
|
-
export EXTRA_CXXFLAGS="${CXXFLAGS:-%optflags} -Wno-deprecated"
|
209
|
-
|
210
|
-
# Remove default optimization flags and use Phusion Passenger's recommended optimization flags.
|
211
|
-
export EXTRA_CFLAGS=`echo "$EXTRA_CFLAGS" | sed 's|-O2||g'`
|
212
|
-
export EXTRA_CXXFLAGS=`echo "$EXTRA_CXXFLAGS" | sed 's|-O2||g'`
|
213
|
-
export OPTIMIZE=yes
|
214
|
-
|
215
|
-
export USE_VENDORED_LIBEV=false
|
216
|
-
export CACHING=false
|
217
|
-
|
218
|
-
# Speed up ccache (reduce I/O) by lightly compressing things.
|
219
|
-
# Always set these variables because pbuilder uses ccache transparently.
|
220
|
-
export CCACHE_COMPRESS=1
|
221
|
-
export CCACHE_COMPRESS_LEVEL=3
|
222
|
-
|
223
|
-
# Build Passenger.
|
224
|
-
rake fakeroot \
|
225
|
-
NATIVE_PACKAGING_METHOD=rpm \
|
226
|
-
FS_PREFIX=%{_prefix} \
|
227
|
-
FS_BINDIR=%{_bindir} \
|
228
|
-
FS_SBINDIR=%{_sbindir} \
|
229
|
-
FS_DATADIR=%{_datadir} \
|
230
|
-
FS_DOCDIR=%{_docdir} \
|
231
|
-
FS_LIBDIR=%{_libdir} \
|
232
|
-
RUBYLIBDIR=%{ruby_sitelibdir} \
|
233
|
-
RUBYARCHDIR=%{ruby_sitearchdir} \
|
234
|
-
APACHE2_MODULE_PATH=%{_httpd_moddir}/mod_passenger.so
|
235
|
-
|
236
|
-
# Build Nginx core for Passenger Standalone.
|
237
|
-
nginx_config_opts=`ruby -Ilib -rphusion_passenger -e 'PhusionPassenger.locate_directories; PhusionPassenger.require_passenger_lib "constants"; puts PhusionPassenger::STANDALONE_NGINX_CONFIGURE_OPTIONS'`
|
238
|
-
pushd nginx-%{nginx_version}
|
239
|
-
./configure --prefix=/tmp $nginx_config_opts --add-module=`pwd`/../ext/nginx
|
240
|
-
make
|
241
|
-
popd
|
242
|
-
|
243
|
-
|
244
|
-
%install
|
245
|
-
%{__rm} -rf %{buildroot}
|
246
|
-
%{__mkdir} %{buildroot}
|
247
|
-
%{__cp} -a pkg/fakeroot/* %{buildroot}/
|
248
|
-
%{__cp} nginx-%{nginx_version}/objs/nginx %{buildroot}%{_libdir}/%{namespace}/support-binaries/nginx-%{nginx_version}
|
249
|
-
|
250
|
-
# Install bootstrapping code into the executables and the Nginx config script.
|
251
|
-
./dev/install_scripts_bootstrap_code.rb --ruby %{passenger_ruby_libdir} %{buildroot}%{_bindir}/* %{buildroot}%{_sbindir}/*
|
252
|
-
./dev/install_scripts_bootstrap_code.rb --nginx-module-config %{_bindir} %{buildroot}%{_datadir}/%{namespace}/ngx_http_passenger_module/config
|
253
|
-
|
254
|
-
# Install Apache config.
|
255
|
-
%{__mkdir_p} %{buildroot}%{_httpd_confdir} %{buildroot}%{_httpd_modconfdir}
|
256
|
-
%{__sed} -e 's|@PASSENGERROOT@|%{passenger_ruby_libdir}/phusion_passenger/locations.ini|g' %{SOURCE11} > passenger.conf
|
257
|
-
|
258
|
-
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
259
|
-
%{__sed} -n /^LoadModule/p passenger.conf > 10-passenger.conf
|
260
|
-
%{__sed} -i /^LoadModule/d passenger.conf
|
261
|
-
touch -r %{SOURCE11} 10-passenger.conf
|
262
|
-
install -pm 0644 10-passenger.conf %{buildroot}%{_httpd_modconfdir}/passenger.conf
|
263
|
-
%endif
|
264
|
-
touch -r %{SOURCE11} passenger.conf
|
265
|
-
install -pm 0644 passenger.conf %{buildroot}%{_httpd_confdir}/passenger.conf
|
266
|
-
|
267
|
-
# Install man pages into the proper location.
|
268
|
-
%{__mkdir_p} %{buildroot}%{_mandir}/man1
|
269
|
-
%{__mkdir_p} %{buildroot}%{_mandir}/man8
|
270
|
-
%{__cp} man/*.1 %{buildroot}%{_mandir}/man1
|
271
|
-
%{__cp} man/*.8 %{buildroot}%{_mandir}/man8
|
272
|
-
|
273
|
-
# Make our ghost log and run directories...
|
274
|
-
%{__mkdir_p} %{buildroot}%{_localstatedir}/log/passenger-analytics
|
275
|
-
|
276
|
-
# logrotate
|
277
|
-
%{__mkdir_p} %{buildroot}%{_sysconfdir}/logrotate.d
|
278
|
-
install -pm 0644 %{SOURCE10} %{buildroot}%{_sysconfdir}/logrotate.d/passenger
|
279
|
-
|
280
|
-
|
281
|
-
%check
|
282
|
-
export EXTRA_CFLAGS="${CFLAGS:-%optflags} -Wno-deprecated"
|
283
|
-
export EXTRA_CXXFLAGS="${CXXFLAGS:-%optflags} -Wno-deprecated"
|
284
|
-
export EXTRA_CFLAGS=`echo "$EXTRA_CFLAGS" | sed 's|-O2||g'`
|
285
|
-
export EXTRA_CXXFLAGS=`echo "$EXTRA_CXXFLAGS" | sed 's|-O2||g'`
|
286
|
-
export USE_VENDORED_LIBEV=false
|
287
|
-
export CCACHE_COMPRESS=1
|
288
|
-
export CCACHE_COMPRESS_LEVEL=3
|
289
|
-
|
290
|
-
# Running the full test suite is not only slow, but also impossible
|
291
|
-
# because not all requirements are packaged by Fedora. It's also not
|
292
|
-
# too useful because Phusion Passenger is automatically tested by a CI
|
293
|
-
# server on every commit. The C++ tests are the most likely to catch
|
294
|
-
# any platform-specific bugs (e.g. bugs caused by wrong compiler options)
|
295
|
-
# so we only run those. Note that the C++ tests are highly timing
|
296
|
-
# sensitive, so sometimes they may fail even though nothing is really
|
297
|
-
# wrong. We therefore do not make failures fatal, although the result
|
298
|
-
# should still be checked.
|
299
|
-
%{__cp} %{SOURCE12} test/config.json
|
300
|
-
# rake test:cxx || true
|
301
|
-
|
302
|
-
%files
|
303
|
-
%{_bindir}/*
|
304
|
-
%{_sbindir}/*
|
305
|
-
%{_libdir}/%{namespace}/support-binaries
|
306
|
-
%{_datadir}/%{namespace}/helper-scripts
|
307
|
-
%{_datadir}/%{namespace}/templates
|
308
|
-
%{_datadir}/%{namespace}/standalone_default_root
|
309
|
-
%{_datadir}/%{namespace}/node
|
310
|
-
%{_datadir}/%{namespace}/*.types
|
311
|
-
%{_datadir}/%{namespace}/*.crt
|
312
|
-
%{_datadir}/%{namespace}/*.txt
|
313
|
-
%dir %{_localstatedir}/log/passenger-analytics
|
314
|
-
%{_sysconfdir}/logrotate.d/passenger
|
315
|
-
%{_mandir}/*/*
|
316
|
-
%{passenger_ruby_libdir}/*
|
317
|
-
|
318
|
-
%files doc
|
319
|
-
%{_docdir}/%{namespace}/*
|
320
|
-
|
321
|
-
%files devel
|
322
|
-
%{_datadir}/%{namespace}/ngx_http_passenger_module
|
323
|
-
%{_datadir}/%{namespace}/ruby_extension_source
|
324
|
-
%{_datadir}/%{namespace}/include
|
325
|
-
%{_libdir}/%{namespace}/common
|
326
|
-
|
327
|
-
%files -n %{apache_module_package_name}
|
328
|
-
%config(noreplace) %{_httpd_modconfdir}/*.conf
|
329
|
-
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
330
|
-
%config(noreplace) %{_httpd_confdir}/*.conf
|
331
|
-
%endif
|
332
|
-
%{_httpd_moddir}/mod_passenger.so
|
333
|
-
|
334
|
-
%files native-libs
|
335
|
-
%{ruby_sitearchdir}/passenger_native_support.so
|
336
|
-
|
337
|
-
%changelog
|
338
|
-
* Thu Nov 14 2013 Jan Kaluza <jkaluza@redhat.com> - 4.0.18-4
|
339
|
-
- load native library from proper path
|
340
|
-
|
341
|
-
* Thu Oct 31 2013 Jan Kaluza <jkaluza@redhat.com> - 4.0.18-3
|
342
|
-
- fix #1021940 - add locations.ini with proper Fedora locations
|
343
|
-
|
344
|
-
* Wed Sep 25 2013 Troy Dawson <tdawson@redhat.com> - 4.0.18-2
|
345
|
-
- Cleanup spec file
|
346
|
-
- Fix for bz#987879
|
347
|
-
|
348
|
-
* Tue Sep 24 2013 Troy Dawson <tdawson@redhat.com> - 4.0.18-1
|
349
|
-
- Update to 4.0.18
|
350
|
-
- Remove patches no longer needed
|
351
|
-
- Update patches that need updating
|
352
|
-
|
353
|
-
* Mon Sep 23 2013 Brett Lentz <blentz@redhat.com> - 3.0.21-9
|
354
|
-
- finish fixing bz#999384
|
355
|
-
|
356
|
-
* Fri Sep 20 2013 Joe Orton <jorton@redhat.com> - 3.0.21-8
|
357
|
-
- update packaging for httpd 2.4.x
|
358
|
-
|
359
|
-
* Thu Sep 19 2013 Troy Dawson <tdawson@redhat.com> - 3.0.21-7
|
360
|
-
- Fix for F20 FTBFS (#993310)
|
361
|
-
|
362
|
-
* Thu Aug 22 2013 Brett Lentz <blentz@redhat.com> - 3.0.21-6
|
363
|
-
- bz#999384
|
364
|
-
|
365
|
-
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.21-5
|
366
|
-
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
367
|
-
|
368
|
-
* Thu Jul 18 2013 Troy Dawson <tdawson@redhat.com> - 3.0.21-4
|
369
|
-
- Fix for CVE-2013-4136 (#985634)
|
370
|
-
|
371
|
-
* Fri Jun 21 2013 Troy Dawson <tdawson@redhat.com> - 3.0.21-3
|
372
|
-
- Putting the agents back to where they originally were
|
373
|
-
|
374
|
-
* Fri Jun 21 2013 Troy Dawson <tdawson@redhat.com> - 3.0.21-2
|
375
|
-
- Remove Rakefile (only used for building) (#976843)
|
376
|
-
|
377
|
-
* Thu May 30 2013 Troy Dawson <tdawson@redhat.com> - 3.0.21-1
|
378
|
-
- Update to version 3.0.21
|
379
|
-
- Fix for CVE-2013-2119
|
380
|
-
|
381
|
-
* Thu May 16 2013 Troy Dawson <tdawson@redhat.com> - 3.0.19-4
|
382
|
-
- Fix to make agents work on F19+
|
383
|
-
|
384
|
-
* Wed Mar 13 2013 Troy Dawson <tdawson@redhat.com> - 3.0.19-3
|
385
|
-
- Fix to make it build/install on F19+
|
386
|
-
- Added patch105
|
387
|
-
|
388
|
-
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.19-2
|
389
|
-
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
390
|
-
|
391
|
-
* Sun Jan 20 2013 Orion Poplawski <orion@cora.nwra.com> - 3.0.19-1
|
392
|
-
- Update to 3.0.19
|
393
|
-
|
394
|
-
* Wed Sep 19 2012 Orion Poplawski <orion@cora.nwra.com> - 3.0.17-3
|
395
|
-
- Drop dependency on rubygem(file-tail), no longer needed
|
396
|
-
|
397
|
-
* Fri Sep 7 2012 Brett Lentz <blentz@redhat.com> - 3.0.17-2
|
398
|
-
- Fix License
|
399
|
-
|
400
|
-
* Thu Sep 6 2012 Brett Lentz <blentz@redhat.com> - 3.0.17-1
|
401
|
-
- update to 3.0.17
|
402
|
-
|
403
|
-
* Wed Sep 5 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-15
|
404
|
-
- add support for tmpfiles.d
|
405
|
-
|
406
|
-
* Tue Sep 4 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-14
|
407
|
-
- Fix License tag
|
408
|
-
- Fix gem_extdir ownership issue
|
409
|
-
|
410
|
-
* Wed Aug 29 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-13
|
411
|
-
- fix pathing issues
|
412
|
-
- fix ruby abi requires
|
413
|
-
|
414
|
-
* Wed Aug 29 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-12
|
415
|
-
- remove capability for running passenger standalone until daemon_controller is updated
|
416
|
-
|
417
|
-
* Tue Aug 28 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-11
|
418
|
-
- fix issues with fastthread
|
419
|
-
|
420
|
-
* Mon Aug 27 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-10
|
421
|
-
- get test suite sort of working
|
422
|
-
- move agents to gem_extdir
|
423
|
-
|
424
|
-
* Fri Aug 24 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-9
|
425
|
-
- stop using _bindir
|
426
|
-
- fix native libs path
|
427
|
-
- fix ownership on extdir
|
428
|
-
- improve test output
|
429
|
-
|
430
|
-
* Wed Aug 22 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-8
|
431
|
-
- removed policycoreutils requirement
|
432
|
-
- moved native libs to gem_extdir
|
433
|
-
|
434
|
-
* Wed Aug 22 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-7
|
435
|
-
- remove selinux policy module. it's in the base policy now.
|
436
|
-
|
437
|
-
* Fri Aug 17 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-6
|
438
|
-
- put native-libs into ruby_vendorarchdir.
|
439
|
-
|
440
|
-
* Thu Aug 16 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-5
|
441
|
-
- clean up packaging and file placement.
|
442
|
-
- add logrotate file for /var/log/passenger-analytics
|
443
|
-
|
444
|
-
* Wed Aug 15 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-4
|
445
|
-
- backported fix only needed on f18+
|
446
|
-
|
447
|
-
* Wed Aug 15 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-3
|
448
|
-
- backport fix from https://svn.boost.org/trac/boost/ticket/6940
|
449
|
-
|
450
|
-
* Mon Aug 13 2012 Brett Lentz <blentz@redhat.com> - 3.0.14-2
|
451
|
-
- remove F15 conditional. F15 is EOL.
|
452
|
-
|
453
|
-
* Fri Jul 27 2012 Troy Dawson <tdawson@redhat.com> - 3.0.14-1
|
454
|
-
- Updated to version 3.0.14
|
455
|
-
|
456
|
-
* Fri Jul 27 2012 Troy Dawson <tdawson@redhat.com> - 3.0.12-6
|
457
|
-
- Added patch20, spawn-ip
|
458
|
-
- Changed selinux files to be more dynamic
|
459
|
-
|
460
|
-
* Tue Jun 05 2012 Troy Dawson <tdawson@redhat.com> - 3.0.12-5
|
461
|
-
- Add all the selinux files
|
462
|
-
|
463
|
-
* Tue Jun 05 2012 Troy Dawson <tdawson@redhat.com> - 3.0.12-4
|
464
|
-
- Added selinux configurations
|
465
|
-
|
466
|
-
* Tue Jun 05 2012 Troy Dawson <tdawson@redhat.com> - 3.0.12-3
|
467
|
-
- Added native and native-libs rpms.
|
468
|
-
|
469
|
-
* Mon Apr 16 2012 Brett Lentz <blentz@redhat.com> - 3.0.12-2
|
470
|
-
- Add dist to release.
|
471
|
-
- Shuffle around deprecated buildrequires and requires.
|
472
|
-
|
473
|
-
* Mon Apr 16 2012 Brett Lentz <blentz@redhat.com> - 3.0.12-1
|
474
|
-
- Update to 3.0.12
|
475
|
-
- Incorporate specfile changes from kanarip's version
|
476
|
-
|
477
|
-
* Wed Apr 11 2012 Brett Lentz <blentz@redhat.com> - 3.0.11-1
|
478
|
-
- Initial spec file
|