diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-07-01 17:01:10 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-07-01 17:01:10 +0000 |
| commit | f6f13fa4110440152b1449c5a6fd6f59e108b555 (patch) | |
| tree | c98b76db37b74e2be92fe3f9ab9879893be72e1a | |
| parent | 6ff582b03daf5af75c571c3c8664e353b3e96b22 (diff) | |
| download | alicelinux-f6f13fa4110440152b1449c5a6fd6f59e108b555.tar.gz alicelinux-f6f13fa4110440152b1449c5a6fd6f59e108b555.zip | |
Woodpecker CI e38d6fd796f2957058fed05a745ba9995358f2ee [SKIP CI]
| -rw-r--r-- | librewolf/.checksum | 3 | ||||
| -rw-r--r-- | librewolf/abuild | 5 | ||||
| -rw-r--r-- | librewolf/fix-sqlite-vec-uint.patch | 20 |
3 files changed, 3 insertions, 25 deletions
diff --git a/librewolf/.checksum b/librewolf/.checksum index 0cf9e99a..9c0eb55c 100644 --- a/librewolf/.checksum +++ b/librewolf/.checksum @@ -1,4 +1,3 @@ 504da8aa33992b09a74d8ec262ec6c99752e64fb1d03441f86a49a21a874f95e fix-rust-target.patch -c898b3e5e2547be1201842ac1bff5e9abf89e77ae5aa3f99c22f744e07b21981 fix-sqlite-vec-uint.patch -4ab15c06bb0a2ef9af4eaa96d74a463c3d483cda522cdc7398ccc90c7be50495 librewolf-139.0.4-1.source.tar.gz +e640e6e09e13c71f94266e62250b8f5c573f8eea36249da5752fd4533220e967 librewolf-140.0.2-1.source.tar.gz 30889a96df16927cca69826f3ca94b9f751819c2fcae07001a7108847ff25cb6 visibility.patch diff --git a/librewolf/abuild b/librewolf/abuild index e583c3ae..aae514dd 100644 --- a/librewolf/abuild +++ b/librewolf/abuild @@ -1,13 +1,12 @@ name=librewolf -version=139.0.4.1 +version=140.0.2.1 _ver=${version%.*} _sion=${version##*.} _version=${_ver}-${_sion} release=1 source="https://gitlab.com/api/v4/projects/32320088/packages/generic/librewolf-source/${_version}/librewolf-${_version}.source.tar.gz visibility.patch - fix-rust-target.patch - fix-sqlite-vec-uint.patch" + fix-rust-target.patch" build() { cat > mozconfig << EOF diff --git a/librewolf/fix-sqlite-vec-uint.patch b/librewolf/fix-sqlite-vec-uint.patch deleted file mode 100644 index 36a83a99..00000000 --- a/librewolf/fix-sqlite-vec-uint.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/third_party/sqlite3/ext/sqlite-vec/sqlite-vec.c b/third_party/sqlite3/ext/sqlite-vec/sqlite-vec.c -index 96612e2..d641b11 100644 ---- a/third_party/sqlite3/ext/sqlite-vec/sqlite-vec.c -+++ b/third_party/sqlite3/ext/sqlite-vec/sqlite-vec.c -@@ -66,6 +66,7 @@ SQLITE_EXTENSION_INIT3 - #ifndef __COSMOPOLITAN__ - #ifndef __wasi__ - #ifndef __sun__ -+#ifndef linux - typedef u_int8_t uint8_t; - typedef u_int16_t uint16_t; - typedef u_int64_t uint64_t; -@@ -74,6 +75,7 @@ typedef u_int64_t uint64_t; - #endif - #endif - #endif -+#endif - - typedef int8_t i8; - typedef uint8_t u8; |