Added Ruby packaging support.

This commit is contained in:
Andrei Belov
2018-04-02 15:48:33 +03:00
parent 2028f3a04b
commit aa8f2c3295
11 changed files with 187 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ include Makefile.python36
include Makefile.go18
include Makefile.go19
include Makefile.perl
include Makefile.ruby
endif
# Ubuntu 17.04
@@ -35,6 +36,7 @@ include Makefile.python35
include Makefile.go17
include Makefile.go18
include Makefile.perl
include Makefile.ruby
endif
# Ubuntu 16.04
@@ -44,6 +46,7 @@ include Makefile.python27
include Makefile.python35
include Makefile.go
include Makefile.perl
include Makefile.ruby
endif
# Ubuntu 14.04
@@ -61,6 +64,7 @@ include Makefile.python35
include Makefile.go17
include Makefile.go18
include Makefile.perl
include Makefile.ruby
endif
# Debian 8
@@ -69,6 +73,7 @@ include Makefile.php
include Makefile.python27
include Makefile.python34
include Makefile.perl
include Makefile.ruby
endif
CONFIGURE_ARGS=\

47
pkg/deb/Makefile.ruby Normal file
View File

@@ -0,0 +1,47 @@
MODULES+= ruby
MODULE_SUFFIX_ruby= ruby
MODULE_SUMMARY_ruby= Ruby module for NGINX Unit
MODULE_VERSION_ruby= $(VERSION)
MODULE_RELEASE_ruby= 1
MODULE_CONFARGS_ruby= ruby
MODULE_MAKEARGS_ruby= ruby
MODULE_INSTARGS_ruby= ruby-install
MODULE_SOURCES_ruby= unit.example-ruby-app \
unit.example-ruby-config
BUILD_DEPENDS_ruby= ruby-dev ruby-rack
BUILD_DEPENDS+= $(BUILD_DEPENDS_ruby)
MODULE_BUILD_DEPENDS_ruby=,ruby-dev,ruby-rack
MODULE_DEPENDS_ruby=,ruby-rack
define MODULE_PREINSTALL_ruby
mkdir -p debian/unit-ruby/usr/share/doc/unit-ruby/examples
install -m 644 -p debian/unit.example-ruby-app debian/unit-ruby/usr/share/doc/unit-ruby/examples/ruby-app.ru
install -m 644 -p debian/unit.example-ruby-config debian/unit-ruby/usr/share/doc/unit-ruby/examples/unit.config
endef
export MODULE_PREINSTALL_ruby
define MODULE_POST_ruby
cat <<BANNER
----------------------------------------------------------------------
The $(MODULE_SUMMARY_ruby) has been installed.
To check out the sample app, run these commands:
sudo service unit restart
sudo service unit loadconfig /usr/share/doc/unit-ruby/examples/unit.config
curl http://localhost:8700/
Online documentation is available at https://unit.nginx.org
----------------------------------------------------------------------
BANNER
endef
export MODULE_POST_ruby

View File

@@ -0,0 +1,7 @@
app = Proc.new do |env|
['200', {
'Content-Type' => 'text/plain',
}, ["Hello from Unit running with Ruby #{RUBY_VERSION}!\n\n"]]
end
run app

View File

@@ -0,0 +1,16 @@
{
"applications": {
"example_ruby": {
"type": "ruby",
"user": "nobody",
"processes": 2,
"script": "/usr/share/doc/unit-ruby/examples/ruby-app.ru"
}
},
"listeners": {
"*:8700": {
"application": "example_ruby"
}
}
}