Mercurial > treepkg
view recipes/kde_enterprise_3_5/kde_i18n.py @ 274:2676abfc0e1d
Refactoring: Implement do_package in treepkg.packager.SourcePackager.
The actual implementation in the derived classes is almost identical in
all cases so it's better to have as much of the implementation in the
base class. The update_version_numbers method is not called directly by
the base class code so is removed from the base class. OTOH,
prepare_sources_for_tarball has been added as a more general variant of
update_version_numbers that is actually called by the default
implementation of do_package.
author | Bernhard Herzog <bh@intevation.de> |
---|---|
date | Thu, 07 May 2009 15:19:15 +0000 |
parents | 12facd1b5f19 |
children | 4441aff001ac |
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. import os import logging import shutil import time import treepkg.packager import treepkg.util import treepkg.run as run from treepkg.cmdexpand import cmdexpand import base class SourcePackager(treepkg.packager.SourcePackager): """Creates the debian source package for the i18n files This is quite complicated. The orig.tar.gz file of the debian source package contains one .tar.bz2 file for every language. Those .tar.bz files are the kde-18n-<lang> files released by the KDE project. For now, we only have the German localization in the enterprise source package, so the orig.tar.gz file will have the following contents: kde-i18n-<version>/ kde-i18n-<version>/kde-i18n-de-<version>.tar.bz2 <version> is the same everywhere. The kde-i18n-de tarball contains the localization files for the entire KDE project, including KDE-PIM. The SVN enterprise branch only contains the localizations for KDE-PIM, though, so we have to assemble a new .tar.bz2 from an original kde-i18n-de-<version>.tar.bz and the new files from the enterprise branch. """ pkg_basename = "kde-i18n" def determine_package_version(self, directory): enterprise_version = (time.strftime("%Y%m%d", time.localtime()) \ + "." + str(self.revision)) kdepimversion = "3.5.5" version_template = "%(kdepimversion)s.enterprise.0.%(enterprise_version)s" return version_template % locals() def unpack_orig_tarball(self): orig_tarball = self.track.orig_tarball run.call(cmdexpand("tar xjf $tarball -C $directory", tarball=orig_tarball, directory=self.work_dir)) tarbasename = os.path.basename(orig_tarball) splitext = os.path.splitext return os.path.join(self.work_dir, splitext(splitext(tarbasename)[0])[0]) def create_i18n_de_tarball(self, pkgbasedir, pkgbaseversion): """Creates a new kde-i18n-de tarball and returns its filename This is the tarball as it would be released by KDE. It is not yet the tarball that will become the .orig.tar.gz for the debian package. """ logging.info("Creating kde-i18n-de tarball") untarred_dir = self.unpack_orig_tarball() new_de_dir = os.path.join(pkgbasedir, "new-de") de_dir = os.path.join(pkgbasedir, "de") os.rename(de_dir, new_de_dir) treepkg.util.copytree(untarred_dir, de_dir) treepkg.util.copytree(new_de_dir, de_dir) logging.info("Running scripts/autogen.sh for kde-i18n-de tarball") run.call(cmdexpand("/bin/sh scripts/autogen.sh de"), cwd=pkgbasedir, suppress_output=True) tarballdir = "kde-i18n-de-" + pkgbaseversion os.rename(de_dir, os.path.join(pkgbasedir, tarballdir)) tarball = os.path.join(os.path.dirname(pkgbasedir), tarballdir + ".tar.bz2") run.call(cmdexpand("tar cjf $tarball -C $pkgbasedir $tarballdir", **locals())) logging.info("Created kde-i18n-de tarball") return tarball def do_package(self): # Create a new kde-i18n-de tarball from current SVN and the base # kde-i18n-de tarball. pkgbaseversion, pkgbasedir = self.export_sources() tarball = self.create_i18n_de_tarball(pkgbasedir, pkgbaseversion) # We have to reuse the same directory when building the # orig.tar.gz. However, we need to preserver the scripts # sub-directory because it's not needed for the kde-i18n-de # tarball but for the .orig.tar.gz. pkg_scripts_dir = os.path.join(pkgbasedir, "scripts") tmp_scripts_dir = os.path.join(self.work_dir, "scripts") os.rename(pkg_scripts_dir, tmp_scripts_dir) shutil.rmtree(pkgbasedir) os.mkdir(pkgbasedir) os.rename(tmp_scripts_dir, pkg_scripts_dir) pkgbasename = self.pkg_basename + "_" + pkgbaseversion origtargz = os.path.join(self.work_dir, pkgbasename + ".orig.tar.gz") os.rename(tarball, os.path.join(pkgbasedir, os.path.basename(tarball))) self.create_tarball(origtargz, self.work_dir, os.path.basename(pkgbasedir)) changemsg = ("Update to SVN enterprise branch rev. %d" % (self.revision,)) self.copy_debian_directory(pkgbasedir, pkgbaseversion, changemsg) self.create_source_package(pkgbasedir, origtargz) self.move_source_package(pkgbasename) class RevisionPackager(treepkg.packager.RevisionPackager): source_packager_cls = SourcePackager class PackageTrack(base.BasePackageTrack): revision_packager_cls = RevisionPackager svn_external_subdirs = ["scripts", "scripts/admin", "documentation/kdepim"] extra_config_desc = base.BasePackageTrack.extra_config_desc \ + ["orig_tarball"] def __init__(self, *args, **kw): self.orig_tarball = kw.pop("orig_tarball") super(PackageTrack, self).__init__(*args, **kw) def init_treepkg(self): super(PackageTrack, self).init_treepkg() if not os.path.exists(self.orig_tarball): print ("TODO: The orig_tarball %s still has to be created" % (self.orig_tarball,))