summaryrefslogtreecommitdiff
path: root/www/rubygem-passenger
diff options
context:
space:
mode:
Diffstat (limited to 'www/rubygem-passenger')
-rw-r--r--www/rubygem-passenger/Makefile25
-rw-r--r--www/rubygem-passenger/distinfo6
-rw-r--r--www/rubygem-passenger/files/patch-src-agent-Core-SecurityUpdateChecker.h14
-rw-r--r--www/rubygem-passenger/files/pkg-message-nginx.in12
4 files changed, 13 insertions, 44 deletions
diff --git a/www/rubygem-passenger/Makefile b/www/rubygem-passenger/Makefile
index a34dfd158920..e651062e4b03 100644
--- a/www/rubygem-passenger/Makefile
+++ b/www/rubygem-passenger/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= passenger
-PORTVERSION= 5.3.5
-PORTREVISION= 1
+PORTVERSION= 5.3.7
CATEGORIES= www rubygems
MASTER_SITES= RG
PKGNAMEPREFIX= rubygem-
@@ -39,21 +38,7 @@ USES+= apache:2.2+
USE_RUBY= yes
RAKE_BIN= ${LOCALBASE}/bin/rake
USES+= cpe gem libtool python:env shebangfix ssl
-SHEBANG_FILES= \
- src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py \
- dev/vagrant/nginx_start \
- dev/vagrant/provision.sh \
- dev/ci/run-tests-with-docker \
- dev/ci/tests/debian/run \
- dev/ci/tests/rpm/run \
- dev/ci/scripts/setup-host-natively.sh \
- dev/ci/scripts/docker-entrypoint-stage2.sh \
- dev/ci/scripts/inituidgid \
- dev/ci/scripts/debug-console-wrapper.sh \
- dev/ci/scripts/run-tests-natively-stage2.sh \
- dev/ci/scripts/docker-entrypoint.sh \
- dev/ci/run-tests-natively \
- dev/ci/setup-host
+SHEBANG_FILES= src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py
LIB_DEPENDS+= libuv.so:devel/libuv \
libcurl.so:ftp/curl \
@@ -78,12 +63,6 @@ SYMLINK_SUB_LIST= PASSENGER_INSTALL_DIR="${PREFIX}/${GEMS_DIR}/${PORTNAME}"
SYMLINK_SUB_LIST_OFF= PASSENGER_INSTALL_DIR="${PREFIX}/${GEM_LIB_DIR}"
pre-patch:
-.if ${FLAVOR} == nginx
- @${ECHO_CMD}
- @${ECHO_CMD} "Do not forget compile www/nginx"
- @${ECHO_CMD} "with PASSENGER_MODULE support"
- @${ECHO_CMD}
-.endif
@${REINPLACE_CMD} \
's!-Wall!!g; \
s!gcc!${CC}!g; \
diff --git a/www/rubygem-passenger/distinfo b/www/rubygem-passenger/distinfo
index 3bcdef472213..3f3a235304df 100644
--- a/www/rubygem-passenger/distinfo
+++ b/www/rubygem-passenger/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1537823017
-SHA256 (rubygem/passenger-5.3.5.gem) = b8c84f92be4fb40bc9a1a455ce95db9fa8f354db01aa923c80afe2b3f255f31e
-SIZE (rubygem/passenger-5.3.5.gem) = 7134720
+TIMESTAMP = 1543359462
+SHA256 (rubygem/passenger-5.3.7.gem) = 7399b1ef7bc826f6e06d9143b1f802bb585ee393f5c8bfa18a58b6d2e9c24213
+SIZE (rubygem/passenger-5.3.7.gem) = 7114240
diff --git a/www/rubygem-passenger/files/patch-src-agent-Core-SecurityUpdateChecker.h b/www/rubygem-passenger/files/patch-src-agent-Core-SecurityUpdateChecker.h
deleted file mode 100644
index 588640bc5919..000000000000
--- a/www/rubygem-passenger/files/patch-src-agent-Core-SecurityUpdateChecker.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/agent/Core/SecurityUpdateChecker.h.orig 2018-11-03 10:06:51 UTC
-+++ src/agent/Core/SecurityUpdateChecker.h
-@@ -256,9 +256,11 @@ private:
- error.append(" for proxy address " + sessionState.config["proxy_url"].asString());
- break;
-
-+#if LIBCURL_VERSION_NUM < 0x073e00
- case CURLE_SSL_CACERT:
- // Peer certificate cannot be authenticated with given / known CA certificates. This would happen
- // for MITM but could also be a truststore issue.
-+#endif
- case CURLE_PEER_FAILED_VERIFICATION:
- // The remote server's SSL certificate or SSH md5 fingerprint was deemed not OK.
- error.append(" while connecting to " + sessionState.configRlz.url
diff --git a/www/rubygem-passenger/files/pkg-message-nginx.in b/www/rubygem-passenger/files/pkg-message-nginx.in
index e79125579daf..5d869e24ac40 100644
--- a/www/rubygem-passenger/files/pkg-message-nginx.in
+++ b/www/rubygem-passenger/files/pkg-message-nginx.in
@@ -1,6 +1,11 @@
+The nginx flavor of this port installs passenger core binaries only,
+to make it works with nginx make sure www/nginx or www/nginx-devel
+port has been compiled with third-party PASSENGER module support and
+installed into a system.
+
#####################################################################
-Please edit your nginx configuration file, and add these lines:
+Please edit a nginx configuration file, and add these lines:
server {
root %%PASSENGER_INSTALL_DIR%%;
@@ -9,8 +14,7 @@ Please edit your nginx configuration file, and add these lines:
passenger_sticky_sessions on;
}
-After you restart nginx, you are ready to deploy any number of Ruby on Rails
-applications on nginx, without any further Ruby on Rails-specific
-configuration!
+Once nginx restarts it's possible to deploy a Ruby on Rails
+application without any further Ruby on Rails-specific configuration!
#####################################################################