view recipes/kde_enterprise_3_5/kde_i18n.py @ 277:4441aff001ac

Use base.BaseSourcePackager for building enterprise 35 kde-i18n and rely on the base class do_package method.
author Bernhard Herzog <bh@intevation.de>
date Thu, 07 May 2009 16:02:23 +0000
parents 12facd1b5f19
children 860bb7269caa
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(base.BaseSourcePackager):

    """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 prepare_sources_for_tarball(self, pkgbasedir, pkgbaseversion):
        # We have to reuse the same directory when building the
        # orig.tar.gz.  However, we need to preserve the scripts
        # sub-directory because it's not needed for the kde-i18n-de
        # tarball but for the .orig.tar.gz.
        tarball = self.create_i18n_de_tarball(pkgbasedir, pkgbaseversion)
        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)
        os.rename(tarball, os.path.join(pkgbasedir,
                                        os.path.basename(tarball)))


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,))
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)