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
|
=head1 NAME
botch-native - execute botch tools in the native phase
=head1 SYNOPSIS
=over
=item B<botch-native> [options] [I<architecture> I<Packages> I<Sources>]
=back
=head1 DESCRIPTION
Execute the botch tools to produce a build order for the native phase.
=head1 OPTIONS
=over 4
=item B<-h, --help>
Display help.
=item B<-k, --keep>
Keep the temporary files
=item B<-c, --self-contained>
Do not work on the full repository but on a smaller self-contained repository
=item B<-O, --optuniv>
Calculate a self-contained repository with a minimal number of source packages
=item B<-G, --optgraph>
Calculate a dependency graph where each installation set contains the minimal
number of unavailable binary packages.
=item B<-T, --timers>
time all program executions
=item B<-m, --allowsrcmismatch>
Allow binary packages to be associated with a source package of a different
version than themselves
=item B<-e, --ignoresrclessbin>
Ignore binary packages without a source package.
=item B<-p, --no-drop>
Do not drop known droppable build dependencies
=item B<-s, --strong>
Calculate strong dependencies
=item B<-b, --sapsb>
Calculate strong articulation points and bridges
=item B<-f, --no-fixpoint>
Do not run fixpoint algorithm
=item B<-n, --clean>
Clean the repository beforehand
=item B<-l, --latest>
Select only the highest package versions
=item B<-w, --online>
Produce stat.html for online consumption
=item B<-a, --available=>I<FILE>
Deb822 list of available binary packages
=item B<-o, --output=>I<DIR>
Output directory. Default is the current directory
=item B<-t, --tmp=>I<DIR>
Temporary directory. Default is created by mktemp(1)
=item B<-I, --deb-drop-b-d-indep>
Drop Build-Depends-Indep dependencies.
=item B<-v, --verbose>
Be more verbose
=item B<-d, --debug>
Maximum verbosity
=item B<-D, --develop>
Execute tools from the source checkout instead of $PATH
=back
=head1 FILES
The following files will be placed in the output directory
=over 4
=item F<buildgraph_acyclic.xml>
The output of botch-profile-build-fvs.
=item F<buildgraph.xml>
The output of botch-create-graph.
=item F<cyclic_src:*.xml>
The output of botch-profile-build-fvs.
=item F<fas>
The standard output of botch-extract-scc.
=item F<feedback_vertex_set.list>
The concatenated output of multiple runs of botch-find-fvs.
=item F<order1.lst>
The output of botch-build-fixpoint.
=item F<order2.lst>
The output of botch-partial-order.
=item F<remove.list>
The output of botch-fasofstats.
=item F<srcgraph_acyclic.xml>
F<buildgraph_acyclic.xml> converted by botch-buildgraph2srcgraph.
=item F<srcgraph.xml>
F<buildgraph.xml> converted by botch-buildgraph2srcgraph.
=item F<stats.html>
The standard output of botch-stat-html
=item F<stats.json>
The JSON output of botch-stat-html
=back
=head1 BUGS
See L<http://bugs.debian.org/botch>.
=head1 SEE ALSO
Debian doc-base Manual F</usr/share/doc/botch/wiki/Home.html>
=head1 AUTHOR
This man page was written by Johannes Schauer. Botch is written by Johannes
Schauer and Pietro Abate.
=head1 COPYRIGHT
Copyright 2012-2014 Johannes Schauer, Pietro Abate
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version. A special linking exception to the GNU Lesser General Public
License applies to this library, see the COPYING file for more information.
|