new version 2.0.8
This commit is contained in:
parent
e7303a1ad9
commit
0761ab6436
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@
|
||||
/libreport-2.0.5.tar.gz
|
||||
/libreport-2.0.6.tar.gz
|
||||
/libreport-2.0.7.tar.gz
|
||||
/libreport-2.0.8.tar.gz
|
||||
|
@ -4,8 +4,8 @@
|
||||
|
||||
Summary: Generic library for reporting various problems
|
||||
Name: libreport
|
||||
Version: 2.0.7
|
||||
Release: 2%{?dist}
|
||||
Version: 2.0.8
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: System Environment/Libraries
|
||||
URL: https://fedorahosted.org/abrt/
|
||||
@ -26,6 +26,8 @@ BuildRequires: texinfo
|
||||
BuildRequires: asciidoc
|
||||
BuildRequires: xmlto
|
||||
BuildRequires: newt-devel
|
||||
BuildRequires: libproxy-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
|
||||
# end-up with: can't import report.GtkIO
|
||||
@ -45,6 +47,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
Libraries providing API for reporting different problems in applications
|
||||
to different bug targets like Bugzilla, ftp, trac, etc...
|
||||
|
||||
%package filesystem
|
||||
Summary: Filesystem layout for libreport
|
||||
Group: Applications/File
|
||||
|
||||
%description filesystem
|
||||
Filesystem layout for libreport
|
||||
|
||||
%package devel
|
||||
Summary: Development libraries and headers for libreport
|
||||
Group: Development/Libraries
|
||||
@ -150,17 +159,16 @@ Obsoletes: report-plugin-bugzilla < 0.23-1
|
||||
Provides: report-config-bugzilla-redhat-com = 0.23-1
|
||||
Obsoletes: report-config-bugzilla-redhat-com < 0.23-1
|
||||
|
||||
%if 0%{?fedora}
|
||||
%package plugin-bodhi
|
||||
Summary: %{name}'s bodhi 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
|
||||
%endif
|
||||
|
||||
%description plugin-bugzilla
|
||||
Plugin to report bugs into the bugzilla.
|
||||
@ -204,13 +212,8 @@ Plugin to report bugs into anonymous FTP site associated with ticketing system.
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
mkdir -p m4
|
||||
test -r m4/aclocal.m4 || touch m4/aclocal.m4
|
||||
autoconf
|
||||
automake
|
||||
%configure
|
||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||
CFLAGS="-fno-strict-aliasing"
|
||||
make %{?_smp_mflags}
|
||||
|
||||
@ -256,10 +259,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%files -f %{name}.lang
|
||||
%defattr(-,root,root,-)
|
||||
%doc README COPYING
|
||||
%dir %{_sysconfdir}/%{name}/
|
||||
%dir %{_sysconfdir}/%{name}/events.d/
|
||||
%dir %{_sysconfdir}/%{name}/events/
|
||||
%dir %{_sysconfdir}/%{name}/plugins/
|
||||
%config(noreplace) %{_sysconfdir}/%{name}/report_event.conf
|
||||
%{_libdir}/libreport.so.*
|
||||
%{_libdir}/libabrt_dbus.so.*
|
||||
@ -267,6 +266,13 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%exclude %{_libdir}/libabrt_web.so
|
||||
%{_mandir}/man5/report_event.conf.5*
|
||||
|
||||
%files filesystem
|
||||
%defattr(-,root,root,-)
|
||||
%dir %{_sysconfdir}/%{name}/
|
||||
%dir %{_sysconfdir}/%{name}/events.d/
|
||||
%dir %{_sysconfdir}/%{name}/events/
|
||||
%dir %{_sysconfdir}/%{name}/plugins/
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
# Public api headers:
|
||||
@ -330,13 +336,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%{_mandir}/man*/reporter-mailx.*
|
||||
%{_bindir}/reporter-mailx
|
||||
|
||||
%if 0%{?fedora}
|
||||
%files plugin-bodhi
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/abrt-bodhi
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/bodhi_event.conf
|
||||
%{_sysconfdir}/libreport/events/analyze_LocalGDB_Bodhi.xml
|
||||
%endif
|
||||
%{_mandir}/man1/abrt-bodhi.1.gz
|
||||
|
||||
%files plugin-bugzilla
|
||||
%defattr(-,root,root,-)
|
||||
@ -369,6 +372,19 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/uploader_event.conf
|
||||
|
||||
%changelog
|
||||
* Tue Dec 06 2011 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.8-1
|
||||
- new version
|
||||
- added bodhi plugin rhbz#655783
|
||||
- one tab per file on details page rhbz#751833
|
||||
- search box search thru all data (should help with privacy) rhbz#748457
|
||||
- fixed close button position rhbz#741230
|
||||
- rise the attachment limit to 4kb rhbz#712602
|
||||
- fixed make check (rpath problem)
|
||||
- save chnages in editable lines rhbz#710100
|
||||
- ignore backup files rhbz#707959
|
||||
- added support for proxies rhbz#533652
|
||||
- Resolves: 753183 748457 737991 723219 712602 711986 692274 636000 631856 655783 741257 748457 741230 712602 753183 748457 741230 712602 710100 707959 533652
|
||||
|
||||
* Sat Nov 05 2011 Jiri Moskovcak <jmoskovc@redhat.com> 2.0.7-2
|
||||
- bumped release
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user