Mercurial > treepkg
annotate recipes/kde/enterprise/branch_4/kdepim.py @ 557:9824e409388b
Refactor git branching
If a checkout is already available and the branch is changed in
the config git command would always fail because it doesn't know
the branch to track. Therefore always check if the branch is
locally available and if not checkout the remote branch
author | Bjoern Ricks <bricks@intevation.de> |
---|---|
date | Fri, 02 Sep 2011 08:45:28 +0000 |
parents | cb006b23b1a7 |
children |
rev | line source |
---|---|
316
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
1 # Copyright (C) 2007, 2008, 2009 by Intevation GmbH |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
2 # Authors: |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
3 # Bernhard Herzog <bh@intevation.de> |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
4 # |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
5 # This program is free software under the GPL (>=v2) |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
6 # Read the file COPYING coming with the software for details. |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
7 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
8 """Build kdepim debian packages from the kdepim/enterprise4 branch. |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
9 """ |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
10 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
11 import os |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
12 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
13 import treepkg.util |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
14 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
15 import recipes.kde.enterprise.generic as generic |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
16 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
17 |
317 | 18 class SourcePackager(generic.SourcePackager): |
316
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
19 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
20 def update_version_numbers(self, pkgbasedir): |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
21 """Overrides the inherited method to update version numbers in the code |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
22 """ |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
23 versionstring = "(enterprise4 %s)" % self.enterprise_version |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
24 failed = [] |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
25 for versionfile in ["kaddressbook/kabcore.cpp", |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
26 "kmail/kmversion.h", |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
27 "kontact/src/main.cpp", |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
28 "korganizer/version.h"]: |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
29 if not treepkg.util.replace_in_file(os.path.join(pkgbasedir, |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
30 versionfile), |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
31 "\(enterprise4 ([^)]*)\)", |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
32 versionstring): |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
33 failed.append(versionfile) |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
34 if failed: |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
35 raise RuntimeError("kdepim: failed to update version numbers in %s" |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
36 % (", ".join(failed),)) |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
37 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
38 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
39 class RevisionPackager(generic.RevisionPackager): |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
40 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
41 source_packager_cls = SourcePackager |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
42 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
43 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
44 class PackageTrack(generic.PackageTrack): |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
45 |
ff24648050cf
Copy the enterprise 4 packagers to the refactored kde enterprise
Bernhard Herzog <bh@intevation.de>
parents:
diff
changeset
|
46 revision_packager_cls = RevisionPackager |