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
|
// vim:set filetype=asciidoc:
= Guide for Debian Maintainers
:Author: Osamu Aoki
:Email: osamu@debian.org
:Date: @@@debdate@@@
:Revision: @@@debversion@@@
:encoding: UTF-8
// The above date and revision are only used by testing HTML test page within
// this directory.
//
// head.txt generated from 00-terms.txt[] replaces corresponding part. Thus
// date comes from there.
//####include::00-terms.txt[]
// asciidoc output docbook 4.5 entity but the first conversion creates
// the real UTF-8 output in the XML base file.
//
// ASCIIDOC SOURCE STYLE GUIDE
// ' : leave it to asciidoc to convert to ’ U+2019
// use for for let's, doesn't don't can't *'s *s' o'clock we'll
// U+2019 RIGHT SINGLE QUOTATION MARK (NYT,arstechnica.com, PDF of US.GOV) **
// U+0027 APOSTROPHE (Wikipedia.org)
// U+2032 PRIME
// "quoted text" : avoid using this except in code section
//
// "`quoted text`" : leave it to asciidoc to convert to “quoted text”
// U+201C LEFT DOUBLE QUOTATION MARK
// U+201D RIGHT DOUBLE QUOTATION MARK
// `quoted text' : leave it to asciidoc to convert to ‘quoted text’
// U+2018 LEFT SINGLE QUOTATION MARK
// U+2019 RIGHT SINGLE QUOTATION MARK
//
// Problem with LEFT and RIGHT SINGLE QUOTATION MARKs
// * xetex treat it as full width CJK char.
// * All Japanese character treats these as double width chars.
[[preface]]
== Preface
include::01-preface.txt[]
[[overview]]
== Overview
include::02-overview.txt[]
// [[start]]
// == Prerequisites
include::10-prereq.txt[]
// [[setup]]
// == Tool Setups
include::12-setups.txt[]
// [[simple]]
// == Simple Example
include::14-simpledeb.txt[]
// [[basics]]
// == Basics
include::20-workflow.txt[]
include::21-version.txt[]
include::22-rules.txt[]
include::23-control.txt[]
include::25-changelog.txt[]
include::26-copyright.txt[]
include::27-patches.txt[]
include::28-keyconf.txt[]
include::29-otherconf.txt[]
include::30-quality.txt[]
include::31-sanitize.txt[]
// [[more]]
// == More on packaging
include::32-more.txt[]
include::34-advanced.txt[]
include::38-git.txt[]
// [[tips]]
// == Tips
include::40-tips.txt[]
// [[tools]]
// == Tools
include::60-tools.txt[]
// [[more]]
// == More Examples
include::70-example.txt[]
include::71-emptypkg.txt[]
include::72-nomake.txt[]
include::73-makesh.txt[]
include::74-pyproject.txt[]
include::75-makesh-gui.txt[]
include::76-pyproject-gui.txt[]
include::77-make.txt[]
include::78-configure.txt[]
include::79-autotools.txt[]
include::80-cmake.txt[]
include::81-libautotools.txt[]
include::82-libcmake.txt[]
include::83-i18n.txt[]
include::84-details.txt[]
[[manpage]]
include::90-manpage.txt[]
// [[options]]
// == debmake options
include::95-options.txt[]
|