mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00
recipes/classes/scripts: Drop SRCPV usage in OE-Core
Now that SRCPV isn't needed we can simplify things in a few places... (From OE-Core rev: 843f82a246a535c353e08072f252d1dc78217872) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
62afa02d01
commit
65318019cd
|
@ -8,7 +8,7 @@ DEPENDS = "dbus"
|
|||
|
||||
# Note: this is intentionally not the latest version in the original .bb
|
||||
SRCREV = "1a3e1343761b30750bed70e0fd688f6d3c7b3717"
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
PR = "r2"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/dbus-wait;branch=master"
|
||||
|
|
|
@ -8,7 +8,7 @@ DEPENDS = "dbus"
|
|||
|
||||
# Note: this is intentionally not the latest version in the original .bb
|
||||
SRCREV = "6cc6077a36fe2648a5f993fe7c16c9632f946517"
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/dbus-wait;branch=master"
|
||||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
|
|
|
@ -2,4 +2,4 @@ require gitunpackoffline.inc
|
|||
|
||||
TAGVALUE = "2.11"
|
||||
|
||||
PV = "0.0+git${SRCPV}"
|
||||
PV = "0.0+git"
|
||||
|
|
|
@ -64,7 +64,7 @@ LINUX_VERSION_EXTENSION:append = "-custom"
|
|||
# tag: v4.2 64291f7db5bd8150a74ad2036f1037e6a0428df2
|
||||
SRCREV_machine="64291f7db5bd8150a74ad2036f1037e6a0428df2"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
# Override COMPATIBLE_MACHINE to include your machine in a copy of this recipe
|
||||
# file. Leaving it empty here ensures an early explicit build failure.
|
||||
|
|
|
@ -769,7 +769,6 @@ def pstaging_fetch(sstatefetch, d):
|
|||
localdata.setVar('FILESPATH', dldir)
|
||||
localdata.setVar('DL_DIR', dldir)
|
||||
localdata.setVar('PREMIRRORS', mirrors)
|
||||
localdata.setVar('SRCPV', d.getVar('SRCPV'))
|
||||
|
||||
# if BB_NO_NETWORK is set but we also have SSTATE_MIRROR_ALLOW_NETWORK,
|
||||
# we'll want to allow network access for the current set of fetches.
|
||||
|
@ -795,9 +794,6 @@ def pstaging_fetch(sstatefetch, d):
|
|||
except bb.fetch2.BBFetchException:
|
||||
pass
|
||||
|
||||
pstaging_fetch[vardepsexclude] += "SRCPV"
|
||||
|
||||
|
||||
def sstate_setscene(d):
|
||||
shared_state = sstate_state_fromvars(d)
|
||||
accelerate = sstate_installpkg(shared_state, d)
|
||||
|
|
|
@ -46,7 +46,7 @@ python devupstream_virtclass_handler () {
|
|||
pv = d.getVar("PV")
|
||||
proto_marker = "+" + uri.scheme
|
||||
if proto_marker not in pv and not d.getVar("PV:class-devupstream"):
|
||||
d.setVar("PV", pv + proto_marker + "${SRCPV}")
|
||||
d.setVar("PV", pv + proto_marker)
|
||||
|
||||
if variant == "native":
|
||||
pn = d.getVar("PN")
|
||||
|
|
|
@ -74,8 +74,6 @@ python () {
|
|||
|
||||
d.setVar('SRC_URI', ' '.join(local_srcuri))
|
||||
|
||||
# Dummy value because the default function can't be called with blank SRC_URI
|
||||
d.setVar('SRCPV', '999')
|
||||
# sstate is never going to work for external source trees, disable it
|
||||
d.setVar('SSTATE_SKIP_CREATION', '1')
|
||||
|
||||
|
|
|
@ -961,7 +961,7 @@ BB_SIGNATURE_EXCLUDE_FLAGS ?= "doc deps depends \
|
|||
sstate-lockfile-shared prefuncs postfuncs export_func deptask rdeptask \
|
||||
recrdeptask nodeprrecs stamp-extra-info sstate-outputdirs filename lineno \
|
||||
progress mcdepends number_threads"
|
||||
BB_HASH_CODEPARSER_VALS = "LOGFIFO=/ T=/ WORKDIR=/ DATE=1234 TIME=1234 PV=0.0-1 PN=no-pn METADATA_REVISION=1234 SRC_URI= SRCPV=1234"
|
||||
BB_HASH_CODEPARSER_VALS = "LOGFIFO=/ T=/ WORKDIR=/ DATE=1234 TIME=1234 PV=0.0-1 PN=no-pn METADATA_REVISION=1234 SRC_URI="
|
||||
|
||||
MLPREFIX ??= ""
|
||||
MULTILIB_VARIANTS ??= ""
|
||||
|
|
|
@ -394,7 +394,6 @@ SPECIAL_PKGSUFFIX[doc] = "A list of prefixes for PN used by the OpenEmbedded bui
|
|||
SRC_URI[doc] = "The list of source files - local or remote. This variable tells the OpenEmbedded build system what bits to pull in for the build and how to pull them in."
|
||||
SRC_URI_OVERRIDES_PACKAGE_ARCH[doc] = "By default, the OpenEmbedded build system automatically detects whether SRC_URI contains files that are machine-specific. If so, the build system automatically changes PACKAGE_ARCH. Setting this variable to '0' disables this behavior."
|
||||
SRCDATE[doc] = "The date of the source code used to build the package. This variable applies only if the source was fetched from a Source Code Manager (SCM)."
|
||||
SRCPV[doc] = "Returns the version string of the current package. This string is used to help define the value of PV."
|
||||
SRCREV[doc] = "The revision of the source code used to build the package. This variable applies to Subversion, Git, Mercurial and Bazaar only."
|
||||
SSTATE_DIR[doc] = "The directory for the shared state cache."
|
||||
SSTATE_MIRRORS[doc] = "Configures the OpenEmbedded build system to search other mirror locations for prebuilt cache data objects before building out the data. You can specify a filesystem directory or a remote URL such as HTTP or FTP."
|
||||
|
|
|
@ -24,7 +24,7 @@ from collections import OrderedDict, defaultdict
|
|||
from bb.utils import vercmp_string
|
||||
|
||||
# Help us to find places to insert values
|
||||
recipe_progression = ['SUMMARY', 'DESCRIPTION', 'HOMEPAGE', 'BUGTRACKER', 'SECTION', 'LICENSE', 'LICENSE_FLAGS', 'LIC_FILES_CHKSUM', 'PROVIDES', 'DEPENDS', 'PR', 'PV', 'SRCREV', 'SRCPV', 'SRC_URI', 'S', 'do_fetch()', 'do_unpack()', 'do_patch()', 'EXTRA_OECONF', 'EXTRA_OECMAKE', 'EXTRA_OESCONS', 'do_configure()', 'EXTRA_OEMAKE', 'do_compile()', 'do_install()', 'do_populate_sysroot()', 'INITSCRIPT', 'USERADD', 'GROUPADD', 'PACKAGES', 'FILES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RPROVIDES', 'RREPLACES', 'RCONFLICTS', 'ALLOW_EMPTY', 'populate_packages()', 'do_package()', 'do_deploy()', 'BBCLASSEXTEND']
|
||||
recipe_progression = ['SUMMARY', 'DESCRIPTION', 'HOMEPAGE', 'BUGTRACKER', 'SECTION', 'LICENSE', 'LICENSE_FLAGS', 'LIC_FILES_CHKSUM', 'PROVIDES', 'DEPENDS', 'PR', 'PV', 'SRCREV', 'SRC_URI', 'S', 'do_fetch()', 'do_unpack()', 'do_patch()', 'EXTRA_OECONF', 'EXTRA_OECMAKE', 'EXTRA_OESCONS', 'do_configure()', 'EXTRA_OEMAKE', 'do_compile()', 'do_install()', 'do_populate_sysroot()', 'INITSCRIPT', 'USERADD', 'GROUPADD', 'PACKAGES', 'FILES', 'RDEPENDS', 'RRECOMMENDS', 'RSUGGESTS', 'RPROVIDES', 'RREPLACES', 'RCONFLICTS', 'ALLOW_EMPTY', 'populate_packages()', 'do_package()', 'do_deploy()', 'BBCLASSEXTEND']
|
||||
# Variables that sometimes are a bit long but shouldn't be wrapped
|
||||
nowrap_vars = ['SUMMARY', 'HOMEPAGE', 'BUGTRACKER', r'SRC_URI\[(.+\.)?md5sum\]', r'SRC_URI\[(.+\.)?sha256sum\]']
|
||||
list_vars = ['SRC_URI', 'LIC_FILES_CHKSUM']
|
||||
|
@ -421,8 +421,6 @@ def copy_recipe_files(d, tgt_dir, whole_dir=False, download=True, all_variants=F
|
|||
# Ensure we handle class-target if we're dealing with one of the variants
|
||||
variants.append('target')
|
||||
for variant in variants:
|
||||
if variant.startswith("devupstream"):
|
||||
localdata.setVar('SRCPV', 'git')
|
||||
localdata.setVar('CLASSOVERRIDE', 'class-%s' % variant)
|
||||
fetch_urls(localdata)
|
||||
|
||||
|
|
|
@ -433,7 +433,7 @@ class DevtoolAddTests(DevtoolBase):
|
|||
checkvars['LICENSE'] = 'GPL-2.0-only'
|
||||
checkvars['LIC_FILES_CHKSUM'] = 'file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263'
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '0.1+git${SRCPV}'
|
||||
checkvars['PV'] = '0.1+git'
|
||||
checkvars['SRC_URI'] = 'git://git.yoctoproject.org/git/dbus-wait;protocol=https;branch=master'
|
||||
checkvars['SRCREV'] = srcrev
|
||||
checkvars['DEPENDS'] = set(['dbus'])
|
||||
|
@ -572,7 +572,7 @@ class DevtoolAddTests(DevtoolBase):
|
|||
self.assertIn('_git.bb', recipefile, 'Recipe file incorrectly named')
|
||||
checkvars = {}
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '1.0+git${SRCPV}'
|
||||
checkvars['PV'] = '1.0+git'
|
||||
checkvars['SRC_URI'] = url_branch
|
||||
checkvars['SRCREV'] = '${AUTOREV}'
|
||||
self._test_recipe_contents(recipefile, checkvars, [])
|
||||
|
@ -591,7 +591,7 @@ class DevtoolAddTests(DevtoolBase):
|
|||
self.assertIn('_git.bb', recipefile, 'Recipe file incorrectly named')
|
||||
checkvars = {}
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '1.5+git${SRCPV}'
|
||||
checkvars['PV'] = '1.5+git'
|
||||
checkvars['SRC_URI'] = url_branch
|
||||
checkvars['SRCREV'] = checkrev
|
||||
self._test_recipe_contents(recipefile, checkvars, [])
|
||||
|
|
|
@ -368,7 +368,7 @@ class RecipetoolCreateTests(RecipetoolBase):
|
|||
checkvars['LICENSE'] = 'LGPL-2.1-only'
|
||||
checkvars['LIC_FILES_CHKSUM'] = 'file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34'
|
||||
checkvars['S'] = '${WORKDIR}/git'
|
||||
checkvars['PV'] = '1.11+git${SRCPV}'
|
||||
checkvars['PV'] = '1.11+git'
|
||||
checkvars['SRC_URI'] = srcuri + ';branch=master'
|
||||
checkvars['DEPENDS'] = set(['libcheck', 'libjpeg-turbo', 'libpng', 'libx11', 'libxext', 'pango'])
|
||||
inherits = ['autotools', 'pkgconfig']
|
||||
|
|
|
@ -188,7 +188,6 @@ class SStateBase(OESelftestTestCase):
|
|||
class SStateTests(SStateBase):
|
||||
def test_autorev_sstate_works(self):
|
||||
# Test that a git repository which changes is correctly handled by SRCREV = ${AUTOREV}
|
||||
# when PV does not contain SRCPV
|
||||
|
||||
tempdir = tempfile.mkdtemp(prefix='sstate_autorev')
|
||||
tempdldir = tempfile.mkdtemp(prefix='sstate_autorev_dldir')
|
||||
|
|
|
@ -11,7 +11,7 @@ SRC_URI = "git://github.com/rhinstaller/efivar.git;branch=main;protocol=https \
|
|||
file://0001-docs-do-not-build-efisecdb-manpage.patch \
|
||||
"
|
||||
SRCREV = "90e88b221e8bc60dc50f3246051369b8f580c0d0"
|
||||
PV .= "+39+git${SRCPV}"
|
||||
PV .= "+39+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|||
DEPENDS = "dbus"
|
||||
|
||||
SRCREV = "6cc6077a36fe2648a5f993fe7c16c9632f946517"
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
PR = "r2"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https"
|
||||
|
|
|
@ -13,7 +13,7 @@ SRC_URI = "git://git.adelielinux.org/adelie/gcompat.git;protocol=https;branch=cu
|
|||
SRC_URI:append:powerpc = "\
|
||||
file://0001-make-Static-PIE-does-not-work-on-musl-ppc.patch \
|
||||
"
|
||||
PV = "1.0.0+1.1+git${SRCPV}"
|
||||
PV = "1.0.0+1.1+git"
|
||||
SRCREV = "c6921a1aa454bb87671f9bd1ecfe47d80d1620aa"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
|
|
@ -15,7 +15,7 @@ SRC_URI = " \
|
|||
file://run-ptest \
|
||||
"
|
||||
|
||||
PV = "0+git${SRCPV}"
|
||||
PV = "0+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=cf5713fba707073020b1db2acaa73e78 \
|
|||
|
||||
SRC_URI = "git://git.adelielinux.org/adelie/musl-locales;protocol=https;branch=main"
|
||||
|
||||
PV = "1.0+git${SRCPV}"
|
||||
PV = "1.0+git"
|
||||
SRCREV = "5663f5bfd30bf9e1e0ba3fc5fe2da6725969f30e"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
|
|
@ -8,7 +8,7 @@ SRCREV = "83b858f83b658bd34eca5d8ad4d145f673ae7e5e"
|
|||
|
||||
BASEVER = "1.2.4"
|
||||
|
||||
PV = "${BASEVER}+git${SRCPV}"
|
||||
PV = "${BASEVER}+git"
|
||||
|
||||
# mirror is at git://github.com/kraj/musl.git
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = " \
|
|||
"
|
||||
|
||||
BASEVER = "4.3.0"
|
||||
PV = "${BASEVER}+git${SRCPV}"
|
||||
PV = "${BASEVER}+git"
|
||||
SRC_URI = "git://sourceware.org/git/newlib-cygwin.git;protocol=https;branch=main"
|
||||
SRCREV="9e09d6ed83cce4777a5950412647ccc603040409"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://psplash.h;beginline=1;endline=8;md5=8f232c1e95929eaca
|
|||
DEPENDS = "gdk-pixbuf-native"
|
||||
|
||||
SRCREV = "44afb7506d43cca15582b4c5b90ba5580344d75d"
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https \
|
||||
file://psplash-init \
|
||||
|
|
|
@ -10,7 +10,7 @@ DEPENDS:class-native = "hostperl-runtime-native"
|
|||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
|
||||
SRCREV = "63acb96f92473ceb5e21d873d7c0aee266b3d6d3"
|
||||
PV = "20230216+git${SRCPV}"
|
||||
PV = "20230216+git"
|
||||
|
||||
SRC_URI = "git://git.savannah.gnu.org/git/config.git;protocol=https;branch=master \
|
||||
file://gnu-configize.in"
|
||||
|
|
|
@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://mmc.c;beginline=1;endline=20;md5=fae32792e20f4d27ade1
|
|||
SRCBRANCH ?= "master"
|
||||
SRCREV = "958227890690290ee766aaad1b92f3413f67048c"
|
||||
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
|
||||
SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git;branch=${SRCBRANCH};protocol=https"
|
||||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
|
|
|
@ -9,7 +9,7 @@ LICENSE = "GPL-2.0-or-later"
|
|||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
SRCREV = "d97db4fae4c1cd099b506970b285dc2afd818ea2"
|
||||
PV = "0.29.2+git${SRCPV}"
|
||||
PV = "0.29.2+git"
|
||||
|
||||
SRC_URI = "git://gitlab.freedesktop.org/pkg-config/pkg-config.git;branch=master;protocol=https \
|
||||
file://pkg-config-esdk.in \
|
||||
|
|
|
@ -16,7 +16,7 @@ SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c
|
|||
|
||||
SRCREV = "ec6151a2b057109b3f798f151a36690af582e166"
|
||||
S = "${WORKDIR}/git"
|
||||
PV = "1.9.0+git${SRCPV}"
|
||||
PV = "1.9.0+git"
|
||||
|
||||
# largefile and 64bit time_t support adds these macros via compiler flags globally
|
||||
# remove them for pseudo since pseudo intercepts some of the functions which will be
|
||||
|
|
|
@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = "file://pylibfdt/libfdt.i;beginline=1;endline=6;md5=afda088c9
|
|||
|
||||
SRCREV = "c001fc01a43e7a06447c06ea3d50bd60641322b8"
|
||||
|
||||
PV = "1.6.1+git${SRCPV}"
|
||||
PV = "1.6.1+git"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
PYPA_WHEEL = "${S}/dist/libfdt-1.6.2*.whl"
|
||||
|
|
|
@ -7,7 +7,7 @@ LICENSE = "EPL-1.0 | EDL-1.0"
|
|||
LIC_FILES_CHKSUM = "file://edl-v10.html;md5=522a390a83dc186513f0500543ad3679"
|
||||
|
||||
SRCREV = "1f11747e83ebf4f53e8d17f430136f92ec378709"
|
||||
PV = "1.8.0+git${SRCPV}"
|
||||
PV = "1.8.0+git"
|
||||
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
|
||||
SRC_URI = "git://git.eclipse.org/r/tcf/org.eclipse.tcf.agent.git;protocol=https;branch=master \
|
||||
|
|
|
@ -11,7 +11,7 @@ UPSTREAM_CHECK_COMMITS = "1"
|
|||
SRC_URI = "git://pagure.io/xmlto.git;protocol=https;branch=master"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
PV .= "+0.0.29+git${SRCPV}"
|
||||
PV .= "+0.0.29+git"
|
||||
|
||||
inherit autotools
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ LICENSE = "MIT"
|
|||
LIC_FILES_CHKSUM = "file://LICENSE;md5=39346640a23c701e4f459e05f56f4449"
|
||||
|
||||
SRCREV = "fc7c43d138185028b6ac14c83f6492fce26eca95"
|
||||
PV = "0.1+git${SRCPV}"
|
||||
PV = "0.1+git"
|
||||
|
||||
SRC_URI = "git://github.com/ahcbb6/baremetal-helloqemu.git;protocol=https;branch=master"
|
||||
UPSTREAM_VERSION_UNKNOWN="1"
|
||||
|
|
|
@ -11,7 +11,7 @@ DEPENDS = "libxtst"
|
|||
SECTION = "x11/wm"
|
||||
|
||||
SRCREV = "7ad885912efb2131e80914e964d5e635b0d07b40"
|
||||
PV = "0.3+git${SRCPV}"
|
||||
PV = "0.3+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https"
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ UPSTREAM_CHECK_COMMITS = "1"
|
|||
|
||||
SRCREV = "5036601c43fff63f7be5cd8ad7b319a5c1f6652c"
|
||||
# (when PV goes above 1.0 remove the trailing r)
|
||||
PV = "1.0+gitr${SRCPV}"
|
||||
PV = "1.0+gitr"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|||
SECTION = "x11/base"
|
||||
|
||||
SRCREV = "23c8af5ba4a1b7efbaf0bbca59a65ff7e10a1a06"
|
||||
PV = "0.1.1+git${SRCPV}"
|
||||
PV = "0.1.1+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https"
|
||||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
|
|
|
@ -4,7 +4,7 @@ LICENSE = "MIT"
|
|||
LIC_FILES_CHKSUM = "file://src/calibrator.cpp;endline=22;md5=1bcba08f67cdb56f34021557898e4b5a"
|
||||
DEPENDS = "virtual/libx11 libxi libxrandr"
|
||||
|
||||
PV = "0.7.5+git${SRCPV}"
|
||||
PV = "0.7.5+git"
|
||||
PR = "r6"
|
||||
|
||||
inherit autotools pkgconfig features_check
|
||||
|
|
|
@ -10,7 +10,7 @@ Infrastructure (DRI)."
|
|||
LIC_FILES_CHKSUM = "file://COPYING;md5=8730ad58d11c7bbad9a7066d69f7808e"
|
||||
|
||||
SRCREV = "31486f40f8e8f8923ca0799aea84b58799754564"
|
||||
PV = "2.99.917+git${SRCPV}"
|
||||
PV = "2.99.917+git"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
SRC_URI = "git://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel;protocol=https;branch=master"
|
||||
|
|
|
@ -12,7 +12,7 @@ DEPENDS = "libaio"
|
|||
|
||||
SRCREV = "366d30b9cdb20345c5d064af850d686da79b89eb"
|
||||
|
||||
PV = "1.3.0+git${SRCPV}"
|
||||
PV = "1.3.0+git"
|
||||
|
||||
SRC_URI = "git://git.kernel.dk/blktrace.git;branch=master;protocol=https"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "\
|
|||
DEPENDS = "git-native"
|
||||
|
||||
SRCREV = "6645d3897cc2eeb1237ee0e2ff5342bd73ee0875"
|
||||
PV = "0.3+git${SRCPV}"
|
||||
PV = "0.3+git"
|
||||
|
||||
inherit native
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ SRCREV_meta ?= '${@oe.utils.conditional("PREFERRED_PROVIDER_virtual/kernel", "li
|
|||
|
||||
LINUX_VERSION ?= "6.5"
|
||||
LINUX_VERSION_EXTENSION ?= "-yoctodev-${LINUX_KERNEL_TYPE}"
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
|||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
|
||||
DEPENDS += "openssl-native util-linux-native"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
KMETA = "kernel-meta"
|
||||
KCONF_BSP_AUDIT_LEVEL = "1"
|
||||
|
|
|
@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
|||
DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
|
||||
DEPENDS += "openssl-native util-linux-native"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
KMETA = "kernel-meta"
|
||||
KCONF_BSP_AUDIT_LEVEL = "1"
|
||||
|
|
|
@ -20,7 +20,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
|
|||
SRCREV_machine ?= "44fd0c7a5a7955282a1ab24bf3dcdee068839ad2"
|
||||
SRCREV_meta ?= "295d37e268bc02070da670e46456227bee38795b"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \
|
||||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.1;destsuffix=${KMETA};protocol=https"
|
||||
|
|
|
@ -20,7 +20,7 @@ KCONF_BSP_AUDIT_LEVEL = "2"
|
|||
SRCREV_machine ?= "9753b4497951a5bd1a921e784532257d26a8b008"
|
||||
SRCREV_meta ?= "d9483a24c9ee33b6e566baa5233cbd9feaeb5212"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;branch=${KBRANCH};name=machine;protocol=https \
|
||||
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-6.4;destsuffix=${KMETA};protocol=https"
|
||||
|
|
|
@ -47,7 +47,7 @@ SRC_URI += "file://0001-perf-cpumap-Make-counter-as-unsigned-ints.patch"
|
|||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
||||
LINUX_VERSION ?= "6.1.46"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
KMETA = "kernel-meta"
|
||||
KCONF_BSP_AUDIT_LEVEL = "1"
|
||||
|
|
|
@ -46,7 +46,7 @@ SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRA
|
|||
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
||||
LINUX_VERSION ?= "6.4.11"
|
||||
|
||||
PV = "${LINUX_VERSION}+git${SRCPV}"
|
||||
PV = "${LINUX_VERSION}+git"
|
||||
|
||||
KMETA = "kernel-meta"
|
||||
KCONF_BSP_AUDIT_LEVEL = "1"
|
||||
|
|
|
@ -16,7 +16,7 @@ UPSTREAM_CHECK_COMMITS = "1"
|
|||
|
||||
SRCREV = "baee400fa9ced6f5481a728138fed6e867b0ff7f"
|
||||
|
||||
PV = "r3039+git${SRCPV}"
|
||||
PV = "r3039+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
|
|||
|
||||
DEPENDS = "gtk+3 intltool-native gettext-native"
|
||||
|
||||
PV = "0.8.18.1.11+git${SRCPV}"
|
||||
PV = "0.8.18.1.11+git"
|
||||
SRC_URI = "git://github.com/stevenhoneyman/l3afpad.git;branch=master;protocol=https"
|
||||
SRCREV ="3cdccdc9505643e50f8208171d9eee5de11a42ff"
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ SRCREV = "7182e603357250952aa24d90f6d89345f93da7ce"
|
|||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https \
|
||||
file://no-handed.patch"
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
|
||||
PV = "0.2+git${SRCPV}"
|
||||
PV = "0.2+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ SECTION = "x11/utils"
|
|||
SRCREV = "99e6eb7db1b5fef110973d96194eec992a2515a2"
|
||||
SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master;protocol=https"
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))"
|
||||
PV = "0.2+git${SRCPV}"
|
||||
PV = "0.2+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ SRC_URI = "git://git.tartarus.org/simon/puzzles.git;branch=main;protocol=https"
|
|||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
SRCREV = "b6c842a28cf6597df063fcff35079c3e3982381e"
|
||||
PE = "2"
|
||||
PV = "0.0+git${SRCPV}"
|
||||
PV = "0.0+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ SRC_URI = "git://github.com/intel/${BPN};branch=main;protocol=https"
|
|||
SRCREV = "c0673962a8ec1624b5189dc1d24f33fe4f06785a"
|
||||
S = "${WORKDIR}/git"
|
||||
BASEVER = "3.6"
|
||||
PV = "${BASEVER}+git${SRCPV}"
|
||||
PV = "${BASEVER}+git"
|
||||
|
||||
UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ LICENSE = "GPL-2.0-or-later"
|
|||
LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe"
|
||||
|
||||
SRCREV = "4148e75284e443fc8ffaef425c467aa5523528ff"
|
||||
PV .= "+git${SRCPV}"
|
||||
PV .= "+git"
|
||||
|
||||
SRC_URI = "git://git.yoctoproject.org/ptest-runner2;branch=master;protocol=https \
|
||||
"
|
||||
|
|
|
@ -690,7 +690,7 @@ def create_recipe(args):
|
|||
srcpvprefix = 'svnr'
|
||||
else:
|
||||
srcpvprefix = scheme
|
||||
lines_before.append('PV = "%s+%s${SRCPV}"' % (realpv or '1.0', srcpvprefix))
|
||||
lines_before.append('PV = "%s+%s"' % (realpv or '1.0', srcpvprefix))
|
||||
pv_srcpv = True
|
||||
if not args.autorev and srcrev == '${AUTOREV}':
|
||||
if os.path.exists(os.path.join(srctree, '.git')):
|
||||
|
|
|
@ -177,7 +177,7 @@ def fetch_url(tinfoil, srcuri, srcrev, destdir, logger, preserve_tmp=False, mirr
|
|||
f.write('BB_STRICT_CHECKSUM = "ignore"\n')
|
||||
f.write('SRC_URI = "%s"\n' % srcuri)
|
||||
f.write('SRCREV = "%s"\n' % srcrev)
|
||||
f.write('PV = "0.0+${SRCPV}"\n')
|
||||
f.write('PV = "0.0+"\n')
|
||||
f.write('WORKDIR = "%s"\n' % tmpworkdir)
|
||||
# Set S out of the way so it doesn't get created under the workdir
|
||||
f.write('S = "%s"\n' % os.path.join(tmpdir, 'emptysrc'))
|
||||
|
|
Loading…
Reference in New Issue
Block a user