~ubuntu-branches/ubuntu/lucid/jhbuild/lucid

« back to all changes in this revision

Viewing changes to debian/control.in

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort, Loic Minier, Emilio Pozuelo Monfort
  • Date: 2009-11-09 20:28:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091109202848-m9ec7dmzptqtchtj
Tags: 2.28.0-1
[ Loic Minier ]
* Cleanups.
* Ship scripts.
* Don't set GNOME_MODULE as it equals the name of the source package.

[ Emilio Pozuelo Monfort ]
* New upstream release. Closes: #524504.
  - Use 'git rev-parse' rather than 'git-rev-parse'. Closes: #544642.
* Ship install-check. Closes: #441008.
* Uploaders list regenerated. Closes: #523542, #554071.
* debian/control.in,
  debian/rules:
  - Stop shipping a copy of subprocess.py. Require python >= 2.4.
  - Switch to python-support.
* debian/control.in:
  - Bump Standards-Version to 3.8.3, no changes needed.
  - Build depend on intltool >= 0.35.0.
  - Build depend on pkg-config, gnome-doc-utils and rarian-compat to build
    the documentation.
  - Make jhbuild arch any since install-check is a binary. Depend on
    ${shlibs:Depends}.
  - Recommend, and not suggest, git-core. Also recommend mercurial.
* debian/watch:
  - Added.
* debian/patches/01_import_from_pkgdatadir.patch:
  - Added, import jhbuild from pkgdatadir if everything else fails.
    This way we can ship the jhbuild private modules in /usr/sharejhbuild.
* debian/jhbuild.docs:
  - Removed, the necessary docs are now installed by the upstream Makefile.
* debian/rules:
  - Include autotools.mk and gnome.mk.
  - Remove all the manual build process, autotools.mk does everything now.
  - Install the jhbuild modules in /usr/share/jhbuild.
* debian/install:
  - Install the modulesets and patches from here since the upstream build
    system doesn't install them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
Maintainer: Loic Minier <lool@dooz.org>
5
5
Uploaders: @GNOME_TEAM@
6
6
Build-Depends: cdbs,
7
 
        debhelper (>= 5)
8
 
Build-Depends-Indep: python-central (>= 0.5.6),
9
 
        gnome-pkg-tools,
10
 
        xmlto
11
 
Standards-Version: 3.7.2
12
 
XS-Python-Version: >= 2.2
 
7
               debhelper (>= 5),
 
8
               python-support,
 
9
               gnome-pkg-tools,
 
10
               intltool (>= 0.35.0),
 
11
               pkg-config,
 
12
               gnome-doc-utils,
 
13
               rarian-compat
 
14
Standards-Version: 3.8.3
 
15
XS-Python-Version: >= 2.4
13
16
 
14
17
Package: jhbuild
15
 
Architecture: all
16
 
Depends: ${misc:Depends},
17
 
        ${python:Depends}
18
 
Recommends: cvs, subversion, bzr, patch, wget | curl, autoconf,
19
 
        automake, gettext, pkg-config
20
 
Suggests: tla, darcs, git-core, python-pygraphviz
21
 
XB-Python-Version: ${python:Versions}
 
18
Architecture: any
 
19
Depends: ${shlibs:Depends},
 
20
         ${misc:Depends},
 
21
         ${python:Depends}
 
22
Recommends: bzr,
 
23
            cvs,
 
24
            git-core,
 
25
            mercurial,
 
26
            subversion,
 
27
            patch,
 
28
            wget | curl,
 
29
            autoconf,
 
30
            automake,
 
31
            gettext,
 
32
            pkg-config
 
33
Suggests: tla,
 
34
          darcs,
 
35
          python-pygraphviz
22
36
Description: flexible build script for package collections
23
37
 Jhbuild is a program that can be used to pull a number of modules from
24
38
 CVS, Subversion, Bazaar and other types of repositories or from
30
44
 able to build a number of the modules in freedesktop.org's CVS.
31
45
 Extending it to handle new modules is usually trivial assuming the
32
46
 build infrastructure matches the other modules it handles.
33