New upstream release 2.1.7
This commit is contained in:
parent
4c4d45c36b
commit
509005ecca
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@
|
|||||||
/libreport-2.1.4.tar.gz
|
/libreport-2.1.4.tar.gz
|
||||||
/libreport-2.1.5.tar.gz
|
/libreport-2.1.5.tar.gz
|
||||||
/libreport-2.1.6.tar.gz
|
/libreport-2.1.6.tar.gz
|
||||||
|
/libreport-2.1.7.tar.gz
|
||||||
|
@ -4,17 +4,14 @@
|
|||||||
|
|
||||||
Summary: Generic library for reporting various problems
|
Summary: Generic library for reporting various problems
|
||||||
Name: libreport
|
Name: libreport
|
||||||
Version: 2.1.6
|
Version: 2.1.7
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
URL: https://fedorahosted.org/abrt/
|
URL: https://fedorahosted.org/abrt/
|
||||||
Source: https://fedorahosted.org/released/abrt/%{name}-%{version}.tar.gz
|
Source: https://fedorahosted.org/released/abrt/%{name}-%{version}.tar.gz
|
||||||
Source1: autogen.sh
|
Source1: autogen.sh
|
||||||
|
|
||||||
# Remove with libreport > 2.1.6
|
|
||||||
Patch0: libreport-2.1.6-rhel_workflows_and_gobject_libs.patch
|
|
||||||
|
|
||||||
BuildRequires: dbus-devel
|
BuildRequires: dbus-devel
|
||||||
BuildRequires: gtk3-devel
|
BuildRequires: gtk3-devel
|
||||||
BuildRequires: curl-devel
|
BuildRequires: curl-devel
|
||||||
@ -32,7 +29,7 @@ BuildRequires: asciidoc
|
|||||||
BuildRequires: xmlto
|
BuildRequires: xmlto
|
||||||
BuildRequires: newt-devel
|
BuildRequires: newt-devel
|
||||||
BuildRequires: libproxy-devel
|
BuildRequires: libproxy-devel
|
||||||
BuildRequires: satyr-devel >= 0.5
|
BuildRequires: satyr-devel >= 0.9
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
Requires: libreport-filesystem = %{version}-%{release}
|
Requires: libreport-filesystem = %{version}-%{release}
|
||||||
# required for update from old report library, otherwise we obsolete report-gtk
|
# required for update from old report library, otherwise we obsolete report-gtk
|
||||||
@ -40,7 +37,7 @@ Requires: libreport-filesystem = %{version}-%{release}
|
|||||||
# end-up with: can't import report.GtkIO
|
# end-up with: can't import report.GtkIO
|
||||||
# FIXME: can be removed when F15 will EOLed, needs to stay in rhel6!
|
# FIXME: can be removed when F15 will EOLed, needs to stay in rhel6!
|
||||||
Requires: libreport-python = %{version}-%{release}
|
Requires: libreport-python = %{version}-%{release}
|
||||||
Requires: satyr >= 0.5
|
Requires: satyr >= 0.9
|
||||||
|
|
||||||
|
|
||||||
# for rhel6
|
# for rhel6
|
||||||
@ -264,7 +261,6 @@ data over ftp/scp...
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
# koji in f19 has new autotools, so we need to regenerate everything
|
# koji in f19 has new autotools, so we need to regenerate everything
|
||||||
cp %SOURCE1 %_builddir/%{name}-%{version}
|
cp %SOURCE1 %_builddir/%{name}-%{version}
|
||||||
@ -418,7 +414,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
%files gtk
|
%files gtk
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%{_bindir}/report-gtk
|
%{_bindir}/report-gtk
|
||||||
%{_libexecdir}/abrt-screencast
|
|
||||||
%{_libdir}/libreport-gtk.so.*
|
%{_libdir}/libreport-gtk.so.*
|
||||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/emergencyanalysis_event.conf
|
%config(noreplace) %{_sysconfdir}/libreport/events.d/emergencyanalysis_event.conf
|
||||||
%{_mandir}/man5/emergencyanalysis_event.conf.5.*
|
%{_mandir}/man5/emergencyanalysis_event.conf.5.*
|
||||||
@ -553,6 +548,36 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Sep 11 2013 Jakub Filak <jfilak@redhat.com> 2.1.7-1
|
||||||
|
- Fix problem_item_format() to work properly after 2038 on x32. #691
|
||||||
|
- Use proper json-c requirement in libreport-web.pc.
|
||||||
|
- abrt-cli info: even -s 10 should show one-liners. #690
|
||||||
|
- add checks for existing dumpdir items - closes #164
|
||||||
|
- Create helper functions for sha1-hashing strings. #694
|
||||||
|
- can now use custom repo filters for enabling repos, related abrt/abrt#688
|
||||||
|
- add docstrings, remove global variable - related #171
|
||||||
|
- fixed exception handling - closes #173
|
||||||
|
- added checks for locked dump directory to dd_* functions, closes #133
|
||||||
|
- fixed the symlinks handling in get_file_list abrt/abrt#686
|
||||||
|
- make the build in the the build directory to not pollute the source tree
|
||||||
|
- fixed debugInfoDownload so that it can process local repos - closes #48
|
||||||
|
- Increase text size limit from 1Mb to 8 MB. rhbz#887570.
|
||||||
|
- print warning when there is not engough free space for debuginfos, closes #170
|
||||||
|
- autogen.sh: improve dependency parser
|
||||||
|
- ignore directories without type element - rhbz#958968
|
||||||
|
- abrt_xmlrpc: increase XML_SIZE_LIMIT to 4 mbytes. rhbz#961520.
|
||||||
|
- ask user to create a private report if it contains sensitive data - rhbz#960549
|
||||||
|
- updated translation rhbz#860555
|
||||||
|
- updated transifex url
|
||||||
|
- do not leak file rhbz#997871
|
||||||
|
- in KDE session open URLs in kde-open
|
||||||
|
- report-gtk: use wrapped text for warning labels
|
||||||
|
- spec: remove abrt-screencast
|
||||||
|
- remove obsoleted abrt-screencast
|
||||||
|
- Fix create_symlink_lockfile() to not emit ENOENT when asked not to.
|
||||||
|
- do not store potentially big data in /tmp
|
||||||
|
- New public function create_symlink_lockfile()
|
||||||
|
|
||||||
* Mon Jul 29 2013 Jakub Filak <jfilak@redhat.com> 2.1.6-2
|
* Mon Jul 29 2013 Jakub Filak <jfilak@redhat.com> 2.1.6-2
|
||||||
- link with gobject libraries
|
- link with gobject libraries
|
||||||
- use RHTSupport in RHEL workflows
|
- use RHTSupport in RHEL workflows
|
||||||
|
Loading…
Reference in New Issue
Block a user