debmake [-h] [-c | -k] [-n | -a пакет-версия.orig.tar.gz | -d | -t ] [-p пакет] [-u версия] [-r редакция] [-z расширение] [-b "двоичныйпакет, …]" [-e [email protected]] [-f "имя фамилия"] [-i "инструментсборки" | -j] [-l файл_лицензии] [-m] [-o файл] [-q] [-s] [-v] [-w "дополнение, …"] [-x [01234]] [-y] [-L] [-P] [-T]
debmake помогает собрать пакет Debian из исходного кода основной ветки разработки. Обычно это делается следующим образом:
Обязательно защитите путём соответствующего включения в кавычки аргументы опций -b, -f, -l и -w от вмешательства командной оболочки.
сканировать исходный код на предмет текста об авторском праве и лицензировании и выйти.
сравнить файл debian/copyright с исходным кодом и выйти.
Файл debian/copyright должен быть организован таким образом, что наиболее общие файловые шаблоны размещаются раньше конкретных исключений.
make a native Debian source package without .orig.tar.gz. This makes a “3.0 (native)” format package.
If you are thinking of packaging a Debian-specific source tree with debian/* in it into a native Debian package, please think otherwise. You can use the “debmake -d -i debuild” or “debmake -t -i debuild” commands to make a “3.0 (quilt)” format non-native Debian package. The only difference is that the debian/changelog file must use the non-native version scheme: version-revision. The non-native package is more friendly to downstream distributions.
использовать непосредственно tar-архив с исходным кодом основной ветки. (отменяются опции -p, -u, -z)
The upstream tarball may be specified as package_version.orig.tar.gz and tar.gz. For other cases, it may be tar.bz2, or tar.xz.
Если в имени указанного tar-архива основной ветки содержатся буквы в верхнем регистре, то в имени пакета Debian они будут преобразованы в буквы нижнего регистра.
Если в качестве аргумента указан URL (http://, https:// или ftp://) tar-архива основной ветки, то этот архив скачивается с помощью wget или curl.
сначала запустить эквиваленты команды «make dist» для создания tar-архива основной ветки, затем использовать его.
Команда «debmake -d» предназначена для запуска в каталоге пакет/, в котором расположена система управления версиями и система сборки, поддерживающая эквиваленты команды «make dist». (automake/autoconf, Python distutils, …)
запустить команду «tar» для создания tar-архива основной ветки, затем использовать его.
The “debmake -t” command is designed to run in the package/ directory hosting the upstream VCS. Unless you provide the upstream version with the -u option or with the debian/changelog file, a snapshot upstream version is generated in the 0~%y%m%d%H%M format, e.g., 0~1403012359, from the UTC date and time. The generated tarball excludes the debian/ directory found in the upstream VCS. (It also excludes typical VCS directories: .git/ .hg/ .svn/ .CVS/.)
set the binary package specs by a comma separated list of binarypackage:type pairs, e.g., in the full form “foo:bin,foo-doc:doc,libfoo1:lib,libfoo-dev:dev” or in the short form, “-doc,libfoo1,libfoo-dev”.
Here, binarypackage is the binary package name, and the optional type is chosen from the following type values:
Пары значений в скобках, такие как (any, foreign), представляют собой значения служебных строк Architecture и Multi-Arch, устанавливаемые в файле debian/control.
Во многих случаях команда debmake довольно хорошо предсказывает значение поля тип, исходя из значения поля двоичныйпакет. Если тип не очевиден, то значением поля тип становится bin. Например, исходя из libfoo значением поля тип становится lib, а исходя из font-bar значением поля тип становится data, …
Если содержимое дерева исходного кода не совпадает с настройками поля тип, то команда debmake выводит предупреждение.
установить адрес электронной почты.
По умолчанию берётся значение переменной окружения $DEBEMAIL.
установить имя и фамилию.
По умолчанию берётся значение переменной окружения $DEBFULLNAME.
invoke "buildtool" at the end of execution. buildtool may be “dpkg-buildpackage”, “debuild”, “sbuild”, etc.
По умолчанию никакая программа не выполняется.
Передача этой опции автоматически приводит к передаче опции --local.
запустить dpkg-depcheck для выявления сборочных зависимостей и определения путей файлов. Файлы журнала располагаются в родительском каталоге.
add formatted license text to the end of the debian/copyright file holding license scan results.
The default is to add COPYING and LICENSE, and license_file needs to list only the additional file names all separated by “,”.
read optional parameters from file. (This is not for everyday use.)
The content of file is sourced as the Python code at the end of para.py. For example, the package description can be specified by the following file.
para['desc'] = 'program short description' para['desc_long'] = '''\ program long description which you wish to include. . Empty line is space + . You keep going on ... '''
добавить дополнительные аргументы опции --with команды dh(1) в качестве дополнений в файл debian/rules.
The addon values are listed all separated by “,”, e.g., “-w "python3,autoreconf"”.
For Autotools based packages, autoreconf as addon to run “autoreconf -i -v -f” for every package building is default behavior of the dh(1) command.
For Autotools based packages, if they install Python (version 3) programs, setting python3 as addon to the debmake command argument is needed since this is non-obvious. But for setup.py based packages, setting python3 as addon to the debmake command argument is not needed since this is obvious and the debmake command automatically set it to the dh(1) command.
generate configuration files as templates. (Please note debian/changelog, debian/control, debian/copyright, and debian/rules are bare minimum configuration files to build a Debian binary package.)
The number n determines which configuration templates are generated.
For a well behaving source, you can build a good-for-local-use installable single Debian binary package easily with one command. Test install of such a package generated in this way offers a good alternative to the traditional “make install” command installing into the /usr/local directory since the Debian package can be removed cleanly by the “dpkg -P …” command. Here are some examples of how to build such test packages. (These should work in most cases. If the -d option does not work, try the -t option instead.)
Для дерева исходного кода обычной программы на языке C с autoconf/automake:
For a typical Python (version 3) module source tree:
For a typical Python (version 3) module in the package-version.tar.gz archive:
Для обычного модуля языка Perl в виде архива пакет-версия.tar.gz:
Для работы над пакетами может потребоваться установка некоторых дополнительных специализированных вспомогательных пакетов.
Утилита debmake предназначена для создания шаблонных файлов в помощью сопровождающему пакета. Строчки с комментариями начинаются с символа # и содержат обучающий текст. Вам следует удалить или отредактировать строки с комментариями до выполнения загрузки пакета в архив Debian.
The license extraction and assignment process involves a lot of heuristics; it may fail in some cases. It is highly recommended to use other tools such as licensecheck from the devscripts package in conjunction with debmake.
There are some limitations for what characters may be used as a part of the Debian package. The most notable limitation is the prohibition of uppercase letters in the package name. Here is a summary as a set of regular expressions:
See the exact definition in Chapter 5 - Control files and their fields in the “Debian Policy Manual”.
debmake предполагает относительно простые случаи создания пакетов. Поэтому все программы, относящиеся е интерпретатору, считаются «Architecture: all». Тем не менее, это не всегда так.
Сообщения об ошибках отправляйте с помощью команды reportbug для пакета debmake.
Набор символов в переменной окружении $DEBUG определяет уровень вывода журнала.
Используйте эту переменную следующим образом:
$ DEBUG=pdfbmeclak debmake ...
Дополнительную информацию см. в файле README.developer.
Copyright © 2014-2021 Osamu Aoki <[email protected]>
The debmake-doc package provides the “Guide for Debian Maintainers” in plain text, HTML and PDF formats under the /usr/share/doc/debmake-doc/ directory.
See also dpkg-source(1), deb-control(5), debhelper(7), dh(1), dpkg-buildpackage(1), debuild(1), quilt(1), dpkg-depcheck(1), sbuild(1), gbp-buildpackage(1), and gbp-pq(1) manpages.