packetary/packetary/cli/commands/clone.py

73 lines
2.3 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2015 Mirantis, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from packetary.cli.commands.base import BaseRepoCommand
from packetary.cli.commands.base import PackagesMixin
from packetary.cli.commands.base import RepositoriesMixin
class CloneCommand(PackagesMixin, RepositoriesMixin, BaseRepoCommand):
"""Clones the specified repository to local folder."""
def get_parser(self, prog_name):
parser = super(CloneCommand, self).get_parser(prog_name)
parser.add_argument(
"-d", "--destination",
required=True,
help="The path to the destination folder."
)
parser.add_argument(
"--sources",
action='store_true',
default=False,
help="Also copy source packages."
)
parser.add_argument(
"--locales",
action='store_true',
default=False,
help="Also copy localisation files."
)
return parser
def take_repo_action(self, api, parsed_args):
stat = api.clone_repositories(
parsed_args.repositories,
parsed_args.requirements,
parsed_args.destination,
parsed_args.sources,
parsed_args.locales,
parsed_args.include_mandatory,
filter_data=parsed_args.exclude_filter_data,
)
self.stdout.write(
"Packages copied: {0.copied}/{0.total}.\n".format(stat)
)
def debug(argv=None):
"""Helper to debug the Clone command."""
from packetary.cli.app import debug
debug("clone", CloneCommand, argv)
if __name__ == "__main__":
debug()