[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-08-19 Thread Massimiliano Torromeo
Date: Friday, August 19, 2016 @ 12:31:27
  Author: mtorromeo
Revision: 187057

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 187056, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 187056, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 187056, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 187056, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 187056, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 187056, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 187056, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-19 12:30:55 UTC (rev 187056)
+++ PKGBUILD2016-08-19 12:31:27 UTC (rev 187057)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.4
-pkgrel=1
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-08-08 Thread Massimiliano Torromeo
Date: Monday, August 8, 2016 @ 07:16:52
  Author: mtorromeo
Revision: 185982

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 185981, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 185981, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 185981, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 185981, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 185981, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 185981, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 185981, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-08 07:13:25 UTC (rev 185981)
+++ PKGBUILD2016-08-08 07:16:52 UTC (rev 185982)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.3
-pkgrel=2
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-08-04 Thread Massimiliano Torromeo
Date: Thursday, August 4, 2016 @ 14:26:51
  Author: mtorromeo
Revision: 185048

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 185047, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 185047, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 185047, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 185047, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 185047, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 185047, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 185047, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-08-04 14:26:26 UTC (rev 185047)
+++ PKGBUILD2016-08-04 14:26:51 UTC (rev 185048)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.3
-pkgrel=1
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-07-22 Thread Massimiliano Torromeo
Date: Friday, July 22, 2016 @ 23:44:13
  Author: mtorromeo
Revision: 183735

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 183734, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 183734, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 183734, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 183734, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 183734, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 183734, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 183734, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-22 23:43:39 UTC (rev 183734)
+++ PKGBUILD2016-07-22 23:44:13 UTC (rev 183735)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.2
-pkgrel=1
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-07-08 Thread Massimiliano Torromeo
Date: Friday, July 8, 2016 @ 20:27:53
  Author: mtorromeo
Revision: 182528

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 182527, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 182527, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 182527, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 182527, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 182527, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 182527, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 182527, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-07-08 20:27:20 UTC (rev 182527)
+++ PKGBUILD2016-07-08 20:27:53 UTC (rev 182528)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.1
-pkgrel=1
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-06-15 Thread Massimiliano Torromeo
Date: Wednesday, June 15, 2016 @ 16:24:36
  Author: mtorromeo
Revision: 180287

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 180286, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 180286, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 180286, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 180286, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 180286, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 180286, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 180286, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  314 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 214 insertions(+), 214 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-06-15 16:24:19 UTC (rev 180286)
+++ PKGBUILD2016-06-15 16:24:36 UTC (rev 180287)
@@ -1,157 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.14.0
-pkgrel=1
-
-_thirdparty_commit=e1fcf90c07e0af00906f98cde8aa828bec7b2e01
-_brotli_commit=98ed7a23a83d64133b0a36a884e489bffb0eb864
-_folly_commit=05cdf111f5e6a4585a5e9140fda26f4fea070637
-_mcrouter_commit=679c32548ef7d3c8624b15c0c38f584b37177478
-_proxygen_commit=0b0b50c08b2165f4ed4e4f374ddbeabbc8582e44
-_squangle_commit=36a61d13d03e72dc710028d48de5616f9926128a
-_thrift_commit=8672f88b084d2d5242016f2a4df282ee2c6d4023
-_wangle_commit=4903f961a88751e684f703aaf08511cd5c486a84
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl'
- 'libvpx' 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml'
- 'fribidi' 're2' 'gperf' 'c-client' 'unixodbc' 'numactl')
-makedepends=('git' 'mercurial' 'cmake' 'gcc' 'boost' 'gflags' 'python2'
- 'pfff' 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/google/brotli/archive/$_brotli_commit/brotli-$_brotli_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed 's/TypedValue m_extraArgs\[\];/TypedValue m_extraArgs[0];/' \
--i hphp/runtime/vm/bytecode.h
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../brotli
-rm -rf src
-ln -s "$srcdir"/brotli-$_brotli_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-02-12 Thread Massimiliano Torromeo
Date: Friday, February 12, 2016 @ 16:19:24
  Author: mtorromeo
Revision: 161428

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 161427, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 161427, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 161427, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 161427, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 161427, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 161427, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 161427, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  297 +++-
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 204 insertions(+), 207 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-02-12 15:19:06 UTC (rev 161427)
+++ PKGBUILD2016-02-12 15:19:24 UTC (rev 161428)
@@ -1,150 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.11.1
-pkgrel=1
-
-_thirdparty_commit=5211c1aeaf5dd24ac41149c6b05e24f4a52da23f
-_folly_commit=7ce0da391198be14d4a12a42f918d90ceba63b31
-_mcrouter_commit=cb05bfa78209fb5f49b1af7e04553d8429ae3d7a
-_proxygen_commit=1cc6552541156f94dd47808f3024fbebf1d8fc2c
-_squangle_commit=5efc6ad1a6d5078e836bf9c0b6d58416cc3f234e
-_thrift_commit=814ff42fa8912c97ff20f4fc90536243b8de9d59
-_wangle_commit=30c42a4ae96a0a33aa016a7b7d0ad6414cf9a62a
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf' 'c-client' 'unixodbc')
-makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb'
- 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# Need to remove this to link to system boost and google-glog
-sed -i 's/-D_GLIBCXX_USE_CXX11_ABI=0//' CMake/HPHPCompiler.cmake
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 ../wangle
-rm -rf src
-ln -s "$srcdir"/wangle-$_wangle_commit src
-
-cd ../squangle
-rm -rf src squangle
-ln -s "$srcdir"/squangle-$_squangle_commit src
-ln -s src/squangle
-
-cd 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2016-01-23 Thread Massimiliano Torromeo
Date: Saturday, January 23, 2016 @ 16:16:50
  Author: mtorromeo
Revision: 158692

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 158691, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 158691, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 158691, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 158691, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 158691, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 158691, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 158691, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  300 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 207 insertions(+), 207 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2016-01-23 15:16:30 UTC (rev 158691)
+++ PKGBUILD2016-01-23 15:16:50 UTC (rev 158692)
@@ -1,150 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo 
-# Contributor: James Miller 
-
-pkgname=hhvm
-pkgver=3.11.0
-pkgrel=2
-
-_thirdparty_commit=5211c1aeaf5dd24ac41149c6b05e24f4a52da23f
-_folly_commit=7ce0da391198be14d4a12a42f918d90ceba63b31
-_mcrouter_commit=cb05bfa78209fb5f49b1af7e04553d8429ae3d7a
-_proxygen_commit=1cc6552541156f94dd47808f3024fbebf1d8fc2c
-_squangle_commit=5efc6ad1a6d5078e836bf9c0b6d58416cc3f234e
-_thrift_commit=814ff42fa8912c97ff20f4fc90536243b8de9d59
-_wangle_commit=30c42a4ae96a0a33aa016a7b7d0ad6414cf9a62a
-_webscalesql_commit=a9e580b5a0baa768210ef10544c8fab52003ec0b
-
-pkgdesc="Virtual Machine, Runtime, and JIT for PHP"
-arch=('x86_64')
-url="http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf' 'c-client' 'unixodbc')
-makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb'
- 'ragel' 'libmariadbclient')
-source=("https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
"https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
"https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
"https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
"https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
"https://github.com/facebook/mysql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
"https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
"https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-
"https://github.com/facebook/wangle/archive/$_wangle_commit/wangle-$_wangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd "$srcdir"/$pkgname-HHVM-$pkgver
-
-sed -r 's/service hhvm (start|stop|restart)/systemctl \1 hhvm.service/' \
--i hphp/tools/oss-repo-mode
-
-# Need to remove this to link to system boost and google-glog
-sed -i 's/-D_GLIBCXX_USE_CXX11_ABI=0//' CMake/HPHPCompiler.cmake
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s "$srcdir"/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s "$srcdir"/fbthrift-$_thrift_commit src
-
-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 ../wangle
-rm -rf src
-ln -s "$srcdir"/wangle-$_wangle_commit src
-
-cd ../squangle
-rm -rf src squangle
-ln -s "$srcdir"/squangle-$_squangle_commit src
-ln -s src/squangle
-
-cd 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-06-16 Thread Massimiliano Torromeo
Date: Tuesday, June 16, 2015 @ 12:32:45
  Author: mtorromeo
Revision: 135471

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 135470, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 135470, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 135470, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 135470, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 135470, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 135470, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 135470, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  287 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 202 insertions(+), 199 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-16 10:32:29 UTC (rev 135470)
+++ PKGBUILD2015-06-16 10:32:45 UTC (rev 135471)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.7.1
-pkgrel=1
-
-_thirdparty_commit=a7d0e6834ac6280b15ba2777f7d9c621bc8446cb
-_folly_commit=7c9f26357a1a2852ea11b051e1e0402dcfbce861
-_thrift_commit=385419f71e40a77df1fcfe6d1a9349d99d200902
-_proxygen_commit=72622b8af97bd56a0dd271b10be18864653a8bb7
-_webscalesql_commit=19c1a57078cdec7d238037258345151e871caef4
-_mcrouter_commit=55dece4d60de21d68e7651bd6083c403f9edf0f5
-_squangle_commit=a608c72296a0cb954de4bc2c22939fb24f482daa
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf' 'c-client')
-makedepends=('git' 'cmake' 'gcc' 'boost' 'gflags' 'python2' 'pfff' 'mongodb'
- 'ragel' 'libmariadbclient' 'unixodbc')
-source=(https://github.com/facebook/hhvm/archive/HHVM-$pkgver.tar.gz;
-
https://github.com/hhvm/hhvm-third-party/archive/$_thirdparty_commit/hhvm-third-party-$_thirdparty_commit.tar.gz;
-
https://github.com/facebook/folly/archive/$_folly_commit/folly-$_folly_commit.tar.gz;
-
https://github.com/facebook/fbthrift/archive/$_thrift_commit/thrift-$_thrift_commit.tar.gz;
-
https://github.com/facebook/proxygen/archive/$_proxygen_commit/proxygen-$_proxygen_commit.tar.gz;
-
https://github.com/webscalesql/webscalesql-5.6/archive/$_webscalesql_commit/webscalesql-$_webscalesql_commit.tar.gz;
-
https://github.com/facebook/mcrouter/archive/$_mcrouter_commit/mcrouter-$_mcrouter_commit.tar.gz;
-
https://github.com/facebook/squangle/archive/$_squangle_commit/squangle-$_squangle_commit.tar.gz;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-05-29 Thread Massimiliano Torromeo
Date: Friday, May 29, 2015 @ 10:33:45
  Author: mtorromeo
Revision: 134305

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 134304, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 134304, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 134304, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 134304, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 134304, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 134304, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 134304, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  284 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 199 insertions(+), 199 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-29 08:33:13 UTC (rev 134304)
+++ PKGBUILD2015-05-29 08:33:45 UTC (rev 134305)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.7.0
-pkgrel=4
-
-_thirdparty_commit=7f549260cbac2f6575d787948d668f20261c3d75
-_folly_commit=7c9f26357a1a2852ea11b051e1e0402dcfbce861
-_thrift_commit=385419f71e40a77df1fcfe6d1a9349d99d200902
-_proxygen_commit=72622b8af97bd56a0dd271b10be18864653a8bb7
-_webscalesql_commit=19c1a57078cdec7d238037258345151e871caef4
-_mcrouter_commit=55dece4d60de21d68e7651bd6083c403f9edf0f5
-_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf' 'c-client')
-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@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
-

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-05-20 Thread Massimiliano Torromeo
Date: Wednesday, May 20, 2015 @ 14:09:05
  Author: mtorromeo
Revision: 133882

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 133881, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 133881, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 133881, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 133881, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 133881, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 133881, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 133881, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  284 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 199 insertions(+), 199 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-20 12:08:47 UTC (rev 133881)
+++ PKGBUILD2015-05-20 12:09:05 UTC (rev 133882)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.7.0
-pkgrel=3
-
-_thirdparty_commit=7f549260cbac2f6575d787948d668f20261c3d75
-_folly_commit=7c9f26357a1a2852ea11b051e1e0402dcfbce861
-_thrift_commit=385419f71e40a77df1fcfe6d1a9349d99d200902
-_proxygen_commit=72622b8af97bd56a0dd271b10be18864653a8bb7
-_webscalesql_commit=19c1a57078cdec7d238037258345151e871caef4
-_mcrouter_commit=55dece4d60de21d68e7651bd6083c403f9edf0f5
-_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf')
-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@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
-

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-05-19 Thread Massimiliano Torromeo
Date: Tuesday, May 19, 2015 @ 22:59:01
  Author: mtorromeo
Revision: 133845

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 133844, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 133844, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 133844, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 133844, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 133844, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 133844, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 133844, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  284 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 199 insertions(+), 199 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-19 20:58:40 UTC (rev 133844)
+++ PKGBUILD2015-05-19 20:59:01 UTC (rev 133845)
@@ -1,142 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.7.0
-pkgrel=2
-
-_thirdparty_commit=7f549260cbac2f6575d787948d668f20261c3d75
-_folly_commit=7c9f26357a1a2852ea11b051e1e0402dcfbce861
-_thrift_commit=385419f71e40a77df1fcfe6d1a9349d99d200902
-_proxygen_commit=72622b8af97bd56a0dd271b10be18864653a8bb7
-_webscalesql_commit=19c1a57078cdec7d238037258345151e871caef4
-_mcrouter_commit=55dece4d60de21d68e7651bd6083c403f9edf0f5
-_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- 'libdwarf' 'imagemagick' 'libedit' 'sqlite' 'libyaml' 'fribidi' 're2'
- 'gperf')
-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@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
-

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-04-28 Thread Massimiliano Torromeo
Date: Tuesday, April 28, 2015 @ 16:50:08
  Author: mtorromeo
Revision: 132462

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 132461, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 132461, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 132461, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 132461, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 132461, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 132461, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 132461, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  286 +++-
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 199 insertions(+), 201 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-28 14:48:58 UTC (rev 132461)
+++ PKGBUILD2015-04-28 14:50:08 UTC (rev 132462)
@@ -1,144 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.6.1
-pkgrel=4
-
-_thirdparty_commit=3bf14f9194bff0f681ee60bc6e5f1ac60b233f5c
-_folly_commit=7d2497f0e57fb14b6ea43a5a2d180604d7e1e7e5
-_thrift_commit=d30280a33ed2c67672b0295872397e5affb60f8c
-_proxygen_commit=d17b4e7735ab728d77266a538cef4dcfc57b5fbd
-_webscalesql_commit=004b6b348fdf48f0aa4e3fe1010b891d4fdb9f70
-_mcrouter_commit=addcc91aee3942f4e50760a43fdcb052482be00e
-_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- '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@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff'
-'mcrouter-boost.patch')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-cd ../proxygen
-rm -rf src
-ln -s $srcdir/proxygen-$_proxygen_commit src
-
-cd ../mcrouter
-rm -rf src
-ln -s $srcdir/mcrouter-$_mcrouter_commit src
-patch -d src -p1 -i $srcdir/mcrouter-boost.patch
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake 

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-04-28 Thread Massimiliano Torromeo
Date: Tuesday, April 28, 2015 @ 12:31:25
  Author: mtorromeo
