Accepting request 581643 from GNOME:Factory
spdx3 (forwarded request 580215 from dimstar) OBS-URL: https://build.opensuse.org/request/show/581643 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/telepathy-glib?expand=0&rev=83
This commit is contained in:
commit
cacddac44a
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 26 11:54:46 UTC 2018 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Use SPDX3.0 license tags and package COPYING as %license.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Apr 14 10:28:00 UTC 2016 - idonmez@suse.com
|
Thu Apr 14 10:28:00 UTC 2016 - idonmez@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package telepathy-glib
|
# spec file for package telepathy-glib
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -20,13 +20,14 @@ Name: telepathy-glib
|
|||||||
Version: 0.24.1
|
Version: 0.24.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: GObject-based library for the Telepathy D-Bus API
|
Summary: GObject-based library for the Telepathy D-Bus API
|
||||||
License: LGPL-2.1+
|
License: LGPL-2.1-or-later
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Url: http://telepathy.freedesktop.org/
|
Url: http://telepathy.freedesktop.org/
|
||||||
Source: http://telepathy.freedesktop.org/releases/telepathy-glib/%{name}-%{version}.tar.gz
|
Source: http://telepathy.freedesktop.org/releases/telepathy-glib/%{name}-%{version}.tar.gz
|
||||||
Source99: baselibs.conf
|
Source99: baselibs.conf
|
||||||
BuildRequires: gtk-doc >= 1.17
|
BuildRequires: gtk-doc >= 1.17
|
||||||
BuildRequires: libxslt-devel
|
BuildRequires: libxslt-devel
|
||||||
|
BuildRequires: pkgconfig
|
||||||
BuildRequires: python-xml
|
BuildRequires: python-xml
|
||||||
BuildRequires: vala >= 0.16.0
|
BuildRequires: vala >= 0.16.0
|
||||||
BuildRequires: pkgconfig(dbus-1) >= 0.95
|
BuildRequires: pkgconfig(dbus-1) >= 0.95
|
||||||
@ -36,7 +37,6 @@ BuildRequires: pkgconfig(gio-unix-2.0)
|
|||||||
BuildRequires: pkgconfig(glib-2.0) >= 2.36.0
|
BuildRequires: pkgconfig(glib-2.0) >= 2.36.0
|
||||||
BuildRequires: pkgconfig(gobject-2.0) >= 2.32.0
|
BuildRequires: pkgconfig(gobject-2.0) >= 2.32.0
|
||||||
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.30
|
BuildRequires: pkgconfig(gobject-introspection-1.0) >= 1.30
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The telepathy-glib library is a GObject-based C binding for the
|
The telepathy-glib library is a GObject-based C binding for the
|
||||||
@ -87,29 +87,23 @@ Telepathy D-Bus API.
|
|||||||
%build
|
%build
|
||||||
%configure --disable-static \
|
%configure --disable-static \
|
||||||
--enable-vala-bindings
|
--enable-vala-bindings
|
||||||
%__make %{_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%make_install
|
||||||
rm -f %{buildroot}%{_libdir}/*.la
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n libtelepathy-glib0 -p /sbin/ldconfig
|
%post -n libtelepathy-glib0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n libtelepathy-glib0 -p /sbin/ldconfig
|
%postun -n libtelepathy-glib0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%files -n libtelepathy-glib0
|
%files -n libtelepathy-glib0
|
||||||
%defattr(-,root,root)
|
%license COPYING
|
||||||
%{_libdir}/libtelepathy-glib*.so.0*
|
%{_libdir}/libtelepathy-glib*.so.0*
|
||||||
|
|
||||||
%files -n typelib-1_0-TelepathyGlib-0_12
|
%files -n typelib-1_0-TelepathyGlib-0_12
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/girepository-1.0/TelepathyGLib-0.12.typelib
|
%{_libdir}/girepository-1.0/TelepathyGLib-0.12.typelib
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%dir %{_includedir}/telepathy-1.0
|
%dir %{_includedir}/telepathy-1.0
|
||||||
%{_includedir}/telepathy-1.0/telepathy-glib/
|
%{_includedir}/telepathy-1.0/telepathy-glib/
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
@ -120,7 +114,6 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/vala/vapi/telepathy-glib.*
|
%{_datadir}/vala/vapi/telepathy-glib.*
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user