# CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. # # Common perl environment COMMON_PERL_ENV += MAKE=$(GMAKE) COMMON_PERL_ENV += PATH=$(dir $(CC)):$(PATH) COMMON_PERL_ENV += LANG="" COMMON_PERL_ENV += CC="$(CC)" COMMON_PERL_ENV += CFLAGS="$(CC_BITS) $(PERL_OPTIMIZE)" # Particular perl runtime is always required (at least to run Makefile.PL) PERL_REQUIRED_PACKAGES += runtime/perl # Yes. Perl is just scripts, for now, but we need architecture # directories so that it populates all architecture prototype # directories. define perl-version-rule $(BUILD_DIR)/%-$(1)/.configured: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.built: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.installed: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.tested: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.tested-and-compared: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.depend-build: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.depend-runtime: PERL_VERSION=$(1) $(BUILD_DIR)/%-$(1)/.depend-test: PERL_VERSION=$(1) endef $(foreach perlver,$(PERL_VERSIONS),$(eval $(call perl-version-rule,$(perlver)))) $(BUILD_DIR)/$(MACH32)-%/.configured: BITS=32 $(BUILD_DIR)/$(MACH64)-%/.configured: BITS=64 $(BUILD_DIR)/$(MACH32)-%/.built: BITS=32 $(BUILD_DIR)/$(MACH64)-%/.built: BITS=64 $(BUILD_DIR)/$(MACH32)-%/.installed: BITS=32 $(BUILD_DIR)/$(MACH64)-%/.installed: BITS=64 $(BUILD_DIR)/$(MACH32)-%/.tested: BITS=32 $(BUILD_DIR)/$(MACH64)-%/.tested: BITS=64 $(BUILD_DIR)/$(MACH32)-%/.tested-and-compared: BITS=32 $(BUILD_DIR)/$(MACH64)-%/.tested-and-compared: BITS=64 PERL_32_ONLY_VERSIONS = $(filter-out $(PERL_64_ONLY_VERSIONS), $(PERL_VERSIONS)) BUILD_32 = $(PERL_32_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.built) BUILD_64 = $(PERL_64_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.built) BUILD_NO_ARCH = $(PERL_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.built) INSTALL_32 = $(PERL_32_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.installed) INSTALL_64 = $(PERL_64_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.installed) INSTALL_NO_ARCH = $(PERL_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.installed) COMPONENT_CONFIGURE_ENV += $(COMMON_PERL_ENV) # Avoid interactive behaviour for Module::AutoInstall COMPONENT_CONFIGURE_ENV += PERL_AUTOINSTALL=--skipdeps COMPONENT_CONFIGURE_ENV += PERL="$(PERL)" $(BUILD_DIR)/%/.configured: $(SOURCE_DIR)/.prep ($(RM) -r $(@D) ; $(MKDIR) $(@D)) $(ENV) $(CLONEY_ARGS) $(CLONEY) $(SOURCE_DIR) $(@D) $(COMPONENT_PRE_CONFIGURE_ACTION) (cd $(@D) ; $(COMPONENT_CONFIGURE_ENV) $(PERL) $(PERL_FLAGS) \ Makefile.PL $(CONFIGURE_OPTIONS)) $(COMPONENT_POST_CONFIGURE_ACTION) $(TOUCH) $@ COMPONENT_BUILD_ENV += $(COMMON_PERL_ENV) $(BUILD_DIR)/%/.built: $(BUILD_DIR)/%/.configured $(COMPONENT_PRE_BUILD_ACTION) (cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \ $(GMAKE) $(COMPONENT_BUILD_GMAKE_ARGS) $(COMPONENT_BUILD_ARGS) \ $(COMPONENT_BUILD_TARGETS)) $(COMPONENT_POST_BUILD_ACTION) $(TOUCH) $@ COMPONENT_INSTALL_ARGS += DESTDIR="$(PROTO_DIR)" COMPONENT_INSTALL_TARGETS = install_vendor COMPONENT_INSTALL_ENV += $(COMMON_PERL_ENV) $(BUILD_DIR)/%/.installed: $(BUILD_DIR)/%/.built $(COMPONENT_PRE_INSTALL_ACTION) (cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \ $(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS)) $(COMPONENT_POST_INSTALL_ACTION) $(TOUCH) $@ # Define Perl version specific filenames for tests. ifeq ($(strip $(USE_COMMON_TEST_MASTER)),no) COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-$(PERL_VERSION).master endif COMPONENT_TEST_BUILD_DIR = $(BUILD_DIR)/test-$(PERL_VERSION) COMPONENT_TEST_OUTPUT = $(COMPONENT_TEST_BUILD_DIR)/test-$(PERL_VERSION)-results COMPONENT_TEST_DIFFS = $(COMPONENT_TEST_BUILD_DIR)/test-$(PERL_VERSION)-diffs COMPONENT_TEST_SNAPSHOT = $(COMPONENT_TEST_BUILD_DIR)/results-$(PERL_VERSION).snapshot COMPONENT_TEST_TRANSFORM_CMD = $(COMPONENT_TEST_BUILD_DIR)/transform-$(PERL_VERSION)-results # Normalize perl test results. COMPONENT_TEST_TRANSFORMS += '-e "0,/test_harness/d"' # delete any lines up through test_harness COMPONENT_TEST_TRANSFORMS += '-e "s/, *[0-9]* wallclock.*//"' # delete timings COMPONENT_TEST_TRANSFORMS += '-e "/^\#/d"' # delete comments COMPONENT_TEST_TRANSFORMS += '-e "/^make\[/d"' # delete make logs # Add the expected 'test_harness' line if it is missing in the test results. COMPONENT_POST_TEST_ACTION += \ $(GNU_GREP) -q test_harness $(COMPONENT_TEST_OUTPUT) \ || $(GSED) -i -e '1i\test_harness' $(COMPONENT_TEST_OUTPUT) ; COMPONENT_TEST_TARGETS = test COMPONENT_TEST_ENV += $(COMMON_PERL_ENV) # determine the type of tests we want to run. ifeq ($(strip $(wildcard $(COMPONENT_TEST_RESULTS_DIR)/results-*.master)),) TEST_32 = $(PERL_32_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.tested) TEST_64 = $(PERL_64_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.tested) TEST_NO_ARCH = $(PERL_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.tested) else TEST_32 = $(PERL_32_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH32)-%/.tested-and-compared) TEST_64 = $(PERL_64_ONLY_VERSIONS:%=$(BUILD_DIR)/$(MACH64)-%/.tested-and-compared) TEST_NO_ARCH = $(PERL_VERSIONS:%=$(BUILD_DIR)/$(MACH)-%/.tested-and-compared) endif # test the built source $(BUILD_DIR)/%/.tested-and-compared: $(COMPONENT_TEST_DEP) $(RM) -rf $(COMPONENT_TEST_BUILD_DIR) $(MKDIR) $(COMPONENT_TEST_BUILD_DIR) $(COMPONENT_PRE_TEST_ACTION) -(cd $(COMPONENT_TEST_DIR) ; \ $(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \ $(COMPONENT_TEST_CMD) \ $(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) \ &> $(COMPONENT_TEST_OUTPUT) $(COMPONENT_POST_TEST_ACTION) $(COMPONENT_TEST_CREATE_TRANSFORMS) $(COMPONENT_TEST_PERFORM_TRANSFORM) $(COMPONENT_TEST_COMPARE) $(COMPONENT_TEST_CLEANUP) $(TOUCH) $@ $(BUILD_DIR)/%/.tested: SHELLOPTS=pipefail $(BUILD_DIR)/%/.tested: $(COMPONENT_TEST_DEP) $(RM) -rf $(COMPONENT_TEST_BUILD_DIR) $(MKDIR) $(COMPONENT_TEST_BUILD_DIR) $(COMPONENT_PRE_TEST_ACTION) (cd $(COMPONENT_TEST_DIR) ; \ $(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \ $(COMPONENT_TEST_CMD) \ $(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) \ |& $(TEE) $(COMPONENT_TEST_OUTPUT) $(COMPONENT_POST_TEST_ACTION) $(COMPONENT_TEST_CREATE_TRANSFORMS) $(COMPONENT_TEST_PERFORM_TRANSFORM) $(COMPONENT_TEST_CLEANUP) $(TOUCH) $@ # We need to add -$(PLV) to package fmri and add runtime dependencies from metadata to generated manifest GENERATE_EXTRA_DEPS += $(BUILD_DIR)/META.depend-runtime.res GENERATE_EXTRA_CMD += | \ $(GSED) -e 's/^\(set name=pkg.fmri [^@]*\)\(.*\)$$/\1-$$(PLV)\2/' | \ $(CAT) - <( \ echo "" ; \ echo "\# perl modules are unusable without perl runtime binary" ; \ echo "depend type=require fmri=__TBD pkg.debug.depend.file=perl \\" ; \ echo " pkg.debug.depend.path=usr/perl5/\$$(PERLVER)/bin" ; \ echo "" ; \ echo "\# Automatically generated dependencies based on distribution metadata" ; \ $(CAT) $(BUILD_DIR)/META.depend-runtime.res $(MANGLE_DEPEND_RUNTIME) | $(PKGFMT) \ ) # Add build dependencies from metadata to REQUIRED_PACKAGES. REQUIRED_PACKAGES_RESOLVED += $(BUILD_DIR)/META.depend-build.res # Generate list of TEST_REQUIRED_PACKAGES entries REQUIRED_PACKAGES_EXTRA_DEPS += $(BUILD_DIR)/META.depend-test.required $(BUILD_DIR)/META.depend-test.required: $(BUILD_DIR)/META.depend-test.res $(GSED) -e 's|^depend.*pkg:/\(library/perl-5/.*\)-\$$(PLV).*$$|TEST_REQUIRED_PACKAGES.perl += \1|' \ -e '/^TEST_REQUIRED_PACKAGES\.perl/!s/.*/\# TODO: &/' < $< > $@ # Add META.depend-test.required to the generated list of REQUIRED_PACKAGES REQUIRED_PACKAGES_TRANSFORM += -e '$$r $(BUILD_DIR)/META.depend-test.required' # The configure target should create the MYMETA.json file. If it does not we # need a fallback to use either META.json or META.yml. We probably (and # hopefully) currently have no component requiring such fallback. $(BUILD_DIR)/%/MYMETA.json: $(BUILD_DIR)/%/.configured if [ ! -f $@ ] ; then \ if [ -e $(@D)/META.json ] ; then \ $(CAT) $(@D)/META.json ; \ elif [ -e $(@D)/META.yml ] ; then \ $(CAT) $(@D)/META.yml \ | $(PYTHON) -c 'import sys, yaml, json; y=yaml.safe_load(sys.stdin.read()); print(json.dumps(y))' \ | $(JQ) '{prereqs:{configure:{requires:.configure_requires},build:{requires:.build_requires},runtime:{requires}}}' ; \ fi > $@ ; \ fi ; \ $(TOUCH) $@ $(BUILD_DIR)/%/.depend-build: $(BUILD_DIR)/%/MYMETA.json $(WS_TOOLS)/perl-meta-deps $(WS_MACH) $(BUILD_DIR) configure build $(PERL_VERSION) < $< > $@ # Get configure requirements from META.json/META.yml too if [ -e $(@D)/META.json ] ; then \ $(CAT) $(@D)/META.json ; \ elif [ -e $(@D)/META.yml ] ; then \ $(CAT) $(@D)/META.yml \ | $(PYTHON) -c 'import sys, yaml, json; y=yaml.safe_load(sys.stdin.read()); print(json.dumps(y))' \ | $(JQ) '{prereqs:{configure:{requires:.configure_requires},build:{requires:.build_requires},runtime:{requires}}}' ; \ fi | $(WS_TOOLS)/perl-meta-deps $(WS_MACH) $(BUILD_DIR) configure $(PERL_VERSION) >> $@ ; \ $(TOUCH) $@ $(BUILD_DIR)/%/.depend-runtime: $(BUILD_DIR)/%/MYMETA.json $(WS_TOOLS)/perl-meta-deps $(WS_MACH) $(BUILD_DIR) runtime $(PERL_VERSION) < $< > $@ $(BUILD_DIR)/%/.depend-test: $(BUILD_DIR)/%/MYMETA.json $(WS_TOOLS)/perl-meta-deps $(WS_MACH) $(BUILD_DIR) test $(PERL_VERSION) < $< > $@ $(WS_TOOLS)/perl-meta-deps $(WS_MACH) $(BUILD_DIR) test runtime suggests $(PERL_VERSION) < $< >> $@ $(BUILD_DIR)/META.depend-build.res: $(BUILD_$(MK_BITS):%.built=%.depend-build) $(CAT) $^ | $(SORT) -u > $@ $(BUILD_DIR)/META.depend-runtime.res: $(BUILD_$(MK_BITS):%.built=%.depend-runtime) $(CAT) $^ | $(SORT) -u > $@ $(BUILD_DIR)/META.depend-test.res: $(BUILD_$(MK_BITS):%.built=%.depend-test) $(CAT) $^ | $(SORT) -u > $@ # jq is needed for perl-meta-deps and to convert META.yml to JSON format USERLAND_REQUIRED_PACKAGES += text/jq # pyyaml is needed to convert META.yml to MYMETA.json USERLAND_REQUIRED_PACKAGES += library/python/pyyaml clean:: $(RM) -r $(BUILD_DIR) $(PROTO_DIR)