Revision: 132372

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 132371, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 132371, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 132371, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 132371, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 132371, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 132371, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 132371, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  282 
 hhvm.install  |   18 +--
 hhvm.service  |   30 ++---
 hhvm.tmpfile  |4 
 hhvm@.service |   30 ++---
 php.ini   |   20 +--
 server.ini|   12 +-
 7 files changed, 198 insertions(+), 198 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-28 10:31:09 UTC (rev 132371)
+++ PKGBUILD2015-04-28 10:31:25 UTC (rev 132372)
@@ -1,141 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.6.1
-pkgrel=3
-
-_thirdparty_commit=3bf14f9194bff0f681ee60bc6e5f1ac60b233f5c
-_folly_commit=7d2497f0e57fb14b6ea43a5a2d180604d7e1e7e5
-_thrift_commit=d30280a33ed2c67672b0295872397e5affb60f8c
-_proxygen_commit=d17b4e7735ab728d77266a538cef4dcfc57b5fbd
-_webscalesql_commit=004b6b348fdf48f0aa4e3fe1010b891d4fdb9f70
-_mcrouter_commit=addcc91aee3942f4e50760a43fdcb052482be00e
-_squangle_commit=269cd2e30a88b16b1cdf12f1eec5a1c16cb8be10
-
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-license=('PHP')
-depends=('boost-libs' 'google-glog' 'libmysqlclient' 'libmemcached' 'libzip'
- 'libxslt' 'intel-tbb' 'libmcrypt' 'oniguruma' 'jemalloc' 'curl' 
'libvpx'
- '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@.service'
-'php.ini'
-'server.ini'
-
'libvpx14.patch::https://patch-diff.githubusercontent.com/raw/facebook/hhvm/pull/5191.diff')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-patch -p1 -i $srcdir/libvpx14.patch
-
-# 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
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-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() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
-

