1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
|
Tutorial
********
.. warning::
Never build IPS packages as root!
Please review the `SPEC File Format <spec_file_format.html>`_ before continuing.
Creating an IPS package from scratch
====================================
In this tutorial we will create an IPS package from the ground up.
We will build ``ccache`` (`<http://ccache.samba.org>`_),
because of its lightweight code footprint, and easy installation
method.
Generate ipsutils build tree
----------------------------
ipsutils provides a script to automatically create your build environment::
ipsbuild-setuptree.py
Example output::
Creating directory: /home/acct/ipsbuild
Creating directory: /home/acct/ipsbuild/BUILDROOT
Creating directory: /home/acct/ipsbuild/BUILD
Creating directory: /home/acct/ipsbuild/SPECS
Creating directory: /home/acct/ipsbuild/SOURCES
Creating directory: /home/acct/ipsbuild/PKGS
Creating directory: /home/acct/ipsbuild/SPKGS
Download the source
-------------------
.. _here: http://ccache.samba.org/download.html
Get the latest version from here_.
**-OR-**
Download ``ccache`` directly with ``wget``::
wget -P ~/ipsbuild/SOURCES http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2
.. note::
``wget`` may not installed by default.
To install it on Solaris 11 execute:
``pkg install wget``
Creating a SPEC file
--------------------
Writing an ipsutils SPEC file from scratch is a daunting task,
much like when working with RPM SPEC files. There is a utility, ``ipsutils-newspec``
available to help. This creates all available keywords and directives so that you
may pick and choose which ones to fill out.
::
# ipsutils-newspec ~/ipsutils/SPECS/ccache.ips
Generating '/home/acct/ipsutils/SPECS/ccache.ips' spec file
Contents of generated file::
name: ccache
repackage:
version:
release: 1
group:
summary:
license:
maintainer:
upstream_url:
source_url:
arch:
classification:
description:
%prep
%end
%build
%end
%install
%end
%transforms
%end
.. warning::
Keywords with no values specified will cause ipsbuild to fail
.. warning::
Keywords must contain a single space after the ':' character
Filling in the FMRI section
---------------------------
The FMRI section of your SPEC file should look something like the following: ::
name: ccache
version: 3.1.9
release: 1
group: developer
summary: Cache system for GCC
license: GPL
maintainer: John Doe <john@example.com>
upstream_url: http://samba.org/ftp/ccache/$name-$version.tar.bz2
source_url: $name-$version.tar.bz2
arch: i386
classification: org.opensolaris.category.2008:Development/C
description: ccache is a compiler cache. It speeds up recompilation by caching previous compilations.
Applying scripts
----------------
``ccache`` does not require any prep work to get running.
In practice, if we had a critial patch to apply, or configuration files to
modify, we would do so in the ``%prep`` section.
Build section
~~~~~~~~~~~~~
::
%build
# Run autotools script
./configure --prefix=/usr
# Build the package
gmake -j2
%end
Install section
~~~~~~~~~~~~~~~
::
%install
gmake install DESTDIR=$BUILDPROTO
%end
.. warning::
Files copied to $BUILDPROTO will be incorporated into your package manifest
Applying transforms
-------------------
IPS packing contains a bizarre technology named *transmogrification* that, in theory,
is a great idea. The ability to transform file names, permissions, paths all in
a single albeit long convoluted string directive.
It is too cumbersome to modify a package manifest by hand every time you realize
there is something missing. The ``%transforms`` section is **not** a shell script.
Any text written to this section (except ``#`` comments) will be written directly
to the package manifest.
Care must be taken to ensure the tranforms syntax is properly written, because like
most things in Oracle IPS, there is no error checking at runtime. Error checking
appears to be at-the-time, which makes writing IPS packages (successfully) a very
difficult experience.
Syntax: [1]_
``<transform {type} {{keyword}={value} ...} -> {action} {modifications...}>``
Example usage ::
%transforms
<transform dir path=opt$ -> edit group bin sys>
%end
This will change the group ownership of ``/opt`` from ``bin`` to ``sys``.
However, ipsutils does this for you automatically, making these calls no longer necessary.
.. [1] Not confusing at all, right Oracle?
Putting it all together
-----------------------
Your completed SPEC file, if you have been following along, should look similar to
the following: ::
name: ccache
version: 3.1.9
release: 1
group: developer
summary: Cache system for GCC
license: GPL
maintainer: John Doe <john@example.com>
upstream_url: http://samba.org/ftp/ccache/$name-$version.tar.bz2
source_url: $name-$version.tar.bz2
arch: i386
classification: org.opensolaris.category.2008:Development/C
description: ccache is a compiler cache. It speeds up recompilation by caching previous compilations.
%build
# Run autotools script
./configure --prefix=/usr
# Build the package
gmake -j2
%end
%install
gmake install DESTDIR=$BUILDPROTO
%end
Building your package
---------------------
The simplest and fastest way to get started building your IPS package requires
nothing fancy. Execute ipsbuild and watch your build take flight.
::
ipsbuild ccache.ips
Example (truncated for brevity)::
Summary of ccache
+ name: ccache
+ repackage:
+ version: 3.1.9
+ release: 1
+ group: developer
+ summary: Cache system for GCC
+ license: GPL
+ maintainer: John Doe <john@example.com>
+ upstream_url: http://samba.org/ftp/ccache/ccache-3.1.9.tar.bz2
+ source_url: ccache-3.1.9.tar.bz2
+ arch: i386
+ classification: org.opensolaris.category.2008:Development/C
+ description: ccache is a compiler cache. It speeds up recompilation by caching previous compilations.
+ Running task: Unpack source
Detected archive with extension: .tar.bz2
+ Running task: Create build root
+ Running task: Generate meta data
+ Running task: prep
+ Running task: build
configure: Configuring ccache
[...]
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
configure: now build ccache by running make
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o main.o main.c
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o ccache.o ccache.c
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o mdfour.o mdfour.c
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o hash.o hash.c
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o execute.o execute.c
gcc -g -O2 -Wall -W -DHAVE_CONFIG_H -I. -I. -c -o util.o util.c
[...]
+ Running task: install
/usr/bin/ginstall -c -d /home/acct/ipsbuild/BUILDROOT/ccache-3.1.9/root/usr/bin
/usr/bin/ginstall -c -m 755 ccache /home/acct/ipsbuild/BUILDROOT/ccache-3.1.9/root/usr/bin
/usr/bin/ginstall -c -d /home/acct/ipsbuild/BUILDROOT/ccache-3.1.9/root/usr/share/man/man1
/usr/bin/ginstall -c -m 644 ./ccache.1 /home/acct/ipsbuild/BUILDROOT/ccache-3.1.9/root/usr/share/man/man1/
+ Running task: Generate file manifest
+ Running task: Transmogrifying file manifest
+ Running task: Automatic dependencies
+ Running task: Dependency resolution
> Running internal task: Automatic permission alignment
Discovering directory entries in manifest...
Cross-referencing system paths...
Repairing permissions...
+ Running task: Generate package
+ Running task: Generate source package
Publishing
==========
.. note::
If you have not setup a custom repository, please refer to Oracle's ``pkgrepo`` documentation
before continuing.
Repository discovery
--------------------
TODO
Sending
-------
TODO
Verifying
---------
TODO
|