descriptionDebian Policy Manual and related documents
homepage URLhttp://wiki.debian.org/Teams/Policy
repository URLgit://git.debian.org/git/dbnpolicy/policy.git
ownerjrnieder@gmail.com
last changeFri, 8 Dec 2017 23:12:59 +0000 (8 16:12 -0700)
last refreshThu, 31 May 2018 15:26:07 +0000 (31 17:26 +0200)
content tags
add:
README.md

Format: complete Css: README.css Title: Debian Policy Author: Manoj Srivastava and Russ Allbery Email: debian-policy@packages.debian.org Link Home: https://wiki.debian.org/Teams/Policy Link Up: https://www.debian.org/

Debian Policy

Infrastructure

Interacting with the team

Debian Policy uses a formal procedure and a set of user tags to manage the lifecycle of change proposals. For definitions of those tags and proposal states and information about what the next step is for each phase, see Policy changes process.

Once the wording for a change has been finalized, please send a patch against the current Git master branch to the bug report, if you're not familiar with Git, the following commands are the basic process:

git clone git://anonscm.debian.org/dbnpolicy/policy.git
git checkout -b <local-branch-name>

# edit files, but don't make changes to upgrading-checklist or debian/changelog
git add <files>
git commit
# repeat as necessary

# update your branch against the current master
git checkout master
git pull

git checkout master
git merge --no-commit <local-branch-name>
git reset --hard HEAD;
git checkout <local-branch-name>;

# If there are changes in master that make the branch not apply cleanly,
# there should have been en error during the merge step above. If there
# was an error, merge the master branch into the local branch, fix the
# conflicts, and commit the new version of the local branch.
 : git merge master
# Edit files to remove conflict
 : git commit -s

# Checkout the local branch, to create the patch to send to the policy
git checkout <local-branch-name>
dir=$(mktemp -d)
git format-patch -o $dir -s master
# check out the patches created in $dir
git send-email --from "you <your@email>"             \
               --to debian-policy@lists.debian.org   \
               $dir/

<local-branch-name> is some convenient name designating your local changes. You may want to use some common prefix like local-. You can use git format-patch and git send-email if you want, but usually it's overkill.

Usual Roles

The Debian Policy team are official project delegates (see the DPL delegation). All of the Policy team members do basically the same work: shepherd proposals, propose wording, and merge changes when consensus has been reached. The current delegates are:

Task description

The Debian Policy team is responsible for maintaining and coordinating updates to the Debian Policy Manual and all the other policy documents released as part of the "debian-policy" package.

The Debian Policy Editors:

Everything else can be done by anyone, or any DD (depending on the outcome of the discussion about seconding). We explicitly want any Debian DD to review and second or object to proposals. The more participation, the better. Many other people are active on the Policy mailing list without being project delegates.

In addition to the main technical manual, the team currently also maintains:

These documents are maintained using the Policy changes process (see final appendix to policy), and the current state of all change proposals is tracked using the debian-policy BTS.

Get involved

