Skip to content

Commit dcbb9e1

Browse files
committed
build: update build targets for io.js
PR-URL: #1938 Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Alexis Campailla <alexis@janeasystems.com>
1 parent 8e9089a commit dcbb9e1

12 files changed

+281
-89
lines changed

Makefile

+88-43
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ PYTHON ?= python
55
DESTDIR ?=
66
SIGN ?=
77
PREFIX ?= /usr/local
8+
STAGINGSERVER ?= iojs-www
9+
10+
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
811

912
# Determine EXEEXT
1013
EXEEXT := $(shell $(PYTHON) -c \
@@ -56,15 +59,15 @@ uninstall:
5659
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
5760

5861
clean:
59-
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) blog.html email.md
62+
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE)
6063
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' | xargs rm -rf; fi
6164
-rm -rf node_modules
6265

6366
distclean:
6467
-rm -rf out
6568
-rm -f config.gypi icu_config.gypi
6669
-rm -f config.mk
67-
-rm -rf $(NODE_EXE) $(NODE_G_EXE) blog.html email.md
70+
-rm -rf $(NODE_EXE) $(NODE_G_EXE)
6871
-rm -rf node_modules
6972
-rm -rf deps/icu
7073
-rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
@@ -184,14 +187,49 @@ docclean:
184187

185188
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
186189
VERSION=v$(RAWVER)
190+
191+
# For nightly builds, you must set DISTTYPE to "nightly", "next-nightly" or
192+
# "custom". For the nightly and next-nightly case, you need to set DATESTRING
193+
# and COMMIT in order to properly name the build.
194+
# For the rc case you need to set CUSTOMTAG to an appropriate CUSTOMTAG number
195+
196+
ifndef DISTTYPE
197+
DISTTYPE=release
198+
endif
199+
ifeq ($(DISTTYPE),release)
187200
FULLVERSION=$(VERSION)
201+
else # ifeq ($(DISTTYPE),release)
202+
ifeq ($(DISTTYPE),custom)
203+
ifndef CUSTOMTAG
204+
$(error CUSTOMTAG is not set for DISTTYPE=custom)
205+
endif # ifndef CUSTOMTAG
206+
TAG=$(CUSTOMTAG)
207+
else # ifeq ($(DISTTYPE),custom)
208+
ifndef DATESTRING
209+
$(error DATESTRING is not set for nightly)
210+
endif # ifndef DATESTRING
211+
ifndef COMMIT
212+
$(error COMMIT is not set for nightly)
213+
endif # ifndef COMMIT
214+
ifneq ($(DISTTYPE),nightly)
215+
ifneq ($(DISTTYPE),next-nightly)
216+
$(error DISTTYPE is not release, custom, nightly or next-nightly)
217+
endif # ifneq ($(DISTTYPE),next-nightly)
218+
endif # ifneq ($(DISTTYPE),nightly)
219+
TAG=$(DISTTYPE)$(DATESTRING)$(COMMIT)
220+
endif # ifeq ($(DISTTYPE),custom)
221+
FULLVERSION=$(VERSION)-$(TAG)
222+
endif # ifeq ($(DISTTYPE),release)
223+
224+
DISTTYPEDIR ?= $(DISTTYPE)
188225
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
189226
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
190227
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
228+
191229
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
192230
DESTCPU ?= x64
193231
else
194-
DESTCPU ?= ia32
232+
DESTCPU ?= x86
195233
endif
196234
ifeq ($(DESTCPU),x64)
197235
ARCH=x64
@@ -202,26 +240,24 @@ else
202240
ARCH=x86
203241
endif
204242
endif
205-
ifdef NIGHTLY
206-
TAG = nightly-$(NIGHTLY)
207-
FULLVERSION=$(VERSION)-$(TAG)
243+
244+
# enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel
245+
ifeq ($(ARCH),ia32)
246+
override ARCH=x86
208247
endif
248+
ifeq ($(DESTCPU),ia32)
249+
override DESTCPU=x86
250+
endif
251+
209252
TARNAME=iojs-$(FULLVERSION)
210253
TARBALL=$(TARNAME).tar
211254
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
212255
BINARYTAR=$(BINARYNAME).tar
256+
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
213257
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
214258
XZ_COMPRESSION ?= 9
215-
PKG=out/$(TARNAME).pkg
259+
PKG=$(TARNAME).pkg
216260
PACKAGEMAKER ?= /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
217-
218-
PKGSRC=iojs-$(DESTCPU)-$(RAWVER).tgz
219-
ifdef NIGHTLY
220-
PKGSRC=iojs-$(DESTCPU)-$(RAWVER)-$(TAG).tgz
221-
endif
222-
223-
dist: doc $(TARBALL) $(PKG)
224-
225261
PKGDIR=out/dist-osx
226262

