From 2fb8a5ce037b33af5e292a5ae7e914bc8266a1af Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Jun 14 2014 02:55:52 +0000 Subject: skeleton init file defining commands, mark them all NotImplemented so we can enable them one-by-one --- diff --git a/src/centpkg/__init__.py b/src/centpkg/__init__.py new file mode 100644 index 0000000..f60209a --- /dev/null +++ b/src/centpkg/__init__.py @@ -0,0 +1,119 @@ +import pyrpkg + +from . import cli + +class Commands(pyrpkg.Commands): + def __init__(self, path, lookaside, lookasidehash, lookaside_cgi, + gitbaseurl, anongiturl, branchre, kojiconfig, + build_client, user=None, dist=None, target=None, + quiet=False): + + super(Commands,self).__init__(path, lookaside, lookasidehash, + lookaside_cgi, gitbaseurl, anongiturl, + branchre, kojiconfig, build_client, + user, dist, target, + quiet) + + + # These are the commands defined in the base pyrpkg.Commands class + def load_kojisession(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def add_tag(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def clean(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def clone(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def clone_with_dirs(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def commit(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def delete_tag(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def get_latest_commit(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def gitbuildhash(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def import_srpm(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def list_tag(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def new(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def patch(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def pull(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def push(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def sources(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def switch_branch(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def file_exists(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def upload_file(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def build(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def clog(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def compile(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def giturl(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def koji_upload(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def install(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def lint(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def local(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def mock_config(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def mockbuild(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def upload(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def prep(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def srpm(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def unused_patches(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg") + + def verify_files(self, *args, **kwargs): + raise NotImplementedError("This command is not yet implemented in centpkg")