From 08435d20b1259d2ef0c98638116fb881045ff512 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Sat, 12 Aug 2023 03:24:38 +0000 Subject: recipes/classes/scripts: Drop SRCPV usage bitbake has been enhanced such that SRCPV is no longer needed in PV to handle updating git hashes and task signatures. We can simplify our PV by dropping SRCPV Signed-off-by: Bruce Ashfield --- recipes-devtools/go/compose-file_git.bb | 2 +- recipes-devtools/go/go-capability_git.bb | 2 +- recipes-devtools/go/go-cli_git.bb | 2 +- recipes-devtools/go/go-connections_git.bb | 2 +- recipes-devtools/go/go-dbus_git.bb | 2 +- recipes-devtools/go/go-distribution_git.bb | 2 +- recipes-devtools/go/go-fsnotify_git.bb | 2 +- recipes-devtools/go/go-libtrust_git.bb | 2 +- recipes-devtools/go/go-logrus_git.bb | 2 +- recipes-devtools/go/go-md2man_git.bb | 2 +- recipes-devtools/go/go-metalinter_git.bb | 2 +- recipes-devtools/go/go-patricia_git.bb | 2 +- recipes-devtools/go/go-systemd_git.bb | 2 +- recipes-devtools/go/grpc-go_git.bb | 2 +- recipes-devtools/go/notary_git.bb | 2 +- recipes-devtools/python/python3-udica_git.bb | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) (limited to 'recipes-devtools') diff --git a/recipes-devtools/go/compose-file_git.bb b/recipes-devtools/go/compose-file_git.bb index c33a7ac7..7fedc407 100644 --- a/recipes-devtools/go/compose-file_git.bb +++ b/recipes-devtools/go/compose-file_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/aanand/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;destsuffix=git/src/${PKG_NAME};branch=master;protocol=https" SRCREV = "a3e58764f50597b6217fec07e9bff7225c4a1719" -PV = "3.0+git${SRCPV}" +PV = "3.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-capability_git.bb b/recipes-devtools/go/go-capability_git.bb index 7e5ab115..e01a83d1 100644 --- a/recipes-devtools/go/go-capability_git.bb +++ b/recipes-devtools/go/go-capability_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/syndtr/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "2c00daeb6c3b45114c80ac44119e7b8801fdd852" -PV = "0.0+git${SRCPV}" +PV = "0.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-cli_git.bb b/recipes-devtools/go/go-cli_git.bb index ae67f8e0..affe38ec 100644 --- a/recipes-devtools/go/go-cli_git.bb +++ b/recipes-devtools/go/go-cli_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/codegangsta/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "27ecc97192df1bf053a22b04463f2b51b8b8373e" -PV = "1.1.0+git${SRCPV}" +PV = "1.1.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-connections_git.bb b/recipes-devtools/go/go-connections_git.bb index ebfdb9f1..7e8f020d 100644 --- a/recipes-devtools/go/go-connections_git.bb +++ b/recipes-devtools/go/go-connections_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/docker/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;destsuffix=git/src/${PKG_NAME};branch=master;protocol=https" SRCREV = "4ccf312bf1d35e5dbda654e57a9be4c3f3cd0366" -PV = "0.2.1+git${SRCPV}" +PV = "0.2.1+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-dbus_git.bb b/recipes-devtools/go/go-dbus_git.bb index 4bf44d63..49b2de3b 100644 --- a/recipes-devtools/go/go-dbus_git.bb +++ b/recipes-devtools/go/go-dbus_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/godbus/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "5f6efc7ef2759c81b7ba876593971bfce311eab3" -PV = "4.0.0+git${SRCPV}" +PV = "4.0.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-distribution_git.bb b/recipes-devtools/go/go-distribution_git.bb index 948831b1..dd98a317 100644 --- a/recipes-devtools/go/go-distribution_git.bb +++ b/recipes-devtools/go/go-distribution_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/docker/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=docker/1.13;destsuffix=git/src/${PKG_NAME};protocol=https" SRCREV = "28602af35aceda2f8d571bad7ca37a54cf0250bc" -PV = "2.6.0+git${SRCPV}" +PV = "2.6.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-fsnotify_git.bb b/recipes-devtools/go/go-fsnotify_git.bb index e6545186..052658b8 100644 --- a/recipes-devtools/go/go-fsnotify_git.bb +++ b/recipes-devtools/go/go-fsnotify_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/fsnotify/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https" SRCREV = "af855d7e6014ec848882bb2ed7d40d536872d275" -PV = "v1.5.1+git${SRCPV}" +PV = "v1.5.1+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-libtrust_git.bb b/recipes-devtools/go/go-libtrust_git.bb index e2a28ec9..c578008a 100644 --- a/recipes-devtools/go/go-libtrust_git.bb +++ b/recipes-devtools/go/go-libtrust_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/docker/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "9cbd2a1374f46905c68a4eb3694a130610adc62a" -PV = "0.0+git${SRCPV}" +PV = "0.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-logrus_git.bb b/recipes-devtools/go/go-logrus_git.bb index cb137707..211d07c9 100644 --- a/recipes-devtools/go/go-logrus_git.bb +++ b/recipes-devtools/go/go-logrus_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/sirupsen/${SRCNAME}" SRC_URI = "git://${PKG_NAME};branch=master;protocol=https" SRCREV = "d26492970760ca5d33129d2d799e34be5c4782eb" -PV = "0.11.0+git${SRCPV}" +PV = "0.11.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-md2man_git.bb b/recipes-devtools/go/go-md2man_git.bb index aa058990..1d96bb1b 100644 --- a/recipes-devtools/go/go-md2man_git.bb +++ b/recipes-devtools/go/go-md2man_git.bb @@ -12,7 +12,7 @@ GO_IMPORT = "github.com/cpuguy83/go-md2man" SRC_URI = "git://${GO_IMPORT}.git;branch=master;protocol=https" SRCREV = "f79a8a8ca69da163eee19ab442bedad7a35bba5a" -PV = "1.0.10+git${SRCPV}" +PV = "1.0.10+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-metalinter_git.bb b/recipes-devtools/go/go-metalinter_git.bb index 3dda45cc..def3d063 100644 --- a/recipes-devtools/go/go-metalinter_git.bb +++ b/recipes-devtools/go/go-metalinter_git.bb @@ -12,7 +12,7 @@ PKG_NAME = "github.com/alecthomas/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "e8d801238da6f0dfd14078d68f9b53fa50a7eeb5" -PV = "0.0+git${SRCPV}" +PV = "0.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-patricia_git.bb b/recipes-devtools/go/go-patricia_git.bb index 4c29b57e..0a3c3f35 100644 --- a/recipes-devtools/go/go-patricia_git.bb +++ b/recipes-devtools/go/go-patricia_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/tchap/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=master;protocol=https" SRCREV = "666120de432aea38ab06bd5c818f04f4129882c9" -PV = "2.2.6+git${SRCPV}" +PV = "2.2.6+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/go-systemd_git.bb b/recipes-devtools/go/go-systemd_git.bb index 91f67da2..3aa837aa 100644 --- a/recipes-devtools/go/go-systemd_git.bb +++ b/recipes-devtools/go/go-systemd_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/coreos/go-${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;branch=main;protocol=https" SRCREV = "b4a58d95188dd092ae20072bac14cece0e67c388" -PV = "4+git${SRCPV}" +PV = "4+git" RDEPENDS:${PN} += "bash" diff --git a/recipes-devtools/go/grpc-go_git.bb b/recipes-devtools/go/grpc-go_git.bb index b516e216..d5bfaab9 100644 --- a/recipes-devtools/go/grpc-go_git.bb +++ b/recipes-devtools/go/grpc-go_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "google.golang.org/grpc" SRC_URI = "git://github.com/grpc/${SRCNAME}.git;destsuffix=git/src/${PKG_NAME};branch=master;protocol=https" SRCREV = "5d8e5aad40bedb696205b96b786f1d0e1326b3f8" -PV = "1.41.0+git${SRCPV}" +PV = "1.41.0+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/go/notary_git.bb b/recipes-devtools/go/notary_git.bb index 972da5ee..1b877d62 100644 --- a/recipes-devtools/go/notary_git.bb +++ b/recipes-devtools/go/notary_git.bb @@ -10,7 +10,7 @@ PKG_NAME = "github.com/docker/${SRCNAME}" SRC_URI = "git://${PKG_NAME}.git;destsuffix=git/src/${PKG_NAME};branch=master;protocol=https" SRCREV = "d6e1431feb32348e0650bf7551ac5cffd01d857b" -PV = "0.6.1+git${SRCPV}" +PV = "0.6.1+git" S = "${WORKDIR}/git" diff --git a/recipes-devtools/python/python3-udica_git.bb b/recipes-devtools/python/python3-udica_git.bb index 93f6bdc3..1d239cba 100644 --- a/recipes-devtools/python/python3-udica_git.bb +++ b/recipes-devtools/python/python3-udica_git.bb @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464" SRC_URI = "git://github.com/containers/udica;protocol=https;branch=main" SRCREV = "4a64ff7c1b8116a1894e72eee2a19706e970001f" -PV = "0.2.7+git${SRCPV}" +PV = "0.2.7+git" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf