1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 13:29:49 +00:00

buildhistory: Allow the version backwards check to be disabled

When the PR service is not enabled, the versions can go backwards and there
are cases we don't want to know about this. This patch adds a variable
allowing these checks to be turned off whilst still using buildhistory.

(From OE-Core rev: 49f33a42e93711c96fbb099f3e6ee7f092d7b356)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2013-03-03 13:07:18 +00:00
parent bd73fa69f5
commit f35ce02c5d
+10 -8
View File
@@ -14,6 +14,7 @@ BUILDHISTORY_DIR_PACKAGE = "${BUILDHISTORY_DIR}/packages/${MULTIMACH_TARGET_SYS}
BUILDHISTORY_COMMIT ?= "0" BUILDHISTORY_COMMIT ?= "0"
BUILDHISTORY_COMMIT_AUTHOR ?= "buildhistory <buildhistory@${DISTRO}>" BUILDHISTORY_COMMIT_AUTHOR ?= "buildhistory <buildhistory@${DISTRO}>"
BUILDHISTORY_PUSH_REPO ?= "" BUILDHISTORY_PUSH_REPO ?= ""
BUILDHISTORY_CHECKVERBACKWARDS ?= "1"
# Must inherit package first before changing PACKAGEFUNCS # Must inherit package first before changing PACKAGEFUNCS
inherit package inherit package
@@ -183,14 +184,15 @@ python buildhistory_emit_pkghistory() {
# Find out what the last version was # Find out what the last version was
# Make sure the version did not decrease # Make sure the version did not decrease
# #
lastversion = getlastpkgversion(pkg) if d.getVar("BUILDHISTORY_CHECKVERBACKWARDS", True) == "1":
if lastversion: lastversion = getlastpkgversion(pkg)
last_pkge = lastversion.pkge if lastversion:
last_pkgv = lastversion.pkgv last_pkge = lastversion.pkge
last_pkgr = lastversion.pkgr last_pkgv = lastversion.pkgv
r = bb.utils.vercmp((pkge, pkgv, pkgr), (last_pkge, last_pkgv, last_pkgr)) last_pkgr = lastversion.pkgr
if r < 0: r = bb.utils.vercmp((pkge, pkgv, pkgr), (last_pkge, last_pkgv, last_pkgr))
bb.error("Package version for package %s went backwards which would break package feeds from (%s:%s-%s to %s:%s-%s)" % (pkg, last_pkge, last_pkgv, last_pkgr, pkge, pkgv, pkgr)) if r < 0:
bb.error("Package version for package %s went backwards which would break package feeds from (%s:%s-%s to %s:%s-%s)" % (pkg, last_pkge, last_pkgv, last_pkgr, pkge, pkgv, pkgr))
pkginfo = PackageInfo(pkg) pkginfo = PackageInfo(pkg)
# Apparently the version can be different on a per-package basis (see Python) # Apparently the version can be different on a per-package basis (see Python)