~ubuntu-branches/ubuntu/natty/jhbuild/natty

« back to all changes in this revision

Viewing changes to buildbot/Makefile.am

  • 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:
 
1
buildbotdir = $(pkgdatadir)/buildbot
 
2
 
 
3
buildbot_DATA = \
 
4
        master.cfg \
 
5
        template.html
 
6
 
 
7
buildbothtmldir = $(pkgdatadir)/buildbot/public_html
 
8
 
 
9
buildbothtml_DATA = \
 
10
        public_html/bar.png \
 
11
        public_html/building.png \
 
12
        public_html/cyan-bar.png \
 
13
        public_html/download.png \
 
14
        public_html/emptyimg.png \
 
15
        public_html/error.png \
 
16
        public_html/feed-atom.png \
 
17
        public_html/feed.png \
 
18
        public_html/figure.png \
 
19
        public_html/foot-16.png \
 
20
        public_html/foot.png \
 
21
        public_html/general_bg.png \
 
22
        public_html/general_separator.png \
 
23
        public_html/gnome-16.png \
 
24
        public_html/gnome-64.png \
 
25
        public_html/gnome-gtp.png \
 
26
        public_html/green-bar.png \
 
27
        public_html/idle.png \
 
28
        public_html/images.jpeg \
 
29
        public_html/index.html \
 
30
        public_html/info.png \
 
31
        public_html/lgo.css \
 
32
        public_html/logo.png \
 
33
        public_html/nobody.png \
 
34
        public_html/offline.png \
 
35
        public_html/purple-bar.png \
 
36
        public_html/red-bar.png \
 
37
        public_html/robot.png \
 
38
        public_html/robots.txt \
 
39
        public_html/star.png \
 
40
        public_html/t.png \
 
41
        public_html/tab_left.png \
 
42
        public_html/tab_right.png \
 
43
        public_html/top-header-gradient.png \
 
44
        public_html/warn.png \
 
45
        public_html/webpage.png
 
46
 
 
47
 
 
48
EXTRA_DIST = \
 
49
        AUTHORS \
 
50
        $(buildbot_DATA) \
 
51
        $(buildbothtml_DATA)
 
52