+ totem-pl-parser-3.26.6-1
Update to 3.26.6 Resolves: rhbz#1976722
This commit is contained in:
parent
b6f57bf539
commit
ad998dc401
1
.gitignore
vendored
1
.gitignore
vendored
@ -27,3 +27,4 @@
|
|||||||
/totem-pl-parser-3.26.3.tar.xz
|
/totem-pl-parser-3.26.3.tar.xz
|
||||||
/totem-pl-parser-3.26.4.tar.xz
|
/totem-pl-parser-3.26.4.tar.xz
|
||||||
/totem-pl-parser-3.26.5.tar.xz
|
/totem-pl-parser-3.26.5.tar.xz
|
||||||
|
/totem-pl-parser-3.26.6.tar.xz
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
From ecf04870c349f8f7ac889ec50d465a2d1dec517c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bastien Nocera <hadess@hadess.net>
|
|
||||||
Date: Fri, 28 Feb 2020 17:18:27 +0100
|
|
||||||
Subject: [PATCH] plparser: Fix header typo
|
|
||||||
|
|
||||||
plparse/totem-pl-parser.c:1308: Warning: TotemPlParser: totem_pl_parser_save_finish: unknown parameter 'async_result' in documentation comment, should be 'result'
|
|
||||||
---
|
|
||||||
plparse/totem-pl-parser.h | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/plparse/totem-pl-parser.h b/plparse/totem-pl-parser.h
|
|
||||||
index fc1397b..6205aa6 100644
|
|
||||||
--- a/plparse/totem-pl-parser.h
|
|
||||||
+++ b/plparse/totem-pl-parser.h
|
|
||||||
@@ -358,7 +358,7 @@ void totem_pl_parser_save_async (TotemPlParser *parser,
|
|
||||||
GAsyncReadyCallback callback,
|
|
||||||
gpointer user_data);
|
|
||||||
gboolean totem_pl_parser_save_finish (TotemPlParser *parser,
|
|
||||||
- GAsyncResult *result,
|
|
||||||
+ GAsyncResult *async_result,
|
|
||||||
GError **error);
|
|
||||||
|
|
||||||
void totem_pl_parser_add_ignored_scheme (TotemPlParser *parser,
|
|
||||||
--
|
|
||||||
2.25.1
|
|
||||||
|
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (totem-pl-parser-3.26.5.tar.xz) = ce110d92f60da328272a8135a57ba60785ea4bca1fde3703a734969e7ba5b382ef19dc3b8930a5641d8f8effabf627f7e9b2727ee94e69e6144e0f085079e14d
|
SHA512 (totem-pl-parser-3.26.6.tar.xz) = 1a7aa69e147b55c3c9761328604821a7e40bac4e7b82492e5ce1b2405e3b6d5154e3b06687f2446ec923b34bf6ea96eef179ef8410c005a061d448fc6b3e754e
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: totem-pl-parser
|
Name: totem-pl-parser
|
||||||
Version: 3.26.5
|
Version: 3.26.6
|
||||||
Release: 5%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Totem Playlist Parser library
|
Summary: Totem Playlist Parser library
|
||||||
|
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
@ -16,8 +16,6 @@ BuildRequires: libarchive-devel
|
|||||||
BuildRequires: libgcrypt-devel
|
BuildRequires: libgcrypt-devel
|
||||||
BuildRequires: meson
|
BuildRequires: meson
|
||||||
|
|
||||||
Patch0: 0001-plparser-Fix-header-typo.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A library to parse and save playlists, as used in music and movie players.
|
A library to parse and save playlists, as used in music and movie players.
|
||||||
|
|
||||||
@ -34,7 +32,6 @@ developing applications that use %{name}.
|
|||||||
|
|
||||||
%build
|
%build
|
||||||
%meson -Denable-gtk-doc=true \
|
%meson -Denable-gtk-doc=true \
|
||||||
-Denable-quvi=no \
|
|
||||||
-Denable-libarchive=yes \
|
-Denable-libarchive=yes \
|
||||||
-Denable-libgcrypt=yes \
|
-Denable-libgcrypt=yes \
|
||||||
-Dintrospection=true
|
-Dintrospection=true
|
||||||
@ -43,18 +40,16 @@ developing applications that use %{name}.
|
|||||||
%install
|
%install
|
||||||
%meson_install
|
%meson_install
|
||||||
|
|
||||||
mkdir -p %{buildroot}/%{_libexecdir}/totem-pl-parser/
|
|
||||||
|
|
||||||
%find_lang %{name} --with-gnome
|
%find_lang %{name} --with-gnome
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%license COPYING.LIB
|
%license COPYING.LIB
|
||||||
%doc AUTHORS NEWS README
|
%doc AUTHORS NEWS README.md
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
%{_libdir}/girepository-1.0/*.typelib
|
%{_libdir}/girepository-1.0/*.typelib
|
||||||
%dir %{_libexecdir}/totem-pl-parser/
|
%{_libexecdir}/totem-pl-parser/
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
@ -65,6 +60,11 @@ mkdir -p %{buildroot}/%{_libexecdir}/totem-pl-parser/
|
|||||||
%{_datadir}/gir-1.0/*.gir
|
%{_datadir}/gir-1.0/*.gir
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 28 2021 Bastien Nocera <bnocera@redhat.com> - 3.26.6-1
|
||||||
|
+ totem-pl-parser-3.26.6-1
|
||||||
|
- Update to 3.26.6
|
||||||
|
- Resolves: rhbz#1976722
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.26.5-5
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.26.5-5
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user