The best way to help is to review the current open bugs, pick a bug that no one is currently shepherding (ask on debian-policy@lists.debian.org if you're not sure if a particular bug is being shepherded), and help it through the change process. This will involve guiding the discussion, seeking additional input (particularly from experts in the area being discussed), possibly raising the issue on other mailing lists, proposing or getting other people to propose specific wording changes, and writing diffs against the current Policy document. All of the steps of the Policy changes process can be done by people other than Policy team members except the final acceptance steps and almost every change can be worked on independently, so there's a lot of opportunity for people to help.

There are also some other, larger projects:

If you want to work on any of these projects, please mail debian-policy@lists.debian.org for more information. We'll be happy to help you get started.

Maintenance procedures

Repository layout

The Git repository used for Debian Policy has the following branches:

Managing a bug

The process used by Policy team members to manage a bug, once there is proposed wording, is:

The Git commands used for this workflow are:

git checkout -b bug12345-rra master
# edit files
# git add files
git commit
git push origin bug12345-rra
# iterate until good
# update your local master branch
git checkout master
git pull

git checkout master
git merge --no-commit bug12345-rra
git reset --hard HEAD;

# If there are changes in master that make the branch not apply cleanly,
# there should have been en error during the merge step above. If there
# was an error, merge the master branch into the local branch, fix the
# conflicts, and commit the new version of the local branch.
 : git checkout bug12345-rra
 : git merge master
# Edit files to remove conflict
 : git commit -s

git checkout master
git merge bug12345-rra
# edit debian/changelog and upgrading-checklist.xml
git add debian/changelog upgrading-checklist.xml
git commit
git push origin master
git branch -d bug12345-rra
git push origin :bug12345-rra

For the debian/changelog entry, use the following format:

* <document>: <brief change description>
  Wording: <author of wording>
  Seconded: <seconder>
  Seconded: <seconder>
  Closes: <bug numbers>

For example:

* Policy: better document version ranking and empty Debian revisions
  Wording: Russ Allbery <rra@debian.org>
  Seconded: Raphaƫl Hertzog <hertzog@debian.org>
  Seconded: Manoj Srivastava <srivasta@debian.org>
  Seconded: Guillem Jover <guillem@debian.org>
  Closes: #186700, #458910

Updating branches

After commits to master have been pushed, either by you or by another Policy team member, you will generally want to update your working bug branches. The equivalent of the following commands should do that:

for i in `git show-ref --heads | awk '{print $2}'`; do
    j=$(basename $i)
    if [ "$j" != "master" ]; then
        git checkout $j && git merge master
    fi
done
git push --all origin

assuming that you haven't packed the refs in your repository.

Making a release

For a final Policy release,

  1. dch -r to finalise changelog
  2. Update release date in the upgrading checklist
  3. Bump Standards-Version in d/control
  4. Commit these changes:

    git commit debian/changelog debian/control policy/upgrading-checklist.rst -m"finalise 3.9.8.0"

  5. Make sure the package builds and installs: dgit sbuild or equivalent

  6. Tag and upload: either

    • git tag -s 3.9.8.0 followed by dput; or
    • dgit push
     
  7. Push to alioth:

    git push --tags origin

  8. Announce on debian-devel-announce, including upgrading checklist section for new release

  9. Also consider a more informally-worded posting on a blog that is syndicated to planet.debian.org.

Setting release goals

Policy has a large bug backlog, and each bug against Policy tends to take considerable time and discussion to resolve. I've found it useful, when trying to find a place to start, to pick a manageable set of bugs and set as a target resolving them completely before the next Policy release. Resolving a bug means one of the following:

Anyone can pick bugs and work resolve them. The final determination to accept a wording change or reject a bug will be made by a Policy delegate, but if a patch is already written and seconded, or if a summary of why a bug is not ready to be acted on is already written, the work is much easier for the Policy delegate.

One of the best ways to help out is to pick one or two bugs (checking on the Policy list first), say that you'll make resolving them a goal for the next release, and guide the discussion until the bugs can reach one of the resolution states above.

shortlog
2017-12-08 Sean Whittonchangelog & upgrading checklist for CC0master
2017-12-08 Jeremy BichaAdd CC0-1.0 to common-licenses
2017-11-30 Sean Whittonrelease Policy 4.1.2.0archive/debian/4.1.2.0debian/4.1.2.0
2017-11-30 Sean Whittonadd another second
2017-11-30 Sean WhittonConvention for naming packages with potentially offensi...
2017-11-30 Sean Whittonadd a footnote documenting buildd handling of alternati...
2017-11-30 Sean WhittonPolicy: Update where private shared object files may...
2017-11-29 Sean Whittonadd another second
2017-11-29 Sean Whittonadd another second
2017-11-27 Sean Whittonadd a second
2017-10-24 Sean Whittontypo
2017-10-24 Sean Whittondrop (again)
2017-10-24 Sean Whittontighten sphinx-common build-dep
2017-10-24 Sean Whittondrop remaining dh_sphinxdoc workarounds
2017-10-15 Sean Whittonperl command script shebang must be /usr/bin/perl
2017-10-14 Sean Whittonchangelogbug683495-spwhitton
...
tags
6 years ago debian/4.1.2.0 debian-policy release 4.1.2.0 for...
6 years ago archive/debian/4.1.2.0 debian-policy release 4.1.2.0 for...
6 years ago debian/4.1.1.1 debian-policy release 4.1.1.1 for...
6 years ago archive/debian/4.1.1.1 debian-policy release 4.1.1.1 for...
6 years ago debian/4.1.1.0 debian-policy release 4.1.1.0 for...
6 years ago archive/debian/4.1.1.0 debian-policy release 4.1.1.0 for...
6 years ago debian/4.1.0.0 debian-policy release 4.1.0.0 for...
6 years ago archive/debian/4.1.0.0 debian-policy release 4.1.0.0 for...
6 years ago debian/4.0.1.0 debian-policy release 4.0.1.0 for...
6 years ago archive/debian/4.0.1.0 debian-policy release 4.0.1.0 for...
6 years ago debian/4.0.0.4 debian-policy release 4.0.0.4 for...
6 years ago archive/debian/4.0.0.4 debian-policy release 4.0.0.4 for...
6 years ago debian/4.0.0.3 debian-policy release 4.0.0.3 for...
6 years ago archive/debian/4.0.0.3 debian-policy release 4.0.0.3 for...
6 years ago debian/4.0.0.2 debian-policy release 4.0.0.2 for...
6 years ago archive/debian/4.0.0.2 debian-policy release 4.0.0.2 for...
...
heads
6 years ago master
6 years ago bug864615-spwhitton
6 years ago bug749826-spwhitton
6 years ago triage
6 years ago bug846970-spwhitton
6 years ago bug683495-spwhitton
6 years ago sphinxdoc
6 years ago bug601455-spwhitton
6 years ago bug610083-spwhitton
6 years ago bug688251-spwhitton
6 years ago bug682347-rra
6 years ago bug810381-rra
6 years ago bug683222-spwhitton
6 years ago rst-conversion
6 years ago bug798476-spwhitton
6 years ago bug835451-spwhitton
...