Mercurial > treepkg
view recipes/kde_enterprise_4/base.py @ 303:df01eb4dbfc5
Check the URL of a working copy when updating a track's working copy.
The URL used to originally check out the working must still match the
one given in the configuration file. If it doesn't match, a
SubversionUrlMismatchError is raised.
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Thu, 26 Nov 2009 15:37:48 +0000 |
parents | 354fc60d90a4 |
children | 85eb9425c346 |
line wrap: on
line source
# Copyright (C) 2007, 2008, 2009 by Intevation GmbH # Authors: # Bernhard Herzog <bh@intevation.de> # # This program is free software under the GPL (>=v2) # Read the file COPYING coming with the software for details. """Base classes for all kdepim packagers""" import os import time import inspect import logging import treepkg.packager import treepkg.subversion import recipes.kde_enterprise_3_5.base as base35 class BaseSourcePackager(base35.BaseSourcePackager): changemsg_template = "Update to SVN enterprise4 branch rev. %(revision)d" BasePackageTrack = base35.BasePackageTrack def define_kdepim_packager(basename=None, external_subdirs=None): caller_globals = inspect.currentframe().f_back.f_globals SourcePackager = caller_globals.get("SourcePackager") if SourcePackager is None: class SourcePackager(BaseSourcePackager): pkg_basename = basename class RevisionPackager(treepkg.packager.RevisionPackager): source_packager_cls = SourcePackager class PackageTrack(BasePackageTrack): revision_packager_cls = RevisionPackager if external_subdirs is not None: svn_external_subdirs = external_subdirs caller_globals["PackageTrack"] = PackageTrack