[arch-commits] Commit in hhvm/repos/community-x86_64 (14 files)

2015-02-19 Thread Massimiliano Torromeo
Date: Thursday, February 19, 2015 @ 12:34:04
  Author: mtorromeo
Revision: 127981

archrelease: copy trunk to community-x86_64

Added:
  hhvm/repos/community-x86_64/PKGBUILD
(from rev 127980, hhvm/trunk/PKGBUILD)
  hhvm/repos/community-x86_64/hhvm.install
(from rev 127980, hhvm/trunk/hhvm.install)
  hhvm/repos/community-x86_64/hhvm.service
(from rev 127980, hhvm/trunk/hhvm.service)
  hhvm/repos/community-x86_64/hhvm.tmpfile
(from rev 127980, hhvm/trunk/hhvm.tmpfile)
  hhvm/repos/community-x86_64/hhvm@.service
(from rev 127980, hhvm/trunk/hhvm@.service)
  hhvm/repos/community-x86_64/php.ini
(from rev 127980, hhvm/trunk/php.ini)
  hhvm/repos/community-x86_64/server.ini
(from rev 127980, hhvm/trunk/server.ini)
Deleted:
  hhvm/repos/community-x86_64/PKGBUILD
  hhvm/repos/community-x86_64/hhvm.install
  hhvm/repos/community-x86_64/hhvm.service
  hhvm/repos/community-x86_64/hhvm.tmpfile
  hhvm/repos/community-x86_64/hhvm@.service
  hhvm/repos/community-x86_64/php.ini
  hhvm/repos/community-x86_64/server.ini

