New upstream release 2.0.11
This commit is contained in:
parent
4fc877e1f5
commit
1cc5939e53
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@
|
||||
/libreport-2.0.7.tar.gz
|
||||
/libreport-2.0.8.tar.gz
|
||||
/libreport-2.0.10.tar.gz
|
||||
/libreport-2.0.11.tar.gz
|
||||
|
@ -4,15 +4,14 @@
|
||||
|
||||
Summary: Generic library for reporting various problems
|
||||
Name: libreport
|
||||
Version: 2.0.10
|
||||
Release: 4%{?dist}
|
||||
Version: 2.0.11
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: System Environment/Libraries
|
||||
URL: https://fedorahosted.org/abrt/
|
||||
Source: https://fedorahosted.org/released/abrt/%{name}-%{version}.tar.gz
|
||||
Patch0: 0001-Add-cgroup-information-filename.patch
|
||||
BuildRequires: dbus-devel
|
||||
BuildRequires: gtk2-devel
|
||||
BuildRequires: gtk3-devel
|
||||
BuildRequires: curl-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: xmlrpc-c-devel
|
||||
@ -28,6 +27,7 @@ BuildRequires: asciidoc
|
||||
BuildRequires: xmlto
|
||||
BuildRequires: newt-devel
|
||||
BuildRequires: libproxy-devel
|
||||
BuildRequires: btparser-devel
|
||||
Requires: libreport-filesystem
|
||||
# required for update from old report library, otherwise we obsolete report-gtk
|
||||
# and all it's plugins, but don't provide the python bindings and the sealert
|
||||
@ -63,6 +63,22 @@ Requires: libreport = %{version}-%{release}
|
||||
%description devel
|
||||
Development libraries and headers for libreport
|
||||
|
||||
%package web
|
||||
Summary: Library providing network API for libreport
|
||||
Group: Libraries
|
||||
Requires: libreport = %{version}-%{release}
|
||||
|
||||
%description web
|
||||
Library providing network API for libreport
|
||||
|
||||
%package web-devel
|
||||
Summary: Development headers for libreport-web
|
||||
Group: Development/Libraries
|
||||
Requires: libreport-web = %{version}-%{release}
|
||||
|
||||
%description web-devel
|
||||
Development headers for libreport-web
|
||||
|
||||
%package python
|
||||
Summary: Python bindings for report-libs
|
||||
# Is group correct here? -
|
||||
@ -160,16 +176,14 @@ Obsoletes: report-plugin-bugzilla < 0:0.23-1
|
||||
Provides: report-config-bugzilla-redhat-com = 0:0.23-1
|
||||
Obsoletes: report-config-bugzilla-redhat-com < 0:0.23-1
|
||||
|
||||
%package plugin-bodhi
|
||||
Summary: %{name}'s bodhi plugin
|
||||
%package plugin-ureport
|
||||
Summary: %{name}'s micro report plugin
|
||||
BuildRequires: json-c-devel
|
||||
Group: System Environment/Libraries
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: PackageKit
|
||||
BuildRequires: rpm-devel
|
||||
|
||||
%description plugin-bodhi
|
||||
Search for a new updates in bodhi server
|
||||
%description plugin-ureport
|
||||
Uploads micro-report to abrt server
|
||||
|
||||
%description plugin-bugzilla
|
||||
Plugin to report bugs into the bugzilla.
|
||||
@ -211,12 +225,11 @@ Plugin to report bugs into anonymous FTP site associated with ticketing system.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1 -b .cgroups
|
||||
|
||||
%build
|
||||
autoconf
|
||||
%configure
|
||||
CFLAGS="-fno-strict-aliasing"
|
||||
CFLAGS="%{optflags} -Werror" %configure --disable-silent-rules
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
@ -265,8 +278,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/forbidden_words.conf
|
||||
%{_libdir}/libreport.so.*
|
||||
%{_libdir}/libabrt_dbus.so.*
|
||||
%{_libdir}/libabrt_web.so.*
|
||||
%exclude %{_libdir}/libabrt_web.so
|
||||
%{_mandir}/man5/report_event.conf.5*
|
||||
|
||||
%files filesystem
|
||||
@ -293,6 +304,15 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%{_libdir}/pkgconfig/libreport.pc
|
||||
%dir %{_includedir}/libreport
|
||||
|
||||
%files web
|
||||
%defattr(-,root,root,-)
|
||||
%{_libdir}/libreport-web.so*
|
||||
|
||||
%files web-devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/libreport/libreport_curl.h
|
||||
%{_libdir}/pkgconfig/libreport-web.pc
|
||||
|
||||
%files python
|
||||
%defattr(-,root,root,-)
|
||||
%{python_sitearch}/report/*
|
||||
@ -340,10 +360,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%{_mandir}/man*/reporter-mailx.*
|
||||
%{_bindir}/reporter-mailx
|
||||
|
||||
%files plugin-bodhi
|
||||
%files plugin-ureport
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/abrt-bodhi
|
||||
%{_mandir}/man1/abrt-bodhi.1.gz
|
||||
%{_bindir}/reporter-ureport
|
||||
#%{_mandir}/man1/reporter-ureport.1.gz
|
||||
%{_sysconfdir}/libreport/events/report_uReport.xml
|
||||
|
||||
%files plugin-bugzilla
|
||||
%defattr(-,root,root,-)
|
||||
@ -376,6 +397,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/uploader_event.conf
|
||||
|
||||
%changelog
|
||||
* Tue Jul 31 2012 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.11-1
|
||||
- new upstream release
|
||||
|
||||
|
||||
* Fri Jun 01 2012 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.10-4
|
||||
- fixed build on rhel7
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user