This commit is contained in:
committed by
Git OBS Bridge
parent
59b5ed21d4
commit
fd917cd664
@@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 24 06:17:34 CET 2009 - vuntz@novell.com
|
||||
|
||||
- Use %{_prefix}/lib/%{name} for libexecdir
|
||||
- Fix a few rpmlint warnings:
|
||||
+ Recompress tarball as bz2
|
||||
+ Move /usr/lib/libdbus-glib-1.so to devel package
|
||||
+ Disable static libraries
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 01 12:34:56 CET 2009 - mboman@suse.de
|
||||
|
||||
- Update to version 0.78
|
||||
+ add bash completion for dbus-send(1)
|
||||
+ fdo#17329: allow hash tables to contain complex types
|
||||
+ fdo#17798: add support for 'o', 'g' and 'as' in dictionaries
|
||||
+ fdo#17797: add support for 'g' type, as a boxed char *
|
||||
+ fdo#17795: depend on Glib 2.10 for hash unref consistency
|
||||
+ fdo#17794: make run-test.sh fail when die is called
|
||||
+ fdo#18573 - Fix race when service appears and disappears quickly
|
||||
+ fdo#17614: Use g_slice for allocating temporary async call data
|
||||
+ fdo#10373: Use of deprecated API (was used incorrectly)
|
||||
+ fdo#16419: stack overflow demarshaling recursive variants
|
||||
+ fdo#16114 [patch] wincaps-to-uscore property names for GetAll()
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 10 12:34:56 CET 2008 - olh@suse.de
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package dbus-1-glib (Version 0.76)
|
||||
# spec file for package dbus-1-glib (Version 0.78)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -24,8 +24,8 @@ BuildRequires: libselinux-devel
|
||||
Url: http://dbus.freedesktop.org/
|
||||
License: GPL v2 or later; Other uncritical OpenSource License
|
||||
Group: Development/Libraries/Other
|
||||
Version: 0.76
|
||||
Release: 32
|
||||
Version: 0.78
|
||||
Release: 1
|
||||
AutoReqProv: on
|
||||
# bug437293
|
||||
%ifarch ppc64
|
||||
@@ -33,7 +33,7 @@ Obsoletes: dbus-1-glib-64bit
|
||||
%endif
|
||||
#
|
||||
Summary: GLib-based library for using D-Bus
|
||||
Source0: dbus-glib-%{version}.tar.gz
|
||||
Source0: dbus-glib-%{version}.tar.bz2
|
||||
Patch0: %{name}-selinux.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Requires: dbus-1 >= %( echo `rpm -q --queryformat '%{VERSION}-%{RELEASE}' dbus-1`)
|
||||
@@ -132,18 +132,14 @@ Authors:
|
||||
|
||||
%build
|
||||
export CFLAGS="${RPM_OPT_FLAGS} -fstack-protector -fno-strict-aliasing -fPIC"
|
||||
./configure \
|
||||
--prefix=%{_prefix} \
|
||||
--exec_prefix=%{_exec_prefix} \
|
||||
--sysconfdir=%{_sysconfdir} \
|
||||
--datadir=%{_datadir} \
|
||||
--localstatedir=%{_localstatedir} \
|
||||
--libdir=%{_libdir} \
|
||||
--mandir=%{_mandir}
|
||||
make
|
||||
%configure \
|
||||
--libexecdir=%{_prefix}/lib/%{name} \
|
||||
--disable-static
|
||||
%{__make} %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
make DESTDIR=%{buildroot} install
|
||||
%makeinstall
|
||||
%{__rm} %{buildroot}/%{_libdir}/*.la
|
||||
|
||||
%post
|
||||
%{run_ldconfig}
|
||||
@@ -157,24 +153,42 @@ make DESTDIR=%{buildroot} install
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%{_libdir}/*glib*.so.*
|
||||
%{_libdir}/*glib*.so
|
||||
%{_sysconfdir}/profile.d/dbus-bash-completion.sh
|
||||
%{_prefix}/lib/%{name}
|
||||
|
||||
%files -n dbus-1-glib-devel
|
||||
%defattr(-, root, root)
|
||||
%{_bindir}/dbus-binding-tool
|
||||
%{_includedir}/dbus-1.0/dbus/*
|
||||
%{_libdir}/*glib*.a
|
||||
%{_libdir}/*glib*.la
|
||||
%{_libdir}/*glib*.so
|
||||
%{_libdir}/pkgconfig/dbus-glib-1.pc
|
||||
|
||||
%files -n dbus-1-glib-doc
|
||||
%defattr(-, root, root)
|
||||
%dir %{_datadir}/gtk-doc/
|
||||
%dir %{_datadir}/gtk-doc/html
|
||||
%dir %{_datadir}/gtk-doc/html/dbus-glib/
|
||||
%{_datadir}/gtk-doc/html/dbus-glib/*
|
||||
%{_datadir}/gtk-doc/html/dbus-glib
|
||||
|
||||
%changelog
|
||||
* Sat Jan 24 2009 vuntz@novell.com
|
||||
- Use %%{_prefix}/lib/%%{name} for libexecdir
|
||||
- Fix a few rpmlint warnings:
|
||||
+ Recompress tarball as bz2
|
||||
+ Move /usr/lib/libdbus-glib-1.so to devel package
|
||||
+ Disable static libraries
|
||||
* Thu Jan 01 2009 mboman@suse.de
|
||||
- Update to version 0.78
|
||||
+ add bash completion for dbus-send(1)
|
||||
+ fdo#17329: allow hash tables to contain complex types
|
||||
+ fdo#17798: add support for 'o', 'g' and 'as' in dictionaries
|
||||
+ fdo#17797: add support for 'g' type, as a boxed char *
|
||||
+ fdo#17795: depend on Glib 2.10 for hash unref consistency
|
||||
+ fdo#17794: make run-test.sh fail when die is called
|
||||
+ fdo#18573 - Fix race when service appears and disappears quickly
|
||||
+ fdo#17614: Use g_slice for allocating temporary async call data
|
||||
+ fdo#10373: Use of deprecated API (was used incorrectly)
|
||||
+ fdo#16419: stack overflow demarshaling recursive variants
|
||||
+ fdo#16114 [patch] wincaps-to-uscore property names for GetAll()
|
||||
* Wed Dec 10 2008 olh@suse.de
|
||||
- use Obsoletes: -XXbit only for ppc64 to help solver during distupgrade
|
||||
(bnc#437293)
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8bc083faaf3efdd444a8a44bbcbfea501a7b547736fda3c2d83bfdc9b5b672a3
|
||||
size 667547
|
3
dbus-glib-0.78.tar.bz2
Normal file
3
dbus-glib-0.78.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9fdc639b439b2a0fa874dc55469b74a56b223dfedbf56bb398ef8dc904cd9c52
|
||||
size 515447
|
Reference in New Issue
Block a user