git - Debian Perl Group Packaging and Git Guide
This guide describes the procedures that the Debian Perl Group contributors use to maintain packages in the Git repositories on salsa.debian.org.
It covers the following tasks:
The guide is a work in progress. Different people tend to do things in different ways. If your way diverges, you may want to document it here so that others can benefit. Please send any comments or ideas to <debian-perl@lists.debian.org>.
For a more general guide to Git, see the Git User's Manual at https://www.kernel.org/pub/software/scm/git/docs/user-manual.html.
For an introduction to salsa.debian.org see https://wiki.debian.org/Salsa/Doc.
First, you need to install pkg-perl-tools. It contains a collection of scripts useful for the day to day work.
Each group package has its own Git repository.
If you are working with multiple packages,
then you will probably want to use mr(1) to manage the multiple Git repos involved.
For this workflow,
you'll need the helper perl scripts in the meta.git
repository.
Check out meta.git
repository with
$ cd $HOME/src $ git clone git@salsa.debian.org:perl-team/modules/meta.git
At this point it is a good time to configure dpt(1). Decide where you want to store the cloned repositories, and tell dpt about it. For example:
$ mkdir $HOME/src/pkg-perl/packages $ echo "DPT_PACKAGES=$HOME/src/pkg-perl/packages" >> $HOME/.config/dpt.conf
As outlined in dpt(1), you'll also need to add a private token for salsa. If you don't have one, or if you want a dedicated one for dpt, create it on https://salsa.debian.org/profile/personal_access_tokens (with the api and read_user scopes), and add it to your configuration:
$ echo "DPT_SALSA_PRIVATE_TOKEN=obviously-This-isnt-a-real-1" >> $HOME/.config/dpt.conf
Note: the meta.git
repository should be cloned in such a way that it contains the packages directory created above.
When called with --pkg-perl
options, dh-make-perl
populates a Git repository with master
, upstream
and pristine-tar
branches, and sets up an origin
remote pointing to Salsa.
dpt salsa pushrepo
creates and configures a new project on salsa and pushes the local repository there.
$ dh-make-perl [option] --pkg-perl --cpan Foo $ dpt salsa pushrepo
gbp import-dsc imports the source of a package into the Git repository. It operates on the .dsc
file and the associated source files.
Example of starting a new package from scratch:
$ mkdir libfoo-perl $ cd libfoo-perl $ git init $ gbp import-dsc --pristine-tar ../libfoo-perl_1.23-1.dsc
If the package is already in Debian and you want to add a bit of history to the repository, repeat the last command for all .dsc
files you have, in incremental version order. Alternatively you could use gbp import-dscs.
Note that dh-make-perl(1) has many options to make your life easier.
Attention: gbp-import-dsc(1) adds a debian/$version
tag. This one should not be pushed for new packages (but deleted, and later created after the first upload). - Since version 0.6.0, gbp-import-dsc(1) has a switch --skip-debian-tag to avoid creating the debian/$version
tag.
An alternative for a new package, as described in https://www.eyrie.org/~eagle/notes/debian/git.html ("Importing a package" -> "If you're instead starting from scratch ..."), is to create a new empty repository and then use dpt-import-orig(1), gbp-import-orig(1) and dh-make-perl(1).
If your package does not have a .dsc file you can use (running from the new empty repository):
$ gbp import-orig --pristine-tar ../libfoo-perl_1.23.orig.tar.gz
$ dpt checkout libfoo-perl
This will go to $DPT_PACKAGES/libfoo-perl and invoke gbp-pull(1). If the directory does not exist, gbp-clone(1) is used to create the initial clone.
You could do it manually, of course:
$ cd $HOME/src/pkg-perl/packages $ gbp clone --all --pristine-tar git@salsa.debian.org:perl-team/modules/packages/libfoo-perl.git
Add the following to your ~/.mrconfig, creating it if needed:
[src/pkg-perl] chain = true checkout = git clone git@salsa.debian.org:perl-team/modules/meta.git pkg-perl
Notes:
You then need to explicitly trust ~/src/pkg-perl/.mrconfig, by adding it to ~/.mrtrust, otherwise the chain
feature will be disabled for security reasons.
Now run mr up to clone the meta
repository, which contains another .mrconfig with some features and some helper scripts.
A second invocation of mr up clones all the repositories listed in meta
's .mrconfig, i.e. all git repositories in https://salsa.debian.org/perl-team/modules/packages.
For the adventurous:
mr --trust-all bootstrap https://salsa.debian.org/perl-team/modules/meta/raw/master/.mrconfig
does mostly the same, except that the authenticity and integrity of the initial .mrconfig is not checked in any way.
From here on, updating all repositories is a simple mr up
. You can use the -j/--jobs
option to update several repositories in parallel.
Note: Before pkg-perl-tools 0.46 it was necessary to run dpt salsa githashes manually before mr up
could detect that a repository needs updating. As this command may take several minutes to complete, some people prefer to run it daily from cron instead of interactively, or to put it into the meta.git section in ~/.mrconfig (or in some other place, actually):
[src/pkg-perl] chain = true checkout = git clone git@salsa.debian.org:perl-team/modules/meta.git pkg-perl include = echo "Updating hashes of perl-team repositories ..." >&2 && dpt salsa githashes -j $(nproc) || true
We're using the typical git-buildpackage branch layout: Upstream sources are kept (in plain, uncompressed form) in the upstream
branch. The data needed to regenerate original source tarballs from the upstream
branch is kept with the help of pristine-tar(1) in the pristine-tar
branch. Upstream sources are merged with Debian-specific changes in the master
branch, which is the usual place to work in.
From this point on, work on the package normally. Some prefer to update debian/changelog with each commit, others leave this to the gbp-dch(1) tool at package release time. In case you use gbp-dch(1) for the changelog entries, don't forget to use it when you stop working on the package.
Please read this section. The pkg-perl
repositories use some infrastructure that is set-up by the below methods. Non-pkg-perl
methods such as gbp-create-remote-repo
will not set up this infrastructure.
The first time you push, use:
$ dpt salsa pushrepo
This creates and sets up the repository on Salsa, and then pushes the local repository.
From then on, use dpt push
as usual or use mr(1) for committing, which also pushes the changes to the original repository on Salsa, mimicking the subversion commit behaviour at the expense of the ability to make amends, squashes and splits of commits (you still have to push any non-active branches or tags via git push
). -- Note that mr(1)'s feature to push-on-commit is turned off if you use our .mrconfig from the meta
repository as described above.
Use your favourite way of building the Debian package. If the source tarball is not in ../, check it out from the pristine-tar info (this is not needed if you use git-buildpackage(1) with the settings mentioned in Tips & tricks below):
$ pristine-orig
Or, if you want a version which is not on the top of debian/changelog, or you simply like to type a lot:
$ pristine-tar checkout ../libfoo-bar-perl_1.23_orig.tar.gz
This requires that you have the pristine-tar
branch current (e.g. via git fetch
or gbp-pull(1)).
After uploading, tag the release. The easiest way is to use debcommit(1) or gbp-tag(1):
$ debcommit -a -r $ gbp tag
Push the result afterwards:
$ dpt push
or
$ git push origin master upstream pristine-tar $ git push --tags
or
$ gbp push
Only official developers have permission to upload packages to the archive (see the Maintainers' Guide in https://www.debian.org/doc/manuals/maint-guide/upload.en.html).
In case you aren't an official developer, change the release from UNRELEASED
to unstable
(using dch -r
) and push the changes. The package will then be listed in the Ready For Upload section in PET and someone else will perform the upload on your behalf (or reset it back to UNRELEASED
and add TODO
items to the changelog, which you should watch out for and fix).
Note: PET is not functional anymore after the move to salsa.debian.org.
First make sure that the local repository is up to date, for example using gbp-pull(1).
If the Debian package has a debian/watch file you can use the uscan(1) tool to check for the latest upstream release and download it.
dpt-import-orig(1) is a wrapper around gbp-import-orig(1) which also tracks the upstream git repository. This is the simplest way to import a new upstream release:
$ dpt import-orig
gbp-import-orig(1), when used with its --uscan
option, acts as a frontend for uscan
:
$ gbp import-orig --uscan --pristine-tar
Basically, this command downloads the latest tarball and imports it into the Git repository: the new sources are imported into the upstream
branch, tarball data is put into the pristine-tar
branch, the upstream release is tagged and finally that tag is merged into the master
branch.
$ uscan
This downloads the latest tarball in ../ and symlinks it to the proper .orig.tar.gz (you can use the --rename
options of uscan to directly rename the tarball without symlinking). If the watch file is not present you have to download the tarball manually.
Then import the new upstream release in the git repository:
$ git fetch origin upstream:upstream pristine-tar:pristine-tar $ gbp import-orig --pristine-tar ../libfoo-bar-perl_2.00_orig.tar.gz
(Not needed when using dpt-import-orig(1).) Create a new debian/changelog stanza about the new upstream release:
$ dch -v2.00 'New upstream release'
This can be automated by the following configuration in ~/.gbp.conf:
[import-orig] # run hook after the import: postimport = gbp dch -N%(version)s -S -a --debian-branch=$GBP_BRANCH
Commit the changes so far:
$ debcommit -a -m'new upstream release 2.00'
Don't forget to share your work when ready:
$ dpt push
quilt(1) does a fine job managing patches, especially if using the 3.0 (quilt)
source format. See https://perl-team.pages.debian.net/howto/quilt.html for a guide. gbp-pq(1) can be used for treating the patches as a series of commits. See https://honk.sigxcpu.org/piki/development/debian_packages_in_git/
From time to time, there is a need to work in a branch for a stable update or a security fix. Things are simple:
First create a branch from the tag that represents the version currently in the archive:
$ git checkout -b squeeze debian/2.40-5
If the squeeze
branch already exists, check it out and merge the version currently in the archive:
$ git checkout squeeze $ git merge debian/2.40-5
From this point on, work normally in the squeeze
branch, build, tag and push.
For changes across many repos. Do them and
$ mr commit
from within the top directory of the repositories.
Since our global ~/.mrconfig redefines mr commit to not push to the repositories, don't forget to push afterwards:
$ mr push
Note: since KGB notifies now on #debian-perl-changes
, it is not mandatory (and probably not desirable) to disable KGB notifications before mass change anymore. If you want to do it anyway, you can use the following workflow:
$ dpt salsa kgb --all --off
$ <mr push>
$ dpt salsa kgb --all --on
This is true for any VCS, but it won't hurt saying it again: please include only one change in each commit. git-gui(1)'s and git add -p
's ability to stage single lines (or hunks) is a huge help if you have done several unrelated changes in the sources.
Some prefer to update debian/changelog with each commit, while others prefer to do that only at release time by using gbp-dch(1). The current group policy states that whenever you stop working on a package, the changelog should be updated and pushed. That is, either include the changelog entry with each commit, or finish your work by updating the changelog, e.g. via gbp-dch(1).
When there is the need to remove a package from the group you can either remove it completely (if added without ever being released) or move it to the attic sub-group. This can be only done by using salsa's web interface and needs owner
privileges.
When there is the need to rename a package from the group the project should be renamed as well. This can only be done by using salsa's web interface.
One of the annoying things about git-buildpackage is that when you check out a package using the git+ssh
protocol, it asks for your password pretty often when building, about 25 times. This tends to get annoying by the second time you have to type in your password. To avoid this, upload your public SSH key in the account area (https://salsa.debian.org/profile/keys).
To avoid typing even the public key passphrase you may want to run SSH agent (see ssh-agent(1), included in the openssh-client
package).
git-buildpackage(1) has a configuration file which can save some typing on each command. The pristine-tar
option is particularly handy.
An example of configuration file:
[DEFAULT] pristine-tar = True sign-tags = True
This may be stored for example in ~/.gbp.conf (per user configuration), in debian/gbp.conf (per branch configuration) or in .git/gbp.conf (per repository configuration).
If using the 3.0 (quilt)
source format, it may also be handy to add the .pc directory to the .gitignore file. To do this globally, you may use the following:
git config --global --add core.excludesfile ~/.gitignore echo '/.pc/' >> ~/.gitignore
(If you have a Git repository in your home, you probably want to use something else than ~/.gitignore for the global excludes file).
Sometimes the upstream tarball contains files that change the behaviour of git or mess with the debian directory in unexpected ways. These can be excluded on import with the following settings in ~/.gbp.conf, or, for the benefit of others, in debian/.gbp.conf:
[import-orig] filter = [ '.gitignore', 'debian/*', '.git/*', '.git' ] [import-dsc] filter = [ '.gitignore', '.git/*', '.git' ]
Take a look at dpt(1) and the other scripts in the pkg-perl-tools package.
Git is detached. This is very good, when you happen to work mainly offline or on the road. The problem is not to forget to publish your work at some point in time :)
Various shell hooks that change the prompt may be of help.
Copyright (c) 2010-2018 by the individual authors and contributors noted above. All rights reserved. This document is free software; you may redistribute it and/or modify it under the same terms as Perl itself
Perl is distributed under your choice of the GNU General Public License version 1 or later or the Artistic License. On Debian systems, the complete text of the GNU General Public License version 1 can be found in `/usr/share/common-licenses/GPL-1' and the Artistic License in `/usr/share/common-licenses/Artistic'.