qi: doc: added chapter 'Examining packages'
[dragora.git] / qi / doc / qi.texi
blob057144495eb046db8b37c04ee7f2530f6d40cc99
1 \input texinfo   @c -*-texinfo-*-
2 @comment $Id@w{$}
3 @comment %**start of header
4 @setfilename qi.info
5 @settitle Qi user guide
6 @documentencoding ISO-8859-1
7 @syncodeindex pg cp
8 @comment %**end of header
10 @set VERSION 1.0-rc59
11 @set UPDATED 29 March 2019
13 @copying
14 This user guide is for Qi (version @value{VERSION},
15 @value{UPDATED}), which is a simple but well-integrated package manager.
17 Copyright @copyright{} 2019 Matias Andres Fonzo, Santiago del Estero,
18 Argentina.
20 @quotation
21 Permission is granted to copy, distribute and/or modify this document
22 under the terms of the GNU Free Documentation License, Version 1.3 or
23 any later version published by the Free Software Foundation; with no
24 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
25 Texts.  A copy of the license is included in the section entitled
26 ``GNU Free Documentation License''.
27 @end quotation
28 @end copying
30 @dircategory Package management
31 @direntry
32 * Qi: (qi).                     A user-friendly package manager.
33 @end direntry
35 @titlepage
36 @finalout
37 @title Qi
38 @subtitle for version @value{VERSION}, @value{UPDATED}
39 @author Matias Fonzo (@email{selk@@dragora.org})
41 @page
42 @vskip 0pt plus 1filll
43 @insertcopying
44 @end titlepage
46 @contents
48 @ifnottex
49 @node Top
50 @top
52 This user guide is for Qi (version @value{VERSION},
53 @value{UPDATED}).
54 @end ifnottex
56 @menu
57 * Introduction::              Description and features of qi
58 * Invoking qi::               Command-line options
59 * The qirc file::             Configuration file
60 * Packages::                  Managing packages
61 * Recipes::                   Building packages
62 * Order files::               Handling build order
63 * Examining packages::        Debugging purposes
64 * Exit status::               Exit codes
65 * License::                   GNU Free Documentation License
66 * Index::
67 @end menu
69 @sp 1
70 Copyright (C) 2019 Matias Fonzo.
72 Qi's home page can be found at @uref{http://www.dragora.org}.
73 @w{Send bug reports or suggestions to @email{dragora-users@@nongnu.org}.}
75 @node Introduction
76 @chapter Introduction
77 @cindex introduction
79 Qi is a simple but well-integrated package manager.  It can creates,
80 install, remove, and upgrade software packages.  Qi produces binary
81 packages using recipe names, these are files containing specific
82 instructions to build every source.  Qi can manage multiple packages
83 under a single directory hierarchy, this method allows to maintain a set
84 of packages and multiple versions of them.  This means that Qi could be
85 used as the main package manager or complement the existing one.
87 Qi offers a friendly command line interface, a global configuration file,
88 a simple recipe layout to deploy software packages; also works with binary
89 packages in parallel, speeding up installations and packages in
90 production.  The used format for packages is a simplified but safe POSIX
91 pax archive compressed with lzip.
93 Qi is a modern (POSIX-compliant) shell script released under the terms of
94 the GNU General Public License.  There are only two major dependencies for
95 the magic: graft(1) and tarlz(1), the rest is expected to be found in any
96 Unix-like system.
98 @node Invoking qi
99 @chapter Invoking qi
100 @cindex invocation
102 This chapter describes the synopsis and command line options for
103 invoke Qi.
105 @example
106 Usage: qi [@var{OPTION}]... [@var{FILE}]...
107 @end example
109 @noindent
110 One mandatory option specifies the operation that @samp{qi} should
111 perform, other options are meant to detail how this operation should be
112 performed.
114 @noindent
115 qi supports the following options to operate:
117 @table @code
118 @item -b
119 Build package using recipe names.
121 @item -c
122 Create .tlz package from directory.
124 @item -d
125 Delete packages.
127 @item -i
128 Install packages.
130 @item -o
131 Resolve build order through .order files.
133 @item -u
134 Update packages (implies -i, -d and -p options).
136 @item -w
137 Warn about files that will be linked.
139 @item -x
140 Extract a package for debugging purposes.
141 @end table
143 @noindent
144 There are common options between modes:
146 @table @code
147 @item -N
148 Do not read the configuration file.
150 This will omit any value on the qirc file.
152 @item -P <DIR>
153 Package directory for installations.
155 This option sets @samp{$@{packagedir@}}.
157 Only valid for -i, -d, or -u options.
159 @item -f
160 Force option.
162 This can force the build of a recipe, or update a pre-existing package.
164 Only valid for -b, -u options.
166 @item -t <DIR>
167 Target directory for symbolic links.
169 This option sets @samp{$@{targetdir@}}.
171 Only valid for -i, -d, or -u options.
173 @item -k
174 Keep (don't delete) @samp{$@{srcdir@}} or @samp{$@{destdir@}} on build
175 mode.
177 Keep (don't delete) package directory on delete mode.
179 Only valid for -b, -d or -u options.
181 @item -p
182 Prune conflicts on package installations.
184 This option may proceed with the package installation if one or
185 more conflicts occur.
187 @item -r /rootdir
188 Use the fully qualified named directory as the root directory for all
189 qi operations.  The target directory and package directory will
190 be relative to the specified directory.
192 @item -v
193 Be verbose (a 2nd -v gives more).
194 @end table
196 @noindent
197 Options for build mode (-b):
199 @table @code
200 @item -O <DIR>
201 Where the produced packages are written.
203 This option sets @samp{$@{outdir@}}.
205 @item -W <DIR>
206 Where archives, patches, and recipes are expected.
208 This option sets @samp{$@{worktree@}}.
210 @item -Z <DIR>
211 Where (compressed) sources will be found.
213 This option sets @samp{$@{tardir@}}.
215 @item -a
216 Architecture to use.
218 Default value is obtained via uname(1) as @samp{uname -m}.
220 @item -j
221 Parallel jobs for the compiler.
223 If not specified, default sets to 1.
225 @item -1
226 Increment release number (@samp{$@{release@}} + 1).
228 It will be omitted if the -n option is being used.
230 @item -n
231 Don't create a .tlz package.
233 @item -S
234 Selects the option to skip completed recipes.
236 This means, in interactive mode, when the dialog
237 to summarize recipes is showed.
238 @end table
240 @noindent
241 Informative options:
243 @table @code
244 @item -L
245 Print default directory locations.
247 This will print the target directory, package directory, working tree,
248 the directory for tarballs, and the output directory for produced
249 packages.
251 @item -h
252 Display the help describing the options and then exit.
254 @item -V
255 Print the version number and license information.
256 The version number should be included in all bug reports.
257 @end table
259 @noindent
260 Expected arguments beyond of options are package directories and regular
261 files: recipes or files ending in .tlz, .order.  When FILE is -, qi can
262 read from the standard input.  See examples in @ref{Packages}.
265 @node The qirc file
266 @chapter The qirc file
267 @cindex configuration file
269 The global @file{qirc} file offers a way to define variables and tools
270 (such as a download manager) for default use.  This file is used by qi
271 at runtime for e.g to build, install, remove or upgrade packages.
273 @noindent
274 It has the following rules:
276 @itemize @bullet
277 @item Variables must be declared as @samp{name=value}.
279 @item Declaration of values should only take one line, no line break.
281 @item For security reasons, assignments like @samp{name=$var} are only
282 interpreted as literal.
283 @end itemize
285 @noindent
286 The command line options related to the package directory and target
287 directory plus some of the options used for the build mode can override
288 some values in @file{qirc}.  See @ref{Invoking qi}.
290 @noindent
291 The order in which qi looks for this file is:
293 @enumerate
294 @item
295 @env{$@{HOME@}/.qirc}
296 @- Effective user.
298 @item
299 @samp{$@{sysconfdir@}/qirc}
300 @- System-wide.
301 @end enumerate
303 If you intend to run qi as effective user, the file
304 @samp{$@{sysconfdir@}/qirc} could be copied to @env{$@{HOME@}/.qirc}
305 setting the paths for @samp{$@{packagedir@}} and @samp{$@{targetdir@}}
306 according to the @env{$HOME}.
309 @node Packages
310 @chapter Packages
311 @cindex managing packages
313 A package is a suite of programs usually distributed in binary form
314 which may also contain manual pages, documentation, or any other file
315 associated to a specific software.
317 The package format used by qi is a simplified POSIX pax archive
318 compressed with lzip.  The file extension for packages ends in .tlz
320 @noindent
321 Both package installation and package de-installation are managed using
322 two important (internal) variables: @samp{$@{packagedir@}} and
323 @samp{$@{targetdir@}}, these values can be changed in the
324 configuration file or via options.
326 @samp{$@{packagedir@}} is a common directory tree where the package
327 contents will be decompressed (will reside).
329 @samp{$@{targetdir@}} is a target directory where the links will be
330 made by graft(1) taking @samp{$@{packagedir@}/package_name} into account.
332 @noindent
333 Packages are installed in self-contained directory trees and symbolic
334 links from a common area are made to the package files.  This allows
335 multiple versions of the same package to co-exist on the one system.
337 @section Package conflicts
338 @cindex package conflicts
340 All the links to install or remove a package are handled by graft(1).
341 Since multiple packages can be installed or removed at the same time,
342 certain conflicts may arise between the packages.
344 @noindent
345 graft@footnote{The official guide for Graft can be found at
346 @url{http://peters.gormand.com.au/Home/tools/graft/graft.html}.}
347 defines a CONFLICT as one of the following conditions:
349 @itemize @bullet
350 @item
351 If the package object is a directory and the target object exists but is
352 not a directory.
354 @item
355 If the package object is not a directory and the target object exists
356 and is not a symbolic link.
358 @item
359 If the package object is not a directory and the target object exists
360 and is a symbolic link to something other than the package object.
361 @end itemize
363 @noindent
364 The default behavior of qi for an incoming package is to ABORT if a
365 conflict arises.  When a package is going to be deleted, qi tells to
366 graft(1) to remove those parts that are not in conflict, leaving the
367 links to the belonging package.  This behavior can be forced if the
368 -p option is given.
370 @section Installing packages
371 @cindex package installation
373 To install a single package, simply type:
375 @example
376 qi -i coreutils-8.30-i586+1.tlz
377 @end example
379 @noindent
380 To install multiple packages at once, type:
382 @example
383 qi -i gcc-8.3.0-i586+1.tlz rafaela-2.2-i586+1.tlz ...
384 @end example
386 @noindent
387 Warn about the files that will be linked:
389 @example
390 qi -w bash-5.0-i586+1.tlz
391 @end example
393 This is to verify the content of a package before installing it.
395 @noindent
396 See the process of an installation (very verbose):
398 @example
399 qi -i -v mariana-3.0-i586+1.tlz
400 @end example
402 A second -v gives more.
404 @noindent
405 Installing package in a different location:
407 @example
408 qi -r /media/floppy -i lzip-1.21-i586+1.tlz
409 @end example
411 The -r option assumes @samp{$@{targetdir@}} and @samp{$@{packagedir@}}.
412 See:
414 @example
415 qi -r /home/selk -P /pkgs -t / -i lzip-1.21-i586+1.tlz
416 @end example
418 In this case the content of "lzip-1.21-i586+1.tlz" will be decompressed
419 into @samp{/home/selk/pkgs/lzip-1.21-i586+1}.  Assuming that the main
420 binary for lzip is under @samp{/home/selk/pkgs/lzip-1.21-i586+1/usr/bin/}
421 the target for "usr/bin" will be created at @samp{/home/selk}.  Considering
422 that you have exported the @env{PATH} as @samp{$@{HOME@}/usr/bin}, now the
423 system is able to see the recent lzip.
425 @noindent
426 Installing from a list of packages using standard input:
428 @example
429 cat FILELIST.txt | qi -i -
430 @end example
432 The list of packages must contain full path names to be passed in the
433 installation, e.g:
434 /var/cache/qi/packages/x86_64/devel/tcl-8.6.9-x86_64+1.tlz
435 /var/cache/qi/packages/x86_64/devel/tk-8.6.9.1-x86_64+1.tlz
436 /var/cache/qi/packages/x86_64/devel/vala-0.42.3-x86_64+1.tlz
438 @section Removing packages
439 @cindex package de-installation
441 To remove a package, simply type:
443 @example
444 qi -d xz-5.2.4-i586+1.tlz
445 @end example
447 @noindent
448 Delete mode will match the package name using @samp{$@{packagedir@}} as
449 prefix.  For example, if the value of @samp{$@{packagedir@}} is set to
450 /usr/local/pkgs, this will be equal to:
452 @example
453 qi -d /usr/local/pkgs/xz-5.2.4-i586+1
454 @end example
456 @noindent
457 Detailed output (very verbose):
459 @example
460 qi -d -v /usr/local/pkgs/xz-5.2.4-i586+1
461 @end example
463 A second -v gives more.
465 @noindent
466 By default the delete mode does not preserve a package directory after
467 removing its links from @samp{$@{targetdir@}}, but this behavior can be
468 changed if the -k option is passed:
470 @example
471 qi -d -k /usr/local/pkgs/lzip-1.21-i586+1
472 @end example
474 This means that the links to the package can be reactivated, later:
476 @example
477 cd /usr/local/pkgs && graft -i lzip-1.21-i586+1
478 @end example
480 @noindent
481 Removing package from a different location:
483 @example
484 qi -r /home/cthulhu -P /pkgs -t / -d xz-5.2.4-i586+1
485 @end example
487 @noindent
488 Removing a package using standard input:
490 @example
491 echo "vala-0.42.3-x86_64+1" | qi -d -
492 @end example
494 This will match with the package directory.
496 @section Upgrading packages
497 @cindex package upgrade
499 The upgrade mode inherits the properties of the installation and removal
500 process.  To make sure that a package is updated, the package is installed
501 in a temporary directory taking @samp{$@{packagedir@}} into account.  Once
502 the incoming package is pre-installed, qi can proceed to search and delete
503 packages that have the same name (considered as previous ones).  Finally,
504 the package is re-installed at its final location and the temporary
505 directory is removed.
507 @noindent
508 To upgrade a package, just type:
510 @example
511 qi -u gcc-9.0.1-i586+1.tlz
512 @end example
514 This will proceed to update "gcc-9.0.1-i586+1" removing other versions
515 of "gcc" (if any).
517 @noindent
518 If you want to keep the package directory of found versions during the
519 upgrade process, just pass:
521 @example
522 qi -u -k gcc-9.0.1-i586+1.tlz
523 @end example
525 @noindent
526 To see the upgrade process (very verbose):
528 @example
529 qi -u -v gcc-9.0.1-i586+1.tlz
530 @end example
532 A second -v gives more.
534 @noindent
535 To force the upgrade of an existing package:
537 @example
538 qi -u -f gcc-9.0.1-i586+1.tlz
539 @end example
541 @subsection Package blacklist
542 @cindex package blacklist
544 To enforce general package facilities, either to install, remove or
545 maintain the hierarchy of packages in a clean manner, qi makes use of the
546 pruning operation via graft(1):
548 There is a risk if those are crucial packages for the proper functioning
549 of the system, because it implies to deactivate symbolic links from the
550 target directory, @emph{especially} when transitioning an incoming package
551 into its final location during upgrade.
553 @noindent
554 A blacklist for declare package names has been devised for this cases,
555 in case that a user decides to upgrade all packages in the system or,
556 just the crucial ones, such as the C library.
558 The blacklist is related to the upgrade mode only, consists in installing
559 a package instead of updating it or removing previous versions of it;
560 the content of the package will be updated over the existing content at
561 @samp{$@{packagedir@}}, while the existing links from
562 @samp{$@{targetdir@}} will be preserved.  A pruning of links will carried
563 out in order to re-link possible differences with the recent content, this
564 helps to avoid having dead links in the target directory.
566 @noindent
567 Since the upgrade mode is also used to install a new package, the mechanism
568 for blacklist is to install a declared package if it does not already
569 exist, if it already exists, it is verified that the binary package is
570 newer than the package directory in order to perform an update.
572 Package names for the blacklist can be set from the configuration file.
575 @node Recipes
576 @chapter Recipes
577 @cindex recipes
579 A recipe is a file telling qi what to do.  Most often, the recipe tells to
580 qi how to build a binary package from a source tarball.
582 A recipe has two parts: a list of variable definitions and a list of
583 sections.  By convention, the syntax of a section is:
585 @example
586 section_name()
588     section lines
590 @end example
592 The section name is followed by parentheses, one newline and an opening
593 brace.  The line finishing the section contains just a closing brace.
594 The section names or the function names currently recognized are
595 @samp{build}.
597 The @samp{build} section is an augmented shell script.  This is the main
598 section (or @strong{shell function}) which contains the instructions to
599 build and produce a package.
601 @section Variables
602 @cindex variables
604 A "variable" is a @strong{shell variable} defined either in @file{qirc}
605 or in a recipe to represent a string of text, called the variable's
606 "value".  These values are substituted by explicit request in the
607 definitions of other variables or in calls to external commands.
609 Variables can represent lists of file names, options to pass to
610 compilers, programs to run, directories to look in for source files,
611 directories to write output in, or anything else you can imagine.
613 Definitions of variables in qi have four levels of precedence.
614 Options which define variables from the command-line override those
615 specified in the @file{qirc} file, while variables defined in the recipe
616 override those specified in @file{qirc}, taking priority over those
617 variables settled by options via command-line.  Finally, the variables
618 have default values if they are not defined anywhere.
620 Options that set variables through the command-line can only reference
621 variables defined in @file{qirc} and variables with default values.
623 Definitions of variables in @file{qirc} can only reference variables
624 previously defined in @file{qirc} and variables with default values.
626 Definitions of variables in the recipe can only reference variables
627 settled by command-line, variables previously defined in the recipe,
628 variables defined in @file{qirc}, and variables with default values.
630 @section Special variables
631 @cindex special variables
633 There are variables which can only be set using the command line options or
634 via @file{qirc}, there are other special variables which can be defined or
635 redefined in a recipe.  See the following definitions:
637 @samp{outdir} is the directory where the produced packages are written.
638 This variable can not be redefined in the recipe.  Default sets to
639 @samp{/var/cache/qi/packages}.
641 @samp{worktree} is the working tree where archives, patches, and recipes
642 are expected.  This variable can not be redefined in the recipe.  Default
643 sets to @samp{/usr/src/qi}.
645 @samp{tardir} is defined in the recipe to the directory where the tarball
646 containing the source can be found.  The full name of the tarball is
647 composed as @samp{$@{tardir@}/$tarname}.  Its value is available in the
648 recipe as @samp{$@{tardir@}}; a value of . for @samp{tardir} sets it to
649 the value of CWD (Current Working Directory), this is where the recipe
650 lives.
652 @samp{arch} is the architecture to compose the package name.  Its value is
653 available in the recipe as @samp{$@{arch@}}.  Default value is the output
654 of @samp{uname -m}.
656 @samp{jobs} is the number of parallel jobs to pass to the compiler.  Its
657 value is available in the recipe as @samp{$@{jobs@}}.  Default sets to
658 @samp{1}.
660 The two variables @samp{$@{srcdir@}} and @samp{$@{destdir@}} can be
661 set in the recipe, as any other variable, but if they are not, qi uses
662 default values for them when building a package.
664 @samp{srcdir} contains the source code to be compiled, and defaults to
665 @samp{$@{program@}-$@{version@}}.  @samp{destdir} is the place where the
666 built package will be installed, and defaults to
667 @samp{$@{TMPDIR@}/package-$@{program@}}.
669 If @samp{pkgname} is left undefined, the special variable @samp{program}
670 is assigned by default.  If @samp{pkgversion} is left undefined, the
671 special variable @samp{version} is assigned by default.
673 @samp{pkgname} and @samp{pkgversion} along with: @samp{version}, @samp{arch},
674 and @samp{release} are used to produce the name of the package in the form:
675 @samp{$@{pkgname@}-$@{pkgversion@}-$@{arch@}+$@{release@}.tlz}
677 A special variable called @samp{replace} can be used to declare package
678 names that will be replaced at the time of installation.
680 @noindent
681 A typical recipe contains the following variables:
683 @itemize @bullet
684 @item @samp{program}: software name.
686 It matches the source name.  It is also used to compose the name of the
687 package if @samp{$@{pkgname@}} is not specified.
689 @item @samp{version}: software version.
691 It matches the source name.  It is also used to compose the version of the
692 package if @samp{$@{pkgversion@}} is not specified.
694 @item @samp{arch}: software architecture.
696 It is used to compose the architecture of the package in which it is
697 build.
699 @item @samp{release}: release number.
701 This is used to reflect the release number of the package.  It is
702 recommended to increase this number after any significant change in
703 the recipe or post-install script.
704 @end itemize
706 @noindent
707 Obtaining sources over the network must be declared in the recipe using
708 the @samp{fetch} variable.  Use double quotes for separated values.
710 The variables @samp{netget} and @samp{rsync} can be defined in @file{qirc}
711 to establish a network downloader in order to get the sources.  If they
712 are not defined, qi uses default values:
714 @samp{netget} is the general network downloader tool, defaults sets to
715 @samp{wget -c -w1 -t3 --no-check-certificate}.
717 @samp{rsync} is the network tool for sources containing the prefix for
718 the RSYNC protocol, default sets to
719 @samp{rsync -v -a -L -z -i --progress}.
721 The variable @samp{description} is used to print the package description
722 when a package is installed.
724 A description has two parts: a brief description, and a long description.
725 By convention, the syntax of @samp{description} is:
727 @example
728 description="
729 Brief description.
731 Long description.
733 @end example
735 The first (substantial) line of the value is a brief description of the
736 software (called "blurb").  A newline follows to separate the @emph{brief
737 description} from the @emph{long description}.
739 @noindent
740 An example looks like:
742 @example
743 description="
744 The GNU core utilities.
746 The GNU core utilities are the basic file, shell and text manipulation
747 utilities of the GNU operating system.  These are the core utilities
748 which are expected to exist on every operating system.
750 @end example
752 Please consider a length limit of 78 characters as maximum, because the same
753 one would be used on the meta file creation.  See
754 @ref{Recipes, The meta file} section.
756 The @samp{homepage} variable is used to declare the main site or home page:
758 @example
759 homepage=http://www.gnu.org/software/gcc
760 @end example
762 The variable @samp{license} is used for license information@footnote{
763 The proposal for @samp{license} was made by Richard M. Stallman at
764 @url{http://lists.gnu.org/archive/html/gnu-linux-libre/2016-05/msg00003.html}.}.
765 Some code in the program can be covered by license A, license B, or
766 license C.  For "separate licensing" or "heterogeneous licensing", we
767 suggest using @strong{|} for a disjunction, @strong{&} for a conjunction
768 (if that ever happens in a significant way), and comma for heterogeneous
769 licensing.  Comma would have lower precedence, plus added special terms.
771 @example
772 license="LGPL, GPL | Artistic + added permission"
773 @end example
775 @section Building packages
776 @cindex package build
778 A recipe is any valid regular file, qi sets priorities to read a recipe,
779 for example, the Current Working Directory has priority over the working
780 tree (or where the recipes reside); the @samp{$@{worktree@}/recipes} is
781 the second place where to find a recipe, we complete the possibility of
782 using the directory name to invoke a recipe if it contains "recipe" as a
783 valid file name.
785 @noindent
786 To build a single package, type:
788 @example
789 qi -b x-apps/xterm
790 @end example
792 @noindent
793 Multiple jobs can be passed to the compiler for speed up the build process:
795 @example
796 qi -b -j3 x-apps/xterm
797 @end example
799 @noindent
800 Update or install the produced package (if it is not already installed)
801 when finish:
803 @example
804 qi -b -j3 -u x-apps/xterm
805 @end example
807 @noindent
808 Only process a recipe but do not create the binary package:
810 @example
811 qi -b -n dict/aspell
812 @end example
814 The options -i or -u have no effect when -n is given.
816 @noindent
817 This can be useful to inspect the build process of recipe:
819 qi -b -k -n dict/aspell 2>&1 | tee aspell-buildlog.txt
821 The -k option could preserve the source directory and the destination
822 directory for later inspection.  A log file of the build process will be
823 created redirecting both, standard error and standard output to tee(1).
825 @section Variables from the environment
826 @cindex environment variables
828 Qi has environment variables which can be used at build time:
830 The variable @env{TMPDIR} sets the temporary directory for sources, by
831 default, this is used to prepend @samp{$@{srcdir@}} and
832 @samp{$@{destdir@}}.  By convention its value is @samp{/tmp}.
834 The variables @env{QICFLAGS}, @env{QICXXFLAGS}, and @env{QILDFLAGS} have
835 no effect by default.  The environment variables such as @env{CFLAGS},
836 @env{CXXFLAGS}, and @env{LDFLAGS} are unset at compile time:
838 @noindent
839 Recommended practices is to set variables in front of @samp{configure}
840 or in front of @emph{make(1)} instead of exporting to the environment.
841 As follows:
843 @quotation
844 Variables not defined in a site shell script can be set in the environment
845 passed to configure.  However, some packages may run configure again
846 during the build, and the customized values of these variables may be
847 lost.  In order to avoid this problem, you should set them in the
848 configure command line, using @samp{VAR=value}.  For example:
850 @code{./configure CC=/usr/local2/bin/gcc}
852 @url{http://gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Defining-Variables.html}
853 @end quotation
855 @quotation
856 Indeed, while configure can notice the definition of CC in
857 @samp{./configure CC=bizarre-cc}, it is impossible to notice it in
858 @samp{CC=bizarre-cc ./configure}, which, unfortunately, is what most
859 users do.
861 [...]
863 configure: error: changes in the environment can compromise the build.
865 @url{http://gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Setting-Output-Variables.html}
866 @end quotation
868 @quotation
869 It is not wise for makefiles to depend for their functioning on
870 environment variables set up outside their control, since this would cause
871 different users to get different results from the same makefile.  This is
872 against the whole purpose of most makefiles.
874 @url{http://gnu.org/software/make/manual/make.html#Environment}
875 @end quotation
877 @section The meta file
878 @cindex the meta file
880 The "meta file" is a regular file created during the build mode, it
881 contains information about the package such as program name, program
882 version, release, fetch address, description, and other minor data
883 extracted from the processed recipe.  The name of the file is generated as
884 @samp{$@{full_pkgname@}.tlz.txt}, it has the purpose to reflect essential
885 information to the user without having to look inside the package content.
887 The content of a meta file looks like:
889 @example
891 # The Bourne Again SHell.
893 # Bash is an sh-compatible shell that incorporates useful features from
894 # the Korn shell (ksh) and C shell (csh).  It is intended to conform to
895 # the IEEE POSIX P1003.2/ISO 9945.2 shell and tools standard.
897 # It offers functional improvements over sh for both programming and
898 # interactive use.
901 QICFLAGS="-g0 -Os -mtune=generic -pipe"
902 QICXXFLAGS="-g0 -Os -mtune=generic -pipe"
903 QILDFLAGS="-s"
904 program=bash
905 version=5.0
906 release=1
907 blurb="The Bourne Again SHell."
908 homepage="http://www.gnu.org/software/bash"
909 license="GPLv3+"
910 fetch="ftp://ftp.gnu.org/gnu/bash/bash-5.0.tar.gz"
911 replace=""
912 @end example
914 A package description is extracted from the variable @samp{description},
915 each line will be interpreted literally and pre-formatted to fit in
916 (exactly) 80 columns, plus the character @samp{# } will be prefixed to
917 each line in the description.
919 In addition to the special variables, there are implicit variables such as
920 @samp{blurb}:
922 The @samp{blurb} variable is related to the special variable
923 @samp{description}.  Its value is composed using the first (substantial)
924 line of @samp{description} (mentioned as the "brief description").
927 @node Order files
928 @chapter Order files
929 @cindex handling build order
931 The order mode has the purpose to resolve the build order through
932 .order files.  A .order file contains a list of recipe names, by default
933 does not perform any action other than to print a resolved list in descending
934 order.  For example, if @strong{a} depends on @strong{b} and @strong{c},
935 and @strong{c} depends on @strong{b} as well, the file might look like:
937 @example
938 a: c b
940 c: b
941 @end example
943 Each letter represents a recipe name, complete dependencies for
944 the first recipe name are listed in descending order, which is
945 printed from right to left, and removed from left to right:
947 @sc{Output}
949 @example
953 @end example
955 Declaration of blank lines, colons, parentheses, and end of line are
956 ignored.  Comments are allowed for lines that begin with @samp{#}.
958 @noindent
959 An order file could be used to build a serie of packages, for example, if
960 the content is:
962 @example
963 # Image handling libraries
964 libs/libjpeg-turbo: devel/nasm
965 x-libs/jasper: libs/libjpeg-turbo
966 libs/tiff: libs/libjpeg-turbo
967 @end example
969 To proceed with each recipe, we can type:
971 @example
972 qi -o imglibs.order | qi -b -i -
973 @end example
975 The output of @samp{qi -o imglibs.order} tells to qi in which order it
976 should build the recipes/packages:
978 @example
979 devel/nasm
980 libs/libjpeg-turbo
981 x-libs/jasper
982 libs/tiff
983 @end example
986 @node Examining packages
987 @chapter Examining packages
988 @cindex package examination
990 There is an option to make use of the "extraction mode" which serves to
991 examine binary packages for debugging purposes.  The extraction mode
992 consists of decompressing a package into a single directory, verifying
993 its integrity and preserving its properties.
995 @example
996 qi -x mksh-R56c-x86_64+1.tlz
997 @end example
999 This action will put the content of "mksh-R56c-x86_64+1.tlz" into a
1000 single directory, which is a private directory for the user who requested
1001 the action, creation mode will be 0700 @strong{(u=,g=rwx,o=rwx)}.  The
1002 package content will reside on this location, default mask to deploy the
1003 content will be 0000 @strong{(u=rwx,g=rwx,o=rwx)}.
1005 The creation of the custom directory is influenced by the value of the
1006 @env{TMPDIR} variable.
1009 @node Exit status
1010 @chapter Exit status
1011 @cindex exit codes
1013 All the conditions of exit codes are described in this chapter.
1015 @table @samp
1016 @item 0
1017 Successful completion (no errors).
1019 @item 1
1020 Minor common errors:
1022 @itemize @minus
1023 @item Help usage on illegal options or required arguments.
1025 @item Program needed by qi (prerequisite) is not available.
1026 @end itemize
1028 @item 2
1029 Command execution error:
1031 This code is used to return the evaluation of external commands and shell
1032 arguments in case of error.
1034 @item 3
1035 Integrity check error for compressed files.
1037 Compressed files means:
1039 @itemize @minus
1040 @item Tarball files from tar(1).
1041 Supported extension: .tar, .tar.gz, .tgz, .tar.Z, .tar.bz2, .tbz2, .tbz,
1042 .tar.xz, .txz
1044 @item Tarballs files from tarlz(1).
1045 Supported extension: .tar.lz, .tlz
1047 @item Zip files from unzip(1).
1048 Supported extension: .zip, .ZIP
1050 @item Gzip files from gzip(1).
1051 Supported extension: .gz, .Z
1053 @item Bzip2 files from bzip2(1).
1054 Supported extension: .bz2
1056 @item Lzip files from lzip(1).
1057 Supported extension: .lz
1059 @item Xz files from xz(1).
1060 Supported extension: .xz
1061 @end itemize
1063 @item 4
1064 File empty, not regular, or expected.
1066 Commonly, it is expected:
1068 @itemize @minus
1069 @item An argument for the mode of operation.
1071 @item A readable file or directory.
1073 @item A binary package (.tlz).
1075 @item A valid recipe.
1077 @item An order file (.order).
1079 @item A protocol supported by the network downloader tool.
1081 @item A checksum file (.sha256).
1082 @end itemize
1084 @item 5
1085 Empty or not defined variable:
1087 This code is used to report empty or undefined variables; usually,
1088 variables coming from a recipe, or assigned arrays that are tested.
1090 @item 6
1091 Package already installed:
1093 The package directory for an incoming .tlz package that already exists.
1095 @item 10
1096 Network manager error:
1098 This code is used if the network downloader tool fails for some reason.
1099 @end table
1102 @node License
1103 @appendix GNU Free Documentation License
1105 @include fdl.texi
1108 @node Index
1109 @unnumbered Index
1111 @printindex cp
1113 @bye