227263
release-only:
@@ -236,7 +272,7 @@ release-only:
236272
echo "" >&2 ; \
237273
exit 1 ; \
238274
fi
239-
@if [ "$(NIGHTLY)" != "" -o "$(RELEASE)" = "1" ]; then \
275+
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
240276
exit 0; \
241277
else \
242278
echo "" >&2 ; \
@@ -246,29 +282,28 @@ release-only:
246282
exit 1 ; \
247283
fi
248284

249-
pkg: $(PKG)
250-
251285
$(PKG): release-only
252286
rm -rf $(PKGDIR)
253287
rm -rf out/deps out/Release
254-
$(PYTHON) ./configure --dest-cpu=ia32 --tag=$(TAG)
255-
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)/32
256-
rm -rf out/deps out/Release
257288
$(PYTHON) ./configure --dest-cpu=x64 --tag=$(TAG)
258289
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
259-
SIGN="$(APP_SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
260-
lipo $(PKGDIR)/32/usr/local/bin/iojs \
261-
$(PKGDIR)/usr/local/bin/iojs \
262-
-output $(PKGDIR)/usr/local/bin/iojs-universal \
263-
-create
264-
mv $(PKGDIR)/usr/local/bin/iojs-universal $(PKGDIR)/usr/local/bin/iojs
265-
rm -rf $(PKGDIR)/32
266-
cat tools/osx-pkg.pmdoc/index.xml.tmpl | sed -e 's|__iojsversion__|'$(FULLVERSION)'|g' | sed -e 's|__npmversion__|'$(NPMVERSION)'|g' > tools/osx-pkg.pmdoc/index.xml
290+
SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
291+
cat tools/osx-pkg.pmdoc/index.xml.tmpl \
292+
| sed -E "s/\\{iojsversion\\}/$(FULLVERSION)/g" \
293+
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
294+
> tools/osx-pkg.pmdoc/index.xml
267295
$(PACKAGEMAKER) \
268-
--id "org.nodejs.Node" \
296+
--id "org.iojs.pkg" \
269297
--doc tools/osx-pkg.pmdoc \
270298
--out $(PKG)
271-
SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
299+
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
300+
301+
pkg: $(PKG)
302+
303+
pkg-upload: pkg
304+
ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)"
305+
scp -p iojs-$(FULLVERSION).pkg $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).pkg
306+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).pkg.done"
272307

273308
$(TARBALL): release-only $(NODE_EXE) doc
274309
git checkout-index -a -f --prefix=$(TARNAME)/
@@ -291,6 +326,20 @@ endif
291326

292327
tar: $(TARBALL)
293328

329+
tar-upload: tar
330+
ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)"
331+
scp -p iojs-$(FULLVERSION).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.gz
332+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.gz.done"
333+
ifeq ($(XZ), 0)
334+
scp -p iojs-$(FULLVERSION).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.xz
335+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.xz.done"
336+
endif
337+
338+
doc-upload: tar
339+
ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)"
340+
scp -r out/doc/ $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/
341+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/doc.done"
342+
294343
$(BINARYTAR): release-only
295344
rm -rf $(BINARYNAME)
296345
rm -rf out/deps out/Release
@@ -309,18 +358,14 @@ endif
309358

310359
binary: $(BINARYTAR)
311360

312-
$(PKGSRC): release-only
313-
rm -rf dist out
314-
$(PYTHON) configure --prefix=/ \
315-
--dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS)
316-
$(MAKE) install DESTDIR=dist
317-
(cd dist; find * -type f | sort) > packlist
318-
pkg_info -X pkg_install | \
319-
egrep '^(MACHINE_ARCH|OPSYS|OS_VERSION|PKGTOOLS_VERSION)' > build-info
320-
pkg_create -B build-info -c tools/pkgsrc/comment -d tools/pkgsrc/description \
321-
-f packlist -I /opt/local -p dist -U $(PKGSRC)
322-
323-
pkgsrc: $(PKGSRC)
361+
binary-upload: binary
362+
ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)"
363+
scp -p iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz
364+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz.done"
365+
ifeq ($(XZ), 0)
366+
scp -p iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz
367+
ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz.done"
368+
endif
324369

