author | Stacey Marshall <Stacey.Marshall@Oracle.COM> |
Tue, 22 Apr 2014 11:07:09 +0100 | |
branch | s11u1-sru |
changeset 3101 | 3855f970a9cc |
parent 827 | 0944d8c0158b |
child 944 | 457586ba0add |
child 2551 | 0391c5c3b137 |
permissions | -rw-r--r-- |
2 | 1 |
# |
2 |
# CDDL HEADER START |
|
3 |
# |
|
4 |
# The contents of this file are subject to the terms of the |
|
5 |
# Common Development and Distribution License (the "License"). |
|
6 |
# You may not use this file except in compliance with the License. |
|
7 |
# |
|
8 |
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
|
9 |
# or http://www.opensolaris.org/os/licensing. |
|
10 |
# See the License for the specific language governing permissions |
|
11 |
# and limitations under the License. |
|
12 |
# |
|
13 |
# When distributing Covered Code, include this CDDL HEADER in each |
|
14 |
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
|
15 |
# If applicable, add the following below this CDDL HEADER, with the |
|
16 |
# fields enclosed by brackets "[]" replaced with your own identifying |
|
17 |
# information: Portions Copyright [yyyy] [name of copyright owner] |
|
18 |
# |
|
19 |
# CDDL HEADER END |
|
20 |
# |
|
683
c613b3449c36
7079363 gcc-3.p5m package manifest file shouldn't deliver .la files
Rich Burridge <rich.burridge@oracle.com>
parents:
582
diff
changeset
|
21 |
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved. |
2 | 22 |
# |
23 |
||
24 |
# |
|
25 |
# Rules and Macros for generating an IPS package manifest and publishing an |
|
26 |
# IPS package to a pkg depot. |
|
27 |
# |
|
28 |
# To use these rules, include ../make-rules/ips.mk in your Makefile |
|
29 |
# and define an "install" target appropriate to building your component. |
|
30 |
# Ex: |
|
31 |
# |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
53
diff
changeset
|
32 |
# install: $(BUILD_DIR)/build/$(MACH32)/.installed \ |
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
53
diff
changeset
|
33 |
# $(BUILD_DIR)/build/$(MACH64)/.installed |
2 | 34 |
# |
35 |
# This set of rules makes the "publish" target the default target for make(1) |
|
36 |
# |
|
37 |
||
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
38 |
PKGDEPEND = /usr/bin/pkgdepend |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
39 |
PKGFMT = /usr/bin/pkgfmt |
2 | 40 |
PKGMOGRIFY = /usr/bin/pkgmogrify |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
41 |
PKGSEND = /usr/bin/pkgsend |
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
42 |
PKGLINT = /usr/bin/pkglint |
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
43 |
PKGMANGLE = $(WS_TOOLS)/userland-mangler |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
44 |
|
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
45 |
# Package headers should all pretty much follow the same format |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
46 |
METADATA_TEMPLATE = $(WS_TOP)/transforms/manifest-metadata-template |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
47 |
COPYRIGHT_TEMPLATE = $(WS_TOP)/transforms/copyright-template |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
48 |
|
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
49 |
# order is important |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
50 |
GENERATE_TRANSFORMS += $(WS_TOP)/transforms/generate-cleanup |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
51 |
|
683
c613b3449c36
7079363 gcc-3.p5m package manifest file shouldn't deliver .la files
Rich Burridge <rich.burridge@oracle.com>
parents:
582
diff
changeset
|
52 |
PKGMOGRIFY_TRANSFORMS += $(WS_TOP)/transforms/libtool-drop |
c613b3449c36
7079363 gcc-3.p5m package manifest file shouldn't deliver .la files
Rich Burridge <rich.burridge@oracle.com>
parents:
582
diff
changeset
|
53 |
|
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
54 |
COMPARISON_TRANSFORMS += $(WS_TOP)/transforms/comparison-cleanup |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
55 |
COMPARISON_TRANSFORMS += $(PKGMOGRIFY_TRANSFORMS) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
56 |
|
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
57 |
# order is important |
151
f9e42a3f7095
7030982 hgk is delivered 444, breaks 'hg view'
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
145
diff
changeset
|
58 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/variant-cleanup |
206
a4474882bf60
7010355 python needs to be packaged to separate out non-core dependencies
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
197
diff
changeset
|
59 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/autopyc |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
60 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/defaults |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
61 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/actuators |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
62 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/devel |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
63 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/docs |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
64 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/locale |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
65 |
PUBLISH_TRANSFORMS += $(PKGMOGRIFY_TRANSFORMS) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
66 |
PUBLISH_TRANSFORMS += $(WS_TOP)/transforms/publish-cleanup |
2 | 67 |
|
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
68 |
PKG_MACROS += MACH=$(MACH) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
69 |
PKG_MACROS += MACH32=$(MACH32) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
70 |
PKG_MACROS += MACH64=$(MACH64) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
71 |
PKG_MACROS += PUBLISHER=$(PUBLISHER) |
827
0944d8c0158b
7169052 Integrate Visual Panels into Userland
Dan Labrecque <dan.labrecque@oracle.com>
parents:
683
diff
changeset
|
72 |
PKG_MACROS += PUBLISHER_LOCALIZABLE=$(PUBLISHER_LOCALIZABLE) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
73 |
PKG_MACROS += CONSOLIDATION=$(CONSOLIDATION) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
74 |
PKG_MACROS += BUILD_VERSION=$(BUILD_VERSION) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
75 |
PKG_MACROS += SOLARIS_VERSION=$(SOLARIS_VERSION) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
76 |
PKG_MACROS += OS_VERSION=$(OS_VERSION) |
582
f788d69e0553
7085723 use pkg.human-version
Rich Burridge <rich.burridge@oracle.com>
parents:
379
diff
changeset
|
77 |
PKG_MACROS += HUMAN_VERSION=$(HUMAN_VERSION) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
78 |
PKG_MACROS += IPS_COMPONENT_VERSION=$(IPS_COMPONENT_VERSION) |
93
b579c7b1bb44
7016731 move zsh from sfw to userland
Danek Duvall <danek.duvall@oracle.com>
parents:
84
diff
changeset
|
79 |
PKG_MACROS += COMPONENT_VERSION=$(COMPONENT_VERSION) |
166
db8a55996482
6979538 /usr/share/gettext/po/Rules-quot contains garbage
Marcel Telka <marcel.telka@oracle.com>
parents:
152
diff
changeset
|
80 |
PKG_MACROS += COMPONENT_PROJECT_URL=$(COMPONENT_PROJECT_URL) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
81 |
PKG_MACROS += COMPONENT_ARCHIVE_URL=$(COMPONENT_ARCHIVE_URL) |
379 | 82 |
PKG_MACROS += COMPONENT_HG_URL=$(COMPONENT_HG_URL) |
83 |
PKG_MACROS += COMPONENT_HG_REV=$(COMPONENT_HG_REV) |
|
2 | 84 |
|
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
85 |
PKG_OPTIONS += $(PKG_MACROS:%=-D %) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
86 |
|
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
87 |
MANGLED_DIR = $(PROTO_DIR)/mangled |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
88 |
|
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
89 |
PKG_PROTO_DIRS += $(MANGLED_DIR) $(PROTO_DIR) $(@D) $(COMPONENT_DIR) $(COMPONENT_SRC) |
99
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
90 |
|
59
7500d63edb42
7012375 userland build and proto areas should be outside of unpacked source dirs
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
53
diff
changeset
|
91 |
MANIFEST_BASE = $(BUILD_DIR)/manifest-$(MACH) |
12
41aeb1fd8c2d
Fix MACH32/MACH64 so more than one architecture can build in the same workspace
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
7
diff
changeset
|
92 |
|
30
440b6ca0641d
Removed $(PUBLISHER) from pkg.fmri package attributes. Renamed package
Danek Duvall <danek.duvall@oracle.com>
parents:
27
diff
changeset
|
93 |
CANONICAL_MANIFESTS = $(wildcard *.p5m) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
94 |
GENERATED = $(MANIFEST_BASE)-generated |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
95 |
COMBINED = $(MANIFEST_BASE)-combined |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
96 |
MANIFESTS = $(CANONICAL_MANIFESTS:%=$(MANIFEST_BASE)-%) |
2 | 97 |
|
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
98 |
|
185
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
99 |
DEPENDED=$(CANONICAL_MANIFESTS:%.p5m=$(MANIFEST_BASE)-%.depend) |
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
100 |
RESOLVED=$(CANONICAL_MANIFESTS:%.p5m=$(MANIFEST_BASE)-%.depend.res) |
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
101 |
PUBLISHED=$(RESOLVED:%.depend.res=%.published) |
2 | 102 |
|
255
52abf74b9323
7037058 Move fetchmail to Userland
Marcel Telka <marcel.telka@oracle.com>
parents:
206
diff
changeset
|
103 |
COPYRIGHT_FILE ?= $(COMPONENT_NAME)-$(COMPONENT_VERSION).copyright |
145
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
104 |
IPS_COMPONENT_VERSION ?= $(COMPONENT_VERSION) |
7
d42300cb8715
add license/copyright info for ips generation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
4
diff
changeset
|
105 |
|
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
106 |
.DEFAULT: publish |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
107 |
|
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
108 |
.SECONDARY: |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
109 |
|
197
fd801ec0737c
7038707 move acpidump to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
196
diff
changeset
|
110 |
# allow publishing to be overridden, such as when |
fd801ec0737c
7038707 move acpidump to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
196
diff
changeset
|
111 |
# a package is for one architecture only. |
fd801ec0737c
7038707 move acpidump to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
196
diff
changeset
|
112 |
PUBLISH_STAMP ?= $(BUILD_DIR)/.published-$(MACH) |
fd801ec0737c
7038707 move acpidump to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
196
diff
changeset
|
113 |
|
fd801ec0737c
7038707 move acpidump to userland
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
196
diff
changeset
|
114 |
publish: build install $(PUBLISH_STAMP) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
115 |
|
30
440b6ca0641d
Removed $(PUBLISHER) from pkg.fmri package attributes. Renamed package
Danek Duvall <danek.duvall@oracle.com>
parents:
27
diff
changeset
|
116 |
sample-manifest: $(GENERATED).p5m |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
117 |
|
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
118 |
$(GENERATED).p5m: install |
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
119 |
$(PKGSEND) generate $(PKG_HARDLINKS:%=--target %) $(PROTO_DIR) | \ |
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
120 |
$(PKGMOGRIFY) $(PKG_OPTIONS) /dev/fd/0 $(GENERATE_TRANSFORMS) | \ |
64
a4b12971cf99
7014330 has userland lost its mapfile mind?
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
59
diff
changeset
|
121 |
sed -e '/^$$/d' -e '/^#.*$$/d' | $(PKGFMT) | \ |
a4b12971cf99
7014330 has userland lost its mapfile mind?
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
59
diff
changeset
|
122 |
cat $(METADATA_TEMPLATE) - >$@ |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
123 |
|
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
124 |
# copy the canonical manifest(s) to the build tree |
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
125 |
$(MANIFEST_BASE)-%.generate: %.p5m canonical-manifests |
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
126 |
cat $(METADATA_TEMPLATE) $< >$@ |
2 | 127 |
|
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
128 |
# mogrify the manifest |
369
cc8c00719da9
PSARC 2011/165 OFUV update of existing components
Boris Chiu <Boris.Chiu@Sun.COM>
parents:
255
diff
changeset
|
129 |
$(MANIFEST_BASE)-%.mogrified: %.p5m $(BUILD_DIR) canonical-manifests |
53
e398cb2c4b45
7004049 SUNWa2ps should move to userland with a2ps
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
49
diff
changeset
|
130 |
$(PKGMOGRIFY) $(PKG_OPTIONS) $< \ |
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
131 |
$(PUBLISH_TRANSFORMS) | \ |
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
132 |
sed -e '/^$$/d' -e '/^#.*$$/d' | uniq >$@ |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
133 |
|
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
134 |
# mangle the file contents |
369
cc8c00719da9
PSARC 2011/165 OFUV update of existing components
Boris Chiu <Boris.Chiu@Sun.COM>
parents:
255
diff
changeset
|
135 |
$(BUILD_DIR) $(MANGLED_DIR): |
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
136 |
$(MKDIR) $@ |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
137 |
|
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
138 |
PKGMANGLE_OPTIONS = -D $(MANGLED_DIR) $(PKG_PROTO_DIRS:%=-d %) |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
139 |
$(MANIFEST_BASE)-%.mangled: $(MANIFEST_BASE)-%.mogrified $(MANGLED_DIR) |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
140 |
$(PKGMANGLE) $(PKGMANGLE_OPTIONS) -m $< >$@ |
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
141 |
|
76
a084497ff237
7016379 migrate elinks to userland (fix pkglint)
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
75
diff
changeset
|
142 |
# generate dependencies |
99
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
143 |
PKGDEPEND_GENERATE_OPTIONS = -m $(PKG_PROTO_DIRS:%=-d %) |
181
87e11e685b1f
7003927 userland should postprocess packaged files
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
166
diff
changeset
|
144 |
$(MANIFEST_BASE)-%.depend: $(MANIFEST_BASE)-%.mangled |
99
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
145 |
$(PKGDEPEND) generate $(PKGDEPEND_GENERATE_OPTIONS) $< >$@ |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
146 |
|
185
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
147 |
# resolve the dependencies all at once |
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
148 |
$(BUILD_DIR)/.resolved-$(MACH): $(DEPENDED) |
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
149 |
$(PKGDEPEND) resolve -m $(DEPENDED) |
145
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
150 |
$(TOUCH) $@ |
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
151 |
|
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
152 |
# lint the manifests all at once |
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
153 |
$(BUILD_DIR)/.linted-$(MACH): $(BUILD_DIR)/.resolved-$(MACH) |
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
154 |
@echo "VALIDATING MANIFEST CONTENT: $(RESOLVED)" |
117
8f634eb6f66b
7023683 userland pkglint checks should look in more places for content
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
99
diff
changeset
|
155 |
$(ENV) PYTHONPATH=$(WS_TOOLS)/python PROTO_PATH="$(PKG_PROTO_DIRS)"\ |
84
b80cfd4e0a16
7000952 Userland package validation needs some love
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
76
diff
changeset
|
156 |
$(PKGLINT) $(CANONICAL_REPO:%=-c $(WS_LINT_CACHE)) \ |
145
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
157 |
-f $(WS_TOOLS)/pkglintrc $(RESOLVED) |
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
158 |
$(TOUCH) $@ |
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
159 |
|
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
160 |
|
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
161 |
# published |
99
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
162 |
PKGSEND_PUBLISH_OPTIONS = -s $(PKG_REPO) publish --fmri-in-manifest |
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
163 |
PKGSEND_PUBLISH_OPTIONS += $(PKG_PROTO_DIRS:%=-d %) |
196
816e398e992c
6907515 mercurial 1.8.2
Danek Duvall <danek.duvall@oracle.com>
parents:
185
diff
changeset
|
164 |
PKGSEND_PUBLISH_OPTIONS += -T \*.py |
185
773dda89f186
7036473 dependency resolution should happen in one step for all component's packages
Danek Duvall <danek.duvall@oracle.com>
parents:
181
diff
changeset
|
165 |
$(MANIFEST_BASE)-%.published: $(MANIFEST_BASE)-%.depend.res $(BUILD_DIR)/.linted-$(MACH) |
99
c15c9099bb44
6841644 OpenSolaris Python should support gdbm
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
93
diff
changeset
|
166 |
$(PKGSEND) $(PKGSEND_PUBLISH_OPTIONS) $< |
46
d4d60962c33f
generate detectable dependencies at build time
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
38
diff
changeset
|
167 |
$(PKGFMT) <$< >$@ |
2 | 168 |
|
145
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
169 |
$(BUILD_DIR)/.published-$(MACH): $(PUBLISHED) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
170 |
$(TOUCH) $@ |
2 | 171 |
|
32
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
172 |
print-package-names: canonical-manifests |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
173 |
@cat $(CANONICAL_MANIFESTS) $(WS_TOP)/transforms/print-pkgs | \ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
174 |
$(PKGMOGRIFY) $(PKG_OPTIONS) /dev/fd/0 | \ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
175 |
sed -e '/^$$/d' -e '/^#.*$$/d' | sort -u |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
176 |
|
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
177 |
print-package-paths: canonical-manifests |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
178 |
@cat $(CANONICAL_MANIFESTS) $(WS_TOP)/transforms/print-paths | \ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
179 |
$(PKGMOGRIFY) $(PKG_OPTIONS) /dev/fd/0 | \ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
180 |
sed -e '/^$$/d' -e '/^#.*$$/d' | sort -u |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
181 |
|
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
182 |
install-packages: publish |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
183 |
@if [ $(IS_GLOBAL_ZONE) = 0 -o x$(ROOT) != x ]; then \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
184 |
cat $(CANONICAL_MANIFESTS) $(WS_TOP)/transforms/print-paths | \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
185 |
$(PKGMOGRIFY) $(PKG_OPTIONS) /dev/fd/0 | \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
186 |
sed -e '/^$$/d' -e '/^#.*$$/d' -e 's;/;;' | sort -u | \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
187 |
(cd $(PROTO_DIR) ; pfexec /bin/cpio -dump $(ROOT)) ; \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
188 |
else ; \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
189 |
echo "unsafe to install package(s) automatically" ; \ |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
190 |
fi |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
191 |
|
145
1e2390f5555e
7020836 revert workaround in 7014413 now that pkglint doesn't complain
Norm Jacobs <Norm.Jacobs@Oracle.COM>
parents:
117
diff
changeset
|
192 |
$(RESOLVED): install |
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
193 |
|
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
194 |
canonical-manifests: $(CANONICAL_MANIFESTS) Makefile $(PATCHES) |
26
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
195 |
ifeq ($(strip $(CANONICAL_MANIFESTS)),) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
196 |
# If there were no canonical manifests in the workspace, nothing will |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
197 |
# be published and we should fail. A sample manifest can be generated |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
198 |
# with |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
199 |
# $ gmake sample-manifest |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
200 |
# Once created, it will need to be reviewed, edited, and added to the |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
201 |
# workspace. |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
202 |
$(error Missing canonical manifest(s)) |
8a9f4e791832
packaging changes including canonical manifest support with manifest validation
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
22
diff
changeset
|
203 |
endif |
32
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
204 |
|
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
205 |
# This converts required paths to containing package names for be able to |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
206 |
# properly setup the build environment for a component. |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
207 |
required-pkgs.mk: Makefile |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
208 |
@echo "generating $@ from Makefile REQUIRED_* data" |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
209 |
@pkg search -H -l '<$(DEPENDS:%=% OR) /bin/true>' \ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
210 |
| sed -e 's/pkg:\/\(.*\)@.*/REQUIRED_PKGS += \1/g' >$@ |
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
211 |
|
38
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
212 |
pre-prep: required-pkgs.mk |
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
213 |
|
cd00ea74156e
package audits should pass pkglint
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
32
diff
changeset
|
214 |
|
32
280a7444e782
automatically generate intercomponent dependencies for build ordering
Norm Jacobs <Norm.Jacobs@Sun.COM>
parents:
30
diff
changeset
|
215 |
CLEAN_PATHS += required-pkgs.mk |