From 8b6e70a12d34db25d68c5ccc7a81450e133094c7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 30 Jul 2016 19:15:07 +0200 Subject: zephir-parser: 0.9.3 (new package for phalcon) --- Makefile | 3 + composer.json | 47 +++++++++++++ zephir-parser.spec | 190 +++++++++++++++++++++++++++++++++++++++++++++++++++++ zephir-rpm.patch | 34 ++++++++++ 4 files changed, 274 insertions(+) create mode 100644 Makefile create mode 100644 composer.json create mode 100644 zephir-parser.spec create mode 100644 zephir-rpm.patch diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cd3c95f --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9818c93 --- /dev/null +++ b/composer.json @@ -0,0 +1,47 @@ +{ + "name": "phalcon/zephir", + "description": "Zephir is a compiled high level language aimed to the creation of C-extensions for PHP", + "keywords": ["extension"], + "homepage": "http://zephir-lang.com/", + "license": "MIT", + "authors": [ + { + "name": "Zephir Team", + "homepage": "http://zephir-lang.com/" + }, + { + "name": "Contributors", + "homepage": "https://github.com/phalcon/zephir/graphs/contributors" + } + ], + "support": { + "issues": "https://github.com/phalcon/zephir/issues?state=open", + "source": "https://github.com/phalcon/zephir", + "forum": "https://forum.zephir-lang.com/", + "docs": "http://docs.zephir-lang.com/" + }, + "require": { + "php": ">=5.4", + "ext-json": "*", + "ext-hash": "*", + "ext-ctype": "*" + }, + "require-dev": { + "squizlabs/php_codesniffer": "~2.6", + "phpunit/phpunit": "3.7.*", + "ext-gmp": "*", + "ext-pdo": "*", + "ext-pdo_sqlite": "*" + }, + "autoload": { + "psr-4": { + "Zephir\\": "Library" + } + }, + "bin": ["bin/zephir"], + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + } +} diff --git a/zephir-parser.spec b/zephir-parser.spec new file mode 100644 index 0000000..f2342bb --- /dev/null +++ b/zephir-parser.spec @@ -0,0 +1,190 @@ +# remirepo/fedora spec file for zephir and zephir-parser +# +# Copyright (c) 2016 Remi Collet +# License: CC-BY-SA +# http://creativecommons.org/licenses/by-sa/4.0/ +# +# Please, preserve the changelog entries +# + +%if 0%{?scl:1} +%global with_tests 0 +%scl_package zephyr-parser +%else +%global with_tests 0%{!?_without_tests:1} +%endif + +# Get commit from PHP_PHALCON_ZEPVERSION in +# https://github.com/phalcon/cphalcon/blob/master/ext/php_phalcon.h +%global gh_commit e716dbe641fe731031dba38a63af599d1c384824 +%global gh_short %(c=%{gh_commit}; echo ${c:0:7}) +%global gh_date 20160728 +%global gh_owner phalcon +%global gh_project zephir +%global ext_name zephir_parser + +Name: %{?scl_prefix}%{gh_project}-parser +Version: 0.9.3 +Release: 1%{?gh_date:.%{gh_date}git%{gh_short}}%{?dist} +Summary: Zephir parser extension + +Group: Development/Libraries +License: MIT +URL: https://getcomposer.org/ +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz + +# Adapt path used in RPM +Patch0: %{gh_project}-rpm.patch + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: %{?scl_prefix}php-devel > 5.4 +BuildRequires: re2c +%if %{with_tests} +BuildRequires: %{?scl_prefix}php-json +BuildRequires: %{?scl_prefix}php-hash +BuildRequires: %{?scl_prefix}php-ctype +# From composer.json, "require-dev" +# "squizlabs/php_codesniffer": "~2.6", +# "phpunit/phpunit": "3.7.*", +# "ext-gmp": "*", +# "ext-pdo": "*", +# "ext-pdo_sqlite": "*" +BuildRequires: %{?scl_prefix}php-gmp +BuildRequires: %{?scl_prefix}php-pdo +BuildRequires: %{?scl_prefix}php-pdo_sqlite +BuildRequires: %{?scl_prefix}php-composer(phpunit/phpunit) >= 3.7 +%endif + +%description +Parser extension used by %{gh_project} + + +%package -n %{?scl_prefix}%{gh_project} +Summary: Zephir language for creation of extensions for PHP. +Group: Development/Languages +%if 0%{?fedora} >= 12 || 0%{?rhel} >= 6 +BuildArch: noarch +%endif + +%description -n %{?scl_prefix}%{gh_project} +Zephir - Ze(nd Engine) Ph(p) I(nt)r(mediate) - is a high level language +that eases the creation and maintainability of extensions for PHP. +Zephir extensions are exported to C code that can be compiled and +optimized by major C compilers such as gcc/clang/vc++. Functionality +is exposed to the PHP language. + +Main features: +* Both dynamic/static typing +* Reduced execution overhead compared with full interpretation +* Restricted procedural programming, promoting OOP +* Memory safety +* Ahead-of-time (AOT) compiler to provide predictable performance + +Compiler design goals: +* Multi-pass compilation +* Type speculation/inference +* Allow runtime profile-guided optimizations, pseudo-constant propagation + and indirect/virtual function inlining + + +Requires: %{?scl_prefix}php-cli +Requires: %{name} = %{version}-%{release} +# From composer.json, "require" +# "php": ">=5.4", +# "ext-json": "*", +# "ext-hash": "*", +# "ext-ctype": "*" +Requires: %{?scl_prefix}php(language) >= 5.4 +Requires: %{?scl_prefix}php-json +Requires: %{?scl_prefix}php-hash +Requires: %{?scl_prefix}php-ctype +# From phpcompatinfo +Requires: %{?scl_prefix}php-reflection +Requires: %{?scl_prefix}php-date +Requires: %{?scl_prefix}php-gmp +Requires: %{?scl_prefix}php-pcre +Requires: %{?scl_prefix}php-pdo +Requires: %{?scl_prefix}php-spl +Requires: %{?scl_prefix}php-xml + +Provides: %{?scl_prefix}php-composer(%{gh_owner}/%{gh_project}) = %{version} + + +%prep +%setup -q -n %{gh_project}-%{gh_commit} + +%patch0 -p0 -b .rpm +sed -e 's:@DATADIR@:%{_datadir}:;s:@BINDIR@:%{_bindir}:' \ + -i bin/%{gh_project} + +find . -name \*.php -exec chmod -x {} \; + + +%build +cd parser/parser +./build_linux.sh +cd .. +%{_bindir}/phpize +%configure \ + --with-php-config=%{_bindir}/php-config +make + + + +%install +rm -rf %{buildroot} + +: Library and resources +mkdir -p %{buildroot}%{_datadir}/%{gh_project} +for i in *php Library kernels prototypes templates +do + cp -pr $i %{buildroot}%{_datadir}/%{gh_project}/$i +done + +: Command +install -Dpm 755 bin/%{gh_project} %{buildroot}%{_bindir}/%{gh_project} + +: Extension +make install -C parser INSTALL_ROOT=%{buildroot} + + +%check +sed -e 's:%ZEPHIRDIR%:%{buildroot}%{_datadir}/%{gh_project}:g' \ + -e 's: php:%{_bindir}/php:' \ + bin/%{gh_project}.rpm > bin/%{gh_project}.test +sh ./bin/%{gh_project}.test version | grep %{version} + +: Check extension +%{_bindir}/php -n -d extension=parser/modules/%{ext_name}.so -m | grep %{ext_name} + +%if %{with_tests} +: Run test suite +%{_bindir}/phpunit unit-tests/Zephir --verbose + +%else +: Test suite disabled +%endif + + +%clean +rm -rf %{buildroot} + + +%files +%defattr(-,root,root,-) +%{!?_licensedir:%global license %%doc} +%license LICENSE +%{php_extdir}/%{ext_name}.so + +%files -n %{?scl_prefix}%{gh_project} +%defattr(-,root,root,-) +%doc *.md +%doc composer.json +%{_bindir}/%{gh_project} +%{_datadir}/%{gh_project} + + +%changelog +* Sat Jul 30 2016 Remi Collet - 0.9.0-1.20160728gite716dbe +- Initial package + diff --git a/zephir-rpm.patch b/zephir-rpm.patch new file mode 100644 index 0000000..dc497e4 --- /dev/null +++ b/zephir-rpm.patch @@ -0,0 +1,34 @@ +diff -up bin/zephir.rpm bin/zephir +--- bin/zephir.rpm 2016-07-30 18:49:46.000000000 +0200 ++++ bin/zephir 2016-07-30 18:52:16.000000000 +0200 +@@ -1,27 +1,9 @@ + #!/bin/bash +-if [ -z "$ZEPHIRDIR" ]; then +- ZEPHIRDIR="%ZEPHIRDIR%" +- if [[ "$ZEPHIRDIR" == "%""ZEPHIRDIR""%" ]]; then +- if [ -h $0 ]; then +- REALPATH="`dirname $0`/`readlink $0`" +- CURDIR=`dirname $REALPATH` +- else +- CURDIR=`dirname $0` +- fi +- PARENTDIR=`cd $CURDIR/..; pwd` +- +- if [ -f $PARENTDIR/compiler.php ]; then +- export ZEPHIRDIR=$PARENTDIR +- else +- echo "Environment variable ZEPHIRDIR is not set" +- exit 1 +- fi +- fi +-fi ++export ZEPHIRDIR="@DATADIR@/zephir" + + if [[ $1 && $2 && $3 && "$1"=="-c" ]]; then +- php -d safe_mode=Off -d enable_dl=On -c $2 $ZEPHIRDIR/compiler.php ${*:3} ++ @BINDIR@/php -d extension=zephir_parser.so -c $2 $ZEPHIRDIR/compiler.php ${*:3} + else +- php -d safe_mode=Off -d enable_dl=On $ZEPHIRDIR/compiler.php $* ++ @BINDIR@/php -d extension=zephir_parser.so $ZEPHIRDIR/compiler.php $* + fi + -- cgit