2N/A# The contents of this file are subject to the terms of the
2N/A# Common Development and Distribution License (the "License").
2N/A# You may not use this file except in compliance with the License.
2N/A# See the License for the specific language governing permissions
2N/A# and limitations under the License.
2N/A# When distributing Covered Code, include this CDDL HEADER in each
2N/A# If applicable, add the following below this CDDL HEADER, with the
2N/A# fields enclosed by brackets "[]" replaced with your own identifying
2N/A# information: Portions Copyright [yyyy] [name of copyright owner]
59N/A# Copyright (c) 2010, 2011, Oracle
and/or its affiliates. All rights reserved.
2N/A# Rules and Macros for generating an IPS package manifest and publishing an
2N/A# IPS package to a pkg depot.
2N/A# and define an "install" target appropriate to building your component.
59N/A# install: $(BUILD_DIR)/build/$(MACH32)/.installed \
59N/A# $(BUILD_DIR)/build/$(MACH64)/.installed
2N/A# This set of rules makes the "publish" target the default target for make(1)
26N/A# Package headers should all pretty much follow the same format
26N/A# order is important
26N/ACOMPARISON_TRANSFORMS += $(PKGMOGRIFY_TRANSFORMS)
26N/A# order is important
26N/APUBLISH_TRANSFORMS += $(PKGMOGRIFY_TRANSFORMS)
26N/APKG_MACROS += MACH=$(MACH)
26N/APKG_MACROS += ARCH=$(MACH)
26N/APKG_MACROS += MACH32=$(MACH32)
26N/APKG_MACROS += MACH64=$(MACH64)
26N/APKG_MACROS += PUBLISHER=$(PUBLISHER)
26N/APKG_MACROS += CONSOLIDATION=$(CONSOLIDATION)
26N/APKG_MACROS += BUILD_VERSION=$(BUILD_VERSION)
26N/APKG_MACROS += SOLARIS_VERSION=$(SOLARIS_VERSION)
26N/APKG_MACROS += OS_VERSION=$(OS_VERSION)
26N/APKG_MACROS += IPS_COMPONENT_VERSION=$(IPS_COMPONENT_VERSION)
93N/APKG_MACROS += COMPONENT_VERSION=$(COMPONENT_VERSION)
26N/APKG_MACROS += COMPONENT_ARCHIVE_URL=$(COMPONENT_ARCHIVE_URL)
26N/APKG_OPTIONS += $(PKG_MACROS:%=-D %)
99N/APKG_PROTO_DIRS += $(PROTO_DIR) $(@D) $(COMPONENT_DIR)
59N/AMANIFEST_BASE = $(BUILD_DIR)/manifest-$(MACH)
30N/ACANONICAL_MANIFESTS = $(wildcard *.p5m)
26N/AGENERATED = $(MANIFEST_BASE)-generated
26N/ACOMBINED = $(MANIFEST_BASE)-combined
26N/AMANIFESTS = $(CANONICAL_MANIFESTS:%=$(MANIFEST_BASE)-%)
30N/AMOGRIFIED=$(CANONICAL_MANIFESTS:%.p5m=$(MANIFEST_BASE)-%.resolved)
26N/APUBLISHED=$(MOGRIFIED:%.resolved=%.published)
7N/ACOPYRIGHT_FILE = $(COMPONENT_NAME)-$(COMPONENT_VERSION).copyright
27N/Aifeq ($(IPS_PKG_NAME),)
27N/A IPS_PKG_NAME = $(COMPONENT_NAME)
21N/AIPS_COMPONENT_VERSION = $(COMPONENT_VERSION)
59N/Apublish: install $(BUILD_DIR)/.published
30N/Asample-manifest: $(GENERATED).p5m
46N/A$(GENERATED).p5m: install
46N/A $(PKGSEND) generate $(PKG_HARDLINKS:%=--target %) $(PROTO_DIR) | \
46N/A $(PKGMOGRIFY) $(PKG_OPTIONS)
/dev/fd/0 $(GENERATE_TRANSFORMS) | \
64N/A sed -e '/^$$/d' -e '/^#.*$$/d' | $(PKGFMT) | \
64N/A cat $(METADATA_TEMPLATE) - >$@
46N/A# copy the canonical manifest(s) to the build tree
46N/A$(MANIFEST_BASE)-%.generate: %.p5m canonical-manifests
46N/A cat $(METADATA_TEMPLATE) $< >$@
46N/A# mogrify the manifest
53N/A$(MANIFEST_BASE)-%.mogrified: %.p5m canonical-manifests
53N/A $(PKGMOGRIFY) $(PKG_OPTIONS) $< \
46N/A $(PUBLISH_TRANSFORMS) | \
46N/A sed -e '/^$$/d' -e '/^#.*$$/d' | uniq >$@
76N/A# generate dependencies
99N/APKGDEPEND_GENERATE_OPTIONS = -m $(PKG_PROTO_DIRS:%=-d %)
46N/A$(MANIFEST_BASE)-%.depend: $(MANIFEST_BASE)-%.mogrified
99N/A $(PKGDEPEND) generate $(PKGDEPEND_GENERATE_OPTIONS) $< >$@
46N/A# resolve dependencies, prepend the mogrified manifest, less the unresolved
46N/A# dependencies to the result.
46N/A$(MANIFEST_BASE)-%.resolved: $(MANIFEST_BASE)-%.depend
53N/A ($(PKGMOGRIFY) $(@:%.resolved=%.mogrified) \
53N/A sed -e '/^$$/d' -e '/^#.*$$/d' ; \
53N/A $(PKGDEPEND) resolve -o $< | sed -e '1d') | uniq >$@
46N/A# lint the manifest before we publish with it.
38N/A$(MANIFEST_BASE)-%.linted: $(MANIFEST_BASE)-%.resolved
46N/A @echo "VALIDATING MANIFEST CONTENT: $<"
84N/A $(ENV) PYTHONPATH=$(WS_TOOLS)/python PROTO_DIR=$(PROTO_DIR) \
84N/A $(PKGLINT) $(CANONICAL_REPO:%=-c $(WS_LINT_CACHE)) \
84N/A -f $(WS_TOOLS)/pkglintrc $<
99N/APKGSEND_PUBLISH_OPTIONS = -s $(PKG_REPO) publish --fmri-in-manifest
99N/APKGSEND_PUBLISH_OPTIONS += $(PKG_PROTO_DIRS:%=-d %)
46N/A$(MANIFEST_BASE)-%.published: $(MANIFEST_BASE)-%.linted
99N/A $(PKGSEND) $(PKGSEND_PUBLISH_OPTIONS) $<
59N/A$(BUILD_DIR)/.published: $(PUBLISHED)
32N/Aprint-package-names: canonical-manifests
32N/A sed -e '/^$$/d' -e '/^#.*$$/d' | sort -u
32N/Aprint-package-paths: canonical-manifests
32N/A sed -e '/^$$/d' -e '/^#.*$$/d' | sort -u
38N/Ainstall-packages: publish
38N/A @if [ $(IS_GLOBAL_ZONE) = 0 -o x$(ROOT) != x ]; then \
38N/A sed -e '/^$$/d' -e '/^#.*$$/d' -e 's;/;;' | sort -u | \
38N/A echo "unsafe to install package(s) automatically" ; \
38N/A$(MOGRIFIED): install
38N/Acanonical-manifests: $(CANONICAL_MANIFESTS) Makefile $(PATCHES)
26N/Aifeq ($(strip $(CANONICAL_MANIFESTS)),)
26N/A # If there were no canonical manifests in the workspace, nothing will
26N/A # be published and we should fail. A sample manifest can be generated
26N/A # $ gmake sample-manifest
26N/A # Once created, it will need to be reviewed, edited, and added to the
26N/A $(error Missing canonical manifest(s))
32N/A# This converts required paths to containing package names for be able to
32N/A# properly setup the build environment for a component.
32N/A @echo "generating $@ from Makefile REQUIRED_* data"
32N/A | sed -e '
s/pkg:\/\(.*\)@.*/REQUIRED_PKGS += \1/g' >$@