]> git.donarmstrong.com Git - debian/debian-policy.git/blob - README.org
Policy: Obsolete the DM-Upload-Allowed field.
[debian/debian-policy.git] / README.org
1 -*- mode: org; fill-column: 78 -*-
2 #+STARTUP: showall
3 #+STARTUP: lognotedone lognotestate
4 #+OPTIONS: H:4 toc:2
5 #+TITLE:  Debian Policy
6 #+AUTHOR: Manoj Srivastava And Russ Allbery
7 #+EMAIL: srivasta@debian.org
8 #+OPTIONS:   H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:nil skip:t d:nil tags:not-in-toc
9 #+LINK_HOME: http://wiki.debian.org/Teams/Policy
10 #+LINK_UP: http://www.debian.org/
11
12 \usepackage{landscape}
13
14 \setlength{\oddsidemargin}{0in}         % default=0in
15 \setlength{\textwidth}{9in}             % default=9in
16
17 \setlength{\columnsep}{0.5in}           % default=10pt
18 \setlength{\columnseprule}{1pt}         % default=0pt (no line)
19
20 \setlength{\textheight}{5.85in}         % default=5.15in
21 \setlength{\topmargin}{-0.15in}         % default=0.20in
22 \setlength{\headsep}{0.25in}            % default=0.35in
23
24 \setlength{\parskip}{1.2ex}
25 \setlength{\parindent}{0mm}
26 \pagestyle{empty}
27
28 \setlength{\headheight}{0pt}
29 \setlength{\headsep}{0pt}
30 \setlength{\footskip}{5pt}
31 \setlength{\textheight}{9.0in}
32 \setlength{\textwidth}{6.5in}
33
34
35 * Infrastructure
36
37 + Website:: http://www.debian.org/doc/devel-manuals#policy
38 + Mailing list:: debian-policy@lists.debian.org lists
39 + Source Code::
40   * git clone git://git.debian.org/git/dbnpolicy/policy.git
41   * Browser: http://git.debian.org/?p=dbnpolicy/policy.git 
42 + Unix group:: dbnpolicy
43 + Alioth Project:: http://alioth.debian.org/projects/dbnpolicy (exists
44   to manage the repository but not otherwise used)
45
46 ** Interacting with the team
47
48 + Email contact:: mailto:debian-policy@lists.debian.org
49 + Request tracker:: http://bugs.debian.org/src:debian-policy
50
51 Debian Policy uses a formal procedure and a set of user tags to manage
52 the lifecycle of change proposals. For definitions of those tags and
53 proposal states and information about what the next step is for each
54 phase, see [[./Process.org][Policy changes process]].
55
56 Once the wording for a change has been finalized, please send a patch
57 against the current Git master branch to the bug report, if you're not
58 familiar with Git, the following commands are the basic process:
59
60 #+BEGIN_SRC Sh
61 git clone git://git.debian.org/git/dbnpolicy/policy.git
62 git checkout -b <local-branch-name>
63
64 # edit files, but don't make changes to upgrading-checklist or debian/changelog
65 git add <files>
66 git commit
67 # repeat as necessary
68
69 # update your branch against the current master
70 git checkout master
71 git pull
72
73 git checkout master
74 git merge --no-commit <local-branch-name>
75 git reset --hard HEAD;
76 git checkout <local-branch-name>; 
77
78 # If there are changes in master that make the branch not apply cleanly, there
79 # should have been en error during the merge step above. If there was an
80 # error, merge the master branch into the local branch, fix the conflicts, and
81 # commit the new version of the local branch.
82  : git merge master
83 # Edit files to remove conflict
84  : git commit -s 
85
86 # Checkout the local branch, to create the patch to send to the policy
87 git checkout <local-branch-name>
88 dir=$(mktemp -d)
89 git format-patch -o $dir -s master
90 # check out the patches created in $dir
91 git send-email --from "you <your@email>"             \
92                --to debian-policy@lists.debian.org   \
93                $dir/
94 #+END_SRC
95
96 <local-branch-name> is some convenient name designating your local
97 changes. You may want to use some common prefix like local-. You can
98 use git format-patch and git send-email if you want, but usually it's
99 overkill.
100
101 * Usual Roles
102
103 The Debian Policy team are official project delegates (see the DPL
104 delegation). All of the Policy team members do basically the same
105 work: shepherd proposals, propose wording, and merge changes when
106 consensus has been reached. The current delegates are:
107
108 + Russ Allbery
109 + Bill Allombert
110 + Andrew McMillan
111 + Manoj Srivastava
112 + Colin Watson (cjwatson) 
113
114 The special tasks of Policy delegates are:
115
116 + Commit access to the Git repository and uploads of the debian-policy
117   package itself, which makes them responsible for debian-policy as a
118   package in Debian and for making final decisions about when a new
119   version is released and what bits go into it.
120 + Rejecting proposals. Anyone can argue against a proposal, but only
121   Policy delegates can formally reject it.
122 + Counting seconds and weighing objections to proposals to determine
123   whether the proposal has sufficient support to be included.
124
125 Everything else can be done by anyone, or any DD (depending on the
126 outcome of the discussion about seconding). We explicitly want any
127 Debian DD to review and second or object to proposals. The more
128 participation, the better. Many other people are active on the Policy
129 mailing list without being project delegates.
130
131 * Task description
132
133 The Debian Policy team is responsible for maintaining and coordinating
134 updates to the technical Policy manuals for the project. The primary
135 output of the team is the Debian Policy Manual and the assorted
136 subpolicies, released as the debian-policy Debian package and also
137 published at [[http://www.debian.org/doc/]].
138
139 In addition to the main technical manual, the team currently also maintains:
140
141 + [[http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/][Machine-readable debian/copyright format]]
142 + [[http://www.debian.org/doc/packaging-manuals/menu-policy/][Debian Menu sub-policy]]
143 + [[http://www.debian.org/doc/packaging-manuals/perl-policy/][Debian Perl Policy]]
144 + [[http://www.debian.org/doc/packaging-manuals/debconf_specification.html][Debconf Specification]]
145 + [[http://www.debian.org/doc/packaging-manuals/virtual-package-names-list.txt][Authoritative list of virtual package names ]]
146
147 These documents are maintained using the [[./Process.org][Policy changes process]], and
148 the current state of all change proposals is tracked using the
149 [[http://bugs.debian.org/src:debian-policy][debian-policy BTS]].
150
151 * Get involved
152
153 The best way to help is to review the [[http://bugs.debian.org/src:debian-policy][current open bugs]], pick a bug
154 that no one is currently shepherding (ask on
155 [[mailto:debian-policy@lists.debian.org][debian-policy@lists.debian.org]] if you're not sure if a particular bug
156 is being shepherded), and help it through the change process. This
157 will involve guiding the discussion, seeking additional input
158 (particularly from experts in the area being discussed), possibly
159 raising the issue on other mailing lists, proposing or getting other
160 people to propose specific wording changes, and writing diffs against
161 the current Policy document. All of the steps of [[./Process.org][Policy changes process]] 
162 can be done by people other than Policy team members except
163 the final acceptance steps and almost every change can be worked on
164 independently, so there's a lot of opportunity for people to help.
165
166 There are also some other, larger projects:
167
168 + Policy is currently maintained in DebianDoc-SGML, which is no longer
169   very actively maintained and isn't a widely used or understood
170   format. The most logical replacement would be DocBook. However,
171   DocBook is a huge language with many tags and options, making it
172   rather overwhelming. We badly need someone with DocBook experience
173   to write a style guide specifying exactly which tags should be used
174   and what they should be used for so that we can limit ourselves to
175   an easy-to-understand and documented subset of the language.
176 + Policy contains several appendices which are really documentation of
177   how parts of the dpkg system works rather than technical
178   Policy. Those appendices should be removed from the Policy document
179   and maintained elsewhere, probably as part of dpkg, and any Policy
180   statements in them moved into the main document. This project will
181   require reviewing the current contents of the appendices and feeding
182   the useful bits that aren't currently documented back to the dpkg
183   team as documentation patches.
184 + Policy has grown organically over the years and suffers from
185   organizational issues because of it. It also doesn't make use of the
186   abilities that a current XML language might give us, such as being
187   able to extract useful portions of the document (all *must*
188   directives, for example). There has been quite a bit of discussion
189   of a new format that would allow for this, probably as part of
190   switching to DocBook, but as yet such a reorganization and reworking
191   has not been started.
192
193 If you want to work on any of these projects, please mail
194 [[mailto:debian-policy@lists.debian.org][debian-policy@lists.debian.org ]] for more information. We'll be happy to
195 help you get started.
196
197 ** Maintenance procedures
198
199 ** Repository layout
200
201 The Git repository used for Debian Policy has the following branches:
202
203 +  master:: the current accepted changes that will be in the next release
204 +  bug<number>-<user>:: changes addressing bug <number>, shepherded by <user>
205 +  rra:: old history of Russ's arch repository, now frozen
206 +  srivasta:: old history of Manoj's arch repository 
207
208 ** Managing a bug
209
210 The process used by Policy team members to manage a bug, once there is
211 proposed wording, is:
212
213 + Create a bug<number>-<user> branch for the bug, where <number> is
214   the bug number in the BTS and <user> is a designator of the Policy
215   team member who is shepherding the bug.
216 + Commit wording changes in that branch until consensus is
217   achieved. Do not modify debian/changelog or upgrading-checklist.html
218   during this phase. Use the BTS to track who proposed the wording and
219   who seconded it.
220 + git pull master to make sure you have the latest version.
221 + Once the change has been approved by enough people, git merge the
222   branch into master immediately after making the final commit adding
223   the changelog entry to minimize conflicts.
224 + add the debian/changelog and upgrading-checklist.html changes, and
225   commit to master.
226 + Push master out so other people may merge in their own bug branches
227   without conflicts.
228 + Tag the bug as pending and remove other process tags.
229 + Delete the now-merged branch.
230
231 The Git commands used for this workflow are:
232 #+BEGIN_SRC Sh
233 git checkout -b bug12345-rra master
234 # edit files
235 # git add files
236 git commit
237 git push origin bug12345-rra
238 # iterate until good
239 # update your local master branch
240 git checkout master
241 git pull
242
243 git checkout master
244 git merge --no-commit bug12345-rra
245 git reset --hard HEAD;
246
247 # If there are changes in master that make the branch not apply cleanly, there
248 # should have been en error during the merge step above. If there was an
249 # error, merge the master branch into the local branch, fix the conflicts, and
250 # commit the new version of the local branch.
251  : git checkout bug12345-rra
252  : git merge master
253 # Edit files to remove conflict
254  : git commit -s 
255
256 git checkout master
257 git merge bug12345-rra
258 # edit debian/changelog and upgrading-checklist.html
259 git add debian/changelog upgrading-checklist.html
260 git commit
261 git push origin master
262 git branch -d bug12345-rra
263 git push origin :bug12345-rra
264 #+END_SRC
265
266 For the debian/changelog entry, use the following format:
267 #+BEGIN_EXAMPLE
268   * <document>: <brief change description>
269     Wording: <author of wording>
270     Seconded: <seconder>
271     Seconded: <seconder>
272     Closes: <bug numbers>
273 #+END_EXAMPLE
274
275 For example:
276 #+BEGIN_EXAMPLE
277   * Policy: better document version ranking and empty Debian revisions
278     Wording: Russ Allbery <rra@debian.org>
279     Seconded: RaphaĆ«l Hertzog <hertzog@debian.org>
280     Seconded: Manoj Srivastava <srivasta@debian.org>
281     Seconded: Guillem Jover <guillem@debian.org>
282     Closes: #186700, #458910
283 #+END_EXAMPLE
284
285 ** Updating branches
286
287 After commits to master have been pushed, either by you or by another
288 Policy team member, you will generally want to update your working bug
289 branches. The equivalent of the following commands should do that:
290
291 #+BEGIN_SRC Sh
292 for i in `git show-ref --heads | awk '{print $2}'`; do
293     j=$(basename $i)
294     if [ "$j" != "master" ]; then
295         git checkout $j && git merge master
296     fi
297 done
298 git push --all origin
299 #+END_SRC
300
301 assuming that you haven't packed the refs in your repository.
302
303 ** Making a release
304
305 For a final Policy release, change UNRELEASED to unstable in
306 debian/changelog and update the timestamp to match the final release
307 time (dch -r may be helpful for this), update the release date in
308 upgrading-checklist.html, update Standards-Version in debian/control,
309 and commit that change. Then do the final release build and make sure
310 that it builds and installs.
311
312 Then, tag the repository and push the final changes to Alioth:
313
314 #+BEGIN_SRC Sh
315 git tag -s v3.8.0.0
316 git push origin
317 git push --tags origin
318 #+END_SRC
319
320 replacing the version number with the version of the release, of course.
321
322 Finally, announce the new Policy release on debian-devel-announce,
323 including in the announcement the upgrading-checklist section for the
324 new release.
325
326 ** Setting release goals
327
328 Policy has a large bug backlog, and each bug against Policy tends to
329 take considerable time and discussion to resolve. I've found it
330 useful, when trying to find a place to start, to pick a manageable set
331 of bugs and set as a target resolving them completely before the next
332 Policy release. Resolving a bug means one of the following:
333
334 + Proposing new language to address the bug that's seconded and approved by
335   the readers of the Policy list following the [[./Progress.org][Policy changes process]] (or
336   that's accepted by one of the Policy delegates if the change isn't
337   normative; i.e., doesn't change the technical meaning of the document).
338 + Determining that the bug is not relevant to Policy and closing it.
339 + Determining that either there is no consensus that the bug indicates
340   a problem, that the solutions that we can currently come up with are
341   good solutions, or that Debian is ready for the change. These bugs
342   are tagged wontfix and then closed after a while. A lot of Policy
343   bugs fall into this category; just because it would be useful to
344   have a policy in some area doesn't mean that we're ready to make
345   one, and keeping the bugs open against Policy makes it difficult to
346   tell what requires work. If the problem is worth writing a policy
347   for, it will come up again later when hopefully the project
348   consensus is more mature.
349
350 Anyone can pick bugs and work resolve them. The final determination to
351 accept a wording change or reject a bug will be made by a Policy
352 delegate, but if a patch is already written and seconded, or if a
353 summary of why a bug is not ready to be acted on is already written,
354 the work is much easier for the Policy delegate.
355
356 One of the best ways to help out is to pick one or two bugs (checking
357 on the Policy list first), say that you'll make resolving them a goal
358 for the next release, and guide the discussion until the bugs can
359 reach one of the resolution states above.