---+
 PKGBUILD  |  212 
 hhvm.install  |   18 ++--
 hhvm.service  |   30 +++
 hhvm.tmpfile  |4 -
 hhvm@.service |   30 +++
 php.ini   |   20 ++---
 server.ini|   12 +--
 7 files changed, 163 insertions(+), 163 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-02-19 11:33:35 UTC (rev 127980)
+++ PKGBUILD2015-02-19 11:34:04 UTC (rev 127981)
@@ -1,106 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo massimiliano.torro...@gmail.com
-# Contributor: James Miller ja...@pocketrent.com
-
-pkgname=hhvm
-pkgver=3.5.0
-_thirdparty_commit=d0cad57b5427f84af8f77d60b8b53de4aaea4694
-_folly_commit=6f9b619d9ffc219296a818a83266d60628e6aedd
-_thrift_commit=bba5d4590ff71e8f34ce4f90a8d7b2cf867ca3d0
-_proxygen_commit=8a602aa40383d6dddbdcb2a951067b9923edfc74
-pkgrel=2
-pkgdesc=Virtual Machine, Runtime, and JIT for PHP
-arch=('x86_64')
-url=http://hhvm.com;
-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')
-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;
-'hhvm.tmpfile'
-'hhvm.service'
-'hhvm@.service'
-'php.ini'
-'server.ini')
-install=hhvm.install
-backup=(etc/hhvm/{php,server}.ini)
-options+=('!buildflags')
-
-prepare() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-
-rm -rf third-party
-ln -s $srcdir/hhvm-third-party-$_thirdparty_commit third-party
-
-cd third-party/folly
-rm -rf src
-ln -s $srcdir/folly-$_folly_commit src
-
-cd ../thrift
-rm -rf src
-ln -s $srcdir/fbthrift-$_thrift_commit src
-
-cd ../proxygen
-rm -rf src
-ln -s $srcdir/proxygen-$_proxygen_commit src
-}
-
-build() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-msg2 Building hhvm
-
-cmake -Wno-dev \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_PREFIX_PATH=$srcdir \
--DENABLE_MONGO:BOOL=ON \
-.
-
-make
-
-for hacktool in hackificator remove_soft_types; do
-cd $srcdir/$pkgname-HHVM-$pkgver/hphp/hack/tools/$hacktool
-make depend
-make
-done
-}
-
-# check() {
-# cd $srcdir/$pkgname-HHVM-$pkgver/hphp/test
-# ./run --threads 8 quick
-# }
-
-package() {
-cd $srcdir/$pkgname-HHVM-$pkgver
-make DESTDIR=$pkgdir/ install
-mv $pkgdir/usr/lib{64,}
-
-cd hphp/hack/bin
-for bin in hh_* tools/*; do
-install -Dm755 $bin $pkgdir/usr/bin/$(basename $bin)
-done
-
-cd $srcdir
-install -Dm644 hhvm.tmpfile $pkgdir/usr/lib/tmpfiles.d/hhvm.conf
-install -Dm644 hhvm.service $pkgdir/usr/lib/systemd/system/hhvm.service
-install -Dm644 hhvm@.service $pkgdir/usr/lib/systemd/system/hhvm@.service
-
-install -Dm644 php.ini $pkgdir/etc/hhvm/php.ini
-install -Dm644 server.ini $pkgdir/etc/hhvm/server.ini
-}
-
-sha256sums=('1ddf74f84f45bbccf9bd37da7ea4e3048122e09fbeba46ae0ad3982d321012ba'
-'c62bc664fd96de44aedc07e2cf136b7ff712001f53d41b003c260c50c8ec9e8e'
-'00922bf8128f368fa8b3a1b0ab6d79086a77a9f95484bf020d0f06bcd4710441'
-