X-Git-Url: https://git.m6w6.name/?p=m6w6%2Ftravis-pecl;a=blobdiff_plain;f=Makefile;h=4a903a800030c45581df06f9fd58e99cff648477;hp=54ae0bb35138f374e981cf1de7ff7563d790bb07;hb=HEAD;hpb=772e821e8d7ee8ee7a8b3a4fb2e60e5e67814abe diff --git a/Makefile b/Makefile index 54ae0bb..4a903a8 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,26 @@ export -PHP ?= 5.6 +PHP ?= 7.4 JOBS ?= 2 -PHP_MIRROR ?= http://us1.php.net/distributions/ +PHP_MIRROR ?= https://php.net/distributions/ +TMPDIR ?= /tmp -prefix ?= $(HOME)/job-$(TRAVIS_JOB_NUMBER) +makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))) + +ifdef TRAVIS +prefix ?= $(HOME)/cache/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -) +else +prefix ?= $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -) +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 +# CURDIR is a make builtin +curdir ?= $(CURDIR) +endif enable_maintainer_zts ?= no enable_debug ?= no @@ -18,81 +31,160 @@ with_php_config ?= $(bindir)/php-config extdir = $(shell test -x $(with_php_config) && $(with_php_config) --extension-dir) PECL_MIRROR ?= http://pecl.php.net/get/ -PECL_EXTENSION ?= $(shell echo $(PECL) | cut -d: -f1) -PECL_SONAME ?= $(if $(shell echo $(PECL) | cut -d: -f2),$(shell echo $(PECL) | cut -d: -f2),$(PECL_EXTENSION)) -PECL_VERSION ?= $(shell echo $(PECL) | cut -d: -f3 -s) +PECL_WORDS := $(subst :, ,$(PECL)) +PECL_EXTENSION ?= $(word 1,$(PECL_WORDS)) +PECL_SONAME ?= $(if $(word 2,$(PECL_WORDS)),$(word 2,$(PECL_WORDS)),$(PECL_EXTENSION)) +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)-$(PECL_VERSION)) + +#PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) -PHP_VERSION ?= $(shell test -e $(srcdir)/php-versions.json && cat $(srcdir)/php-versions.json | $(srcdir)/php-version.php $(PHP)) +PHP_RELEASES = $(srcdir)/releases.tsv +PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2; exit}') + +CPPCHECK_STD ?= c89 +CPPCHECK_ENABLE ?= portability,style +CPPCHECK_EXITCODE ?= 42 +CPPCHECK_SUPPRESSIONS ?= $(makdir)/cppcheck.suppressions +CPPCHECK_INCLUDES ?= -I. $(shell test -f Makefile && awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}' $@ + curl -sSL "https://php.net/releases/index.php?json&version=8&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -sSL "https://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -sSL "https://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -sSL "https://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@ + ## -- PHP +.PHONY: clean clean: - @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; done + @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi -check: $(srcdir)/php-versions.json +.PHONY: check +check: $(PHP_RELEASES) @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi + @if test -z "$(PHP_VERSION)"; then echo "No PHP version akin to $(PHP) available"; exit 1; fi + if test -d $(srcdir)/php-$(PHP_VERSION)/.git; then cd $(srcdir)/php-$(PHP_VERSION)/; git pull; fi +.PHONY: reconf reconf: check $(srcdir)/php-$(PHP_VERSION)/configure - cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix) - -php: check $(bindir)/php + cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) && rm -f sapi/cli/php -$(srcdir)/php-versions.json: $(srcdir)/php-version.php - curl -Sso $@ "http://php.net/releases/index.php?json&version=5&max=-1" +.PHONY: php +php: check $(bindir)/php | $(PECL_INI) + -for EXT_SONAME in $(extdir)/*.so; do \ + EXT_SONAME=$$(basename $$EXT_SONAME); \ + if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \ + echo extension=$$EXT_SONAME >> $(PECL_INI); \ + fi \ + done -$(srcdir)/php-$(PHP_VERSION)/configure: | $(srcdir)/php-versions.json - curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir) +$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES) + cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$| -$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(srcdir)/php-versions.json - cd $(srcdir)/php-$(PHP_VERSION) && ./configure -C --prefix=$(prefix) +$(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 | $(srcdir)/php-versions.json - cd $(srcdir)/php-$(PHP_VERSION) && make -s -j $(JOBS) V=0 || make +$(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 | $(srcdir)/php-versions.json - cd $(srcdir)/php-$(PHP_VERSION) && make -s install V=0 +$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES) + cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) install INSTALL=install -$(with_config_file_scan_dir): +$(srcdir) $(extdir) $(with_config_file_scan_dir): mkdir -p $@ ## -- PECL +.PHONY: pecl-check pecl-check: @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi + if test -d $(PECL_DIR)/.git; then cd $(PECL_DIR)/; git pull; fi + +.PHONY: pecl-clean +pecl-clean: + @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi + +.PHONY: pecl-rm +pecl-rm: + rm -f $(extdir)/$(PECL_SONAME).so $(PECL_INI): | $(with_config_file_scan_dir) touch $@ -$(srcdir)/pecl-$(PECL_EXTENSION): - test -e $@ || ln -s $(CURDIR) $@ +$(PECL_DIR)/config.m4: + if test "$(PECL_VERSION)" = "master"; then \ + if test -d $(PECL_DIR); then \ + cd $(PECL_DIR); \ + git pull; \ + else \ + git clone https://github.com/$(PECL_EXTENSION) $(PECL_DIR); \ + fi; \ + else \ + mkdir -p $(PECL_DIR); \ + curl -LSs $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) \ + | tar xz --strip-components 1 -C $(PECL_DIR); \ + fi + +$(PECL_DIR)/configure: $(PECL_DIR)/config.m4 + cd $(PECL_DIR) && $(bindir)/phpize + +$(PECL_DIR)/Makefile: $(PECL_DIR)/configure + cd $(PECL_DIR) && ./configure --cache-file=config.cache + +$(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile + cd $(PECL_DIR) && make -j $(JOBS) || make + +$(extdir)/$(PECL_SONAME).so: $(PECL_DIR)/.libs/$(PECL_SONAME).so $(extdir) + cd $(PECL_DIR) && make -j $(JOBS) install INSTALL=install + +.PHONY: pecl +pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI) + grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI) -$(srcdir)/pecl-$(PECL_EXTENSION)/config.m4: - mkdir -p $(srcdir)/pecl-$(PECL_EXTENSION) - curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(srcdir)/pecl-$(PECL_EXTENSION) +.PHONY: ext-clean +ext-clean: pecl-clean -$(srcdir)/pecl-$(PECL_EXTENSION)/configure: $(srcdir)/pecl-$(PECL_EXTENSION)/config.m4 - cd $(srcdir)/pecl-$(PECL_EXTENSION) && $(bindir)/phpize +.PHONY: ext-rm +ext-rm: pecl-rm -$(srcdir)/pecl-$(PECL_EXTENSION)/Makefile: $(srcdir)/pecl-$(PECL_EXTENSION)/configure - cd $(srcdir)/pecl-$(PECL_EXTENSION) && ./configure -C +.PHONY: ext +ext: pecl-check pecl + $(makdir)/check-packagexml.php package.xml -$(srcdir)/pecl-$(PECL_EXTENSION)/.libs/$(PECL_SONAME).so: $(srcdir)/pecl-$(PECL_EXTENSION)/Makefile - cd $(srcdir)/pecl-$(PECL_EXTENSION) && make -s -j $(JOBS) V=0 || make +.PHONY: test +test: TESTS ?= tests +test: php + REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff $(TESTS) +.PHONY: pecl-test +pecl-test: TESTS ?= $(PECL_DIR)/tests +pecl-test: php + REPORT_EXIT_STATUS=1 $(bindir)/php $(prefix)/lib/php/build/run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff $(TESTS) -$(extdir)/$(PECL_SONAME).so: $(srcdir)/pecl-$(PECL_EXTENSION)/.libs/$(PECL_SONAME).so - cd $(srcdir)/pecl-$(PECL_EXTENSION) && make -s install V=0 - -pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI) - grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI) +pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar + for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done -ext: pecl-check $(srcdir)/pecl-$(PECL_EXTENSION) pecl - $(srcdir)/check-packagexml.php package.xml +## -- CPPCHECK -test: php - REPORT_EXIT_STATUS=1 NO_INTERACTION=1 $(bindir)/php run-tests.php -p $(bindir)/php --show-diff tests +$(srcdir)/cppcheck-$(CPPCHECK_VERSION): + git clone https://github.com/danmar/cppcheck.git $@ && cd $@ && git checkout $(CPPCHECK_VERSION) + +$(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION) + cd $| && make -j $(JOBS) cppcheck + +.PHONY: cppcheck +cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck + $| $(CPPCHECK_ARGS) .