diff options
author | Mike Frysinger <vapier@chromium.org> | 2018-03-28 22:33:34 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2018-03-28 22:33:57 -0400 |
commit | a7c23e549e15582d04a53f4ab7e3ed2a60b0070b (patch) | |
tree | a9d7f8790b42da7b8901eda1471f27020076e2b8 /eclass/git-2.eclass | |
parent | sys-apps/apply-default-acl: new version 0.4.0. (diff) | |
download | gentoo-a7c23e549e15582d04a53f4ab7e3ed2a60b0070b.tar.gz gentoo-a7c23e549e15582d04a53f4ab7e3ed2a60b0070b.tar.bz2 gentoo-a7c23e549e15582d04a53f4ab7e3ed2a60b0070b.zip |
eclass: misc spelling fixes
Diffstat (limited to 'eclass/git-2.eclass')
-rw-r--r-- | eclass/git-2.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/git-2.eclass b/eclass/git-2.eclass index 66e2fa2d0f08..63568c155775 100644 --- a/eclass/git-2.eclass +++ b/eclass/git-2.eclass @@ -6,7 +6,7 @@ # maintainer-needed@gentoo.org # @BLURB: Eclass for fetching and unpacking git repositories. # @DESCRIPTION: -# Eclass for easing maitenance of live ebuilds using git as remote repository. +# Eclass for easing maintenance of live ebuilds using git as remote repository. # Eclass support working with git submodules and branching. # # This eclass is DEPRECATED. Please use git-r3 instead. @@ -15,7 +15,7 @@ if [[ ${EAPI} == 6 ]]; then die "${ECLASS}.eclass is banned in EAPI ${EAPI}" fi -# This eclass support all EAPIs +# This eclass support all EAPIs. EXPORT_FUNCTIONS src_unpack DEPEND="dev-vcs/git" @@ -47,7 +47,7 @@ DEPEND="dev-vcs/git" # @ECLASS-VARIABLE: EGIT_MASTER # @DESCRIPTION: # Variable for specifying master branch. -# Usefull when upstream don't have master branch or name it differently. +# Useful when upstream don't have master branch or name it differently. # # EGIT_MASTER="master" @@ -62,7 +62,7 @@ DEPEND="dev-vcs/git" # @ECLASS-VARIABLE: EGIT_DIR # @DESCRIPTION: # Directory where we want to store the git data. -# This variable should not be overriden. +# This variable should not be overridden. # # EGIT_DIR="${EGIT_STORE_DIR}/${EGIT_PROJECT}" @@ -73,7 +73,7 @@ DEPEND="dev-vcs/git" # URI for the repository # e.g. http://foo, git://bar # -# It can be overriden via env using packagename_LIVE_REPO +# It can be overridden via env using packagename_LIVE_REPO # variable. # # Support multiple values: @@ -88,7 +88,7 @@ DEPEND="dev-vcs/git" # @ECLASS-VARIABLE: EGIT_BRANCH # @DESCRIPTION: # Variable containing branch name we want to check out. -# It can be overriden via env using packagename_LIVE_BRANCH +# It can be overridden via env using packagename_LIVE_BRANCH # variable. # # EGIT_BRANCH="${EGIT_MASTER}" @@ -96,7 +96,7 @@ DEPEND="dev-vcs/git" # @ECLASS-VARIABLE: EGIT_COMMIT # @DESCRIPTION: # Variable containing commit hash/tag we want to check out. -# It can be overriden via env using packagename_LIVE_COMMIT +# It can be overridden via env using packagename_LIVE_COMMIT # variable. # # EGIT_COMMIT="${EGIT_BRANCH}" @@ -125,7 +125,7 @@ DEPEND="dev-vcs/git" # @DEFAULT_UNSET # @DESCRIPTION: # If non-empty this variable bans unpacking of ${A} content into the srcdir. -# Default behaviour is to unpack ${A} content. +# Default behavior is to unpack ${A} content. # @FUNCTION: git-2_init_variables # @INTERNAL |