* [PR PATCH] localsearch: update to 3.8.2.
@ 2025-01-29 6:21 oreo639
2025-02-01 10:01 ` [PR PATCH] [Merged]: " oreo639
0 siblings, 1 reply; 2+ messages in thread
From: oreo639 @ 2025-01-29 6:21 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1249 bytes --]
There is a new pull request by oreo639 against master on the void-packages repository
https://github.com/oreo639/void-packages localsearch
https://github.com/void-linux/void-packages/pull/54141
localsearch: update to 3.8.2.
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/54141.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-localsearch-54141.patch --]
[-- Type: text/x-diff, Size: 4533 bytes --]
From 3a3e0b01014b031a0e0bcd7e66c0f3114fe6a08d Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Tue, 28 Jan 2025 22:14:19 -0800
Subject: [PATCH 1/2] tinysparql: update to 3.8.2.
---
srcpkgs/tinysparql/template | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/tinysparql/template b/srcpkgs/tinysparql/template
index 406a4f2a0c9919..1ccd47054ed9ab 100644
--- a/srcpkgs/tinysparql/template
+++ b/srcpkgs/tinysparql/template
@@ -1,7 +1,7 @@
# Template file for 'tinysparql'
pkgname=tinysparql
-version=3.8.0
-revision=2
+version=3.8.2
+revision=1
build_style=meson
build_helper="gir qemu"
configure_args="-Ddocs=false -Dman=true -Dstemmer=disabled
@@ -15,9 +15,10 @@ short_desc="Low-footprint RDF triple store library with SPARQL 1.1 interface"
maintainer="oreo639 <oreo6391@gmail.com>"
license="GPL-2.0-or-later, LGPL-2.1-or-later"
homepage="https://gitlab.gnome.org/GNOME/tinysparql"
-changelog="https://gitlab.gnome.org/GNOME/tinysparql/-/raw/master/NEWS"
+#changelog="https://gitlab.gnome.org/GNOME/tinysparql/-/raw/master/NEWS"
+changelog="https://gitlab.gnome.org/GNOME/tinysparql/-/raw/tinysparql-3.8/NEWS"
distfiles="${GNOME_SITE}/tinysparql/${version%.*}/tinysparql-${version}.tar.xz"
-checksum=c0fcda77520f531548b2395137dcd193ee9cde5e222d3c9d273f030d1762a504
+checksum=bb8643386c8edc591a03205d4a0eda661dcdd2094473bffb9bbdb94e93589cb2
make_check_pre="dbus-run-session"
if [ "$CROSS_BUILD" ]; then
From 05e2424c9ad51b57fe95c3b9e61c76ca3c917e42 Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Tue, 28 Jan 2025 22:15:46 -0800
Subject: [PATCH 2/2] localsearch: update to 3.8.2.
---
.../patches/fix-musl-build-tgkill.patch | 19 -------------------
.../patches/fix-musl-missing-include.patch | 10 ----------
srcpkgs/localsearch/template | 7 ++++---
3 files changed, 4 insertions(+), 32 deletions(-)
delete mode 100644 srcpkgs/localsearch/patches/fix-musl-build-tgkill.patch
delete mode 100644 srcpkgs/localsearch/patches/fix-musl-missing-include.patch
diff --git a/srcpkgs/localsearch/patches/fix-musl-build-tgkill.patch b/srcpkgs/localsearch/patches/fix-musl-build-tgkill.patch
deleted file mode 100644
index d36722c0ef81d1..00000000000000
--- a/srcpkgs/localsearch/patches/fix-musl-build-tgkill.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix build on musl, which doesn't provide a tgkill function due to concerns of it being misused.
-(e.g. outside of signal handlers)
-
-https://www.openwall.com/lists/musl/2019/08/02/1
-
---- a/src/libtracker-miners-common/tracker-seccomp.c
-+++ b/src/libtracker-miners-common/tracker-seccomp.c
-@@ -80,6 +81,11 @@
- goto out; \
- } G_STMT_END
-
-+
-+#if !defined(__GLIBC__)
-+#define tgkill(pid, tid, sig) syscall(SYS_tgkill, pid, tid, sig);
-+#endif
-+
- static void
- sigsys_handler (gint signal,
- siginfo_t *info,
diff --git a/srcpkgs/localsearch/patches/fix-musl-missing-include.patch b/srcpkgs/localsearch/patches/fix-musl-missing-include.patch
deleted file mode 100644
index 9446e10a609f55..00000000000000
--- a/srcpkgs/localsearch/patches/fix-musl-missing-include.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/src/libtracker-miners-common/tracker-landlock.c
-+++ b/src/libtracker-miners-common/tracker-landlock.c
-@@ -28,6 +28,7 @@
- #include <linux/landlock.h>
- #include <sys/prctl.h>
- #include <sys/syscall.h>
-+#include <unistd.h>
-
- #include "tracker-debug.h"
-
diff --git a/srcpkgs/localsearch/template b/srcpkgs/localsearch/template
index a194e0867ead9f..cd8eccee88e194 100644
--- a/srcpkgs/localsearch/template
+++ b/srcpkgs/localsearch/template
@@ -1,6 +1,6 @@
# Template file for 'localsearch'
pkgname=localsearch
-version=3.8.0
+version=3.8.2
revision=1
build_style=meson
build_helper=qemu
@@ -26,9 +26,10 @@ short_desc="File search framework of the GNOME desktop"
maintainer="oreo639 <oreo6391@gmail.com>"
license="GPL-2.0-or-later"
homepage="https://tracker.gnome.org/"
-changelog="https://gitlab.gnome.org/GNOME/localsearch/-/raw/master/NEWS"
+#changelog="https://gitlab.gnome.org/GNOME/localsearch/-/raw/master/NEWS"
+changelog="https://gitlab.gnome.org/GNOME/localsearch/-/raw/localsearch-3.8/NEWS"
distfiles="${GNOME_SITE}/localsearch/${version%.*}/localsearch-${version}.tar.xz"
-checksum=e4e83a1daebb5263915b45b719731e3f7041d959cbd637ea29afbe910c92bbf9
+checksum=cda69195f6845357a8d91c023670efe92238f4d138a1ef7a1401f45a2a8403ce
make_check_pre="dbus-run-session"
make_check=ci-skip # TODO: d-bus tests timeout ci
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PR PATCH] [Merged]: localsearch: update to 3.8.2.
2025-01-29 6:21 [PR PATCH] localsearch: update to 3.8.2 oreo639
@ 2025-02-01 10:01 ` oreo639
0 siblings, 0 replies; 2+ messages in thread
From: oreo639 @ 2025-02-01 10:01 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1094 bytes --]
There's a merged pull request on the void-packages repository
localsearch: update to 3.8.2.
https://github.com/void-linux/void-packages/pull/54141
Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-02-01 10:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-29 6:21 [PR PATCH] localsearch: update to 3.8.2 oreo639
2025-02-01 10:01 ` [PR PATCH] [Merged]: " oreo639
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).