Differences between revisions 3 and 88 (spanning 85 versions)
Revision 3 as of 2008-05-16 06:01:46
Size: 4466
Editor: JoeyHess
Comment:
Revision 88 as of 2011-06-17 09:23:07
Size: 5084
Editor: TimoLindfors
Comment: Using ~unrelease0 is no longer allowed, see http://wiki.debian.org/Games/Policy
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Git ==
The repositories for the packaging in git is stored in a different manner than they are under svn. Each package has its own git repository (and thus its own directory) under the /git/pkg-games directory on the alioth servers.
#language en
<<TableOfContents>>
Line 4: Line 4:
This guide assumes that you are uploading the packaging files for a package for the first time. The Debian Games Team currently uses either git or svn to help in maintaining packages. This page will help you get started in using either git or svn repositories.
Line 6: Line 6:
A separate section will describe how to import the packaging that was stored in the svn repository in the future. == Scheme ==
Line 8: Line 8:
=== Creating a git repository ===
First, create a repository in the /git/pkg-games directory on the alioth servers.
Most of the packages are independent from each other. In svn, a [trunk,tags,branches}/<package> scheme is used with only the debian directory stored. The .orig.tar.gz files in such a case are stored in /home/groups/pkg-games/htdocs/tarballs in the alioth servers. They can be accessed online at [[http://pkg-games.alioth.debian.org/tarballs]]. In git, each package has it's own repository. The contents of the orig tarball are stored directly within each package's repository, inside the 'upstream' branch. The {{{pristine-tar}}} program can be used to regenerate an orig tarball from the upstream branch.

== Setting up ==
The first thing to do is get an account on alioth.debian.org. Visit the following link.
 . http://alioth.debian.org/account/register.php

The next step is to join the team. Visit the Alioth page for the team and click on "request to join".
 . https://alioth.debian.org/projects/pkg-games/ [[https://alioth.debian.org/project/request.php?group_id=30862|direct link]]

Next, you will need an ssh key for each computer you plan on working on packages with. If you don't have a key on a particular system, create one.
Line 11: Line 19:
$ mkdir <package>.git
$ cd <package>.git
$ git --bare init --shared
$ ssh-keygen
Line 16: Line 22:
Now edit the 'description' file in the directory you just created to one that is appropriate for the package. This should have created an RSA key for SSH protocol 2 by default. Upload the contents of your public keys ({{{~/.ssh/id_rsa.pub}}}) to your account in Alioth. To do this, copy the contents of each public key for your machines and paste them at the following link.
 . https://alioth.debian.org/account/editsshkeys.php

Next, create an SSH configuration file ({{{~/.ssh/config}}}) for your user profile to work with the alioth servers. Here's how to do the following in a terminal session.
Line 18: Line 27:
$ echo "Packaging for <package>" >description $ cat >>~/.ssh/config <<EOF
Host svn.debian.org
        User <username>

Host git.debian.org
        User <username>

Host alioth.debian.org
        User <username>
EOF
Line 21: Line 39:
Let's also enable the use of 'hooks/post-update'. Now you should be able to logon from each of your machines by doing the following.
Line 23: Line 41:
$ chmod a+x hooks/post-update $ ssh svn.debian.org
$ ssh git.debian.org
$ ssh alioth.debian.org
}}}
Note: There's usually a one hour delay when uploading your ssh public keys. During this delay, you can still login with your password.

== mr ==

The mr command can be used to checkout, update, and commit to multiple repositories. In the svn+ssh://svn.debian.org/svn/pkg-games/mrconfig, is a .mrconfig file that configures mr for all the repositories used by the games team.

New git repositories should be added to this .mrconfig file.

To use it, install the mr package, and create a ~/.mrconfig file letting mr know about the pkg-games svn repository. In this example, it will be checked out to ~/src/packages/games, but you can modify to suit. If you already have a pkg-games svn checkout, you can change the directory to point to that. Note that the last field on the 'checkout' line ('games' in this instance) should match the last field of the configuration path ('src/packages/games').

