diff options
Diffstat (limited to 'meta-oe/dynamic-layers/meta-python')
15 files changed, 23 insertions, 141 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-bsp/rwmem/rwmem_1.2.bb b/meta-oe/dynamic-layers/meta-python/recipes-bsp/rwmem/rwmem_1.2.bb index 90c9a7147c..a32c9403c8 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-bsp/rwmem/rwmem_1.2.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-bsp/rwmem/rwmem_1.2.bb | |||
@@ -20,7 +20,6 @@ SRCREV = "8416326777b2aada0706539b8f9f6acefa476b16" | |||
20 | SRC_URI = "git://github.com/tomba/rwmem.git;protocol=https;name=rwmem;branch=master \ | 20 | SRC_URI = "git://github.com/tomba/rwmem.git;protocol=https;name=rwmem;branch=master \ |
21 | file://0001-include-missing-cstdint.patch" | 21 | file://0001-include-missing-cstdint.patch" |
22 | 22 | ||
23 | S = "${WORKDIR}/git" | ||
24 | 23 | ||
25 | inherit meson pkgconfig python3native | 24 | inherit meson pkgconfig python3native |
26 | 25 | ||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb index d348ef8be9..17a1d3c947 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.2.bb | |||
@@ -70,13 +70,13 @@ do_install:append() { | |||
70 | 70 | ||
71 | install -m 0755 -d ${D}${sysconfdir} | 71 | install -m 0755 -d ${D}${sysconfdir} |
72 | install -m 0755 -d ${D}${sysconfdir}/lirc | 72 | install -m 0755 -d ${D}${sysconfdir}/lirc |
73 | install -m 0644 ${WORKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ | 73 | install -m 0644 ${UNPACKDIR}/lircd.conf ${D}${sysconfdir}/lirc/ |
74 | install -m 0644 ${WORKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ | 74 | install -m 0644 ${UNPACKDIR}/lirc_options.conf ${D}${sysconfdir}/lirc/ |
75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 75 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d | 76 | install -m 0755 -d ${D}${systemd_unitdir}/system ${D}${libdir}/tmpfiles.d |
77 | install -m 0644 ${WORKDIR}/lircd.service ${D}${systemd_unitdir}/system/ | 77 | install -m 0644 ${UNPACKDIR}/lircd.service ${D}${systemd_unitdir}/system/ |
78 | install -m 0755 ${WORKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ | 78 | install -m 0755 ${UNPACKDIR}/lircexec.init ${D}${systemd_unitdir}/system/ |
79 | install -m 0644 ${WORKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf | 79 | install -m 0644 ${UNPACKDIR}/lirc.tmpfiles ${D}${libdir}/tmpfiles.d/lirc.conf |
80 | else | 80 | else |
81 | rm -rf ${D}/lib | 81 | rm -rf ${D}/lib |
82 | fi | 82 | fi |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0002-meson.build-do-not-use-Werror.patch b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-meson.build-do-not-use-Werror.patch index 663a80ecde..663a80ecde 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0002-meson.build-do-not-use-Werror.patch +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-meson.build-do-not-use-Werror.patch | |||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-meson.build-drop-unnecessary-build-dependencies.patch b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-meson.build-drop-unnecessary-build-dependencies.patch deleted file mode 100644 index 4f385e917a..0000000000 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-meson.build-drop-unnecessary-build-dependencies.patch +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | From d3aa30f5cd7ba375e006a755752acbcfcd619452 Mon Sep 17 00:00:00 2001 | ||
2 | From: Yi Zhao <yi.zhao@windriver.com> | ||
3 | Date: Wed, 6 Mar 2024 19:27:15 +0800 | ||
4 | Subject: [PATCH] meson.build: drop unnecessary build dependencies | ||
5 | |||
6 | The pytest and pycoverage are required by meson test but not for | ||
7 | building. Mark them as 'required: false' to get rid of unnecessary | ||
8 | build dependencies. | ||
9 | |||
10 | Upstream-Status: Inappropriate [oe specific] | ||
11 | |||
12 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
13 | --- | ||
14 | meson.build | 8 ++++++-- | ||
15 | 1 file changed, 6 insertions(+), 2 deletions(-) | ||
16 | |||
17 | diff --git a/meson.build b/meson.build | ||
18 | index 9556836a..30f33fe2 100644 | ||
19 | --- a/meson.build | ||
20 | +++ b/meson.build | ||
21 | @@ -25,8 +25,8 @@ bash_completions_dir = completions.get_variable(pkgconfig: 'completionsdir', def | ||
22 | # Order: Fedora/Mageia/openSUSE || Debian/Ubuntu | ||
23 | pyflakes = find_program('pyflakes-3', 'pyflakes3', required: false) | ||
24 | pycodestyle = find_program('pycodestyle-3', 'pycodestyle', 'pep8', required: false) | ||
25 | -pytest = find_program('pytest-3', 'pytest3') # also requires the pytest-cov plugin | ||
26 | -pycoverage = find_program('coverage-3', 'python3-coverage') | ||
27 | +pytest = find_program('pytest-3', 'pytest3', required: false) # also requires the pytest-cov plugin | ||
28 | +pycoverage = find_program('coverage-3', 'python3-coverage', required: false) | ||
29 | pandoc = find_program('pandoc', required: false) | ||
30 | find = find_program('find') | ||
31 | |||
32 | @@ -75,6 +75,7 @@ if get_option('unit_testing') | ||
33 | endif | ||
34 | |||
35 | #FIXME: exclude doc/env/ | ||
36 | +if pyflakes.found() and pycodestyle.found() | ||
37 | test('linting', | ||
38 | pyflakes, | ||
39 | timeout: 100, | ||
40 | @@ -91,7 +92,9 @@ test('legacy-tests', | ||
41 | find_program('tests/cli_legacy.py'), | ||
42 | timeout: 600, | ||
43 | env: test_env) | ||
44 | +endif | ||
45 | #TODO: split out dbus tests into own test() instance, to run in parallel | ||
46 | +if pycoverage.found() | ||
47 | test('unit-tests', | ||
48 | pycoverage, | ||
49 | args: ['run', '-a', '-m', 'pytest', '-s', '-v', '--cov-append', meson.current_source_dir()], | ||
50 | @@ -143,4 +146,5 @@ if get_option('b_coverage') | ||
51 | priority: -99, # run last | ||
52 | is_parallel: false) | ||
53 | endif | ||
54 | +endif | ||
55 | |||
56 | -- | ||
57 | 2.25.1 | ||
58 | |||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-networkd.c-define-scope-specific-to-case-statement.patch b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-networkd.c-define-scope-specific-to-case-statement.patch deleted file mode 100644 index 9f01108a20..0000000000 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan/0001-networkd.c-define-scope-specific-to-case-statement.patch +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | From 6e3dd61bf90a7ca8c36c5b95943cbff7c1ad3c2d Mon Sep 17 00:00:00 2001 | ||
2 | From: Yi Zhao <yi.zhao@windriver.com> | ||
3 | Date: Wed, 6 Mar 2024 16:12:31 +0800 | ||
4 | Subject: [PATCH] networkd.c: define scope specific to case statement | ||
5 | |||
6 | Per [1], define a scope specific to case statement to fix build with | ||
7 | clang. | ||
8 | |||
9 | Fixes: | ||
10 | ../git/src/networkd.c:544:13: error: expected expression | ||
11 | 544 | gchar* first = g_strcmp0(def->id, def->veth_peer_link->id) < 0 ? def->id : def->veth_peer_link->id; | ||
12 | | ^ | ||
13 | ../git/src/networkd.c:545:17: error: use of undeclared identifier 'first' | ||
14 | 545 | if (first != def->id) { | ||
15 | | ^ | ||
16 | |||
17 | [1] https://stackoverflow.com/questions/92396/why-cant-variables-be-declared-in-a-switch-statement | ||
18 | |||
19 | Upstream-Status: Pending | ||
20 | |||
21 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
22 | --- | ||
23 | src/networkd.c | 2 ++ | ||
24 | 1 file changed, 2 insertions(+) | ||
25 | |||
26 | diff --git a/src/networkd.c b/src/networkd.c | ||
27 | index 25121c48..5eb9c0fe 100644 | ||
28 | --- a/src/networkd.c | ||
29 | +++ b/src/networkd.c | ||
30 | @@ -541,12 +541,14 @@ write_netdev_file(const NetplanNetDefinition* def, const char* rootdir, const ch | ||
31 | * and, if the selected name is the name of the netdef being written, we generate | ||
32 | * the .netdev file. Otherwise we skip the netdef. | ||
33 | */ | ||
34 | + { | ||
35 | gchar* first = g_strcmp0(def->id, def->veth_peer_link->id) < 0 ? def->id : def->veth_peer_link->id; | ||
36 | if (first != def->id) { | ||
37 | g_string_free(s, TRUE); | ||
38 | return; | ||
39 | } | ||
40 | g_string_append_printf(s, "Kind=veth\n\n[Peer]\nName=%s\n", def->veth_peer_link->id); | ||
41 | + } | ||
42 | break; | ||
43 | |||
44 | case NETPLAN_DEF_TYPE_TUNNEL: | ||
45 | -- | ||
46 | 2.25.1 | ||
47 | |||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.0.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb index 229414718c..ef1945b4fe 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.0.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/netplan/netplan_1.1.2.bb | |||
@@ -14,26 +14,24 @@ inherit meson pkgconfig systemd python3targetconfig features_check | |||
14 | 14 | ||
15 | REQUIRED_DISTRO_FEATURES = "systemd" | 15 | REQUIRED_DISTRO_FEATURES = "systemd" |
16 | 16 | ||
17 | SRC_URI = "git://github.com/CanonicalLtd/netplan.git;branch=main;protocol=https \ | 17 | SRC_URI = "git://github.com/CanonicalLtd/netplan.git;branch=stable/1.1;protocol=https \ |
18 | file://0001-meson.build-drop-unnecessary-build-dependencies.patch \ | 18 | file://0001-meson.build-do-not-use-Werror.patch \ |
19 | file://0002-meson.build-do-not-use-Werror.patch \ | ||
20 | " | 19 | " |
21 | 20 | ||
22 | SRC_URI:append:libc-musl = " file://0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch" | 21 | SRC_URI:append:libc-musl = " file://0001-don-t-fail-if-GLOB_BRACE-is-not-defined.patch" |
23 | SRC_URI:append:toolchain-clang = " file://0001-networkd.c-define-scope-specific-to-case-statement.patch" | ||
24 | 22 | ||
25 | SRCREV = "45f7cd1569896d9e316c130bf5c60b7ccfc8211d" | 23 | SRCREV = "01045f683b9419beb90119497cd1b2be44e83b8e" |
26 | 24 | ||
27 | S = "${WORKDIR}/git" | ||
28 | 25 | ||
29 | DEPENDS = "glib-2.0 libyaml util-linux-libuuid \ | 26 | DEPENDS = "glib-2.0 libyaml util-linux-libuuid \ |
30 | systemd python3-cffi-native \ | 27 | systemd python3-cffi-native \ |
31 | " | 28 | " |
32 | 29 | ||
33 | EXTRA_OEMESON = "-Dunit_testing=false" | 30 | EXTRA_OEMESON = "-Dtesting=false -Dunit_testing=false" |
34 | 31 | ||
35 | RDEPENDS:${PN} = "python3-core python3-netifaces python3-pyyaml \ | 32 | RDEPENDS:${PN} = "python3-core python3-netifaces python3-pyyaml \ |
36 | python3-dbus python3-rich python3-cffi \ | 33 | python3-dbus python3-rich python3-cffi \ |
34 | python3-json python3-fcntl \ | ||
37 | util-linux-libuuid libnetplan \ | 35 | util-linux-libuuid libnetplan \ |
38 | " | 36 | " |
39 | 37 | ||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.7.4.bb index 0d0f6fea48..57e162cabd 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.4.6.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway_3.7.4.bb | |||
@@ -7,7 +7,7 @@ HOMEPAGE = "https://thingsboard.io/" | |||
7 | LICENSE = "Apache-2.0" | 7 | LICENSE = "Apache-2.0" |
8 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" | 8 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" |
9 | 9 | ||
10 | SRC_URI[sha256sum] = "fc24bb674308f05d963a1dbed8d0b38ead77424ad7cf032a2652732af48f1336" | 10 | SRC_URI[sha256sum] = "5811a3c5a2334e41776f249df20c1d6a0def62a6e11e77bf2abeaa02f2725260" |
11 | 11 | ||
12 | inherit pypi setuptools3 | 12 | inherit pypi setuptools3 |
13 | 13 | ||
@@ -55,13 +55,13 @@ do_install:append(){ | |||
55 | 55 | ||
56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config | 56 | install -d ${D}${sysconfdir}/thingsboard-gateway/config |
57 | 57 | ||
58 | for file in $(find ${WORKDIR} -maxdepth 1 -type f -name *.json); do | 58 | for file in $(find ${UNPACKDIR} -maxdepth 1 -type f -name *.json); do |
59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config | 59 | install -m 0644 "$file" ${D}${sysconfdir}/thingsboard-gateway/config |
60 | done | 60 | done |
61 | 61 | ||
62 | install -m 0644 ${WORKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config | 62 | install -m 0644 ${UNPACKDIR}/tb_gateway.yaml ${D}${sysconfdir}/thingsboard-gateway/config |
63 | install -m 0644 ${WORKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config | 63 | install -m 0644 ${UNPACKDIR}/logs.conf ${D}${sysconfdir}/thingsboard-gateway/config |
64 | 64 | ||
65 | install -d ${D}${systemd_unitdir}/system/ | 65 | install -d ${D}${systemd_unitdir}/system/ |
66 | install -m 0644 ${WORKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service | 66 | install -m 0644 ${UNPACKDIR}/thingsboard-gateway.service ${D}${systemd_system_unitdir}/thingsboard-gateway.service |
67 | } | 67 | } |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb_git.bb b/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb_git.bb index ee5c77a85d..23515d9fa8 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb_git.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-dbs/mongodb/mongodb_git.bb | |||
@@ -37,7 +37,7 @@ SRC_URI = "git://github.com/mongodb/mongo.git;branch=v4.4;protocol=https \ | |||
37 | file://0001-Fix-type-mismatch-on-32bit-arches.patch \ | 37 | file://0001-Fix-type-mismatch-on-32bit-arches.patch \ |
38 | file://0001-Fix-build-on-32bit.patch \ | 38 | file://0001-Fix-build-on-32bit.patch \ |
39 | " | 39 | " |
40 | SRC_URI:append:libc-musl ="\ | 40 | SRC_URI:append:libc-musl = "\ |
41 | file://0001-Mark-one-of-strerror_r-implementation-glibc-specific.patch \ | 41 | file://0001-Mark-one-of-strerror_r-implementation-glibc-specific.patch \ |
42 | file://0002-Fix-default-stack-size-to-256K.patch \ | 42 | file://0002-Fix-default-stack-size-to-256K.patch \ |
43 | file://0004-wiredtiger-Disable-strtouq-on-musl.patch \ | 43 | file://0004-wiredtiger-Disable-strtouq-on-musl.patch \ |
@@ -48,7 +48,6 @@ SRC_URI:append:toolchain-clang = "\ | |||
48 | file://0001-asio-Dont-use-experimental-with-clang.patch \ | 48 | file://0001-asio-Dont-use-experimental-with-clang.patch \ |
49 | " | 49 | " |
50 | 50 | ||
51 | S = "${WORKDIR}/git" | ||
52 | 51 | ||
53 | CVE_STATUS[CVE-2014-8180] = "not-applicable-config: Not affecting our configuration so it can be safely ignored." | 52 | CVE_STATUS[CVE-2014-8180] = "not-applicable-config: Not affecting our configuration so it can be safely ignored." |
54 | CVE_STATUS[CVE-2017-2665] = "not-applicable-config: Not affecting our configuration so it can be safely ignored." | 53 | CVE_STATUS[CVE-2017-2665] = "not-applicable-config: Not affecting our configuration so it can be safely ignored." |
@@ -73,10 +72,6 @@ WIREDTIGER ?= "off" | |||
73 | WIREDTIGER:x86-64 = "on" | 72 | WIREDTIGER:x86-64 = "on" |
74 | WIREDTIGER:aarch64 = "on" | 73 | WIREDTIGER:aarch64 = "on" |
75 | 74 | ||
76 | # ld.gold: fatal error: build/59f4f0dd/mongo/mongod: Structure needs cleaning | ||
77 | LDFLAGS:append:x86:libc-musl = " -fuse-ld=bfd" | ||
78 | LDFLAGS:remove:toolchain-clang = "-fuse-ld=bfd" | ||
79 | |||
80 | EXTRA_OESCONS = "PREFIX=${prefix} \ | 75 | EXTRA_OESCONS = "PREFIX=${prefix} \ |
81 | DESTDIR=${D} \ | 76 | DESTDIR=${D} \ |
82 | MAXLINELENGTH='2097152' \ | 77 | MAXLINELENGTH='2097152' \ |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-generator_0.4.8.bb b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-generator_0.4.9.1.bb index c86750f8b6..c86750f8b6 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-generator_0.4.8.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-generator_0.4.9.1.bb | |||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-runtime_0.4.8.bb b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-runtime_0.4.9.1.bb index e43931a4ec..e43931a4ec 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-runtime_0.4.8.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb-runtime_0.4.9.1.bb | |||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb.inc b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb.inc index 87dbc73e63..4fe3995cd5 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb.inc +++ b/meta-oe/dynamic-layers/meta-python/recipes-devtools/nanopb/nanopb.inc | |||
@@ -1,11 +1,10 @@ | |||
1 | DESCRIPTION="Protocol Buffers with small code size" | 1 | DESCRIPTION = "Protocol Buffers with small code size" |
2 | LICENSE="Zlib" | 2 | LICENSE = "Zlib" |
3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9db4b73a55a3994384112efcdb37c01f" | 3 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=9db4b73a55a3994384112efcdb37c01f" |
4 | 4 | ||
5 | SRC_URI = "git://github.com/nanopb/nanopb.git;branch=master;protocol=https" | 5 | SRC_URI = "git://github.com/nanopb/nanopb.git;branch=maintenance_0.4;protocol=https" |
6 | SRCREV = "6cfe48d6f1593f8fa5c0f90437f5e6522587745e" | 6 | SRCREV = "cad3c18ef15a663e30e3e43e3a752b66378adec1" |
7 | 7 | ||
8 | S = "${WORKDIR}/git" | ||
9 | 8 | ||
10 | inherit cmake | 9 | inherit cmake |
11 | 10 | ||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-extended/lcdproc/lcdproc_git.bb b/meta-oe/dynamic-layers/meta-python/recipes-extended/lcdproc/lcdproc_git.bb index c29c51a2ae..d4987acede 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-extended/lcdproc/lcdproc_git.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-extended/lcdproc/lcdproc_git.bb | |||
@@ -13,7 +13,6 @@ PV = "0.5.9+git" | |||
13 | SRCREV = "0e2ce9b9c46c47363436f9ee730f7c71bf455f0f" | 13 | SRCREV = "0e2ce9b9c46c47363436f9ee730f7c71bf455f0f" |
14 | SRC_URI = "git://github.com/lcdproc/lcdproc;branch=master;protocol=https" | 14 | SRC_URI = "git://github.com/lcdproc/lcdproc;branch=master;protocol=https" |
15 | 15 | ||
16 | S = "${WORKDIR}/git" | ||
17 | 16 | ||
18 | inherit autotools pkgconfig update-rc.d | 17 | inherit autotools pkgconfig update-rc.d |
19 | 18 | ||
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-multimedia/kmsxx/kmsxx_git.bb b/meta-oe/dynamic-layers/meta-python/recipes-multimedia/kmsxx/kmsxx_git.bb index cdba1a24d1..5d204d7d94 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-multimedia/kmsxx/kmsxx_git.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-multimedia/kmsxx/kmsxx_git.bb | |||
@@ -20,7 +20,6 @@ PACKAGECONFIG[utils] += "-Dutils=true, -Dutils=false" | |||
20 | 20 | ||
21 | DEPENDS += "libdrm libevdev fmt" | 21 | DEPENDS += "libdrm libevdev fmt" |
22 | 22 | ||
23 | S = "${WORKDIR}/git" | ||
24 | 23 | ||
25 | inherit meson pkgconfig | 24 | inherit meson pkgconfig |
26 | 25 | ||
@@ -31,5 +30,5 @@ do_install:append() { | |||
31 | fi | 30 | fi |
32 | } | 31 | } |
33 | 32 | ||
34 | FILES:${PN} ="${bindir} ${libdir}" | 33 | FILES:${PN} = "${bindir} ${libdir}" |
35 | FILES:${PN}-python += "${PYTHON_SITEPACKAGES_DIR}/*" | 34 | FILES:${PN}-python += "${PYTHON_SITEPACKAGES_DIR}/*" |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb b/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.8.bb index ec483321b6..cf2d54c07d 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.8.bb | |||
@@ -19,10 +19,9 @@ SYSTEMD_AUTO_ENABLE ?= "disable" | |||
19 | 19 | ||
20 | RDEPENDS:${PN} += "python3 python3-six python3-pyparsing python3-configshell-fb" | 20 | RDEPENDS:${PN} += "python3 python3-six python3-pyparsing python3-configshell-fb" |
21 | 21 | ||
22 | SRCREV = "0a6b088db2dc2e5de11e6f23f1e890e4b54fee64" | 22 | SRCREV = "d323d5a3091af490502c5d025ec7361a3a2cfbd9" |
23 | SRC_URI = "git://git.infradead.org/users/hch/nvmetcli.git;branch=master" | 23 | SRC_URI = "git://git.infradead.org/users/hch/nvmetcli.git;branch=master" |
24 | 24 | ||
25 | S = "${WORKDIR}/git" | ||
26 | 25 | ||
27 | do_install:append() { | 26 | do_install:append() { |
28 | # Install example configuration scripts. | 27 | # Install example configuration scripts. |
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-support/smem/smem_1.5.bb b/meta-oe/dynamic-layers/meta-python/recipes-support/smem/smem_1.5.bb index 9f85532064..79a7f4095e 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-support/smem/smem_1.5.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-support/smem/smem_1.5.bb | |||
@@ -12,13 +12,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |||
12 | HG_CHANGESET = "98273ce331bb" | 12 | HG_CHANGESET = "98273ce331bb" |
13 | SRC_URI = "https://selenic.com/repo/${BPN}/archive/${HG_CHANGESET}.tar.bz2;downloadfilename=${BP}.tar.bz2 \ | 13 | SRC_URI = "https://selenic.com/repo/${BPN}/archive/${HG_CHANGESET}.tar.bz2;downloadfilename=${BP}.tar.bz2 \ |
14 | file://0001-smem-fix-support-for-source-option-python3.patch" | 14 | file://0001-smem-fix-support-for-source-option-python3.patch" |
15 | SRC_URI[md5sum] = "51c3989779360f42b42ef46b2831be3a" | ||
16 | SRC_URI[sha256sum] = "161131c686a6d9962a0e96912526dd46308e022d62e3f8acaed5a56fda8e08ce" | 15 | SRC_URI[sha256sum] = "161131c686a6d9962a0e96912526dd46308e022d62e3f8acaed5a56fda8e08ce" |
17 | 16 | ||
18 | UPSTREAM_CHECK_URI = "https://selenic.com/repo/smem/tags" | 17 | UPSTREAM_CHECK_URI = "https://selenic.com/repo/smem/tags" |
19 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)" | 18 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)" |
20 | 19 | ||
21 | S = "${WORKDIR}/${BPN}-${HG_CHANGESET}" | 20 | S = "${UNPACKDIR}/${BPN}-${HG_CHANGESET}" |
22 | 21 | ||
23 | do_compile() { | 22 | do_compile() { |
24 | ${CC} ${CFLAGS} ${LDFLAGS} smemcap.c -o smemcap | 23 | ${CC} ${CFLAGS} ${LDFLAGS} smemcap.c -o smemcap |