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
@@ -1,37 +0,0 @@
|
|
1
|
-
FROM centos:centos6
|
2
|
-
MAINTAINER Phusion <info@phusion.nl>
|
3
|
-
|
4
|
-
RUN rpm -Uvh http://mirror.overthewire.com.au/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm && \
|
5
|
-
yum update -y && \
|
6
|
-
yum install -y --skip-broken --enablerepo centosplus centos-release-SCL createrepo && \
|
7
|
-
yum install -y --skip-broken --enablerepo centosplus @development-tools fedora-packager git sudo gcc gcc-c++ ccache && \
|
8
|
-
yum install -y --skip-broken --enablerepo centosplus curl-devel openssl-devel python27-python && \
|
9
|
-
yum install -y --skip-broken --enablerepo centosplus ruby ruby-devel rubygems rubygems-devel rubygem-rake && \
|
10
|
-
yum install -y --skip-broken --enablerepo centosplus httpd httpd-devel zlib-devel && \
|
11
|
-
yum install -y --skip-broken --enablerepo centosplus libxml2-devel libxslt-devel sqlite-devel && \
|
12
|
-
yum install -y --skip-broken --enablerepo centosplus libev-devel pcre-devel rubygem-rack source-highlight && \
|
13
|
-
yum install -y --skip-broken --enablerepo centosplus apr-devel apr-util-devel which GeoIP-devel && \
|
14
|
-
yum install -y --skip-broken --enablerepo centosplus gd-devel gperftools-devel perl-devel perl-ExtUtils-Embed && \
|
15
|
-
yum install -y --skip-broken --enablerepo centosplus nodejs010-nodejs nodejs010-npm && \
|
16
|
-
gem install nokogiri --no-rdoc --no-ri -v 1.5.9 && \
|
17
|
-
gem install bundler mizuho bluecloth drake --no-rdoc --no-ri && \
|
18
|
-
git clone https://github.com/phusion/phusion-server-tools.git /tools && \
|
19
|
-
groupadd --gid 2467 app && \
|
20
|
-
adduser --uid 2467 --gid 2467 --password '#' app && \
|
21
|
-
usermod -a -G mock app && \
|
22
|
-
sed -i 's/Defaults requiretty//' /etc/sudoers && \
|
23
|
-
echo "%app ALL=NOPASSWD:ALL" >> /etc/sudoers.d/app && \
|
24
|
-
chmod 440 /etc/sudoers.d/app && \
|
25
|
-
sudo -u app -H rpmdev-setuptree && \
|
26
|
-
yum clean all && \
|
27
|
-
mkdir -p /etc/container_environment /etc/workaround-docker-2267 && \
|
28
|
-
ln -s /etc/workaround-docker-2267 /cte
|
29
|
-
ADD amazon2014-i386.cfg /etc/mock/amazon2014-i386.cfg
|
30
|
-
ADD amazon2014-x86_64.cfg /etc/mock/amazon2014-x86_64.cfg
|
31
|
-
ADD RPM-GPG-KEY-amazon-ga /etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
32
|
-
ADD site-defaults.cfg /etc/mock/site-defaults.cfg
|
33
|
-
ADD Gemfile /home/app/
|
34
|
-
ADD Gemfile.lock /home/app/
|
35
|
-
RUN mkdir /bundle && \
|
36
|
-
chown app: /bundle /home/app/Gemfile* && \
|
37
|
-
sudo -u app -H bash -c 'cd /home/app && bundle install --path /bundle'
|
data/packaging/rpm/image/Gemfile
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
2
|
-
Version: GnuPG v1.4.5 (GNU/Linux)
|
3
|
-
|
4
|
-
mQENBExJSwMBCACnEqXpleV7jQhOvXnVU+p/hH0gNjA6083uTduA1ZdrCTJZV/Cy
|
5
|
-
xi3xMK4Tnumcu+NOVNDWwY5dOr291SGmDqom+AoGFF5SyveTiYtAtz9vhhbXE1Aq
|
6
|
-
zk6mq+ivd26COSacM6IWsfWrTW/2rM9ydPh6Z4d8psroT+RLhiTZr9R+niQXLnbC
|
7
|
-
yTLQr2+gMjSdVwKtJ5SwABPRG4OtxrMyR+pyEEupD9t2a2dqj4mzy59Se1krl04O
|
8
|
-
8NKMuTs8soyzEuYnFM2NIsjT4IsXVw94IrDLPknpiw5phkDNhYa5UfhLzOkdMIVH
|
9
|
-
+MeUp/MlV4YmQe9QQCW6A1vNBIZrHt5c1UYjABEBAAG0MUFtYXpvbiBMaW51eCBB
|
10
|
-
TUkgKEdBKSA8bGludXgtc2VjdXJpdHlAYW1hem9uLmNvbT6JATwEEwECACYCGwMG
|
11
|
-
CwkIBwMCBBUCCAMEFgIDAQIeAQIXgAUCTkHb3AUJC16SWQAKCRC8tKhbIcDznzqe
|
12
|
-
B/42yOjxbm9R1VWFg7xSp/aMtDDbmHuW9OCQQeIzJfheDOqczIEp4XLfMH9WiXEB
|
13
|
-
uxVGFVC6QnwgOg0e9rWoW8c25xPyFHe9mtqfr3Tmv40in1IbROtDoRzHHnxVDSmd
|
14
|
-
1wbzUMGuQ8xcG5GhGRFx+zFcY/GJ/RWsK6daWT0Pv1zhqpG5asQKiFGJdenOj0JO
|
15
|
-
EdY2g1MxeeCe8PJPwuJcV1P4LoXQnVT3Ttd/zDcCuo4aA/Pu4t3lH478f5SzJvsW
|
16
|
-
nM7m471p5YtNWsZt8SvnVTfv+X09wTzSQ2njs87JQWj9+4NsHSQ8slSvTi9Zcqm9
|
17
|
-
AytaW43P8V1JGAfya+74ZDzL
|
18
|
-
=xQTk
|
19
|
-
-----END PGP PUBLIC KEY BLOCK-----
|
@@ -1,96 +0,0 @@
|
|
1
|
-
config_opts['root'] = 'amazon2014-i386'
|
2
|
-
config_opts['target_arch'] = 'i686'
|
3
|
-
config_opts['legal_host_arches'] = ('i386', 'i586', 'i686', 'x86_64')
|
4
|
-
config_opts['chroot_setup_cmd'] = 'groupinstall buildsys-build'
|
5
|
-
config_opts['dist'] = 'el6' # only useful for --resultdir variable subst
|
6
|
-
|
7
|
-
config_opts['yum.conf'] = """
|
8
|
-
[main]
|
9
|
-
cachedir=/var/cache/yum
|
10
|
-
debuglevel=1
|
11
|
-
reposdir=/dev/null
|
12
|
-
logfile=/var/log/yum.log
|
13
|
-
retries=20
|
14
|
-
obsoletes=1
|
15
|
-
gpgcheck=0
|
16
|
-
assumeyes=1
|
17
|
-
syslog_ident=mock
|
18
|
-
syslog_device=
|
19
|
-
|
20
|
-
# repos
|
21
|
-
[amzn-main]
|
22
|
-
name=amzn-main-Base
|
23
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/main/mirror.list
|
24
|
-
mirror_expire=300
|
25
|
-
metadata_expire=300
|
26
|
-
priority=10
|
27
|
-
failovermethod=priority
|
28
|
-
fastestmirror_enabled=0
|
29
|
-
gpgcheck=1
|
30
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
31
|
-
enabled=1
|
32
|
-
retries=5
|
33
|
-
timeout=10
|
34
|
-
report_instanceid=yes
|
35
|
-
|
36
|
-
[amzn-nosrc]
|
37
|
-
name=amzn-nosrc-Base
|
38
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/nosrc/mirror.list
|
39
|
-
mirror_expire=300
|
40
|
-
metadata_expire=300
|
41
|
-
priority=10
|
42
|
-
failovermethod=priority
|
43
|
-
fastestmirror_enabled=0
|
44
|
-
gpgcheck=0
|
45
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
46
|
-
enabled=0
|
47
|
-
retries=5
|
48
|
-
timeout=10
|
49
|
-
report_instanceid=yes
|
50
|
-
|
51
|
-
[amzn-preview]
|
52
|
-
name=amzn-preview-Base
|
53
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/preview/mirror.list
|
54
|
-
mirror_expire=300
|
55
|
-
metadata_expire=300
|
56
|
-
priority=10
|
57
|
-
failovermethod=priority
|
58
|
-
fastestmirror_enabled=0
|
59
|
-
gpgcheck=1
|
60
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
61
|
-
enabled=0
|
62
|
-
retries=5
|
63
|
-
timeout=10
|
64
|
-
report_instanceid=yes
|
65
|
-
|
66
|
-
[amzn-updates]
|
67
|
-
name=amzn-updates-Base
|
68
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/updates/mirror.list
|
69
|
-
mirror_expire=300
|
70
|
-
metadata_expire=300
|
71
|
-
priority=10
|
72
|
-
failovermethod=priority
|
73
|
-
fastestmirror_enabled=0
|
74
|
-
gpgcheck=1
|
75
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
76
|
-
enabled=1
|
77
|
-
retries=5
|
78
|
-
timeout=10
|
79
|
-
report_instanceid=yes
|
80
|
-
|
81
|
-
[epel]
|
82
|
-
name=epel
|
83
|
-
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=i386
|
84
|
-
failovermethod=priority
|
85
|
-
enabled=1
|
86
|
-
gpgcheck=1
|
87
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
|
88
|
-
|
89
|
-
[epel-testing]
|
90
|
-
name=epel-testing
|
91
|
-
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=testing-epel6&arch=i386
|
92
|
-
failovermethod=priority
|
93
|
-
enabled=0
|
94
|
-
gpgcheck=1
|
95
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
|
96
|
-
"""
|
@@ -1,96 +0,0 @@
|
|
1
|
-
config_opts['root'] = 'amazon2014-x86_64'
|
2
|
-
config_opts['target_arch'] = 'x86_64'
|
3
|
-
config_opts['legal_host_arches'] = ('x86_64',)
|
4
|
-
config_opts['chroot_setup_cmd'] = 'groupinstall buildsys-build'
|
5
|
-
config_opts['dist'] = 'el6' # only useful for --resultdir variable subst
|
6
|
-
|
7
|
-
config_opts['yum.conf'] = """
|
8
|
-
[main]
|
9
|
-
cachedir=/var/cache/yum
|
10
|
-
debuglevel=1
|
11
|
-
reposdir=/dev/null
|
12
|
-
logfile=/var/log/yum.log
|
13
|
-
retries=20
|
14
|
-
obsoletes=1
|
15
|
-
gpgcheck=0
|
16
|
-
assumeyes=1
|
17
|
-
syslog_ident=mock
|
18
|
-
syslog_device=
|
19
|
-
|
20
|
-
# repos
|
21
|
-
[amzn-main]
|
22
|
-
name=amzn-main-Base
|
23
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/main/mirror.list
|
24
|
-
mirror_expire=300
|
25
|
-
metadata_expire=300
|
26
|
-
priority=10
|
27
|
-
failovermethod=priority
|
28
|
-
fastestmirror_enabled=0
|
29
|
-
gpgcheck=1
|
30
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
31
|
-
enabled=1
|
32
|
-
retries=5
|
33
|
-
timeout=10
|
34
|
-
report_instanceid=yes
|
35
|
-
|
36
|
-
[amzn-nosrc]
|
37
|
-
name=amzn-nosrc-Base
|
38
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/nosrc/mirror.list
|
39
|
-
mirror_expire=300
|
40
|
-
metadata_expire=300
|
41
|
-
priority=10
|
42
|
-
failovermethod=priority
|
43
|
-
fastestmirror_enabled=0
|
44
|
-
gpgcheck=0
|
45
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
46
|
-
enabled=0
|
47
|
-
retries=5
|
48
|
-
timeout=10
|
49
|
-
report_instanceid=yes
|
50
|
-
|
51
|
-
[amzn-preview]
|
52
|
-
name=amzn-preview-Base
|
53
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/preview/mirror.list
|
54
|
-
mirror_expire=300
|
55
|
-
metadata_expire=300
|
56
|
-
priority=10
|
57
|
-
failovermethod=priority
|
58
|
-
fastestmirror_enabled=0
|
59
|
-
gpgcheck=1
|
60
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
61
|
-
enabled=0
|
62
|
-
retries=5
|
63
|
-
timeout=10
|
64
|
-
report_instanceid=yes
|
65
|
-
|
66
|
-
[amzn-updates]
|
67
|
-
name=amzn-updates-Base
|
68
|
-
mirrorlist=http://repo.us-west-2.amazonaws.com/latest/updates/mirror.list
|
69
|
-
mirror_expire=300
|
70
|
-
metadata_expire=300
|
71
|
-
priority=10
|
72
|
-
failovermethod=priority
|
73
|
-
fastestmirror_enabled=0
|
74
|
-
gpgcheck=1
|
75
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-ga
|
76
|
-
enabled=1
|
77
|
-
retries=5
|
78
|
-
timeout=10
|
79
|
-
report_instanceid=yes
|
80
|
-
|
81
|
-
[epel]
|
82
|
-
name=epel
|
83
|
-
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=x86_64
|
84
|
-
failovermethod=priority
|
85
|
-
enabled=1
|
86
|
-
gpgcheck=1
|
87
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
|
88
|
-
|
89
|
-
[epel-testing]
|
90
|
-
name=epel-testing
|
91
|
-
mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=testing-epel6&arch=x86_64
|
92
|
-
failovermethod=priority
|
93
|
-
enabled=0
|
94
|
-
gpgcheck=1
|
95
|
-
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
|
96
|
-
"""
|
@@ -1,168 +0,0 @@
|
|
1
|
-
# mock defaults
|
2
|
-
# vim:tw=0:ts=4:sw=4:et:
|
3
|
-
#
|
4
|
-
# This config file is for site-specific default values that apply across all
|
5
|
-
# configurations. Options specified in this config file can be overridden in
|
6
|
-
# the individual mock config files.
|
7
|
-
#
|
8
|
-
# The site-defaults.cfg delivered by default has NO options set. Only set
|
9
|
-
# options here if you want to override the defaults.
|
10
|
-
#
|
11
|
-
# Entries in this file follow the same format as other mock config files.
|
12
|
-
# config_opts['foo'] = bar
|
13
|
-
|
14
|
-
#############################################################################
|
15
|
-
#
|
16
|
-
# Things that we recommend you set in site-defaults.cfg:
|
17
|
-
#
|
18
|
-
# config_opts['basedir'] = '/var/lib/mock/'
|
19
|
-
# config_opts['cache_topdir'] = '/var/cache/mock'
|
20
|
-
# Note: the path pointed to by basedir and cache_topdir must be owned
|
21
|
-
# by group 'mock' and must have mode: g+rws
|
22
|
-
# config_opts['rpmbuild_timeout'] = 0
|
23
|
-
# config_opts['use_host_resolv'] = True
|
24
|
-
|
25
|
-
# You can configure log format to pull from logging.ini formats of these names:
|
26
|
-
# config_opts['build_log_fmt_name'] = "unadorned"
|
27
|
-
# config_opts['root_log_fmt_name'] = "detailed"
|
28
|
-
# config_opts['state_log_fmt_name'] = "state"
|
29
|
-
#
|
30
|
-
# mock will normally set up a minimal chroot /dev.
|
31
|
-
# If you want to use a pre-configured /dev, disable this and use the bind-mount
|
32
|
-
# plugin to mount your special /dev
|
33
|
-
# config_opts['internal_dev_setup'] = True
|
34
|
-
#
|
35
|
-
# internal_setarch defaults to 'True' if the python 'ctypes' package is
|
36
|
-
# available. It is in the python std lib on >= python 2.5. On older versions,
|
37
|
-
# it is available as an addon. On systems w/o ctypes, it will default to 'False'
|
38
|
-
# config_opts['internal_setarch'] = False
|
39
|
-
#
|
40
|
-
# the cleanup_on_* options allow you to automatically clean and remove the
|
41
|
-
# mock build directory, but only take effect if --resultdir is used.
|
42
|
-
# config_opts provides fine-grained control. cmdline only has big hammer
|
43
|
-
#
|
44
|
-
# config_opts['cleanup_on_success'] = 1
|
45
|
-
# config_opts['cleanup_on_failure'] = 1
|
46
|
-
|
47
|
-
# if you want mock to automatically run createrepo on the rpms in your
|
48
|
-
# resultdir.
|
49
|
-
# config_opts['createrepo_on_rpms'] = False
|
50
|
-
# config_opts['createrepo_command'] = '/usr/bin/createrepo -d -q -x *.src.rpm'
|
51
|
-
|
52
|
-
# if you want mock to backup the contents of a result dir before clean
|
53
|
-
# config_opts['backup_on_clean'] = False
|
54
|
-
# config_opts('backup_base_dir'] = config_opts['basedir'] + "backup"
|
55
|
-
|
56
|
-
|
57
|
-
#############################################################################
|
58
|
-
#
|
59
|
-
# plugin related. Below are the defaults. Change to suit your site
|
60
|
-
# policy. site-defaults.cfg is a good place to do this.
|
61
|
-
#
|
62
|
-
# NOTE: Some of the caching options can theoretically affect build
|
63
|
-
# reproducability. Change with care.
|
64
|
-
#
|
65
|
-
# config_opts['plugin_conf']['package_state_enable'] = False
|
66
|
-
# config_opts['plugin_conf']['ccache_enable'] = True
|
67
|
-
# config_opts['plugin_conf']['ccache_opts']['max_cache_size'] = '4G'
|
68
|
-
config_opts['plugin_conf']['ccache_opts']['compress'] = True
|
69
|
-
config_opts['plugin_conf']['ccache_opts']['compress_level'] = 3
|
70
|
-
# config_opts['plugin_conf']['ccache_opts']['dir'] = "%(cache_topdir)s/%(root)s/ccache/"
|
71
|
-
# config_opts['plugin_conf']['yum_cache_enable'] = True
|
72
|
-
# config_opts['plugin_conf']['yum_cache_opts']['max_age_days'] = 30
|
73
|
-
# config_opts['plugin_conf']['yum_cache_opts']['dir'] = "%(cache_topdir)s/%(root)s/yum_cache/"
|
74
|
-
# config_opts['plugin_conf']['root_cache_enable'] = True
|
75
|
-
# config_opts['plugin_conf']['root_cache_opts']['max_age_days'] = 15
|
76
|
-
# config_opts['plugin_conf']['root_cache_opts']['dir'] = "%(cache_topdir)s/%(root)s/root_cache/"
|
77
|
-
# config_opts['plugin_conf']['root_cache_opts']['compress_program'] = "pigz"
|
78
|
-
# config_opts['plugin_conf']['root_cache_opts']['extension'] = ".gz"
|
79
|
-
# config_opts['plugin_conf']['root_cache_opts']['exclude_dirs'] = ["./proc", "./sys", "./dev",
|
80
|
-
# "./tmp/ccache", "./var/cache/yum" ]
|
81
|
-
#
|
82
|
-
# bind mount plugin is enabled by default but has no configured directories to
|
83
|
-
# mount
|
84
|
-
# config_opts['plugin_conf']['bind_mount_enable'] = True
|
85
|
-
# config_opts['plugin_conf']['bind_mount_opts']['dirs'].append(('/host/path', '/bind/mount/path/in/chroot/' ))
|
86
|
-
#
|
87
|
-
# config_opts['plugin_conf']['tmpfs_enable'] = False
|
88
|
-
# config_opts['plugin_conf']['tmpfs_opts']['required_ram_mb'] = 1024
|
89
|
-
# config_opts['plugin_conf']['tmpfs_opts']['max_fs_size'] = '512m'
|
90
|
-
# config_opts['plugin_conf']['tmpfs_opts']['mode'] = '0755'
|
91
|
-
# config_opts['plugin_conf']['chroot_scan_enable'] = False
|
92
|
-
# config_opts['plugin_conf']['chroot_scan_opts'] = [ "core(\.\d+)?", "\.log$",]
|
93
|
-
|
94
|
-
#############################################################################
|
95
|
-
#
|
96
|
-
# environment for chroot
|
97
|
-
#
|
98
|
-
# config_opts['environment']['TERM'] = 'vt100'
|
99
|
-
# config_opts['environment']['SHELL'] = '/bin/bash'
|
100
|
-
# config_opts['environment']['HOME'] = '/builddir'
|
101
|
-
# config_opts['environment']['HOSTNAME'] = 'mock'
|
102
|
-
# config_opts['environment']['PATH'] = '/usr/bin:/bin:/usr/sbin:/sbin'
|
103
|
-
# config_opts['environment']['PROMPT_COMMAND'] = 'echo -n "<mock-chroot>"'
|
104
|
-
# config_opts['environment']['LANG'] = os.environ.setdefault('LANG', 'en_US.UTF-8')
|
105
|
-
# config_opts['environment']['TZ'] = os.environ.setdefault('TZ', 'EST5EDT')
|
106
|
-
|
107
|
-
#############################################################################
|
108
|
-
#
|
109
|
-
# Things that you can change, but we dont recommend it:
|
110
|
-
# config_opts['chroothome'] = '/builddir'
|
111
|
-
# config_opts['clean'] = True
|
112
|
-
|
113
|
-
#############################################################################
|
114
|
-
#
|
115
|
-
# Things that must be adjusted if SCM integration is used:
|
116
|
-
#
|
117
|
-
# config_opts['scm'] = True
|
118
|
-
# config_opts['scm_opts']['method'] = 'git'
|
119
|
-
# config_opts['scm_opts']['cvs_get'] = 'cvs -d /srv/cvs co SCM_BRN SCM_PKG'
|
120
|
-
# config_opts['scm_opts']['git_get'] = 'git clone SCM_BRN git://localhost/SCM_PKG.git SCM_PKG'
|
121
|
-
# config_opts['scm_opts']['svn_get'] = 'svn co file:///srv/svn/SCM_PKG/SCM_BRN SCM_PKG'
|
122
|
-
# config_opts['scm_opts']['spec'] = 'SCM_PKG.spec'
|
123
|
-
# config_opts['scm_opts']['ext_src_dir'] = '/dev/null'
|
124
|
-
# config_opts['scm_opts']['write_tar'] = True
|
125
|
-
# config_opts['scm_opts']['git_timestamps'] = True
|
126
|
-
# config_opts['scm_opts']['exclude_vcs'] = True
|
127
|
-
|
128
|
-
# These options are also recognized but usually defined in cmd line
|
129
|
-
# with --scm-option package=<pkg> --scm-option branch=<branch>
|
130
|
-
# config_opts['scm_opts']['package'] = 'mypkg'
|
131
|
-
# config_opts['scm_opts']['branch'] = 'master'
|
132
|
-
|
133
|
-
#############################################################################
|
134
|
-
#
|
135
|
-
# Things that are best suited for individual chroot config files:
|
136
|
-
#
|
137
|
-
# MUST SET (in individual chroot cfg file):
|
138
|
-
# config_opts['root'] = 'name-of-yum-build-dir'
|
139
|
-
# config_opts['target_arch'] = 'i386'
|
140
|
-
# config_opts['yum.conf'] = ''
|
141
|
-
# config_opts['yum_common_opts'] = []
|
142
|
-
#
|
143
|
-
# CAN SET, defaults usually work ok:
|
144
|
-
# config_opts['chroot_setup_cmd'] = 'install buildsys-build'
|
145
|
-
# config_opts['log_config_file'] = 'logging.ini'
|
146
|
-
# config_opts['more_buildreqs']['srpm_name-version-release'] = 'dependencies'
|
147
|
-
# config_opts['macros']['%Add_your_macro_name_here'] = "add macro value here"
|
148
|
-
# config_opts['files']['path/name/no/leading/slash'] = "put file contents here."
|
149
|
-
# config_opts['chrootuid'] = os.getuid()
|
150
|
-
# config_opts['releasever'] = '20'
|
151
|
-
|
152
|
-
# If you change chrootgid, you must also change "mock" to the correct group
|
153
|
-
# name in this line of the mock PAM config:
|
154
|
-
# auth sufficient pam_succeed_if.so user ingroup mock use_uid quiet
|
155
|
-
# config_opts['chrootgid'] = grp.getgrnam("mock")[2]
|
156
|
-
|
157
|
-
# config_opts['useradd'] = '/usr/sbin/useradd -m -u %(uid)s -g %(gid)s -d %(home)s -n %(user)s' # Fedora/RedHat
|
158
|
-
#
|
159
|
-
# Security related
|
160
|
-
# config_opts['no_root_shells'] = False
|
161
|
-
#
|
162
|
-
# Proxy settings (https_proxy, ftp_proxy, and no_proxy can also be set)
|
163
|
-
# config_opts['http_proxy'] = 'http://localhost:3128'
|
164
|
-
#
|
165
|
-
# Extra dirs to be created when the chroot is initialized
|
166
|
-
# This is just a list of strings representing chroot paths such as:
|
167
|
-
# [ '/run/lock', ]
|
168
|
-
# config_opts['extra_chroot_dirs'] = []
|
@@ -1,238 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../lib/preprocessor')
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../lib/build_tasks_support')
|
3
|
-
|
4
|
-
DISTROS = get_distros_option
|
5
|
-
ARCHS = get_archs_option
|
6
|
-
PASSENGER_VERSION = detect_passenger_version
|
7
|
-
NGINX_VERSION = detect_nginx_version
|
8
|
-
|
9
|
-
PASSENGER_RPM_NAME = enterprise? ? "passenger-enterprise" : "passenger"
|
10
|
-
PASSENGER_RPM_VERSION = string_option("FORCE_PASSENGER_VERSION", PASSENGER_VERSION)
|
11
|
-
PASSENGER_RPM_RELEASE = enterprise? ? 2 : 1
|
12
|
-
PASSENGER_TARBALL_NAME = enterprise? ? "passenger-enterprise-server" : "passenger"
|
13
|
-
PASSENGER_APACHE_MODULE_RPM_NAME = enterprise? ? "mod_passenger_enterprise" : "mod_passenger"
|
14
|
-
NGINX_RPM_NAME = "nginx"
|
15
|
-
NGINX_RPM_VERSION = NGINX_VERSION
|
16
|
-
NGINX_RPM_RELEASE = enterprise? ? "2.p#{PASSENGER_RPM_VERSION}" : "1.p#{PASSENGER_RPM_VERSION}"
|
17
|
-
SUPPORTED_DISTROS = {
|
18
|
-
"el6" => { :mock_chroot_name => "epel-6", :name => "Enterprise Linux 6" },
|
19
|
-
# We don't support RHEL 7 yet because EPEL 7 hasn't yet packaged rubygem-rack.
|
20
|
-
#"el7" => { :mock_chroot_name => "epel-7", :name => "Enterprise Linux 7" },
|
21
|
-
}
|
22
|
-
|
23
|
-
RPMBUILD_ROOT = ENV['RPMBUILD_ROOT'] || File.expand_path("~/rpmbuild")
|
24
|
-
RPM_SOURCES_DIR = "#{RPMBUILD_ROOT}/SOURCES"
|
25
|
-
RPM_SPECS_DIR = "#{RPMBUILD_ROOT}/SPECS"
|
26
|
-
RPM_SRPMS_DIR = "#{RPMBUILD_ROOT}/SRPMS"
|
27
|
-
MOCK_FLAGS = ""
|
28
|
-
|
29
|
-
initialize_tracking_database!
|
30
|
-
check_distros_supported!
|
31
|
-
check_archs_supported!
|
32
|
-
clean_bundler_env!
|
33
|
-
TrackingDatabase.instance # Initialize singleton.
|
34
|
-
STDOUT.sync = STDERR.sync = true
|
35
|
-
ENV['CACHING'] = 'false'
|
36
|
-
|
37
|
-
|
38
|
-
##### Source tarballs and initialization #####
|
39
|
-
|
40
|
-
SOURCE_TASKS = ['source:passenger', 'source:nginx', 'source:packaging_additions']
|
41
|
-
|
42
|
-
register_tracking_category(:preparation, 'Preparation')
|
43
|
-
|
44
|
-
namespace :source do
|
45
|
-
register_tracking_task(:preparation, 'passenger')
|
46
|
-
desc "Create Passenger source tarball"
|
47
|
-
task :passenger do
|
48
|
-
track_task(:preparation, 'passenger') do |task|
|
49
|
-
task.sh "cd /passenger && rake package:set_official package:tarball PKG_DIR='#{RPM_SOURCES_DIR}'"
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
register_tracking_task(:preparation, 'nginx')
|
54
|
-
desc "Create Nginx source tarball"
|
55
|
-
task :nginx do
|
56
|
-
track_task(:preparation, 'nginx') do |task|
|
57
|
-
if File.exist?("/cache/nginx-#{NGINX_VERSION}.tar.gz")
|
58
|
-
task.sh "cp /cache/nginx-#{NGINX_VERSION}.tar.gz #{RPM_SOURCES_DIR}/"
|
59
|
-
else
|
60
|
-
task.sh "curl --fail -L -o #{RPM_SOURCES_DIR}/nginx-#{NGINX_VERSION}.tar.gz " +
|
61
|
-
"http://nginx.org/download/nginx-#{NGINX_VERSION}.tar.gz"
|
62
|
-
task.sh "cp #{RPM_SOURCES_DIR}/nginx-#{NGINX_VERSION}.tar.gz /cache/"
|
63
|
-
end
|
64
|
-
if File.exist?("/cache/nginx-#{NGINX_VERSION}.tar.gz.asc")
|
65
|
-
task.sh "cp /cache/nginx-#{NGINX_VERSION}.tar.gz.asc #{RPM_SOURCES_DIR}/"
|
66
|
-
else
|
67
|
-
task.sh "curl --fail -L -o #{RPM_SOURCES_DIR}/nginx-#{NGINX_VERSION}.tar.gz.asc " +
|
68
|
-
"http://nginx.org/download/nginx-#{NGINX_VERSION}.tar.gz.asc"
|
69
|
-
task.sh "cp #{RPM_SOURCES_DIR}/nginx-#{NGINX_VERSION}.tar.gz.asc /cache/"
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
register_tracking_task(:preparation, 'packaging_additions')
|
75
|
-
desc "Copy over various packaging sources"
|
76
|
-
task :packaging_additions do
|
77
|
-
track_task(:preparation, 'packaging_additions') do |task|
|
78
|
-
task.sh "cp -R /system/passenger_spec/* /system/nginx_spec/* #{RPM_SOURCES_DIR}/"
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
|
84
|
-
##### Source RPMs #####
|
85
|
-
|
86
|
-
register_tracking_category(:srpm, 'Building source RPMs')
|
87
|
-
|
88
|
-
namespace :srpm do
|
89
|
-
### Passenger ###
|
90
|
-
|
91
|
-
desc "Build Passenger SRPMs for all distributions"
|
92
|
-
task "passenger:all"
|
93
|
-
|
94
|
-
DISTROS.each do |distro_id|
|
95
|
-
distro = SUPPORTED_DISTROS[distro_id]
|
96
|
-
|
97
|
-
task "passenger:all" => "passenger:#{distro_id}"
|
98
|
-
|
99
|
-
register_tracking_task(:srpm, "passenger:#{distro_id}")
|
100
|
-
desc "Build Passenger SRPM for #{distro[:name]}"
|
101
|
-
task("passenger:#{distro_id}" => SOURCE_TASKS) do
|
102
|
-
track_task(:srpm, "passenger:#{distro_id}") do |task|
|
103
|
-
spec_target_dir = "#{RPM_SPECS_DIR}/#{distro_id}"
|
104
|
-
spec_target_file = "#{spec_target_dir}/#{PASSENGER_RPM_NAME}.spec"
|
105
|
-
|
106
|
-
task.sh "mkdir -p #{spec_target_dir}"
|
107
|
-
task.log "Preprocessing specfile"
|
108
|
-
begin
|
109
|
-
Preprocessor.new.start("/system/passenger_spec/passenger.spec.template",
|
110
|
-
spec_target_file,
|
111
|
-
:distribution => distro_id)
|
112
|
-
rescue Exception => e
|
113
|
-
task.log "Specfile preprocessing failed"
|
114
|
-
raise e
|
115
|
-
end
|
116
|
-
|
117
|
-
task.sh "rpmbuild -bs #{spec_target_file}"
|
118
|
-
ARCHS.each do |arch|
|
119
|
-
task.sh "mkdir -p /output/#{distro_id}-#{arch}"
|
120
|
-
task.sh "cp #{RPM_SRPMS_DIR}/#{passenger_srpm_name(distro_id)} /output/#{distro_id}-#{arch}/"
|
121
|
-
end
|
122
|
-
end
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
### Nginx ###
|
127
|
-
|
128
|
-
desc "Build Nginx SRPMs for all distributions"
|
129
|
-
task "nginx:all"
|
130
|
-
|
131
|
-
DISTROS.each do |distro_id|
|
132
|
-
distro = SUPPORTED_DISTROS[distro_id]
|
133
|
-
|
134
|
-
task "nginx:all" => "nginx:#{distro_id}"
|
135
|
-
|
136
|
-
register_tracking_task(:srpm, "nginx:#{distro_id}")
|
137
|
-
desc "Build Nginx SRPM for #{distro[:name]}"
|
138
|
-
task("nginx:#{distro_id}" => SOURCE_TASKS) do
|
139
|
-
track_task(:srpm, "nginx:#{distro_id}") do |task|
|
140
|
-
spec_target_dir = "#{RPM_SPECS_DIR}/#{distro_id}"
|
141
|
-
spec_target_file = "#{spec_target_dir}/#{NGINX_RPM_NAME}.spec"
|
142
|
-
|
143
|
-
task.sh "mkdir -p #{spec_target_dir}"
|
144
|
-
task.log "Preprocessing specfile"
|
145
|
-
begin
|
146
|
-
Preprocessor.new.start("/system/nginx_spec/nginx.spec.template",
|
147
|
-
spec_target_file,
|
148
|
-
:distribution => distro_id)
|
149
|
-
rescue Exception => e
|
150
|
-
task.log "Specfile preprocessing failed"
|
151
|
-
raise e
|
152
|
-
end
|
153
|
-
|
154
|
-
task.sh "rpmbuild -bs #{spec_target_file}"
|
155
|
-
ARCHS.each do |arch|
|
156
|
-
task.sh "mkdir -p /output/#{distro_id}-#{arch}"
|
157
|
-
task.sh "cp #{RPM_SRPMS_DIR}/#{nginx_srpm_name(distro_id)} /output/#{distro_id}-#{arch}/"
|
158
|
-
end
|
159
|
-
end
|
160
|
-
end
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
|
165
|
-
##### Binary RPMs #####
|
166
|
-
|
167
|
-
register_tracking_category(:rpm, 'Building binary RPMs')
|
168
|
-
|
169
|
-
namespace :rpm do
|
170
|
-
desc "Build RPMs for all distributions and all architectures"
|
171
|
-
task :all
|
172
|
-
|
173
|
-
### Passenger ###
|
174
|
-
|
175
|
-
desc "Build Passenger RPMs for all distributions and all architectures"
|
176
|
-
task "passenger:all"
|
177
|
-
|
178
|
-
DISTROS.each do |distro_id|
|
179
|
-
distro = SUPPORTED_DISTROS[distro_id]
|
180
|
-
|
181
|
-
ARCHS.each do |arch|
|
182
|
-
task "all" => "^rpm:passenger:#{distro_id}:#{arch}"
|
183
|
-
task "passenger:all" => "^rpm:passenger:#{distro_id}:#{arch}"
|
184
|
-
register_tracking_task(:rpm, "passenger:#{distro_id}:#{arch}")
|
185
|
-
|
186
|
-
desc "Build Passenger RPM for #{distro[:name]}, #{arch}"
|
187
|
-
task("passenger:#{distro_id}:#{arch}" => ["srpm:passenger:#{distro_id}"]) do
|
188
|
-
track_task(:rpm, "passenger:#{distro_id}:#{arch}") do |task|
|
189
|
-
mock_chroot_name = "#{distro[:mock_chroot_name]}-#{arch}"
|
190
|
-
task.sh "/usr/bin/mock --verbose #{MOCK_FLAGS} " +
|
191
|
-
"-r #{mock_chroot_name} " +
|
192
|
-
"--resultdir '/output/#{distro_id}-#{arch}' " +
|
193
|
-
"--uniqueext passenger-#{distro_id}-#{arch} " +
|
194
|
-
"rebuild /output/#{distro_id}-#{arch}/#{passenger_srpm_name(distro_id)}"
|
195
|
-
end
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
|
-
### Nginx ###
|
201
|
-
|
202
|
-
desc "Build Nginx RPMs for all distributions and all architectures"
|
203
|
-
task "nginx:all"
|
204
|
-
|
205
|
-
DISTROS.each do |distro_id|
|
206
|
-
distro = SUPPORTED_DISTROS[distro_id]
|
207
|
-
|
208
|
-
ARCHS.each do |arch|
|
209
|
-
task "all" => "^rpm:nginx:#{distro_id}:#{arch}"
|
210
|
-
task "nginx:all" => "^rpm:nginx:#{distro_id}:#{arch}"
|
211
|
-
register_tracking_task(:rpm, "nginx:#{distro_id}:#{arch}")
|
212
|
-
|
213
|
-
desc "Build Nginx RPM for #{distro[:name]}, #{arch}"
|
214
|
-
task("nginx:#{distro_id}:#{arch}" => ["srpm:nginx:#{distro_id}"]) do
|
215
|
-
track_task(:rpm, "nginx:#{distro_id}:#{arch}") do |task|
|
216
|
-
mock_chroot_name = "#{distro[:mock_chroot_name]}-#{arch}"
|
217
|
-
task.sh "/usr/bin/mock --verbose #{MOCK_FLAGS} " +
|
218
|
-
"-r #{mock_chroot_name} " +
|
219
|
-
"--resultdir '/output/#{distro_id}-#{arch}' " +
|
220
|
-
"--uniqueext nginx-#{distro_id}-#{arch} " +
|
221
|
-
"rebuild /output/#{distro_id}-#{arch}/#{nginx_srpm_name(distro_id)}"
|
222
|
-
end
|
223
|
-
end
|
224
|
-
end
|
225
|
-
end
|
226
|
-
end
|
227
|
-
|
228
|
-
|
229
|
-
##### Misc #####
|
230
|
-
|
231
|
-
task :finish do
|
232
|
-
puts
|
233
|
-
puts "Finished"
|
234
|
-
MUTEX.synchronize do
|
235
|
-
TrackingDatabase.instance.set_finished!
|
236
|
-
dump_tracking_database
|
237
|
-
end
|
238
|
-
end
|