diff options
| -rw-r--r-- | meta/classes/base.bbclass | 7 | ||||
| -rw-r--r-- | meta/conf/bitbake.conf | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index d4b11bc7a8..82ec0c9b82 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -549,6 +549,7 @@ python () { | |||
| 549 | elif pn in htincompatwl: | 549 | elif pn in htincompatwl: |
| 550 | bb.note("INCLUDING " + pn + " as buildable despite INCOMPATIBLE_LICENSE because it has been whitelisted for HOSTTOOLS") | 550 | bb.note("INCLUDING " + pn + " as buildable despite INCOMPATIBLE_LICENSE because it has been whitelisted for HOSTTOOLS") |
| 551 | 551 | ||
| 552 | needsrcrev = False | ||
| 552 | srcuri = d.getVar('SRC_URI', True) | 553 | srcuri = d.getVar('SRC_URI', True) |
| 553 | for uri in srcuri.split(): | 554 | for uri in srcuri.split(): |
| 554 | (scheme, _ , path) = bb.fetch.decodeurl(uri)[:3] | 555 | (scheme, _ , path) = bb.fetch.decodeurl(uri)[:3] |
| @@ -559,14 +560,17 @@ python () { | |||
| 559 | 560 | ||
| 560 | # Svn packages should DEPEND on subversion-native | 561 | # Svn packages should DEPEND on subversion-native |
| 561 | if scheme == "svn": | 562 | if scheme == "svn": |
| 563 | needsrcrev = True | ||
| 562 | d.appendVarFlag('do_fetch', 'depends', ' subversion-native:do_populate_sysroot') | 564 | d.appendVarFlag('do_fetch', 'depends', ' subversion-native:do_populate_sysroot') |
| 563 | 565 | ||
| 564 | # Git packages should DEPEND on git-native | 566 | # Git packages should DEPEND on git-native |
| 565 | elif scheme == "git": | 567 | elif scheme == "git": |
| 568 | needsrcrev = True | ||
| 566 | d.appendVarFlag('do_fetch', 'depends', ' git-native:do_populate_sysroot') | 569 | d.appendVarFlag('do_fetch', 'depends', ' git-native:do_populate_sysroot') |
| 567 | 570 | ||
| 568 | # Mercurial packages should DEPEND on mercurial-native | 571 | # Mercurial packages should DEPEND on mercurial-native |
| 569 | elif scheme == "hg": | 572 | elif scheme == "hg": |
| 573 | needsrcrev = True | ||
| 570 | d.appendVarFlag('do_fetch', 'depends', ' mercurial-native:do_populate_sysroot') | 574 | d.appendVarFlag('do_fetch', 'depends', ' mercurial-native:do_populate_sysroot') |
| 571 | 575 | ||
| 572 | # OSC packages should DEPEND on osc-native | 576 | # OSC packages should DEPEND on osc-native |
| @@ -593,6 +597,9 @@ python () { | |||
| 593 | elif path.endswith('.src.rpm'): | 597 | elif path.endswith('.src.rpm'): |
| 594 | d.appendVarFlag('do_unpack', 'depends', ' file-native:do_populate_sysroot') | 598 | d.appendVarFlag('do_unpack', 'depends', ' file-native:do_populate_sysroot') |
| 595 | 599 | ||
| 600 | if needsrcrev: | ||
| 601 | d.setVar("SRCPV", "${@bb.fetch2.get_srcrev(d)}") | ||
| 602 | |||
| 596 | set_packagetriplet(d) | 603 | set_packagetriplet(d) |
| 597 | 604 | ||
| 598 | # 'multimachine' handling | 605 | # 'multimachine' handling |
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b307f387c0..3837b1e982 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
| @@ -610,7 +610,8 @@ FETCHCMD_hg = "/usr/bin/env hg" | |||
| 610 | SRCDATE = "${DATE}" | 610 | SRCDATE = "${DATE}" |
| 611 | SRCREV ??= "INVALID" | 611 | SRCREV ??= "INVALID" |
| 612 | AUTOREV = "${@bb.fetch2.get_autorev(d)}" | 612 | AUTOREV = "${@bb.fetch2.get_autorev(d)}" |
| 613 | SRCPV = "${@bb.fetch2.get_srcrev(d)}" | 613 | # Set Dynamically in base.bbclass |
| 614 | # SRCPV = "${@bb.fetch2.get_srcrev(d)}" | ||
| 614 | SRCPV[vardepvalue] = "${SRCPV}" | 615 | SRCPV[vardepvalue] = "${SRCPV}" |
| 615 | 616 | ||
| 616 | SRC_URI = "" | 617 | SRC_URI = "" |
