diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2023-10-12 09:30:30 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2023-10-12 21:56:54 +0300 |
commit | 3ef961dec5acc9106f079852657a11395d792453 (patch) | |
tree | 99ab9c4303b72fe1044fd20a912f460ff9249650 /recipes/build-tools | |
parent | 10c0d8e91ed01e99b24d43d4339506a9b8af84d9 (diff) |
cargo-c: Update to 0.9.27
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1281>
Diffstat (limited to 'recipes/build-tools')
-rw-r--r-- | recipes/build-tools/cargo-c.recipe | 6 | ||||
-rw-r--r-- | recipes/build-tools/cargo-c/0.9.27-Cargo.lock (renamed from recipes/build-tools/cargo-c/0.9.26-Cargo.lock) | 18 | ||||
-rw-r--r-- | recipes/build-tools/cargo-c/0001-Fix-linking-with-Android-NDK-linker.patch | 8 |
3 files changed, 16 insertions, 16 deletions
diff --git a/recipes/build-tools/cargo-c.recipe b/recipes/build-tools/cargo-c.recipe index 9f18536b..8dc77531 100644 --- a/recipes/build-tools/cargo-c.recipe +++ b/recipes/build-tools/cargo-c.recipe @@ -2,11 +2,11 @@ class Recipe(recipe.Recipe): name = 'cargo-c' - version = '0.9.26' + version = '0.9.27' stype = SourceType.TARBALL btype = BuildType.CARGO - url = 'https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.26.tar.gz' - tarball_checksum = '6101c4f1d6b17f6b42982dd908f194493e966a91d5a3cf9c210c65dbf66683b3' + url = 'https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.27.tar.gz' + tarball_checksum = 'caca521e893ae7cc63a9e2c5e58f2151b7b74754a4fd884c8eb5939b967ae0d5' tarball_dirname = '%(name)s-%(version)s' # Get this from the release page on github cargo_lock = f'{name}/{version}-Cargo.lock' diff --git a/recipes/build-tools/cargo-c/0.9.26-Cargo.lock b/recipes/build-tools/cargo-c/0.9.27-Cargo.lock index 7f705325..b234792d 100644 --- a/recipes/build-tools/cargo-c/0.9.26-Cargo.lock +++ b/recipes/build-tools/cargo-c/0.9.27-Cargo.lock @@ -263,7 +263,7 @@ dependencies = [ [[package]] name = "cargo-c" -version = "0.9.26+cargo-0.74.0" +version = "0.9.27+cargo-0.74.0" dependencies = [ "anyhow", "cargo", @@ -1681,9 +1681,9 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jobserver" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] @@ -1985,9 +1985,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "2.10.0" +version = "2.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" +checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" dependencies = [ "num-traits", ] @@ -2229,7 +2229,7 @@ dependencies = [ "aho-corasick", "memchr", "regex-automata 0.4.1", - "regex-syntax 0.8.0", + "regex-syntax 0.8.1", ] [[package]] @@ -2249,7 +2249,7 @@ checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.0", + "regex-syntax 0.8.1", ] [[package]] @@ -2260,9 +2260,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3cbb081b9784b07cceb8824c8583f86db4814d172ab043f3c23f7dc600bf83d" +checksum = "56d84fdd47036b038fc80dd333d10b6aab10d5d31f4a366e20014def75328d33" [[package]] name = "rfc6979" diff --git a/recipes/build-tools/cargo-c/0001-Fix-linking-with-Android-NDK-linker.patch b/recipes/build-tools/cargo-c/0001-Fix-linking-with-Android-NDK-linker.patch index 8cdcf1f3..0e7a65b3 100644 --- a/recipes/build-tools/cargo-c/0001-Fix-linking-with-Android-NDK-linker.patch +++ b/recipes/build-tools/cargo-c/0001-Fix-linking-with-Android-NDK-linker.patch @@ -1,4 +1,4 @@ -From 67a5aa982df5bdc9bd73d0e465ef141895e7575f Mon Sep 17 00:00:00 2001 +From 305ea8afe4ba7b7c610ccb49e8d299b25d40ea75 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan <nirbheek@centricular.com> Date: Thu, 1 Sep 2022 21:33:29 +0530 Subject: [PATCH] Fix linking with Android NDK linker @@ -10,11 +10,11 @@ the other linker arguments passed by cargo do not have a -Wl prefix. 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target.rs b/src/target.rs -index 975fde5..e1d5a58 100644 +index 136cf54..8c560d1 100644 --- a/src/target.rs +++ b/src/target.rs -@@ -76,7 +76,7 @@ impl Target { - }; +@@ -73,7 +73,7 @@ impl Target { + let sover = version.main_version(); if os == "android" { - lines.push(format!("-Wl,-soname,lib{lib_name}.so")); |