diff --git a/.gitignore b/.gitignore index 77fe7ad..cb861d3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /tracker-3.6.beta.tar.xz /tracker-3.6.rc.tar.xz /tracker-3.6.0.tar.xz +/tracker-3.7.alpha.tar.xz diff --git a/sources b/sources index bee0ab8..8697da0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (tracker-3.6.0.tar.xz) = d3b7d4c1fd1cdcccc0d78c05f43b85f5cdab584e378cb56a2b568293ff95c887650d41c3c7f65de8864a0b6f80ae26410f4a443f045a80e30bacdf7ef9499697 +SHA512 (tracker-3.7.alpha.tar.xz) = 5fa9d029860ceb0442e475961df5767b27fd7c15363fe231721f23686fe6d83bd693bbd88b1c37619146cb426373b902842b8f44b6c53bd6ca405ad68e2f40b4 diff --git a/tracker-meson-c99.patch b/tracker-meson-c99.patch deleted file mode 100644 index 258864f..0000000 --- a/tracker-meson-c99.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/meson.build b/meson.build -index 2529a2c6e06ef8c4..b5cfca155816c9bf 100644 ---- a/meson.build -+++ b/meson.build -@@ -211,13 +211,13 @@ result = cc.run(''' - int main (int argc, char *argv[]) { - char *modifiers[] = { "%Y", "%C%y", "%4Y", "%2C%y", NULL }; - time_t timestamp = -58979923200; /* 0101-01-01T01:01:01Z */ -- char *buf[100]; -+ char buf[100]; - struct tm tm; - int i; - gmtime_r (×tamp, &tm); - for (i = 0; modifiers[i]; i++) { -- strftime (&buf, sizeof buf, modifiers[i], &tm); -- if (strcmp (&buf, "0101") == 0) { -+ strftime (buf, sizeof buf, modifiers[i], &tm); -+ if (strcmp (buf, "0101") == 0) { - printf ("%s", modifiers[i]); - return 0; - } diff --git a/tracker.spec b/tracker.spec index a8f3832..bb3d48b 100644 --- a/tracker.spec +++ b/tracker.spec @@ -3,14 +3,13 @@ %global tarball_version %%(echo %{version} | tr '~' '.') Name: tracker -Version: 3.6.0 -Release: 2%{?dist} +Version: 3.7~alpha +Release: 1%{?dist} Summary: Desktop-neutral metadata database and search tool License: GPL-2.0-or-later URL: https://gnome.pages.gitlab.gnome.org/tracker/ -Source0: https://download.gnome.org/sources/tracker/3.6/tracker-%{tarball_version}.tar.xz -Patch0: tracker-meson-c99.patch +Source0: https://download.gnome.org/sources/tracker/3.7/tracker-%{tarball_version}.tar.xz BuildRequires: asciidoc BuildRequires: gettext @@ -147,7 +146,6 @@ The %{name}-devel package contains the documentation for %{name}. %{_libdir}/girepository-1.0/Tracker-3.0.typelib %{_libdir}/libtracker-sparql-3.0.so.0* %{_libdir}/tracker-3.0/ -%{_datadir}/tracker3/ %files devel %{_includedir}/tracker-3.0/ @@ -168,6 +166,9 @@ The %{name}-devel package contains the documentation for %{name}. %changelog +* Fri Jan 19 2024 David King - 3.7~alpha-1 +- Update to 3.7.alpha + * Mon Jan 08 2024 Florian Weimer - 3.6.0-2 - Backport upstream patch to fix C compatibility issue in Meson probe