summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-selftest/files/distrodata/checkpkg_exceptions28
-rw-r--r--meta/lib/oeqa/selftest/cases/distrodata.py15
-rw-r--r--meta/recipes-core/dbus-wait/dbus-wait_git.bb1
-rw-r--r--meta/recipes-core/ovmf/ovmf_git.bb1
-rw-r--r--meta/recipes-core/psplash/psplash_git.bb1
-rw-r--r--meta/recipes-core/update-rc.d/update-rc.d_0.7.bb1
-rw-r--r--meta/recipes-devtools/build-compare/build-compare_git.bb1
-rw-r--r--meta/recipes-devtools/distcc/distcc_3.2.bb1
-rw-r--r--meta/recipes-devtools/gnu-config/gnu-config_git.bb2
-rw-r--r--meta/recipes-devtools/llvm/llvm_git.bb1
-rw-r--r--meta/recipes-devtools/mmc/mmc-utils_git.bb1
-rw-r--r--meta/recipes-devtools/rpm/rpm_git.bb1
-rw-r--r--meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb1
-rw-r--r--meta/recipes-devtools/tcf-agent/tcf-agent_git.bb1
-rw-r--r--meta/recipes-extended/lsb/lsb_4.1.bb1
-rw-r--r--meta/recipes-extended/unzip/unzip_6.0.bb1
-rw-r--r--meta/recipes-extended/xinetd/xinetd_2.3.15.bb1
-rw-r--r--meta/recipes-extended/zip/zip_3.0.bb1
-rw-r--r--meta/recipes-graphics/fstests/fstests_git.bb1
-rw-r--r--meta/recipes-graphics/kmscube/kmscube_git.bb1
-rw-r--r--meta/recipes-graphics/piglit/piglit_git.bb1
-rw-r--r--meta/recipes-graphics/vulkan/vulkan-demos_git.bb1
-rw-r--r--meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb1
-rw-r--r--meta/recipes-graphics/xorg-lib/libxcalibrate_git.bb1
-rw-r--r--meta/recipes-graphics/xorg-proto/calibrateproto_git.bb2
-rw-r--r--meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb1
-rw-r--r--meta/recipes-kernel/linux-firmware/linux-firmware_git.bb1
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-player_git.bb1
-rw-r--r--meta/recipes-multimedia/x264/x264_git.bb1
-rw-r--r--meta/recipes-sato/puzzles/puzzles_git.bb1
30 files changed, 35 insertions, 38 deletions
diff --git a/meta-selftest/files/distrodata/checkpkg_exceptions b/meta-selftest/files/distrodata/checkpkg_exceptions
deleted file mode 100644
index d87a80de7a..0000000000
--- a/meta-selftest/files/distrodata/checkpkg_exceptions
+++ /dev/null
@@ -1,28 +0,0 @@
1build-compare
2calibrateproto
3dbus-wait
4distcc
5fstests
6gnu-config
7gst-player
8kmscube
9libxcalibrate
10linux-firmware
11llvm
12lsb
13mmc-utils
14ovmf
15piglit
16psplash
17puzzles
18rpm
19squashfs-tools
20tcf-agent
21unzip
22update-rc.d
23vulkan-demos
24x264
25xcursor-transparent-theme
26xinetd
27xvideo-tests
28zip
diff --git a/meta/lib/oeqa/selftest/cases/distrodata.py b/meta/lib/oeqa/selftest/cases/distrodata.py
index d5d286d5cc..ecb15d9aea 100644
--- a/meta/lib/oeqa/selftest/cases/distrodata.py
+++ b/meta/lib/oeqa/selftest/cases/distrodata.py
@@ -8,7 +8,6 @@ class Distrodata(OESelftestTestCase):
8 @classmethod 8 @classmethod
9 def setUpClass(cls): 9 def setUpClass(cls):
10 super(Distrodata, cls).setUpClass() 10 super(Distrodata, cls).setUpClass()
11 cls.exceptions_path = os.path.join(cls.testlayer_path, 'files', 'distrodata', "checkpkg_exceptions")
12 11
13 def test_checkpkg(self): 12 def test_checkpkg(self):
14 """ 13 """
@@ -23,21 +22,19 @@ class Distrodata(OESelftestTestCase):
23 self.write_config(feature) 22 self.write_config(feature)
24 bitbake('-c checkpkg world') 23 bitbake('-c checkpkg world')
25 checkpkg_result = open(os.path.join(get_bb_var("LOG_DIR"), "checkpkg.csv")).readlines()[1:] 24 checkpkg_result = open(os.path.join(get_bb_var("LOG_DIR"), "checkpkg.csv")).readlines()[1:]
26 exceptions = [exc.strip() for exc in open(self.exceptions_path).readlines()] 25 regressed_failures = [pkg_data[0] for pkg_data in [pkg_line.split('\t') for pkg_line in checkpkg_result] if pkg_data[11] == 'UNKNOWN_BROKEN']
27 failed_upstream_checks = [pkg_data[0] for pkg_data in [pkg_line.split('\t') for pkg_line in checkpkg_result] if pkg_data[11] == ''] 26 regressed_successes = [pkg_data[0] for pkg_data in [pkg_line.split('\t') for pkg_line in checkpkg_result] if pkg_data[11] == 'KNOWN_BROKEN']
28 regressed_failures = set(failed_upstream_checks) - set(exceptions)
29 regressed_successes = set(exceptions) - set(failed_upstream_checks)
30 msg = "" 27 msg = ""
31 if len(regressed_failures) > 0: 28 if len(regressed_failures) > 0:
32 msg = msg + """ 29 msg = msg + """
33The following packages failed upstream version checks. Please fix them using UPSTREAM_CHECK_URI/UPSTREAM_CHECK_REGEX 30The following packages failed upstream version checks. Please fix them using UPSTREAM_CHECK_URI/UPSTREAM_CHECK_REGEX
34(when using tarballs) or UPSTREAM_CHECK_GITTAGREGEX (when using git). If an upstream version check cannot be performed 31(when using tarballs) or UPSTREAM_CHECK_GITTAGREGEX (when using git). If an upstream version check cannot be performed
35(for example, if upstream does not use git tags), you can add the package to list of exceptions in 32(for example, if upstream does not use git tags), you can set UPSTREAM_VERSION_UNKNOWN to '1' in the recipe to acknowledge
36meta-selftest/files/distrodata/checkpkg_exceptions. 33that the check cannot be performed.
37""" + "\n".join(regressed_failures) 34""" + "\n".join(regressed_failures)
38 if len(regressed_successes) > 0: 35 if len(regressed_successes) > 0:
39 msg = msg + """ 36 msg = msg + """
40The following packages have been checked successfully for upstream versions (or they no longer exist in oe-core), 37The following packages have been checked successfully for upstream versions,
41but are in the exceptions list in meta-selftest/files/distrodata/checkpkg_exceptions. Please remove them from that list. 38but their recipes claim otherwise by setting UPSTREAM_VERSION_UNKNOWN. Please remove that line from the recipes.
42""" + "\n".join(regressed_successes) 39""" + "\n".join(regressed_successes)
43 self.assertTrue(len(regressed_failures) == 0 and len(regressed_successes) == 0, msg) 40 self.assertTrue(len(regressed_failures) == 0 and len(regressed_successes) == 0, msg)
diff --git a/meta/recipes-core/dbus-wait/dbus-wait_git.bb b/meta/recipes-core/dbus-wait/dbus-wait_git.bb
index 691dc86e92..4afb90c20a 100644
--- a/meta/recipes-core/dbus-wait/dbus-wait_git.bb
+++ b/meta/recipes-core/dbus-wait/dbus-wait_git.bb
@@ -11,6 +11,7 @@ PV = "0.1+git${SRCPV}"
11PR = "r2" 11PR = "r2"
12 12
13SRC_URI = "git://git.yoctoproject.org/${BPN}" 13SRC_URI = "git://git.yoctoproject.org/${BPN}"
14UPSTREAM_VERSION_UNKNOWN = "1"
14 15
15S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
16 17
diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb
index 28f0cde1d9..1872c950ca 100644
--- a/meta/recipes-core/ovmf/ovmf_git.bb
+++ b/meta/recipes-core/ovmf/ovmf_git.bb
@@ -17,6 +17,7 @@ SRC_URI = "git://github.com/tianocore/edk2.git;branch=master \
17 file://0001-ia32-Dont-use-pie.patch \ 17 file://0001-ia32-Dont-use-pie.patch \
18 file://no-stack-protector-all-archs.patch \ 18 file://no-stack-protector-all-archs.patch \
19 " 19 "
20UPSTREAM_VERSION_UNKNOWN = "1"
20 21
21OPENSSL_RELEASE = "openssl-1.1.0e" 22OPENSSL_RELEASE = "openssl-1.1.0e"
22 23
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb
index 44297e1a69..1339f1eec1 100644
--- a/meta/recipes-core/psplash/psplash_git.bb
+++ b/meta/recipes-core/psplash/psplash_git.bb
@@ -12,6 +12,7 @@ PR = "r15"
12SRC_URI = "git://git.yoctoproject.org/${BPN} \ 12SRC_URI = "git://git.yoctoproject.org/${BPN} \
13 file://psplash-init \ 13 file://psplash-init \
14 ${SPLASH_IMAGES}" 14 ${SPLASH_IMAGES}"
15UPSTREAM_VERSION_UNKNOWN = "1"
15 16
16SPLASH_IMAGES = "file://psplash-poky-img.h;outsuffix=default" 17SPLASH_IMAGES = "file://psplash-poky-img.h;outsuffix=default"
17 18
diff --git a/meta/recipes-core/update-rc.d/update-rc.d_0.7.bb b/meta/recipes-core/update-rc.d/update-rc.d_0.7.bb
index 3b965c50b4..72d2cbdbc1 100644
--- a/meta/recipes-core/update-rc.d/update-rc.d_0.7.bb
+++ b/meta/recipes-core/update-rc.d/update-rc.d_0.7.bb
@@ -15,6 +15,7 @@ SRC_URI = "git://github.com/philb/update-rc.d.git \
15 file://check-if-symlinks-are-valid.patch \ 15 file://check-if-symlinks-are-valid.patch \
16 file://fix-to-handle-priority-numbers-correctly.patch \ 16 file://fix-to-handle-priority-numbers-correctly.patch \
17 " 17 "
18UPSTREAM_VERSION_UNKNOWN = "1"
18 19
19S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"
20 21
diff --git a/meta/recipes-devtools/build-compare/build-compare_git.bb b/meta/recipes-devtools/build-compare/build-compare_git.bb
index c60c164103..84d04cfa0d 100644
--- a/meta/recipes-devtools/build-compare/build-compare_git.bb
+++ b/meta/recipes-devtools/build-compare/build-compare_git.bb
@@ -22,6 +22,7 @@ SRC_URI = "git://github.com/openSUSE/build-compare.git \
22SRCREV = "c5352c054c6ef15735da31b76d6d88620f4aff0a" 22SRCREV = "c5352c054c6ef15735da31b76d6d88620f4aff0a"
23PE = "1" 23PE = "1"
24PV = "2015.02.10+git${SRCPV}" 24PV = "2015.02.10+git${SRCPV}"
25UPSTREAM_VERSION_UNKNOWN = "1"
25 26
26S = "${WORKDIR}/git" 27S = "${WORKDIR}/git"
27 28
diff --git a/meta/recipes-devtools/distcc/distcc_3.2.bb b/meta/recipes-devtools/distcc/distcc_3.2.bb
index ea3d7c10be..b6da65a582 100644
--- a/meta/recipes-devtools/distcc/distcc_3.2.bb
+++ b/meta/recipes-devtools/distcc/distcc_3.2.bb
@@ -23,6 +23,7 @@ SRC_URI = "git://github.com/distcc/distcc.git;branch=${PV} \
23 file://distcc.service" 23 file://distcc.service"
24SRCREV = "d8b18df3e9dcbe4f092bed565835d3975e99432c" 24SRCREV = "d8b18df3e9dcbe4f092bed565835d3975e99432c"
25S = "${WORKDIR}/git" 25S = "${WORKDIR}/git"
26UPSTREAM_VERSION_UNKNOWN = "1"
26 27
27inherit autotools pkgconfig update-rc.d useradd systemd 28inherit autotools pkgconfig update-rc.d useradd systemd
28 29
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
index f1c77884ea..4fded60f19 100644
--- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb
+++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb
@@ -13,8 +13,8 @@ PV = "20150728+git${SRCPV}"
13 13
14SRC_URI = "git://git.savannah.gnu.org/config.git \ 14SRC_URI = "git://git.savannah.gnu.org/config.git \
15 file://gnu-configize.in" 15 file://gnu-configize.in"
16
17S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
17UPSTREAM_VERSION_UNKNOWN = "1"
18 18
19CLEANBROKEN = "1" 19CLEANBROKEN = "1"
20 20
diff --git a/meta/recipes-devtools/llvm/llvm_git.bb b/meta/recipes-devtools/llvm/llvm_git.bb
index eb2049248e..09031f5477 100644
--- a/meta/recipes-devtools/llvm/llvm_git.bb
+++ b/meta/recipes-devtools/llvm/llvm_git.bb
@@ -26,6 +26,7 @@ SRC_URI = "git://github.com/llvm-mirror/llvm.git;branch=release_50;protocol=http
26 file://0001-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch \ 26 file://0001-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch \
27 file://0002-llvm-allow-env-override-of-exe-path.patch \ 27 file://0002-llvm-allow-env-override-of-exe-path.patch \
28 " 28 "
29UPSTREAM_VERSION_UNKNOWN = "1"
29S = "${WORKDIR}/git" 30S = "${WORKDIR}/git"
30 31
31LLVM_INSTALL_DIR = "${WORKDIR}/llvm-install" 32LLVM_INSTALL_DIR = "${WORKDIR}/llvm-install"
diff --git a/meta/recipes-devtools/mmc/mmc-utils_git.bb b/meta/recipes-devtools/mmc/mmc-utils_git.bb
index 6dcc3676c2..50acdb1cc2 100644
--- a/meta/recipes-devtools/mmc/mmc-utils_git.bb
+++ b/meta/recipes-devtools/mmc/mmc-utils_git.bb
@@ -9,6 +9,7 @@ SRCREV = "37c86e60c0442fef570b75cd81aeb1db4d0cbafd"
9PV = "0.1" 9PV = "0.1"
10 10
11SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git;branch=${SRCBRANCH}" 11SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git;branch=${SRCBRANCH}"
12UPSTREAM_VERSION_UNKNOWN = "1"
12 13
13S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
14 15
diff --git a/meta/recipes-devtools/rpm/rpm_git.bb b/meta/recipes-devtools/rpm/rpm_git.bb
index d9ff2c7fa5..59836d0b11 100644
--- a/meta/recipes-devtools/rpm/rpm_git.bb
+++ b/meta/recipes-devtools/rpm/rpm_git.bb
@@ -43,6 +43,7 @@ SRC_URI = "git://github.com/rpm-software-management/rpm \
43 file://0003-rpmstrpool.c-make-operations-over-string-pools-threa.patch \ 43 file://0003-rpmstrpool.c-make-operations-over-string-pools-threa.patch \
44 file://0004-build-pack.c-remove-static-local-variables-from-buil.patch \ 44 file://0004-build-pack.c-remove-static-local-variables-from-buil.patch \
45 " 45 "
46UPSTREAM_VERSION_UNKNOWN = "1"
46 47
47PV = "4.13.90+git${SRCPV}" 48PV = "4.13.90+git${SRCPV}"
48PE = "1" 49PE = "1"
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb
index 33ed09ae8a..4f68d01131 100644
--- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb
+++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb
@@ -15,6 +15,7 @@ SRC_URI = "git://github.com/plougher/squashfs-tools.git;protocol=https \
15 file://0001-mksquashfs.c-get-inline-functions-work-with-C99.patch;striplevel=2 \ 15 file://0001-mksquashfs.c-get-inline-functions-work-with-C99.patch;striplevel=2 \
16 file://fix-compat.patch \ 16 file://fix-compat.patch \
17" 17"
18UPSTREAM_VERSION_UNKNOWN = "1"
18SRC_URI[lzma.md5sum] = "29d5ffd03a5a3e51aef6a74e9eafb759" 19SRC_URI[lzma.md5sum] = "29d5ffd03a5a3e51aef6a74e9eafb759"
19SRC_URI[lzma.sha256sum] = "c935fd04dd8e0e8c688a3078f3675d699679a90be81c12686837e0880aa0fa1e" 20SRC_URI[lzma.sha256sum] = "c935fd04dd8e0e8c688a3078f3675d699679a90be81c12686837e0880aa0fa1e"
20 21
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
index 6d6ba76ba8..9db26dccc7 100644
--- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
+++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb
@@ -16,6 +16,7 @@ SRC_URI = "git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent;branch=1.4_ne
16 file://tcf-agent.init \ 16 file://tcf-agent.init \
17 file://tcf-agent.service \ 17 file://tcf-agent.service \
18 " 18 "
19UPSTREAM_VERSION_UNKNOWN = "1"
19 20
20DEPENDS = "util-linux openssl" 21DEPENDS = "util-linux openssl"
21RDEPENDS_${PN} = "bash" 22RDEPENDS_${PN} = "bash"
diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb
index c8db1a8156..07856108b0 100644
--- a/meta/recipes-extended/lsb/lsb_4.1.bb
+++ b/meta/recipes-extended/lsb/lsb_4.1.bb
@@ -22,6 +22,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/project/lsb/lsb_release/1.4/lsb-release-1.4.tar
22 file://lsb_pidofproc \ 22 file://lsb_pidofproc \
23 file://lsb_start_daemon \ 23 file://lsb_start_daemon \
24 " 24 "
25UPSTREAM_VERSION_UNKNOWN = "1"
25 26
26SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4" 27SRC_URI[md5sum] = "30537ef5a01e0ca94b7b8eb6a36bb1e4"
27SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172" 28SRC_URI[sha256sum] = "99321288f8d62e7a1d485b7c6bdccf06766fb8ca603c6195806e4457fdf17172"
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb
index d4ee487417..105d048f55 100644
--- a/meta/recipes-extended/unzip/unzip_6.0.bb
+++ b/meta/recipes-extended/unzip/unzip_6.0.bb
@@ -20,6 +20,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/infozip/UnZip%206.x%20%28latest%29/UnZip%206.0/
20 file://18-cve-2014-9913-unzip-buffer-overflow.patch \ 20 file://18-cve-2014-9913-unzip-buffer-overflow.patch \
21 file://19-cve-2016-9844-zipinfo-buffer-overflow.patch \ 21 file://19-cve-2016-9844-zipinfo-buffer-overflow.patch \
22" 22"
23UPSTREAM_VERSION_UNKNOWN = "1"
23 24
24SRC_URI[md5sum] = "62b490407489521db863b523a7f86375" 25SRC_URI[md5sum] = "62b490407489521db863b523a7f86375"
25SRC_URI[sha256sum] = "036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37" 26SRC_URI[sha256sum] = "036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37"
diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
index 6bfaabe829..1beb5456e1 100644
--- a/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
+++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.bb
@@ -24,6 +24,7 @@ SRC_URI = "git://github.com/xinetd-org/xinetd.git;protocol=https \
24 file://0001-configure-Use-HAVE_SYS_RESOURCE_H-to-guard-sys-resou.patch \ 24 file://0001-configure-Use-HAVE_SYS_RESOURCE_H-to-guard-sys-resou.patch \
25 file://xinetd.service \ 25 file://xinetd.service \
26 " 26 "
27UPSTREAM_VERSION_UNKNOWN = "1"
27 28
28SRCREV = "68bb9ab9e9f214ad8a2322f28ac1d6733e70bc24" 29SRCREV = "68bb9ab9e9f214ad8a2322f28ac1d6733e70bc24"
29 30
diff --git a/meta/recipes-extended/zip/zip_3.0.bb b/meta/recipes-extended/zip/zip_3.0.bb
index 087423a045..de779e94aa 100644
--- a/meta/recipes-extended/zip/zip_3.0.bb
+++ b/meta/recipes-extended/zip/zip_3.0.bb
@@ -11,6 +11,7 @@ S = "${WORKDIR}/zip30"
11 11
12SRC_URI = "${SOURCEFORGE_MIRROR}/infozip/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz \ 12SRC_URI = "${SOURCEFORGE_MIRROR}/infozip/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz \
13 file://fix-security-format.patch" 13 file://fix-security-format.patch"
14UPSTREAM_VERSION_UNKNOWN = "1"
14 15
15SRC_URI[md5sum] = "7b74551e63f8ee6aab6fbc86676c0d37" 16SRC_URI[md5sum] = "7b74551e63f8ee6aab6fbc86676c0d37"
16SRC_URI[sha256sum] = "f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369" 17SRC_URI[sha256sum] = "f0e8bb1f9b7eb0b01285495a2699df3a4b766784c1765a8f1aeedf63c0806369"
diff --git a/meta/recipes-graphics/fstests/fstests_git.bb b/meta/recipes-graphics/fstests/fstests_git.bb
index 95c33f410b..9e09cd2685 100644
--- a/meta/recipes-graphics/fstests/fstests_git.bb
+++ b/meta/recipes-graphics/fstests/fstests_git.bb
@@ -8,6 +8,7 @@ SRCREV = "e5939ff608b95cdd4d0ab0e1935781ab9a276ac0"
8PV = "0.1+git${SRCPV}" 8PV = "0.1+git${SRCPV}"
9 9
10SRC_URI = "git://git.yoctoproject.org/${BPN}" 10SRC_URI = "git://git.yoctoproject.org/${BPN}"
11UPSTREAM_VERSION_UNKNOWN = "1"
11 12
12LIC_FILES_CHKSUM = "file://test-pango-gdk.c;endline=24;md5=1ee74ec851ecda57eb7ac6cc180f7655" 13LIC_FILES_CHKSUM = "file://test-pango-gdk.c;endline=24;md5=1ee74ec851ecda57eb7ac6cc180f7655"
13 14
diff --git a/meta/recipes-graphics/kmscube/kmscube_git.bb b/meta/recipes-graphics/kmscube/kmscube_git.bb
index 9050671ab1..cab68fffb4 100644
--- a/meta/recipes-graphics/kmscube/kmscube_git.bb
+++ b/meta/recipes-graphics/kmscube/kmscube_git.bb
@@ -8,6 +8,7 @@ LIC_FILES_CHKSUM = "file://kmscube.c;beginline=1;endline=23;md5=8b309d4ee67b7315
8 8
9SRCREV = "0d8de4ce3a03f36af1817f9b0586d132ad2c5d2e" 9SRCREV = "0d8de4ce3a03f36af1817f9b0586d132ad2c5d2e"
10SRC_URI = "git://anongit.freedesktop.org/mesa/kmscube;branch=master;protocol=git" 10SRC_URI = "git://anongit.freedesktop.org/mesa/kmscube;branch=master;protocol=git"
11UPSTREAM_VERSION_UNKNOWN = "1"
11 12
12S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
13 14
diff --git a/meta/recipes-graphics/piglit/piglit_git.bb b/meta/recipes-graphics/piglit/piglit_git.bb
index 3f43798109..d274a8fbd5 100644
--- a/meta/recipes-graphics/piglit/piglit_git.bb
+++ b/meta/recipes-graphics/piglit/piglit_git.bb
@@ -6,6 +6,7 @@ SRC_URI = "git://anongit.freedesktop.org/piglit \
6 file://0001-cmake-install-bash-completions-in-the-right-place.patch \ 6 file://0001-cmake-install-bash-completions-in-the-right-place.patch \
7 file://0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch \ 7 file://0001-tests-Use-FE_UPWARD-only-if-its-defined-in-fenv.h.patch \
8 " 8 "
9UPSTREAM_VERSION_UNKNOWN = "1"
9 10
10# From 2017-07-03 11# From 2017-07-03
11SRCREV = "c8f4fd9eeb298a2ef0855927f22634f794ef3eff" 12SRCREV = "c8f4fd9eeb298a2ef0855927f22634f794ef3eff"
diff --git a/meta/recipes-graphics/vulkan/vulkan-demos_git.bb b/meta/recipes-graphics/vulkan/vulkan-demos_git.bb
index e088277a7a..828ef501a7 100644
--- a/meta/recipes-graphics/vulkan/vulkan-demos_git.bb
+++ b/meta/recipes-graphics/vulkan/vulkan-demos_git.bb
@@ -10,6 +10,7 @@ SRC_URI = "git://github.com/SaschaWillems/Vulkan.git \
10 file://0001-Don-t-build-demos-with-questionably-licensed-data.patch \ 10 file://0001-Don-t-build-demos-with-questionably-licensed-data.patch \
11 file://0001-Fix-build-on-x86.patch \ 11 file://0001-Fix-build-on-x86.patch \
12" 12"
13UPSTREAM_VERSION_UNKNOWN = "1"
13SRCREV = "18df00c7b4677b0889486e16977857aa987947e2" 14SRCREV = "18df00c7b4677b0889486e16977857aa987947e2"
14UPSTREAM_CHECK_GITTAGREGEX = "These are not the releases you're looking for" 15UPSTREAM_CHECK_GITTAGREGEX = "These are not the releases you're looking for"
15S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
diff --git a/meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb b/meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb
index b871d89f9f..733ebce745 100644
--- a/meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb
+++ b/meta/recipes-graphics/xcursor-transparent-theme/xcursor-transparent-theme_git.bb
@@ -11,6 +11,7 @@ SRCREV = "23c8af5ba4a1b7efbaf0bbca59a65ff7e10a1a06"
11PV = "0.1.1+git${SRCPV}" 11PV = "0.1.1+git${SRCPV}"
12 12
13SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master" 13SRC_URI = "git://git.yoctoproject.org/${BPN};branch=master"
14UPSTREAM_VERSION_UNKNOWN = "1"
14 15
15S = "${WORKDIR}/git" 16S = "${WORKDIR}/git"
16 17
diff --git a/meta/recipes-graphics/xorg-lib/libxcalibrate_git.bb b/meta/recipes-graphics/xorg-lib/libxcalibrate_git.bb
index 455e869c7a..7c7fa3ddb3 100644
--- a/meta/recipes-graphics/xorg-lib/libxcalibrate_git.bb
+++ b/meta/recipes-graphics/xorg-lib/libxcalibrate_git.bb
@@ -16,6 +16,7 @@ PV = "0.0+git${SRCPV}"
16 16
17SRC_URI = "git://anongit.freedesktop.org/git/xorg/lib/libXCalibrate \ 17SRC_URI = "git://anongit.freedesktop.org/git/xorg/lib/libXCalibrate \
18 file://fix-xcb.patch" 18 file://fix-xcb.patch"
19UPSTREAM_VERSION_UNKNOWN = "1"
19 20
20S = "${WORKDIR}/git" 21S = "${WORKDIR}/git"
21 22
diff --git a/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb b/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb
index b88d157923..3a989262c1 100644
--- a/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb
+++ b/meta/recipes-graphics/xorg-proto/calibrateproto_git.bb
@@ -17,3 +17,5 @@ PR = "r2"
17SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/calibrateproto \ 17SRC_URI = "git://anongit.freedesktop.org/git/xorg/proto/calibrateproto \
18 file://fix.patch;apply=yes" 18 file://fix.patch;apply=yes"
19S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"
20UPSTREAM_VERSION_UNKNOWN = "1"
21
diff --git a/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb b/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb
index 51839ddf79..2667dd899d 100644
--- a/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb
+++ b/meta/recipes-graphics/xvideo-tests/xvideo-tests_git.bb
@@ -8,6 +8,7 @@ SRCREV = "7d38b881e99eb74169d292b40f7164e461a65092"
8PV = "0.1+git${SRCPV}" 8PV = "0.1+git${SRCPV}"
9 9
10SRC_URI = "git://git.yoctoproject.org/test-xvideo" 10SRC_URI = "git://git.yoctoproject.org/test-xvideo"
11UPSTREAM_VERSION_UNKNOWN = "1"
11 12
12S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
13 14
diff --git a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
index 53089f2767..6227157401 100644
--- a/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
+++ b/meta/recipes-kernel/linux-firmware/linux-firmware_git.bb
@@ -186,6 +186,7 @@ SRC_URI += "https://git.kernel.org/cgit/linux/kernel/git/iwlwifi/linux-firmware.
186 186
187SRC_URI[iwlwifi-19.md5sum] = "132fbaee36beec5e98714f0bd66f7a1d" 187SRC_URI[iwlwifi-19.md5sum] = "132fbaee36beec5e98714f0bd66f7a1d"
188SRC_URI[iwlwifi-19.sha256sum] = "2034470df64d323b827c4f2d4d0d55be2846b7360179b5574aa28ff77b6c9471" 188SRC_URI[iwlwifi-19.sha256sum] = "2034470df64d323b827c4f2d4d0d55be2846b7360179b5574aa28ff77b6c9471"
189UPSTREAM_VERSION_UNKNOWN = "1"
189 190
190S = "${WORKDIR}/git" 191S = "${WORKDIR}/git"
191 192
diff --git a/meta/recipes-multimedia/gstreamer/gst-player_git.bb b/meta/recipes-multimedia/gstreamer/gst-player_git.bb
index cb12a464a4..f3580570b4 100644
--- a/meta/recipes-multimedia/gstreamer/gst-player_git.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-player_git.bb
@@ -13,6 +13,7 @@ SRC_URI = "git://github.com/sdroege/gst-player.git \
13 13
14SRCREV = "ee3c226c82767a089743e4e06058743e67f73cdb" 14SRCREV = "ee3c226c82767a089743e4e06058743e67f73cdb"
15PV = "0.0.1+git${SRCPV}" 15PV = "0.0.1+git${SRCPV}"
16UPSTREAM_VERSION_UNKNOWN = "1"
16 17
17S = "${WORKDIR}/git" 18S = "${WORKDIR}/git"
18 19
diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index 69f52c2b36..c5476c7a9b 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -12,6 +12,7 @@ SRC_URI = "git://github.com/mirror/x264;branch=stable \
12 file://don-t-default-to-cortex-a9-with-neon.patch \ 12 file://don-t-default-to-cortex-a9-with-neon.patch \
13 file://Fix-X32-build-by-disabling-asm.patch \ 13 file://Fix-X32-build-by-disabling-asm.patch \
14 " 14 "
15UPSTREAM_VERSION_UNKNOWN = "1"
15 16
16SRCREV = "2b741f81e51f92d053d87a49f59ff1026553a0f6" 17SRCREV = "2b741f81e51f92d053d87a49f59ff1026553a0f6"
17 18
diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb b/meta/recipes-sato/puzzles/puzzles_git.bb
index 7b8495ff75..decd2a8b30 100644
--- a/meta/recipes-sato/puzzles/puzzles_git.bb
+++ b/meta/recipes-sato/puzzles/puzzles_git.bb
@@ -16,6 +16,7 @@ SRC_URI = "git://git.tartarus.org/simon/puzzles.git \
16 file://0001-Clarify-conditions-to-avoid-compiler-errors.patch \ 16 file://0001-Clarify-conditions-to-avoid-compiler-errors.patch \
17 file://0001-Use-Wno-error-format-overflow-if-the-compiler-suppor.patch \ 17 file://0001-Use-Wno-error-format-overflow-if-the-compiler-suppor.patch \
18 " 18 "
19UPSTREAM_VERSION_UNKNOWN = "1"
19SRCREV = "8dfe5cec31e784e4ece2955ecc8cc35ee7e8fbb3" 20SRCREV = "8dfe5cec31e784e4ece2955ecc8cc35ee7e8fbb3"
20PE = "1" 21PE = "1"
21PV = "0.0+git${SRCPV}" 22PV = "0.0+git${SRCPV}"