This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
kaneton/export/modules/tarball.py
Mercier Pierre-Olivier fee4dd4e6d Initial snapshot
2013-02-11 22:04:30 +01:00

50 lines
1.5 KiB
Python

#
# ---------- header -----------------------------------------------------------
#
# project kaneton
#
# license kaneton
#
# file /home/mycure/kaneton/export/modules/tarball.py
#
# created francois goudal [sat oct 25 20:57:38 2008]
# updated julien quintard [sat feb 5 11:42:05 2011]
#
#
# ---------- imports ----------------------------------------------------------
#
import env
#
# ---------- functions --------------------------------------------------------
#
#
# module_init()
#
# called by export.py on startup, to discover the available actions
# returns an array of strings, the index 0 is the action name, and the
# others are the parameters required in the YAML file.
#
def module_init():
return ['tarball','filename']
#
# module_action(export_dir, arg)
#
# called by export.py when required by the YAML file.
# this function does the job of the action.
# arg contains the parameters required as specified in the module_init return
# value.
#
def module_action(export_dir, arg):
env.display(env.HEADER_OK, 'action tarball ' + arg['filename'], env.OPTION_NONE)
directory = env.cwd(env.OPTION_NONE)
env.cd(env.path(export_dir, env.OPTION_DIRECTORY), env.OPTION_NONE)
env.remove(env._EXPORT_DIR_ + "/output/" + arg['filename'] + ".tar.bz2", env.OPTION_NONE)
env.pack("kaneton", env._EXPORT_DIR_ + "/output/" + arg['filename'] + ".tar.bz2", env.OPTION_NONE)
env.cd(directory, env.OPTION_NONE)
return 0