[pt-br] Update translation bits.
[tails-test.git] / wiki / src / contribute / release_process / tails-greeter.mdwn
blob7711ad2adff8d193e065468aefe963b317714578
1 [[!meta title="Releasing tails-greeter"]]
3 *Tails Greeter* is a native Debian package.
5 [[!toc levels=1]]
7 Update POT and PO files
8 =======================
10     ./setup.py build_i18n && \
11        (cd po && \
12            for po in *.po ; do msgmerge --update "$po" \
13            tails-greeter.pot ; done \
14        ) && \
15        git commit po -m 'Update POT and PO files.'
17 Update the Debian package
18 =========================
20 Checkout the correct branch:
22     git checkout master
24 Update `debian/changelog`:
26     git-dch
28 (Do not forget to set the appropriate release.)
30 Commit the changelog:
32     git commit debian/changelog -m "$(head -n 1 debian/changelog | sed -e 's,).*,),')"
34 Build a new Debian package (use a Wheezy/i386 chroot):
36     git-buildpackage
38 If everything is fine, tag the release and push the changes:
40     git-buildpackage --git-tag-only --git-sign-tags --git-keyid=$PGP_PUB_KEY && \
41     git push && git push --tags
43 Add the Debian package to Tails
44 ===============================
46 Sign the package:
48     debsign $CHANGES_FILE
50 Upload:
52     dupload --to tails $CHANGES_FILE