easybuild.tools.repository.gitrepo module¶
Repository tools
Git repository
Authors:
- Stijn De Weirdt (Ghent University)
- Dries Verdegem (Ghent University)
- Kenneth Hoste (Ghent University)
- Pieter De Baets (Ghent University)
- Jens Timmerman (Ghent University)
- Toon Willems (Ghent University)
- Ward Poelmans (Ghent University)
- Fotis Georgatos (Uni.Lu, NTUA)
-
class
easybuild.tools.repository.gitrepo.GitRepository(**kwargs)¶ Bases:
easybuild.tools.repository.filerepo.FileRepositoryClass for git repositories.
-
DESCRIPTION= "A non-empty bare git repository (created with 'git init --bare' or 'git clone --bare'). The 1st argument contains the git repository location, which can be a directory or an URL. The 2nd argument is a path inside the repository where to save the files."¶
-
USABLE= False¶
-
add_easyconfig(cfg, name, version, stats, previous_stats)¶ Add easyconfig to git repository
Parameters: - cfg – location of easyconfig file
- name – software name
- version – software install version, incl. toolchain & versionsuffix
- stats – build stats, to add to archived easyconfig
- previous_stats – list of previous build stats
Returns: location of archived easyconfig
-
add_patch(patch, name)¶ Add patch to git repository
Parameters: - patch – location of patch file
- name – software name
Returns: location of archived patch
-
cleanup()¶ Clean up git working copy.
-
commit(msg=None)¶ Commit working copy to git repository
-
create_working_copy()¶ Create git working copy.
-
setup_repo()¶ Set up git repository.
-
stage_file(path)¶ Stage file at specified location in repository for commit
Parameters: path – location of file to stage
-