{{{
[src/packages/games]
chain = true
checkout = svn co svn+ssh://svn.debian.org/svn/pkg-games/packages/trunk games
Line 26: Line 61:
Now we're done creating a repository for the package. You could also use the 'setup-repository' script that's in the pkg-games directory. That script is really a symlink to the script that's used in the collab-maint directory. Then run "mr checkout", which will checkout the svn repository into ~/src/packages/games. The checkout will be approximately 120MB.

A second "mr checkout" (necessary because of bug #447553) will checkout the additional git repositories, into subdirectories of ~/src/packages/games/. (As of 2010-08-14, the full debian-games repo was just under 6GB).

Now you can use mr to act on all configured repositories at once.

Update all repositories:
Line 28: Line 70:
./setup-repository <package> '<package description>' % mr update
Line 31: Line 73:
=== Uploading a package to the repository ===
Now let's import the package into a git repository. This is easy using 'git-import-dsc' from the 'git-buildpackage' package.
Get status of all checkouts:
Line 34: Line 76:
$ git-import-dsc --pristine-tar <package>.dsc % mr status
Line 37: Line 79:
(The --pristine-tar option is optional; if you have pristine-tar installed this will store enough information in the git repository to reproduce the pristine upstream tarball later.) List all repositories that mr knows about:
Line 39: Line 81:
A directory with the name of the source package should have been made. Change into that directory.
Line 41: Line 82:
$ cd <package> % mr list
Line 44: Line 85:
Ensure the tags that are created reflect if a package has been released. git-buildpackage creates tags for the debian branch and the upstream branch. If the tag created for the debian branch reflects an unreleased version, you'll have to delete that "debian" tag. Or even commit changes in each repository:
Line 46: Line 88:
$ git-tag -l
$ git-tag -d 'debian/<unreleased version>'
% mr commit
Line 50: Line 91:
Finally, push the repository up to the repository on alioth.
{{{
$ git-remote add alioth git+ssh://<username>@git.debian.org/git/pkg-games/<package>.git
$ git-push alioth master
$ git-push alioth upstream
$ git-push alioth pristine-tar
$ git-push alioth --tags
}}}
If you've added a new git repository in ~/src/packages/games/<foo> and are in that directory, you can have mr automatically add it to the pkg-games .mrconfig file by running "mr register". (Don't forget to commit the file.)
Line 59: Line 93:
(Again the pristine-tar step is optional.) == Git ==
Line 61: Line 95:
=== Accessing a repository ===
To get a repository, do the following.
{{{
$ git-clone git+ssh://<username>@git.debian.org/git/pkg-games/<package>.git
}}}
See [[Games/VCS/git]].
Line 67: Line 97:
You can also enjoy read-only access by using the following.
{{{
$ git-clone git://git.debian.org/git/pkg-games/<package>.git
$ git-clone http://git.debian.org/git/pkg-games/<package>.git
}}}
== SVN ==
Line 73: Line 99:
To view a summary of the repository on your favorite web browser, go to the following address.
{{{
http://git.debian.org/?p=pkg-games/<package>.git
}}}
See [[Games/VCS/svn]].
Line 78: Line 101:
=== Committing changes ===
To commit a change, first commit into your local repository.
{{{
$ git-commit -m "<some comment>"
}}}
== General Rules ==
 * If a package you're working on is for a particular version that has not been uploaded to the archive, you need to use 'UNRELEASED' as the suite in the changelog.
 * packages/ in the svn repo is for free games only. For games which should go to non-free, please use non-free/package/.
 * the SVN properties of the debian/ directory should point to the location where the orig.tar.gz file(s) can be fetched.
Line 84: Line 106:
You could also do a commit of all files that were changed using the '-a' option.
{{{
$ git-commit -a -m "<some comment>"
}}}

Push your changes.
{{{
$ git-push #If you cloned the repository
$ git-push alioth #If you created the repository using the above example
}}}

=== Updating ===
To keep updated simply do the following
{{{
$ git-pull #If you cloned the repository
$ git-pull alioth #If you created the repository using the above exmple
}}}

=== Tagging ===
To tag a release, you could build it using 'git-buildpackage' with the '--git-tag' option.
{{{
$ git-buildpackage --git-tag --pristine-tar
}}}

(As usual, the --pristine-tar bit is optional, but it will allow git-buildpackage to extract the pristine .orig.tar.gz.)

You could also manually tag the package. Ensure that you are in the correct branch (should be 'master').
{{{
$ git-checkout master
$ git-tag debian/<revision> -m "Debian release <revision>" #Please use this format
}}}

To tag an earlier revision, you'll need to find out it's commit object, then tag that object.
{{{
$ git-rev-list --pretty --since="1 month" --all #'1 month' is just an example of course
$ git-tag debian/<revision> <commit object> -m "Debian release <revision>"
}}}

Finally, push the tags
{{{
$ git-push --tags
}}}

=== See Also ===
 * [:Alioth/Git]
 * http://www.kernel.org/pub/software/scm/git/docs/
== See Also ==
 * [[Alioth/Git]]
 * http://www.kernel.org/pub/software/scm/git/docs/ - git Documentation
 * [[SmallSVNTutorial]]
 * [[Alioth/Svn]]
 * http://svnbook.red-bean.com/ - Subversion Documentation
 * [[http://www.hmug.org/man/5/ssh_config.php|ssh_config man page]] - Manual on OpenSSH SSH client configuration files
 * [[http://git.or.cz/gitwiki/GitCheatSheet]] - Git Cheat

The Debian Games Team currently uses either git or svn to help in maintaining packages. This page will help you get started in using either git or svn repositories.

Scheme

Most of the packages are independent from each other. In svn, a [trunk,tags,branches}/<package> scheme is used with only the debian directory stored. The .orig.tar.gz files in such a case are stored in /home/groups/pkg-games/htdocs/tarballs in the alioth servers. They can be accessed online at http://pkg-games.alioth.debian.org/tarballs. In git, each package has it's own repository. The contents of the orig tarball are stored directly within each package's repository, inside the 'upstream' branch. The pristine-tar program can be used to regenerate an orig tarball from the upstream branch.

Setting up

The first thing to do is get an account on alioth.debian.org. Visit the following link.

The next step is to join the team. Visit the Alioth page for the team and click on "request to join".

Next, you will need an ssh key for each computer you plan on working on packages with. If you don't have a key on a particular system, create one.

$ ssh-keygen

This should have created an RSA key for SSH protocol 2 by default. Upload the contents of your public keys (~/.ssh/id_rsa.pub) to your account in Alioth. To do this, copy the contents of each public key for your machines and paste them at the following link.

Next, create an SSH configuration file (~/.ssh/config) for your user profile to work with the alioth servers. Here's how to do the following in a terminal session.

$ cat >>~/.ssh/config <<EOF
Host svn.debian.org
        User <username>

Host git.debian.org
        User <username>

Host alioth.debian.org
        User <username>
EOF

Now you should be able to logon from each of your machines by doing the following.

$ ssh svn.debian.org
$ ssh git.debian.org
$ ssh alioth.debian.org

Note: There's usually a one hour delay when uploading your ssh public keys. During this delay, you can still login with your password.

mr

The mr command can be used to checkout, update, and commit to multiple repositories. In the svn+ssh://svn.debian.org/svn/pkg-games/mrconfig, is a .mrconfig file that configures mr for all the repositories used by the games team.

New git repositories should be added to this .mrconfig file.

To use it, install the mr package, and create a ~/.mrconfig file letting mr know about the pkg-games svn repository. In this example, it will be checked out to ~/src/packages/games, but you can modify to suit. If you already have a pkg-games svn checkout, you can change the directory to point to that. Note that the last field on the 'checkout' line ('games' in this instance) should match the last field of the configuration path ('src/packages/games').

[src/packages/games]
chain = true
checkout = svn co svn+ssh://svn.debian.org/svn/pkg-games/packages/trunk games

Then run "mr checkout", which will checkout the svn repository into ~/src/packages/games. The checkout will be approximately 120MB.

A second "mr checkout" (necessary because of bug #447553) will checkout the additional git repositories, into subdirectories of ~/src/packages/games/. (As of 2010-08-14, the full debian-games repo was just under 6GB).

Now you can use mr to act on all configured repositories at once.

Update all repositories:

% mr update

Get status of all checkouts:

% mr status

List all repositories that mr knows about:

% mr list

Or even commit changes in each repository:

% mr commit

If you've added a new git repository in ~/src/packages/games/<foo> and are in that directory, you can have mr automatically add it to the pkg-games .mrconfig file by running "mr register". (Don't forget to commit the file.)

Git

See Games/VCS/git.

SVN

See Games/VCS/svn.

General Rules

  • If a package you're working on is for a particular version that has not been uploaded to the archive, you need to use 'UNRELEASED' as the suite in the changelog.
  • packages/ in the svn repo is for free games only. For games which should go to non-free, please use non-free/package/.
  • the SVN properties of the debian/ directory should point to the location where the orig.tar.gz file(s) can be fetched.

See Also