325370
haswrk=$(shell which wrk > /dev/null 2>&1; echo $$?)
326371
wrk:

configure

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import nodedownload
2626
parser = optparse.OptionParser()
2727

2828
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux', 'android')
29-
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'x32', 'x64')
29+
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'x32', 'x64', 'x86')
3030
valid_arm_float_abi = ('soft', 'softfp', 'hard')
3131
valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx')
3232
valid_mips_fpu = ('fp32', 'fp64', 'fpxx')
@@ -607,6 +607,10 @@ def configure_node(o):
607607

608608
host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
609609
target_arch = options.dest_cpu or host_arch
610+
# ia32 is preferred by the build tools (GYP) over x86 even if we prefer the latter
611+
# the Makefile resets this to x86 afterward
612+
if target_arch == 'x86':
613+
target_arch = 'ia32'
610614
o['variables']['host_arch'] = host_arch
611615
o['variables']['target_arch'] = target_arch
612616

node.gyp

+4-1
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,15 @@
184184
'defines': [
185185
'NODE_ARCH="<(target_arch)"',
186186
'NODE_PLATFORM="<(OS)"',
187-
'NODE_TAG="<(node_tag)"',
188187
'NODE_V8_OPTIONS="<(node_v8_options)"',
189188
'NODE_WANT_INTERNALS=1',
190189
],
191190

