Differences between revisions 26 and 27
Revision 26 as of 2006-06-13 15:52:09
Size: 3840
Comment:
Revision 27 as of 2006-09-08 06:31:53
Size: 4166
Editor: ?VagrantCascadian
Comment: added todo items, updated urls, mention new release
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
We use [http://bazaar-ng.org Bazaar-NG] (aka. bzr) to develop the LTSP that is being in use by Debian. To avoid confusion, we use this page to track what we need to do and also the available bzr branches. We use [http://bazaar-vcs.org Bazaar-NG] (aka. bzr) to develop the LTSP that is being in use by Debian. To avoid confusion, we use this page to track what we need to do and also the available bzr branches.
Line 11: Line 11:
 * '''20060903''' package version 0.93debian1 made it into etch. many improvements to the plugins system, and many bugs fixed.
Line 17: Line 18:
 * fix outstanding [http://bugs.debian.org/src:ltsp bugs]
 * upload [http://packages.ubuntu.com/ltspfs ltspfs] and [http://packages.ubuntu.com/ltspfsd ltspfsd] to debian for local device support

pkg-ltsp Development Page

pkg-ltsp is the Debian "[http://wiki.ltsp.org/twiki/bin/view/Ltsp/MueKow ltsp muekow]" project. It was started recently to tie the best of ltsp Debian and Ubuntu packages, aiming build up a better Debian (and of course Ubuntu too) distribution for thin-client/server environment.

We use [http://bazaar-vcs.org Bazaar-NG] (aka. bzr) to develop the LTSP that is being in use by Debian. To avoid confusion, we use this page to track what we need to do and also the available bzr branches.

Project page: [http://alioth.debian.org/projects/pkg-ltsp]

NEWS

TODO List for the next Debian ltsp release

TODO List for general development

  • Merge all Ogra's branches to allow us to share more code with Ubuntu;

Available Branches

Name

Location

Notes

pkg-ltsp's main

http://pkg-ltsp.alioth.debian.org/bzr/main

official repository

otavio's main

http://projetos.ossystems.com.br/~otavio/bzr/ltsp/main

otavio's for-merge

http://projetos.ossystems.com.br/~otavio/bzr/ltsp/for-merge

pere's main

http://developer.skolelinux.no/~pere/bzr-archives/ltsp-main/

vagrant's main

http://llama.freegeek.org/~vagrant/bzr-archives/ltsp/vagrant-main/

stratus's main

http://pkg-ltsp.alioth.debian.org/bzr/people-stratus/

shared repo

ubuntu's devel

http://people.ubuntu.com/~ogra/bzr-archive/ltsp/devel/

ubuntu mainline

mdz's main

http://people.ubuntu.com/~mdz/bazaar/ltsp/main/

ogra's dapper

http://people.ubuntu.com/~ogra/bzr-archive/ltsp/dapper/

Please note that if you want to help us, you should install bzr debian package, get bzr pkg-ltsp tree (use bzr-get and the location above) and contact us through [http://lists.alioth.debian.org/mailman/listinfo/pkg-ltsp-devel pkg-ltsp mailing list].

How do I merge changes back to the main branch?

The main branch is pkg-ltsp official repository (see above).

It's easy when you're using bzr. You'll need an account on Alioth that is in the pkg-ltsp group. To prepare the branch that you want to merge, first you should pull any remaining changes on the main branch that you haven't yet merged, resolve conflicts, and then use bzr push to send them back to Alioth.

For example:

If you're using bzr 0.7 and prior:

$: bzr branch http://pkg-ltsp.alioth.debian.org/bzr/main
$: cd for-merge
$: bzr push ../main
$: cd ../main
$: bzr push sftp://alioth.debian.org/var/lib/gforge/chroot/home/groups/pkg-ltsp/htdocs/bzr/main

or, if you're using bzr 0.8 or newer:

$: bzr checkout sftp://alioth.debian.org/var/lib/gforge/chroot/home/groups/pkg-ltsp/htdocs/bzr/main ltsp-main
$: bzr branch ltsp-main my-example-branch
$: cd my-example-branch
(hack on it, commit and do what you need)
$: bzr push ../ltsp-main


CategoryDeveloper