Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
7cab46164e
!8 add BuildRequires of dbus-daemon to fix the error dbus-run-session not found
From: @zhangwenlong01 
Reviewed-by: @licunlong 
Signed-off-by: @licunlong
2023-02-07 01:50:39 +00:00
Wenlong Zhang
5f30239ed5 add BuildRequires of dbus-daemon to fix the error dbus-run-session not found 2023-02-02 11:12:35 +08:00
openeuler-ci-bot
57b5aeeb54
!5 [合规提升]spec文件的License声明有歧义
From: @YixiongChen 
Reviewed-by: @overweight 
Signed-off-by: @overweight
2022-08-02 01:23:36 +00:00
chenyx2012
96de5cb62c
update dbus-glib.spec. 2022-06-02 07:40:22 +00:00
openeuler-ci-bot
24cad481fa !4 update version to 0.112
Merge pull request !4 from 邹林/master
2021-12-30 07:48:44 +00:00
zou_lin77
0b144a132f update version to 0.112 2021-12-29 15:54:04 +08:00
openeuler-ci-bot
46628cbecb !2 dbus-glib delete -S git from %autosetup, and delete BuildRequires git
From: @chenyanpanHW
Reviewed-by: @xiezhipeng1
Signed-off-by: @xiezhipeng1
2021-08-19 08:15:08 +00:00
chenyanpanHW
adc7211edc
delete -S git from %autosetup, and delete BuildRequires git 2021-07-30 22:34:55 +08:00
openeuler-ci-bot
3498c8c85b !1 add yaml file
Merge pull request !1 from wangchen/wangchen
2020-06-22 09:52:42 +08:00
wangchen2020
0118ccf86d add yaml file 2020-06-18 15:38:45 +08:00
5 changed files with 25 additions and 37 deletions

View File

@ -1,31 +0,0 @@
From f52e1f5c91a02b581abaad312134740d590c4270 Mon Sep 17 00:00:00 2001
From: Zhipeng Xie <xiezhipeng1@huawei.com>
Date: Tue, 10 Apr 2018 11:46:38 +0800
Subject: [PATCH] Fix double free for data.channel
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
---
dbus/dbus-binding-tool-glib.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dbus/dbus-binding-tool-glib.c b/dbus/dbus-binding-tool-glib.c
index ff0bb47..6d1c032 100644
--- a/dbus/dbus-binding-tool-glib.c
+++ b/dbus/dbus-binding-tool-glib.c
@@ -870,11 +870,13 @@ dbus_binding_tool_output_glib_server (BaseInfo *info, GIOChannel *channel, const
ret = FALSE;
g_io_channel_shutdown (data.channel, TRUE, error);
g_io_channel_unref (data.channel);
+ data.channel = NULL;
goto io_lose;
}
g_io_channel_shutdown (data.channel, TRUE, error);
g_io_channel_unref (data.channel);
+ data.channel = NULL;
/* Now spawn glib-genmarshal to insert all our required marshallers */
argv = g_ptr_array_new ();
--
1.7.12.4

Binary file not shown.

BIN
dbus-glib-0.112.tar.gz Normal file

Binary file not shown.

View File

@ -1,14 +1,14 @@
Name: dbus-glib Name: dbus-glib
Version: 0.110 Version: 0.112
Release: 5 Release: 3
Summary: GLib bindings for DBUS Summary: GLib bindings for DBUS
License: AFL and GPLv2+ License: AFL-2.1 and GPLv2+
URL: http://www.freedesktop.org/software/dbus/ URL: http://www.freedesktop.org/software/dbus/
Source0: https://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz Source0: https://dbus.freedesktop.org/releases/dbus-glib/%{name}-%{version}.tar.gz
Patch6000: 0001-Fix-double-free-for-data.channel.patch
BuildRequires: gcc git gettext chrpath BuildRequires: gcc gettext chrpath
BuildRequires: pkgconfig(dbus-1) >= 1.8 pkgconfig(glib-2.0) >= 2.40.0 expat-devel >= 1.95.5 BuildRequires: pkgconfig(dbus-1) >= 1.8 pkgconfig(glib-2.0) >= 2.40.0 expat-devel >= 1.95.5
BuildRequires: dbus-daemon
%description %description
The D-Bus GLib package contains GLib interfaces to the D-Bus API. The D-Bus GLib package contains GLib interfaces to the D-Bus API.
@ -30,7 +30,7 @@ Requires: man
The %{name}-help package contains doc files for %{name}. The %{name}-help package contains doc files for %{name}.
%prep %prep
%autosetup -n %{name}-%{version} -p1 -S git %autosetup -n %{name}-%{version} -p1
%build %build
%configure --enable-tests --enable-asserts --disable-gtk-doc --disable-static %configure --enable-tests --enable-asserts --disable-gtk-doc --disable-static
@ -74,6 +74,21 @@ make check
%{_datadir}/gtk-doc/html/%{name} %{_datadir}/gtk-doc/html/%{name}
%changelog %changelog
* Mon Jan 30 2023 Wenlong Zhang <zhangwenlong@loongson.cn> - 0.112-3
- add BuildRequires of dbus-daemon to fix the error dbus-run-session not found
* Thu Jun 2 2022 Chenyx <chenyixiong3@huawei.com> - 0.112-2
- License compliance rectification
* Wed Dec 29 2021 zoulin <zoulin13@huawei.com> - 0.112-1
- Type: enhancement
- ID: NA
- SUG: NA
- DESC: update version to 0.112
* Fri Jul 30 2021 chenyanpanHW <chenyanpan@huawei.com> - 0.110-6
- DESC: delete -S git from %autosetup, and delete BuildRequires git
* Mon Sep 30 2019 luhuaxin <luhuaxin@huawei.com> - 0.110-5 * Mon Sep 30 2019 luhuaxin <luhuaxin@huawei.com> - 0.110-5
- Type: enhancement - Type: enhancement
- ID: NA - ID: NA

4
dbus-glib.yaml Normal file
View File

@ -0,0 +1,4 @@
version_control: git
src_repo: https://gitlab.freedesktop.org/dbus/dbus-glib.git
tag_prefix: "^dbus-glib-"
seperator: "."