X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=Makefile;h=479b3ec17213a94bf86436e1e9ca169529dce8bb;hb=3082fa402615915b384a6150957b66d37ab6d092;hp=3701db3b4fffa397d88b35aa7ff6d1178efebdac;hpb=5e781dcbd19aac1bc3a31b3187fd42011e70dd3d;p=m6w6%2Ftravis-pecl diff --git a/Makefile b/Makefile index 3701db3..479b3ec 100644 --- a/Makefile +++ b/Makefile @@ -3,15 +3,19 @@ export PHP ?= 5.6 JOBS ?= 2 PHP_MIRROR ?= http://us1.php.net/distributions/ +TMPDIR ?= /tmp + +tmpnam := $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -) +makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) ifdef TRAVIS_JOB_NUMBER prefix ?= $(HOME)/job-$(TRAVIS_JOB_NUMBER) else -prefix ?= $(HOME) +prefix ?= $(tmpnam) endif exec_prefix ?= $(prefix) bindir = $(exec_prefix)/bin -srcdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) +srcdir := $(prefix)/src ifdef TRAVIS_BUILD_DIR curdir ?= $(TRAVIS_BUILD_DIR) else @@ -35,15 +39,28 @@ PECL_VERSION ?= $(word 3,$(PECL_WORDS)) PECL_INI = $(with_config_file_scan_dir)/pecl.ini PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION)) -PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) -PHP_VERSIONS_JSON = $(srcdir)/php-versions$(PHP_VERSION_MAJOR).json -PHP_VERSION ?= $(shell test -e $(PHP_VERSIONS_JSON) && cat $(PHP_VERSIONS_JSON) | $(srcdir)/php-version.php $(PHP)) +#PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) + +PHP_RELEASES = $(srcdir)/releases.tsv +PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2}') + +CPPCHECK ?= -v -j $(JOBS) --enable=warning,portability,style --error-exitcode=42 --suppressions-list=$(makdir)/cppcheck.suppressions -I. .SUFFIXES: .PHONY: all all: php +.PHONY: versions +versions: $(PHP_RELEASES) + grep "^$(PHP)" $< + +$(PHP_RELEASES): $(makdir)/php-version-url-dist.php $(makdir)/php-version-url-qa.php | $(srcdir) + printf "master\tmaster\tgit clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf\n" >$@ + curl -Ss "http://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -Ss "http://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -Ss "http://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@ + ## -- PHP .PHONY: clean @@ -51,7 +68,7 @@ clean: @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi .PHONY: check -check: $(PHP_VERSIONS_JSON) +check: $(PHP_RELEASES) @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi .PHONY: reconf @@ -67,29 +84,19 @@ php: check $(bindir)/php | $(PECL_INI) fi \ done -$(PHP_VERSIONS_JSON): $(srcdir)/php-version.php - curl -Sso $@ "http://php.net/releases/index.php?json&version=$(PHP_VERSION_MAJOR)&max=-1" +$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES) + cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$| -$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_VERSIONS_JSON) - if test $(PHP_VERSION) = "master"; then \ - cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf; \ - else \ - curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir); \ - fi - -$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_VERSIONS_JSON) +$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) -$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_VERSIONS_JSON) +$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make -$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_VERSIONS_JSON) +$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make install -$(with_config_file_scan_dir): - mkdir -p $@ - -$(extdir): +$(srcdir) $(extdir) $(with_config_file_scan_dir): mkdir -p $@ ## -- PECL @@ -137,11 +144,15 @@ ext-rm: pecl-rm .PHONY: ext ext: pecl-check pecl - $(srcdir)/check-packagexml.php package.xml + $(makdir)/check-packagexml.php package.xml -.PHONY: php +.PHONY: test test: php REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests +.PHONY: cppcheck +cppcheck: + cppcheck $(CPPCHECK) $$(awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}'