blob: e14bd091642f934c21bde8c72755bf0f83d36a54 [file] [log] [blame]
Greg Wardabc52162000-02-26 00:52:48 +00001\documentclass{howto}
2\usepackage{ltxmarkup}
Greg Wardfacb8db2000-04-09 04:32:40 +00003\usepackage{times}
Greg Ward16aafcd2000-04-09 04:06:44 +00004\usepackage{distutils}
Greg Wardabc52162000-02-26 00:52:48 +00005
Greg Ward16aafcd2000-04-09 04:06:44 +00006\title{Distributing Python Modules}
Greg Wardabc52162000-02-26 00:52:48 +00007
Greg Wardabc52162000-02-26 00:52:48 +00008\author{Greg Ward}
9\authoraddress{E-mail: \email{gward@python.net}}
10
Greg Ward16aafcd2000-04-09 04:06:44 +000011
Greg Ward16aafcd2000-04-09 04:06:44 +000012
13
Greg Wardabc52162000-02-26 00:52:48 +000014\begin{document}
15
Greg Wardfacb8db2000-04-09 04:32:40 +000016\maketitle
17\tableofcontents
Greg Ward16aafcd2000-04-09 04:06:44 +000018
19\section{Introduction}
20\label{sec:intro}
21
22In the past, Python module developers have not had much infrastructure
23support for distributing modules, nor have Python users had much support
24for installing and maintaining third-party modules. With the
25introduction of the Python Distribution Utilities (Distutils for short)
26in Python 1.6, this situation should start to improve.
27
28This document only covers using the Distutils to distribute your Python
29modules. Using the Distutils does not tie you to Python 1.6, though:
30the Distutils work just fine with Python 1.5, and it is reasonable (and
31expected to become commonplace) to expect users of Python 1.5 to
32download and install the Distutils separately before they can install
33your modules. Python 1.6 users, of course, won't have to add anything
34to their Python installation in order to use the Distutils to install
35third-party modules.
36
37This document concentrates on the role of developer/distributor: if
38you're looking for information on installing Python modules, you should
39refer to the ``Installing Python Modules'' manual.
40
41
Greg Wardfacb8db2000-04-09 04:32:40 +000042\section{Concepts \& Terminology}
Greg Ward16aafcd2000-04-09 04:06:44 +000043\label{sec:concepts}
44
45Using the Distutils is quite simple, both for module developers and for
46users/administrators installing third-party modules. As a developer,
47your responsibilites (apart from writing solid, well-documented and
48well-tested code, of course!) are:
49\begin{itemize}
50\item write a setup script (\file{setup.py} by convention)
51\item (optional) write a setup configuration file
52\item create a source distribution
53\item (optional) create one or more built (binary) distributions
54\end{itemize}
55Each of these tasks is covered in this document.
56
57Not all module developers have access to a multitude of platforms, so
58it's not always feasible to expect them to create a multitude of built
59distributions. It is hoped that a class of intermediaries, called
60\emph{packagers}, will arise to take address this need. Packagers will
61take source distributions released by module developers, build them on
62one or more platforms, and release the resulting built distributions.
63Thus, users on the most popular platforms will be able to install most
64popular Python module distributions in the most natural way for their
65platform, without having to run a single setup script or compile a line
66of code.
67
68
69\subsection{A simple example}
70\label{sec:simple-example}
71
72The setup script is usually quite simple, although since it's written in
73Python, there are no arbitrary limits to what you can do. If all you
74want to do is distribute a module called \module{foo}, contained in a
75file \file{foo.py}, then you can get away with as little as this:
76\begin{verbatim}
77from distutils.core import setup
78setup (name = "foo",
79 version = "1.0",
80 py_modules = ["foo"])
81\end{verbatim}
82Some observations:
83\begin{itemize}
84\item all information that you supply to the Distutils is supplied as
Greg Wardfacb8db2000-04-09 04:32:40 +000085 keyword arguments to the \function{setup()} function
Greg Ward16aafcd2000-04-09 04:06:44 +000086\item those keyword arguments fall into two categories: package
87 meta-data (name, version number) and information about what's in the
88 package (list of pure modules, in this case)
89\item modules are specified by module name, not filename (the same will
90 hold true for packages and extensions)
91\item it's recommended that you supply a little more meta-data, in
92 particular your name, email address and a URL for the project
93\end{itemize}
94
95To create a source distribution for this module, you would run
96\begin{verbatim}
97python setup.py sdist
98\end{verbatim}
99which will create an archive file (e.g., tarball on Unix, zip file on
100Windows) containing your setup script, \file{setup.py}, and your module,
101\file{foo.py}. The archive file will be named \file{Foo-1.0.tar.gz} (or
102\file{.zip}), and will unpack into a directory \file{Foo-1.0}.
103
104If an end-user wishes to install your \module{foo} module, all she has
105to do is download \file{Foo-1.0.tar.gz}) (or \file{.zip}), unpack it,
106and---from the \file{Foo-1.0} directory---run
107\begin{verbatim}
108python setup.py install
109\end{verbatim}
110which will ultimately copy \file{foo.py} to the appropriate directory
111for third-party modules in their Python installation.
112
113This simple example demonstrates some fundamental concepts of the
114Distutils: first, both developers and installers have the same basic
115user interface, i.e. the setup script. The difference is which
116Distutils \emph{commands} they use: the \command{sdist} command is
117almost exclusively for module developers, while \command{install} is
118more often for installers (although most developers will want to install
119their own code occasionally).
120
121\XXX{only partially implemented}%
122If you want to make things really easy for your users, you can create
123one or more built distributions for them. For instance, if you are
124running on a Windows machine, and want to make things easy for other
125Windows users, you can create an executable installer (the most
126appropriate type of built distribution for this platform) with the
127\command{bdist\_wise} command. (Wise is the installation tool used to
128create Windows installers for Python itself, so we have adopted it for
129use by any Python module distribution. You'll need to have version XXX
130of Wise installed on your system for the \command{bdist\_wise} to work;
131it's available from \url{http://foo/bar/baz}. For example:
132\begin{verbatim}
133python setup.py bdist_wise
134\end{verbatim}
Greg Wardfacb8db2000-04-09 04:32:40 +0000135will create an executable installer, \file{Foo-1\_0.exe}, in the current
Greg Ward16aafcd2000-04-09 04:06:44 +0000136directory.
137
138\XXX{not implemented yet}
139Other \command{bdist\_*} commands exist for RPM-based Linux systems
140(\command{bdist\_rpm}), Debian-based Linux systems
141(\command{bdist\_deb}), ...
142
143
144\subsection{General Python terminology}
145\label{sec:python-terms}
146
147If you're reading this document, you probably have a good idea of what
148modules, extensions, and so forth are. Nevertheless, just to be sure
149that everyone is operating from a common starting point, we offer the
150following glossary of common Python terms:
151\begin{description}
152\item[module] the basic unit of code reusability in Python: a block of
153 code imported by some other code. There are three types of modules
154 that concern us here: pure Python modules, extension modules, and
155 packages.
156\item[pure Python module] a module written in Python and contained in a
157 single \file{.py} file (and possibly associated \file{.pyc} and/or
158 \file{.pyo} files). Sometimes referred to as a ``pure module.''
159\item[extension module] a module written in the low-level language of
160 the Python implemention: C/C++ for CPython, Java for JPython.
161 Typically contained in a single dynamically loadable pre-compiled
162 file, e.g. a shared object (\file{.so}) file for CPython extensions on
163 Unix, a DLL (given the \file{.pyd} extension) for CPython extensions
164 on Windows, or a Java class file for JPython extensions.
165\item[package] a module that contains other modules; typically contained
166 in a directory in the filesystem and distinguished from other
167 directories by the presence of a file \file{\_\_init\_\_.py}.
168\end{description}
169
170
171\subsection{Distutils-specific terminology}
172\label{sec:distutils-term}
173
174The following terms apply more specifically to the domain of
175distributing Python modules using the Distutils:
176\begin{description}
177\item[module distribution] a collection of Python modules distributed
178 together as a single downloadable resource and meant to be installed
179 \emph{en masse}. Examples of some well-known module distributions are
180 Numeric Python, PyXML, PIL (the Python Imaging Library), or
181 mxDateTime. (This would be called a \emph{package}, except that term
182 is already spoken for in the Python context: a single module
183 distribution may contain zero, one, or many Python packages.)
184\item[pure module distribution] a module distribution that contains only
185 pure Python modules and packages. Sometimes referred to as a ``pure
186 distribution.''
187\item[non-pure module distribution] a module distribution that contains
188 at least one extension module. Sometimes referred to as a ``non-pure
189 distribution.''
190\item[distribution root] the top-level directory of your source tree (or
191 source distribution); the directory where \file{setup.py} exists and
192 is run from
193\end{description}
194
195
196\section{Writing the Setup Script}
197\label{sec:setup-script}
198
199The setup script is the centre of all activity in building,
200distributing, and installing modules using the Distutils. The main
201purpose of the setup script is to describe your module distribution to
202the Distutils, so that the various commands that operate on your modules
203do the right thing. As we saw in section~\ref{sec:simple-example}
Greg Wardfacb8db2000-04-09 04:32:40 +0000204above, the setup script consists mainly of a call to \function{setup()}, and
Greg Ward16aafcd2000-04-09 04:06:44 +0000205all information supplied to the Distutils is suppled as keyword
Greg Wardfacb8db2000-04-09 04:32:40 +0000206arguments to \function{setup()}.
Greg Ward16aafcd2000-04-09 04:06:44 +0000207
208Here's a slightly more involved example, which we'll follow for the next
209couple of sections: the Distutils' own setup script. (Keep in mind that
210although the Distutils are included with Python 1.6, they also have an
211independent existence so that Python 1.5 users can use them to install
212other module distributions.)
213
214\begin{verbatim}
215#!/usr/bin/env python
216
217from distutils.core import setup
218
219setup (name = "Distutils",
220 version = "1.0",
221 description = "Python Module Distribution Utilities",
222 author = "Greg Ward",
223 author_email = "gward@python.net",
224 url = "http://www.python.org/sigs/distutils-sig/",
225
226 packages = ['distutils', 'distutils.command'],
227 )
228\end{verbatim}
229There are only two differences between this and the trivial one-file
230distribution presented in section~\ref{sec:simple-example}: more
231meta-data, and the specification of pure Python modules by package,
232rather than by module. This is important since the Distutils consist of
233a couple of dozen modules split into (so far) two packages; an explicit
234list of every module would be tedious to generate and difficult to
235maintain.
236
237
238\subsection{Package directories}
239\label{sec:package-dirs}
240
241The \option{packages} option tells the Distutils to process (build,
242distribute, install, etc.) all pure Python modules found in each package
243mentioned in the \option{packages} list. In order to do this, of
244course, there has to be a correspondence between package names and
245directories in the filesystem. The default correspondence is the most
246obvious one, i.e. package \package{distutils} is found in the directory
247\file{distutils} relative to the distribution root. Thus, when you say
248\code{packages = ['foo']} in your setup script, you are promising that
249the Distutils will find a file \file{foo/\_\_init\_\_.py} (which might
250be spelled differently on your system, but you get the idea) relative to
251the directory where your setup script lives. (If you break this
252promise, the Distutils will issue a warning but process the broken
253package anyways.)
254
255If you use a different convention to lay out your source directory,
256that's no problem: you just have to supply the \option{package\_dir}
257option to tell the Distutils about your convention. For example, say
258you keep all Python source under \file{lib}, so that modules not in any
259package are right in \file{lib}, modules in the \package{foo} package
260are in \file{lib/foo}, and so forth. Then you would put
261\begin{verbatim}
262package_dir = {'': 'lib'}
263\end{verbatim}
264in your setup script. (The keys to this dictionary are package names,
265and an empty package name stands for the ``root package,'' i.e. no
266package at all. The values are directory names relative to your
267distribution root.) In this case, when you say
268\code{packages = ['foo']}, you are promising that the file
269\file{lib/foo/\_\_init\_\_.py} exists.
270
271Another possible convention is to put the \package{foo} package right in
272\file{lib}, the \package{foo.bar} package in \file{lib/bar}, etc. This
273would be written in the setup script as
274\begin{verbatim}
275package_dir = {'foo': 'lib'}
276\end{verbatim}
277Note that a \code{\var{package}: \var{dir}} entry in the
278\option{package\_dir} option implicitly applies to all packages below
279\var{package}, so the \package{foo.bar} case is automatically handled
280here. In this example, having \code{packages = ['foo', 'foo.bar']}
Greg Wardfacb8db2000-04-09 04:32:40 +0000281tells the Distutils to look for \file{lib/\_\_init\_\_.py} and
282\file{lib/bar/\_\_init\_\_.py}.
Greg Ward16aafcd2000-04-09 04:06:44 +0000283
284
285\subsection{Listing individual modules}
286\label{sec:listing-modules}
287
288For a small module distribution, you might prefer to list all modules
289rather than listing packages---especially the case of a single module
290that goes in the ``root package'' (i.e., no package at all). This
291simplest case was shown in section~\ref{sec:simple-example}; here is a
292slightly more involved example:
293\begin{verbatim}
294py_modules = ['mod1', 'pkg.mod2']
295\end{verbatim}
296This describes two modules, one of them in the ``root'' package, the
297other in the \package{pkg} package. Again, the default
298package/directory layout implies that these two modules can be found in
Greg Wardfacb8db2000-04-09 04:32:40 +0000299\file{mod1.py} and \file{pkg/mod2.py}, and that \file{pkg/\_\_init\_\_.py}
Greg Ward16aafcd2000-04-09 04:06:44 +0000300exists as well. And again, you can override the package/directory
301layout using the \option{package\_dir} option. \XXX{not sure if this is
302 actually true---must check!}
303
304
305\section{Writing the Setup Configuration File}
306\label{sec:setup-config}
307
308\XXX{not implemented yet!}
309
310Often, it's not possible to write down everything needed to build a
311distribution \emph{a priori}. You need to get some information from the
312user, or from the user's system, in order to proceed. For example, you
313might include an optional extension module that provides an interface to
314a particular C library. If that library is installed on the user's
315system, then you can build your optional extension---but you need to
316know where to find the header and library file. If it's not installed,
317you need to know this so you can omit your optional extension.
318
319The preferred way to do this, of course, would be for you to tell the
320Distutils which optional features (C libraries, system calls, external
321utilities, etc.) you're looking for, and it would inspect the user's
322system and try to find them. This functionality may appear in a future
323version of the Distutils, but it isn't there now. So, for the time
324being, we rely on the user building and installing your software to
325provide the necessary information. The vehicle for doing so is the
326setup configuration file, \file{setup.cfg}.
327
328\XXX{need more here!}
329
330
331\section{Creating a Source Distribution}
332\label{sec:source-dist}
333
334As shown in section~\ref{sec:simple-example}, you use the
335\command{sdist} command to create a source distribution. In the
336simplest case,
337\begin{verbatim}
338python setup.py sdist
339\end{verbatim}
340(assuming you haven't specified any \command{sdist} options in the setup
341script or config file), \command{sdist} creates the the archive of the
342default format for the current platform. The default formats are:
343\begin{tableii}{ll}{textrm}%
344 {Platform}{Default archive format for source distributions}
345 \lineii{Unix}{gzipped tar file (\file{.tar.gz})}
346 \lineii{Windows}{zip file}
347\end{tableii}
348You can specify as many formats as you like using the \option{--formats}
349option, for example:
350\begin{verbatim}
351python setup.py sdist --formats=gztar,zip
352\end{verbatim}
353to create a gzipped tarball and a zip file. The available formats are:
354\begin{tableii}{ll}{textrm}%
355 {Format}{Description}
356 \lineii{zip}{zip file (\file{.zip})}
357 \lineii{gztar}{gzipped tar file (\file{.tar.gz})}
358 \lineii{ztar}{compressed tar file (\file{.tar.Z})}
359 \lineii{tar}{tar file (\file{.tar})}
360\end{tableii}
361
362
363\subsection{The manifest and manifest template}
364\label{sec:manifest}
365
366Without any additional information, the \command{sdist} command puts a
367minimal set of files into the source distribution:
368\begin{itemize}
Greg Wardfacb8db2000-04-09 04:32:40 +0000369\item all Python source files implied by the \option{py\_modules} and
Greg Ward16aafcd2000-04-09 04:06:44 +0000370 \option{packages} options
Greg Wardfacb8db2000-04-09 04:32:40 +0000371\item all C source files mentioned in the \option{ext\_modules} or
Greg Ward16aafcd2000-04-09 04:06:44 +0000372 \option{libraries} options (\XXX{getting C library sources currently
Greg Wardfacb8db2000-04-09 04:32:40 +0000373 broken -- no get\_source\_files() method in build\_clib.py!})
Greg Ward16aafcd2000-04-09 04:06:44 +0000374\item anything that looks like a test script: \file{test/test*.py}
375 (currently, the Distutils don't do anything with test scripts except
376 include them in source distributions, but in the future there will be
377 a standard for testing Python module distributions)
378\item \file{README.txt} (or \file{README}) and \file{setup.py}
379\end{itemize}
380Sometimes this is enough, but usually you will want to specify
381additional files to distribute. The typical way to do this is to write
382a \emph{manifest template}, called \file{MANIFEST.in} by default. The
383\command{sdist} command processes this template and generates a manifest
384file, \file{MANIFEST}. (If you prefer, you can skip the manifest
385template and generate the manifest yourself: it just lists one file per
386line.)
387
388The manifest template has one command per line, where each command
389specifies a set of files to include or exclude from the source
390distribution. For an example, again we turn to the Distutils' own
391manifest template:
392\begin{verbatim}
393include *.txt
394recursive-include examples *.txt
395recursive-include examples *.py
396prune examples/sample?/build
397\end{verbatim}
398The meanings should be fairly clear: include all files in the
399distribution root matching \code{*.txt}, all files anywhere under the
400\file{examples} directory matching \code{*.txt} or \code{*.py}, and
401exclude all directories matching \code{examples/sample?/build}. There
402are several other commands available in the manifest template
403mini-language; see section~\ref{sec:sdist-cmd}.
404
405The order of commands in the manifest template very much matters:
406initially, we have the list of default files as described above, and
407each command in the template adds to or removes from that list of files.
408When we have fully processed the manifest template, we have our complete
409list of files. This list is written to the manifest for future
410reference, and then used to build the source distribution archive(s).
411
412We can now see how the \command{sdist} command will build the list of
413files to include in the Distutils source distribution:
414\begin{enumerate}
415\item include all Python source files in the \file{distutils} and
416 \file{distutils/command} subdirectories (because packages
417 corresponding to those two directories were mentioned in the
418 \option{packages} option in the setup script)
419\item include \file{test/test*.py} (always included)
420\item include \file{README.txt} and \file{setup.py} (always included)
421\item include \file{*.txt} in the distribution root (this will find
422 \file{README.txt} a second time, but such redundancies are weeded out
423 later)
424\item in the sub-tree under \file{examples}, include anything matching
425 \file{*.txt}
426\item in the sub-tree under \file{examples}, include anything matching
427 \file{*.py}
428\item remove all files in the sub-trees starting at directories matching
429 \file{examples/sample?/build}---this may exclude files included by the
430 previous two steps, so it's important that the \code{prune} command in
431 the manifest template comes after the two \code{recursive-include}
432 commands
Greg Wardfacb8db2000-04-09 04:32:40 +0000433\end{enumerate}
Greg Ward16aafcd2000-04-09 04:06:44 +0000434
435
436\subsection{Manifest-related options}
437\label{sec:manifest-options}
438
439The normal course of operations for the \command{sdist} command is as
440follows:
441\begin{itemize}
442\item if \file{MANIFEST.in} is more recent than \file{MANIFEST}, or
443 \file{MANIFEST} doesn't exist at all, recreate \file{MANIFEST} by
444 processing \file{MANIFEST.in}
445\item use the list of files now in \file{MANIFEST} (either just
446 generated or read in) to create the source distribution archive(s)
447\end{itemize}
448There are a couple of options that modify this behaviour.
449
450First, you might want to force the manifest to be regenerated---for
451example, if you have added or removed files or directories that match an
452existing pattern in the manifest template, you should regenerate the
453manifest:
454\begin{verbatim}
455python setup.py sdist --force-manifest
456\end{verbatim}
457\XXX{this is stupid, but is there a better way to do it without
458 reprocessing MANIFEST.in every single bloody time?}
459
460Or, you might just want to (re)generate the manifest, but not create a
461source distribution:
462\begin{verbatim}
463python setup.py sdist --manifest-only
464\end{verbatim}
465(\option{--manifest-only} implies \option{--force-manifest}.)
466
467If you don't want to use the default file set, you can supply the
468\option{--no-defaults} option. If you use \option{--no-defaults} and
469don't supply a manifest template (or it's empty, or nothing matches the
470patterns in it), then your source distribution will be empty.
471
472
473\section{Creating Built Distributions}
474\label{sec:built-dist}
475
476
477
478\section{Examples}
479\label{sec:examples}
480
481
482\subsection{Pure Python distribution (by module)}
483\label{sec:pure-mod}
484
485
486\subsection{Pure Python distribution (by package)}
487\label{sec:pure-pkg}
488
489
490\subsection{Single extension module}
491\label{sec:single-ext}
492
493
494\subsection{Multiple extension modules}
495\label{sec:multiple-ext}
496
497
498\subsection{Putting it all together}
499
500
501\section{Reference}
502\label{sec:ref}
503
504
Greg Wardfacb8db2000-04-09 04:32:40 +0000505\subsection{Building modules: the \protect\command{build} command family}
Greg Ward16aafcd2000-04-09 04:06:44 +0000506\label{sec:build-cmds}
507
Greg Wardfacb8db2000-04-09 04:32:40 +0000508\subsubsection{\protect\command{build}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000509\label{sec:build-cmd}
510
Greg Wardfacb8db2000-04-09 04:32:40 +0000511\subsubsection{\protect\command{build\_py}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000512\label{sec:build-py-cmd}
513
Greg Wardfacb8db2000-04-09 04:32:40 +0000514\subsubsection{\protect\command{build\_ext}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000515\label{sec:build-ext-cmd}
516
Greg Wardfacb8db2000-04-09 04:32:40 +0000517\subsubsection{\protect\command{build\_clib}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000518\label{sec:build-clib-cmd}
519
520
Greg Wardfacb8db2000-04-09 04:32:40 +0000521\subsection{Installing modules: the \protect\command{install} command family}
Greg Ward16aafcd2000-04-09 04:06:44 +0000522\label{sec:install-cmd}
523
524
Greg Wardfacb8db2000-04-09 04:32:40 +0000525\subsection{Cleaning up: the \protect\command{clean} command}
Greg Ward16aafcd2000-04-09 04:06:44 +0000526\label{sec:clean-cmd}
527
528
Greg Wardfacb8db2000-04-09 04:32:40 +0000529\subsection{Creating a source distribution: the \protect\command{sdist} command}
Greg Ward16aafcd2000-04-09 04:06:44 +0000530\label{sec:sdist-cmd}
531
532
533\XXX{fragment moved down from above: needs context!}
534The manifest template commands are:
535\begin{tableii}{ll}{command}{Command}{Description}
536 \lineii{include \var{pat}}{include all files matching \var{pat}}
537 \lineii{exclude \var{pat}}{exclude all files matching \var{pat}}
538 \lineii{recursive-include \var{dir} \var{pat}}
539 {include all files under \var{dir} matching \var{pat}}
540 \lineii{recursive-exclude \var{dir} \var{pat}}
541 {exclude all files under \var{dir} matching \var{pat}}
542 \lineii{global-include \var{pat}}
543 {include all files anywhere in the source tree matching \var{pat}}
544 \lineii{global-exclude \var{pat}}
545 {exclude all files anywhere in the source tree matching \var{pat}}
546 \lineii{prune \var{dir}}{exclude all files under \var{dir}}
547 \lineii{graft \var{dir}}{include all files under \var{dir}}
548\end{tableii}
549The patterns here are Unix-style ``glob'' patterns: \code{*} matches any
550sequence of regular filename characters, \code{?} matches any single
551regular filename character, and \code{[\var{range}]} matches any of the
552characters in \var{range} (e.g., \code{a-z}, \code{a-zA-Z},
Greg Wardfacb8db2000-04-09 04:32:40 +0000553\code{a-f0-9\_.}). The definition of ``regular filename character'' is
Greg Ward16aafcd2000-04-09 04:06:44 +0000554platform-specific: on Unix it is anything except slash; on Windows
555anything except backslash or colon; on Mac OS anything except colon.
556\XXX{Windows and Mac OS support not there yet}
557
558
Greg Wardfacb8db2000-04-09 04:32:40 +0000559\subsection{Creating a ``built'' distribution: the \protect\command{bdist} command
Greg Ward16aafcd2000-04-09 04:06:44 +0000560 family}
561\label{sec:bdist-cmds}
562
563
Greg Wardfacb8db2000-04-09 04:32:40 +0000564\subsubsection{\protect\command{blib}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000565
Greg Wardfacb8db2000-04-09 04:32:40 +0000566\subsubsection{\protect\command{blib\_dumb}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000567
Greg Wardfacb8db2000-04-09 04:32:40 +0000568\subsubsection{\protect\command{blib\_rpm}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000569
Greg Wardfacb8db2000-04-09 04:32:40 +0000570\subsubsection{\protect\command{blib\_wise}}
Greg Ward16aafcd2000-04-09 04:06:44 +0000571
572
573
574
575
576
577
578
Greg Wardabc52162000-02-26 00:52:48 +0000579\end{document}