summaryrefslogtreecommitdiffstats
path: root/meta-oe/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/classes')
-rw-r--r--meta-oe/classes/gitpkgv.bbclass12
1 files changed, 6 insertions, 6 deletions
diff --git a/meta-oe/classes/gitpkgv.bbclass b/meta-oe/classes/gitpkgv.bbclass
index cb2cea26be..5ab507969c 100644
--- a/meta-oe/classes/gitpkgv.bbclass
+++ b/meta-oe/classes/gitpkgv.bbclass
@@ -25,17 +25,17 @@
25# 25#
26# inherit gitpkgv 26# inherit gitpkgv
27# 27#
28# PV = "1.0+gitr${SRCPV}" # expands to something like 1.0+gitr3+4c1c21d7dbbf93b0df336994524313dfe0d4963b 28# PV = "1.0+git" # expands to 1.0+git
29# PKGV = "1.0+gitr${GITPKGV}" # expands also to something like 1.0+gitr31337+4c1c21d7d 29# PKGV = "1.0+git${GITPKGV}" # expands also to something like 1.0+git31337+4c1c21d7d
30# 30#
31# or 31# or
32# 32#
33# inherit gitpkgv 33# inherit gitpkgv
34# 34#
35# PV = "1.0+gitr${SRCPV}" # expands to something like 1.0+gitr3+4c1c21d7dbbf93b0df336994524313dfe0d4963b 35# PV = "1.0+git" # expands to 1.0+git
36# PKGV = "${GITPKGVTAG}" # expands to something like 1.0-31337+g4c1c21d 36# PKGV = "${GITPKGVTAG}" # expands to something like 1.0-31337+g4c1c21d
37# if there is tag v1.0 before this revision or 37# if there is tag v1.0 before this revision or
38# ver1.0-31337+g4c1c21d if there is tag ver1.0 38# ver1.0-31337+g4c1c21d if there is tag ver1.0
39 39
40GITPKGV = "${@get_git_pkgv(d, False)}" 40GITPKGV = "${@get_git_pkgv(d, False)}"
41GITPKGVTAG = "${@get_git_pkgv(d, True)}" 41GITPKGVTAG = "${@get_git_pkgv(d, True)}"