aboutsummaryrefslogtreecommitdiff
path: root/repos/extra/librewolf
diff options
context:
space:
mode:
Diffstat (limited to 'repos/extra/librewolf')
-rw-r--r--repos/extra/librewolf/.checksum3
-rw-r--r--repos/extra/librewolf/abuild5
-rw-r--r--repos/extra/librewolf/fix-sqlite-vec-uint.patch20
3 files changed, 3 insertions, 25 deletions
diff --git a/repos/extra/librewolf/.checksum b/repos/extra/librewolf/.checksum
index 0cf9e99a..9c0eb55c 100644
--- a/repos/extra/librewolf/.checksum
+++ b/repos/extra/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/repos/extra/librewolf/abuild b/repos/extra/librewolf/abuild
index e583c3ae..aae514dd 100644
--- a/repos/extra/librewolf/abuild
+++ b/repos/extra/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/repos/extra/librewolf/fix-sqlite-vec-uint.patch b/repos/extra/librewolf/fix-sqlite-vec-uint.patch
deleted file mode 100644
index 36a83a99..00000000
--- a/repos/extra/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;