~bzr/ubuntu/karmic/bzr-gtk/bzr-ppa

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python
# Update dependencies based on info.py
# Copyright (C) 2010 Jelmer Vernooij <jelmer@debian.org>
# Licensed under the GNU GPL, version 2 or later.

from debian.deb822 import Deb822, PkgRelation
import os, sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), ".."))

from info import bzr_minimum_version, bzr_maximum_version

def update_relation(l, pkg, kind, version):
    found = False
    for pr in l:
        for e in pr:
            if e["name"] == pkg and e["version"] and e["version"][0] == kind:
                e["version"] = (kind, version)
                found = True
    if not found:
        l.append([{"version": (kind, version), "name": pkg, "arch": None}])

f = open('debian/control', 'r')

source = Deb822(f)

def update_deps(control, field):
    bdi = PkgRelation.parse_relations(control[field])
    update_relation(bdi, "bzr", ">=", "%d.%d~" % bzr_minimum_version[:2])
    update_relation(bdi, "bzr", "<<", "%d.%d~" % (bzr_maximum_version[0], bzr_maximum_version[1]+1))
    control[field] = PkgRelation.str(bdi)

update_deps(source, "Build-Depends-Indep")

bzr_gtk_binary = Deb822(f)
update_deps(bzr_gtk_binary, "Depends")

nautilus_bzr_binary = Deb822(f)

f = open("debian/control", "w+")
try:
    source.dump(f)
    f.write("\n")
    bzr_gtk_binary.dump(f)
    f.write("\n")
    nautilus_bzr_binary.dump(f)
finally:
    f.close()