[arch-commits] Commit in hhvm/trunk (3 files)
Massimiliano Torromeo
mtorromeo at archlinux.org
Thu Mar 12 14:18:01 UTC 2015
Date: Thursday, March 12, 2015 @ 15:18:01
Author: mtorromeo
Revision: 129131
upgpkg: hhvm 3.6.0-1
Update to 3.6.0 and fixed #44141
Added:
hhvm/trunk/fastcgi-https.diff
hhvm/trunk/mcrouter-chrono-fix.patch
Modified:
hhvm/trunk/PKGBUILD
---------------------------+
PKGBUILD | 66 ++++++++++++++++++++++++++++++++++----------
fastcgi-https.diff | 41 +++++++++++++++++++++++++++
mcrouter-chrono-fix.patch | 25 ++++++++++++++++
3 files changed, 118 insertions(+), 14 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2015-03-12 14:01:20 UTC (rev 129130)
+++ PKGBUILD 2015-03-12 14:18:01 UTC (rev 129131)
@@ -3,12 +3,18 @@
# Contributor: James Miller <james at pocketrent.com>
pkgname=hhvm
-pkgver=3.5.1
-_thirdparty_commit=d0cad57b5427f84af8f77d60b8b53de4aaea4694
-_folly_commit=6f9b619d9ffc219296a818a83266d60628e6aedd
-_thrift_commit=bba5d4590ff71e8f34ce4f90a8d7b2cf867ca3d0
-_proxygen_commit=8a602aa40383d6dddbdcb2a951067b9923edfc74
+pkgver=3.6.0
pkgrel=1
+
+_thirdparty_commit=3bf14f9194bff0f681ee60bc6e5f1ac60b233f5c
+_folly_commit=7d2497f0e57fb14b6ea43a5a2d180604d7e1e7e5
+_thrift_commit=d30280a33ed2c67672b0295872397e5affb60f8c
+_proxygen_commit=d17b4e7735ab728d77266a538cef4dcfc57b5fbd
+_webscalesql_commit=004b6b348fdf48f0aa4e3fe1010b891d4fdb9f70
+_mcrouter_commit=addcc91aee3942f4e50760a43fdcb052482be00e
+_re2_commit=bdb5058dcf7a3e6e8fe524a6214d5a7a6e9dcba2
+_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
+
pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
arch=('x86_64')
url="http://hhvm.com"
@@ -15,18 +21,24 @@
license=('PHP')
depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi')
-makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb')
+ 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2')
+makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb'
+ 'ragel' 'libmariadbclient' 'unixodbc')
source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz"
"hhvm-third-party-$_thirdparty_commit.tar.gz::https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit.tar.gz"
"folly-$_folly_commit.tar.gz::https://github.com/facebook/folly/archive/$_folly_commit.tar.gz"
"thrift-$_thrift_commit.tar.gz::https://github.com/facebook/fbthrift/archive/$_thrift_commit.tar.gz"
"proxygen-$_proxygen_commit.tar.gz::https://github.com/facebook/proxygen/archive/$_proxygen_commit.tar.gz"
+ "webscalesql-$_webscalesql_commit.tar.gz::https://github.com/webscalesql/webscalesql-5.6/archive/$_webscalesql_commit.tar.gz"
+ "mcrouter-$_mcrouter_commit.tar.gz::https://github.com/facebook/mcrouter/archive/$_mcrouter_commit.tar.gz"
+ "squangle-$_squangle_commit.tar.gz::https://github.com/facebook/squangle/archive/$_squangle_commit.tar.gz"
'hhvm.tmpfile'
'hhvm.service'
'hhvm at .service'
'php.ini'
- 'server.ini')
+ 'server.ini'
+ 'mcrouter-chrono-fix.patch'
+ 'fastcgi-https.diff')
install=hhvm.install
backup=(etc/hhvm/{php,server}.ini)
options+=('!buildflags')
@@ -33,7 +45,13 @@
prepare() {
cd "$srcdir"/$pkgname-HHVM-$pkgver
+ patch -p1 -i "$srcdir"/mcrouter-chrono-fix.patch
+ patch -p1 -i "$srcdir"/fastcgi-https.diff
+ # Fix sendmail path
+ sed -r 's#/usr/lib/sendmail#/usr/bin/sendmail#g' -i \
+ hphp/runtime/base/runtime-option.cpp
+
rm -rf third-party
ln -s "$srcdir"/hhvm-third-party-$_thirdparty_commit third-party
@@ -48,6 +66,20 @@
cd ../proxygen
rm -rf src
ln -s "$srcdir"/proxygen-$_proxygen_commit src
+
+ cd ../mcrouter
+ rm -rf src
+ ln -s "$srcdir"/mcrouter-$_mcrouter_commit src
+
+ cd ../squangle
+ rm -rf src squangle
+ ln -s "$srcdir"/squangle-$_squangle_commit src
+ ln -s src/squangle
+
+ cd ../webscalesqlclient
+ rm -rf src webscalesql-5.6
+ ln -s "$srcdir"/webscalesql-5.6-$_webscalesql_commit webscalesql-5.6
+ ln -s "$srcdir"/webscalesql-5.6-$_webscalesql_commit src
}
build() {
@@ -60,6 +92,7 @@
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_PREFIX_PATH="$srcdir" \
-DENABLE_MONGO:BOOL=ON \
+ -DMYSQL_UNIX_SOCK_ADDR=/run/mysqld/mysqld.sock \
.
make
@@ -94,13 +127,18 @@
install -Dm644 server.ini "$pkgdir"/etc/hhvm/server.ini
}
-sha256sums=('b0438941a8e88c8505d78d87e008f3402133f4b253da07d2936876fb245311b8'
- 'c62bc664fd96de44aedc07e2cf136b7ff712001f53d41b003c260c50c8ec9e8e'
- '00922bf8128f368fa8b3a1b0ab6d79086a77a9f95484bf020d0f06bcd4710441'
- 'b5338bb0299651ccffef826348a50618c92980e619dbc9eb34f16c9ff4a6765a'
- '34fbb931fe112dca460f765d2552241914dcc229de72918c81af9787c3276d56'
+sha256sums=('5840d7caf7f8b57e35953e98fa89fa697f810c8de784950f31953cf36f9ce987'
+ '67594f86a25d3c1b468b0b4255018df8442db811899b41432775f031938cbd8f'
+ 'f09a38084cc4b8c9cc2ac70daf025d7c2f1710c2eae38fd7aec2b6c29b6e70aa'
+ 'd58cbfc110761bd70b74b849b3eb83b3e43e066cbf1969f403d47630a22d5bef'
+ '81f61f6585b04eced0d1ff2b9ab77e3adfcf4c6e90be1ad37c7ae51bdc582f7e'
+ 'd2bd5475aaffbd8804736f8e13fdcb8f370d99d6c20b571561f5a065f4faa73f'
+ '8d95cf74147271fcff3aa2bc867241046bc97aa7705fd678d227db77276c6bf7'
+ 'c7ad48ff41343d1b0354c8afb6778d7c4bcfcb3d6f7264afcbcabfcfb75c47b8'
'c356010a6d6b976f387bb205a75ea07d5f40593a8010483f2ed0f66f112331bc'
'8b50d1ef9f5f726e6d8d469a8c84d85ad63f8b507b97d258b4d751a0e3e221df'
'59c640602929dac0aa34d06c668ed69361eb4b7b47a77f9aa0badb4d0b61571c'
'3e3093f817706c238fad021483f114fd4ce0b45d84097dcb7870157fc9ec769f'
- '5b53bc57965e1c5151d720dc7f63f1b2e8ebd5e758b2ef0be3b74df38ebcbce0')
+ '5b53bc57965e1c5151d720dc7f63f1b2e8ebd5e758b2ef0be3b74df38ebcbce0'
+ '5994219fe94d22f135f8cf6ea312e8096204c19da7c3a460c3c26d62e14c291d'
+ '632c3e83e45fbf834415e037e7fc1555ada6d8e09063644a9d23872cb1d499de')
Added: fastcgi-https.diff
===================================================================
--- fastcgi-https.diff (rev 0)
+++ fastcgi-https.diff 2015-03-12 14:18:01 UTC (rev 129131)
@@ -0,0 +1,41 @@
+diff --git a/hphp/runtime/server/fastcgi/fastcgi-transport.cpp b/hphp/runtime/server/fastcgi/fastcgi-transport.cpp
+--- a/hphp/runtime/server/fastcgi/fastcgi-transport.cpp
++++ b/hphp/runtime/server/fastcgi/fastcgi-transport.cpp
+@@ -298,7 +298,7 @@
+ }
+
+ // IIS sets this value but sets it to off when SSL is off.
+- if (m_requestParams.count("HTTPS") &&
++ if (m_requestParams.count("HTTPS") && !m_requestParams["HTTPS"].empty() &&
+ strcasecmp(m_requestParams["HTTPS"].c_str(), "OFF")) {
+ setSSL();
+ }
+diff --git a/hphp/test/server/fastcgi/server_root/test_https.php b/hphp/test/server/fastcgi/server_root/test_https.php
+new file mode 100644
+--- /dev/null
++++ b/hphp/test/server/fastcgi/server_root/test_https.php
+@@ -0,0 +1,2 @@
++<?php
++var_dump($_SERVER['HTTPS']);
+diff --git a/hphp/test/server/fastcgi/tests/httpsTest.php b/hphp/test/server/fastcgi/tests/httpsTest.php
+new file mode 100644
+--- /dev/null
++++ b/hphp/test/server/fastcgi/tests/httpsTest.php
+@@ -0,0 +1,11 @@
++<?php
++
++require_once('test_base.inc');
++
++function httpsTestController($serverPort) {
++ $args = array('HTTPS' => '');
++ var_dump(request(php_uname('n'), $serverPort, "test_https.php",
++ [], [], $args));
++}
++
++runTest("httpsTestController");
+diff --git a/hphp/test/server/fastcgi/tests/httpsTest.php.expect b/hphp/test/server/fastcgi/tests/httpsTest.php.expect
+new file mode 100644
+--- /dev/null
++++ b/hphp/test/server/fastcgi/tests/httpsTest.php.expect
+@@ -0,0 +1 @@
++string(12) "string(0) """
Added: mcrouter-chrono-fix.patch
===================================================================
--- mcrouter-chrono-fix.patch (rev 0)
+++ mcrouter-chrono-fix.patch 2015-03-12 14:18:01 UTC (rev 129131)
@@ -0,0 +1,25 @@
+diff --git a/CMake/HPHPSetup.cmake b/CMake/HPHPSetup.cmake
+index 48e7da7..7585b24 100644
+--- a/CMake/HPHPSetup.cmake
++++ b/CMake/HPHPSetup.cmake
+@@ -230,15 +230,16 @@ if (NOT FASTLZ_LIBRARY)
+ include_directories("${TP_DIR}/fastlz")
+ endif()
+
+-if (ENABLE_MCROUTER)
+- include_directories("${TP_DIR}/mcrouter")
+-endif()
+-
+ include_directories("${TP_DIR}/timelib")
+ include_directories("${TP_DIR}/libafdt/src")
+ include_directories("${TP_DIR}/libmbfl")
+ include_directories("${TP_DIR}/libmbfl/mbfl")
+ include_directories("${TP_DIR}/libmbfl/filter")
++
++if (ENABLE_MCROUTER)
++ include_directories("${TP_DIR}/mcrouter")
++endif()
++
+ add_definitions(-DNO_LIB_GFLAGS)
+ include_directories("${TP_DIR}/folly")
+ include_directories("${TP_DIR}/thrift")
More information about the arch-commits
mailing list