191+
192192
'conditions': [
193+
[ 'node_tag!=""', {
194+
'defines': [ 'NODE_TAG="<(node_tag)"' ],
195+
}],
193196
# No node_main.cc for anything except executable
194197
[ 'node_target_type!="executable"', {
195198
'sources!': [

src/node_version.h

+5-10
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,18 @@
1212
#define NODE_STRINGIFY_HELPER(n) #n
1313
#endif
1414

15-
#if NODE_VERSION_IS_RELEASE
16-
# ifndef NODE_TAG
15+
#ifndef NODE_TAG
16+
# if NODE_VERSION_IS_RELEASE
1717
# define NODE_TAG ""
18-
# endif
19-
# define NODE_VERSION_STRING NODE_STRINGIFY(NODE_MAJOR_VERSION) "." \
20-
NODE_STRINGIFY(NODE_MINOR_VERSION) "." \
21-
NODE_STRINGIFY(NODE_PATCH_VERSION) \
22-
NODE_TAG
23-
#else
24-
# ifndef NODE_TAG
18+
# else
2519
# define NODE_TAG "-pre"
2620
# endif
21+
#endif
22+
2723
# define NODE_VERSION_STRING NODE_STRINGIFY(NODE_MAJOR_VERSION) "." \
2824
NODE_STRINGIFY(NODE_MINOR_VERSION) "." \
2925
NODE_STRINGIFY(NODE_PATCH_VERSION) \
3026
NODE_TAG
31-
#endif
3227

3328
#define NODE_VERSION "v" NODE_VERSION_STRING
3429

tools/msvs/msi/nodemsi.wixproj

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,33 @@
66
<ProductVersion>3.5</ProductVersion>
77
<ProjectGuid>{1d808ff0-b5a9-4be9-859d-b334b6f48be2}</ProjectGuid>
88
<SchemaVersion>2.0</SchemaVersion>
9-
<OutputName>iojs-v$(NodeVersion)-$(Platform)</OutputName>
9+
<OutputName>iojs-v$(FullVersion)-$(Platform)</OutputName>
1010
<OutputType>Package</OutputType>
1111
<EnableProjectHarvesting>True</EnableProjectHarvesting>
1212
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
1313
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
1414
<NodeVersion Condition=" '$(NodeVersion)' == '' ">0.0.0.0</NodeVersion>
1515
</PropertyGroup>
1616
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
17-
<OutputPath>..\..\..\$(Configuration)\</OutputPath>
17+
<OutputPath>..\..\..\</OutputPath>
1818
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
19-
<DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
19+
<DefineConstants>Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
2020
</PropertyGroup>
2121
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
22-
<OutputPath>..\..\..\$(Configuration)\</OutputPath>
22+
<OutputPath>..\..\..\</OutputPath>
2323
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
24-
<DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
24+
<DefineConstants>Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFilesFolder</DefineConstants>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
27-
<OutputPath>..\..\..\$(Configuration)\</OutputPath>
27+
<OutputPath>..\..\..\</OutputPath>
2828
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
29-
<DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
29+
<DefineConstants>Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
3030
<Cultures>en-US</Cultures>
3131
</PropertyGroup>
3232
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
33-
<OutputPath>..\..\..\$(Configuration)\</OutputPath>
33+
<OutputPath>..\..\..\</OutputPath>
3434
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
35-
<DefineConstants>Debug;ProductVersion=$(NodeVersion);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
35+
<DefineConstants>Debug;ProductVersion=$(NodeVersion);FullVersion=$(FullVersion);DistTypeDir=$(DistTypeDir);NoETW=$(NoETW);NoPerfCtr=$(NoPerfCtr);NpmSourceDir=..\..\..\deps\npm\;ProgramFilesFolderId=ProgramFiles64Folder</DefineConstants>
3636
</PropertyGroup>
3737
<PropertyGroup>
3838
<EnableProjectHarvesting>True</EnableProjectHarvesting>

tools/msvs/msi/product.wxs

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<Feature Level="1"
8686
Id="DocumentationShortcuts"
8787
Title="Online documentation shortcuts"
88-
Description="Add start menu entries that link the the online documentation for io.js $(var.ProductVersion) and the io.js website.">
88+
Description="Add start menu entries that link the the online documentation for io.js v$(var.FullVersion) and the io.js website.">
8989
<ComponentRef Id="DocumentationShortcuts"/>
9090
</Feature>
9191

@@ -225,7 +225,7 @@
225225
Type="url"/>
226226
<util:InternetShortcut Id="DocsShortcut"
227227
Name="io.js documentation"
228-
Target="https://iojs.org/dist/v$(var.ProductVersion)/doc/api/"
228+
Target="https://iojs.org/download/$(var.DistTypeDir)/v$(var.FullVersion)/doc/api/"
229229
Type="url"/>
230230
</Component>
231231
</DirectoryRef>

tools/osx-codesign.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
set -x
44
set -e
55

6-
if ! [ -n "$SIGN" ] && [ $STEP -eq 1 ]; then
6+
if [ "X$SIGN" == "X" ]; then
77
echo "No SIGN environment var. Skipping codesign." >&2
88
exit 0
99
fi
1010

1111
codesign -s "$SIGN" "$PKGDIR"/usr/local/bin/node
12-
codesign -s "$SIGN" "$PKGDIR"/32/usr/local/bin/node

tools/osx-pkg.pmdoc/01local.xml

+25-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
1-
<pkgref spec="1.12" uuid="053587FE-BDF3-4EF5-815D-281427431048"><config><identifier>org.iojs.pkg</identifier><version>1.0</version><description></description><post-install type="none"/><requireAuthorization/><installFrom relative="true" mod="true">../out/dist-osx/usr/local/</installFrom><installTo mod="true" relocatable="true">/usr/local</installTo><flags><followSymbolicLinks/></flags><packageStore type="internal"></packageStore><mod>installTo.isRelativeType</mod><mod>installTo</mod><mod>locationType</mod><mod>relocatable</mod><mod>installFrom.path</mod><mod>installTo.isAbsoluteType</mod><mod>identifier</mod><mod>parent</mod><mod>installTo.path</mod><mod>installFrom.isRelativeType</mod></config></pkgref>
1+
<pkgref spec="1.12" uuid="053587FE-BDF3-4EF5-815D-281427431048">
2+
<config>
3+
<identifier>org.iojs.iojs.pkg</identifier>
4+
<version>1.0</version>
5+
<description></description>
6+
<post-install type="none"/>
7+
<requireAuthorization/>
8+
<installFrom relative="true" mod="true">../out/dist-osx/usr/local/</installFrom>
9+
<installTo mod="true" relocatable="true">/usr/local</installTo>
10+
<flags>
11+
<followSymbolicLinks/>
12+
</flags>
13+
<packageStore type="internal"></packageStore>
14+
<mod>installTo.isRelativeType</mod>
15+
<mod>installTo</mod>
16+
<mod>locationType</mod>
17+
<mod>relocatable</mod>
18+
<mod>installFrom.path</mod>
19+
<mod>installTo.isAbsoluteType</mod>
20+
<mod>identifier</mod>
21+
<mod>parent</mod>
22+
<mod>installTo.path</mod>
23+
<mod>installFrom.isRelativeType</mod>
24+
</config>
25+
</pkgref>

0 commit comments

Comments
 (0)