Compare commits
16 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96bb31f7f5 | ||
|
|
c48c116f8e | ||
|
|
d93e2ffe82 | ||
|
|
37e5dd6060 | ||
|
|
d21ea25d49 | ||
|
|
e0a869a69c | ||
|
|
30b17c8196 | ||
|
|
36592cd1a9 | ||
|
|
77b3456ca1 | ||
|
|
8072d74839 | ||
|
|
6a65ed2e69 | ||
|
|
22640330a6 | ||
|
|
9d69afbebb | ||
|
|
5439b8a62f | ||
|
|
edce2024cc | ||
|
|
b57c294d78 |
3 changed files with 136 additions and 90 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -4,3 +4,11 @@
|
|||
/libreport-2.9.6.tar.gz
|
||||
/libreport-2.9.7.tar.gz
|
||||
/libreport-2.10.0.tar.gz
|
||||
/libreport-2.10.1.tar.gz
|
||||
/libreport-2.11.0.tar.gz
|
||||
/libreport-2.11.1.tar.gz
|
||||
/libreport-2.11.2.tar.gz
|
||||
/libreport-2.11.3.tar.gz
|
||||
/libreport-2.12.0.tar.gz
|
||||
/libreport-2.13.0.tar.gz
|
||||
/libreport-2.13.1.tar.gz
|
||||
|
|
|
|||
216
libreport.spec
216
libreport.spec
|
|
@ -12,39 +12,18 @@
|
|||
|
||||
%define glib_ver 2.43.4
|
||||
|
||||
%if 0%{?fedora} || 0%{?rhel} > 7
|
||||
# Enable python3 build by default
|
||||
%bcond_without python3
|
||||
%else
|
||||
%bcond_with python3
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel} > 7 || 0%{?fedora} > 28
|
||||
# Disable python2 build by default
|
||||
%bcond_with python2
|
||||
%else
|
||||
%bcond_without python2
|
||||
%endif
|
||||
|
||||
Summary: Generic library for reporting various problems
|
||||
Name: libreport
|
||||
Version: 2.10.0
|
||||
Release: 2%{?dist}
|
||||
Version: 2.13.1
|
||||
Release: 3%{?dist}
|
||||
License: GPLv2+
|
||||
URL: https://abrt.readthedocs.org/
|
||||
Source: https://github.com/abrt/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
|
||||
|
||||
BuildRequires: %{dbus_devel}
|
||||
BuildRequires: gtk3-devel
|
||||
BuildRequires: curl-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
%if %{with python2}
|
||||
BuildRequires: python2-devel
|
||||
%endif # with python2
|
||||
%if %{with python3}
|
||||
BuildRequires: python3-devel
|
||||
%endif # with python3
|
||||
BuildRequires: gettext
|
||||
BuildRequires: libxml2-devel
|
||||
BuildRequires: libtar-devel
|
||||
|
|
@ -57,7 +36,8 @@ BuildRequires: newt-devel
|
|||
BuildRequires: libproxy-devel
|
||||
BuildRequires: satyr-devel >= 0.24
|
||||
BuildRequires: glib2-devel >= %{glib_ver}
|
||||
BuildRequires: git
|
||||
BuildRequires: nettle-devel
|
||||
BuildRequires: git-core
|
||||
|
||||
%if 0%{?fedora} >= 24 || 0%{?rhel} > 7
|
||||
# A test case uses zh_CN locale to verify XML event translations
|
||||
|
|
@ -78,6 +58,7 @@ Requires: satyr >= 0.24
|
|||
Requires: glib2 >= %{glib_ver}
|
||||
Requires: xz
|
||||
Requires: lz4
|
||||
Requires: nettle
|
||||
|
||||
# Required for the temporary modularity hack, see below
|
||||
%if 0%{?_module_build}
|
||||
|
|
@ -116,22 +97,6 @@ Requires: libreport-web = %{version}-%{release}
|
|||
%description web-devel
|
||||
Development headers for libreport-web
|
||||
|
||||
%if %{with python2}
|
||||
%package -n python2-libreport
|
||||
Summary: Python bindings for report-libs
|
||||
Requires: libreport = %{version}-%{release}
|
||||
Requires: python2-dnf
|
||||
%{?python_provide:%python_provide python2-libreport}
|
||||
# Remove before F30
|
||||
Provides: %{name}-python = %{version}-%{release}
|
||||
Provides: %{name}-python%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: %{name}-python < %{version}-%{release}
|
||||
|
||||
%description -n python2-libreport
|
||||
Python bindings for report-libs.
|
||||
%endif # with python2
|
||||
|
||||
%if %{with python3}
|
||||
%package -n python3-libreport
|
||||
Summary: Python 3 bindings for report-libs
|
||||
%if 0%{?_module_build}
|
||||
|
|
@ -147,14 +112,9 @@ Requires: libreport = %{version}-%{release}
|
|||
%endif
|
||||
Requires: python3-dnf
|
||||
%{?python_provide:%python_provide python3-libreport}
|
||||
# Remove before F30
|
||||
Provides: %{name}-python3 = %{version}-%{release}
|
||||
Provides: %{name}-python3%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: %{name}-python3 < %{version}-%{release}
|
||||
|
||||
%description -n python3-libreport
|
||||
Python 3 bindings for report-libs.
|
||||
%endif # with python3
|
||||
|
||||
%package cli
|
||||
Summary: %{name}'s command line interface
|
||||
|
|
@ -178,7 +138,6 @@ bugs
|
|||
Summary: GTK front-end for libreport
|
||||
Requires: libreport = %{version}-%{release}
|
||||
Requires: libreport-plugin-reportuploader = %{version}-%{release}
|
||||
Requires: fros >= 1.0
|
||||
Provides: report-gtk = 0:0.23-1
|
||||
Obsoletes: report-gtk < 0:0.23-1
|
||||
|
||||
|
|
@ -258,12 +217,7 @@ BuildRequires: %{libjson_devel}
|
|||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: libreport-web = %{version}-%{release}
|
||||
%if 0%{?rhel}
|
||||
%if %{with python2}
|
||||
Requires: python-rhsm
|
||||
%endif # with python2
|
||||
%if %{with python3}
|
||||
Requires: python3-subscription-manager-rhsm
|
||||
%endif # with python3
|
||||
%endif
|
||||
|
||||
%description plugin-ureport
|
||||
|
|
@ -311,6 +265,7 @@ install this package and you're done.
|
|||
%package rhel
|
||||
Summary: Default configuration for reporting bugs via Red Hat infrastructure
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: %{name}-plugin-ureport
|
||||
|
||||
%description rhel
|
||||
Default configuration for reporting bugs via Red Hat infrastructure
|
||||
|
|
@ -356,25 +311,12 @@ data over ftp/scp...
|
|||
%endif
|
||||
|
||||
%prep
|
||||
# http://www.rpm.org/wiki/PackagerDocs/Autosetup
|
||||
# Default '__scm_apply_git' is 'git apply && git commit' but this workflow
|
||||
# doesn't allow us to create a new file within a patch, so we have to use
|
||||
# 'git am' (see /usr/lib/rpm/macros for more details)
|
||||
%define __scm_apply_git(qp:m:) %{__git} am
|
||||
%autosetup -S git
|
||||
|
||||
%build
|
||||
./gen-version
|
||||
autoreconf -if
|
||||
intltoolize --automake -c -f
|
||||
autoconf
|
||||
|
||||
%configure \
|
||||
%if %{without python2}
|
||||
--without-python2 \
|
||||
%endif # with python2
|
||||
%if %{without python3}
|
||||
--without-python3 \
|
||||
%endif # with python3
|
||||
%if %{without bugzilla}
|
||||
--without-bugzilla \
|
||||
%endif
|
||||
|
|
@ -384,10 +326,10 @@ intltoolize --automake -c -f
|
|||
--enable-doxygen-docs \
|
||||
--disable-silent-rules
|
||||
|
||||
make %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot} \
|
||||
%make_install \
|
||||
%if %{with python3}
|
||||
PYTHON=%{__python3} \
|
||||
%endif # with python3
|
||||
|
|
@ -493,6 +435,7 @@ fi
|
|||
|
||||
%posttrans gtk
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
%endif
|
||||
|
||||
%files -f %{name}.lang
|
||||
|
|
@ -504,7 +447,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%config(noreplace) %{_sysconfdir}/%{name}/ignored_words.conf
|
||||
%{_datadir}/%{name}/conf.d/libreport.conf
|
||||
%{_libdir}/libreport.so.*
|
||||
%{_libdir}/libabrt_dbus.so.*
|
||||
%{_mandir}/man5/libreport.conf.5*
|
||||
%{_mandir}/man5/report_event.conf.5*
|
||||
%{_mandir}/man5/forbidden_words.conf.5*
|
||||
|
|
@ -534,6 +476,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_includedir}/libreport/problem_data.h
|
||||
%{_includedir}/libreport/problem_report.h
|
||||
%{_includedir}/libreport/report.h
|
||||
%{_includedir}/libreport/report_result.h
|
||||
%{_includedir}/libreport/run_event.h
|
||||
%{_includedir}/libreport/file_obj.h
|
||||
%{_includedir}/libreport/config_item_info.h
|
||||
|
|
@ -541,17 +484,14 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_includedir}/libreport/problem_details_widget.h
|
||||
%{_includedir}/libreport/problem_details_dialog.h
|
||||
%{_includedir}/libreport/problem_utils.h
|
||||
%{_includedir}/libreport/report_result.h
|
||||
%{_includedir}/libreport/ureport.h
|
||||
%{_includedir}/libreport/reporters.h
|
||||
%{_includedir}/libreport/global_configuration.h
|
||||
# Private api headers:
|
||||
%{_includedir}/libreport/internal_abrt_dbus.h
|
||||
%{_includedir}/libreport/internal_libreport.h
|
||||
%{_includedir}/libreport/xml_parser.h
|
||||
%{_includedir}/libreport/helpers
|
||||
%{_libdir}/libreport.so
|
||||
%{_libdir}/libabrt_dbus.so
|
||||
%{_libdir}/pkgconfig/libreport.pc
|
||||
%dir %{_includedir}/libreport
|
||||
|
||||
|
|
@ -563,17 +503,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_includedir}/libreport/libreport_curl.h
|
||||
%{_libdir}/pkgconfig/libreport-web.pc
|
||||
|
||||
%if %{with python2}
|
||||
%files -n python2-libreport
|
||||
%{python2_sitearch}/report/
|
||||
%{python2_sitearch}/reportclient/
|
||||
%endif # with python2
|
||||
|
||||
%if %{with python3}
|
||||
%files -n python3-libreport
|
||||
%{python3_sitearch}/report/
|
||||
%{python3_sitearch}/reportclient/
|
||||
%endif # with python3
|
||||
|
||||
%files cli
|
||||
%{_bindir}/report-cli
|
||||
|
|
@ -586,9 +518,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%files gtk
|
||||
%{_bindir}/report-gtk
|
||||
%{_libdir}/libreport-gtk.so.*
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/emergencyanalysis_event.conf
|
||||
%{_mandir}/man5/emergencyanalysis_event.conf.5.*
|
||||
%{_datadir}/%{name}/events/report_EmergencyAnalysis.xml
|
||||
%{_mandir}/man1/report-gtk.1.gz
|
||||
|
||||
%files gtk-devel
|
||||
|
|
@ -622,7 +551,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%config(noreplace) %{_sysconfdir}/libreport/plugins/mailx.conf
|
||||
%{_datadir}/%{name}/conf.d/plugins/mailx.conf
|
||||
%{_datadir}/%{name}/events/report_Mailx.xml
|
||||
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.mailx.xml
|
||||
%{_datadir}/%{name}/workflows/workflow_Mailx.xml
|
||||
%{_datadir}/%{name}/workflows/workflow_MailxCCpp.xml
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/mailx_event.conf
|
||||
|
|
@ -640,7 +568,11 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_mandir}/man1/reporter-ureport.1.gz
|
||||
%{_mandir}/man5/ureport.conf.5.gz
|
||||
%{_datadir}/%{name}/events/report_uReport.xml
|
||||
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.ureport.xml
|
||||
%if 0%{?rhel}
|
||||
%config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_uReport.conf
|
||||
%{_datadir}/%{name}/workflows/workflow_uReport.xml
|
||||
%{_mandir}/man5/report_uReport.conf.5.*
|
||||
%endif
|
||||
|
||||
%if %{with bugzilla}
|
||||
%files plugin-bugzilla
|
||||
|
|
@ -649,12 +581,12 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%config(noreplace) %{_sysconfdir}/libreport/plugins/bugzilla_format.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/plugins/bugzilla_formatdup.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/plugins/bugzilla_format_analyzer_libreport.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/plugins/bugzilla_formatdup_analyzer_libreport.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/plugins/bugzilla_format_kernel.conf
|
||||
%{_datadir}/%{name}/events/report_Bugzilla.xml
|
||||
%{_datadir}/%{name}/events/watch_Bugzilla.xml
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events/report_Bugzilla.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/events.d/bugzilla_event.conf
|
||||
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.bugzilla.xml
|
||||
# FIXME: remove with the old gui
|
||||
%{_mandir}/man1/reporter-bugzilla.1.gz
|
||||
%{_mandir}/man5/report_Bugzilla.conf.5.*
|
||||
|
|
@ -663,6 +595,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_mandir}/man5/bugzilla_format.conf.5.*
|
||||
%{_mandir}/man5/bugzilla_formatdup.conf.5.*
|
||||
%{_mandir}/man5/bugzilla_format_analyzer_libreport.conf.5.*
|
||||
%{_mandir}/man5/bugzilla_formatdup_analyzer_libreport.conf.5.*
|
||||
%{_mandir}/man5/bugzilla_format_kernel.conf.5.*
|
||||
%{_bindir}/reporter-bugzilla
|
||||
%endif
|
||||
|
|
@ -706,7 +639,6 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_datadir}/%{name}/conf.d/plugins/rhtsupport.conf
|
||||
%{_datadir}/%{name}/events/report_RHTSupport.xml
|
||||
%{_datadir}/%{name}/events/report_RHTSupport_AddData.xml
|
||||
%{_datadir}/dbus-1/interfaces/com.redhat.problems.configuration.rhtsupport.xml
|
||||
%if 0%{?rhel}
|
||||
%attr(600,root,root)%{_sysconfdir}/%{name}/cert-api.access.redhat.com.pem
|
||||
%endif
|
||||
|
|
@ -771,12 +703,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%{_datadir}/%{name}/workflows/workflow_RHELAddDatavmcore.xml
|
||||
%{_datadir}/%{name}/workflows/workflow_RHELAddDataxorg.xml
|
||||
%{_datadir}/%{name}/workflows/workflow_RHELAddDataJavaScript.xml
|
||||
%{_datadir}/%{name}/workflows/workflow_uReport.xml
|
||||
%config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_rhel.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_rhel_add_data.conf
|
||||
%config(noreplace) %{_sysconfdir}/libreport/workflows.d/report_uReport.conf
|
||||
%{_mandir}/man5/report_rhel.conf.5.*
|
||||
%{_mandir}/man5/report_uReport.conf.5.*
|
||||
|
||||
%files rhel-bugzilla
|
||||
%{_datadir}/%{name}/workflows/workflow_RHELBugzillaCCpp.xml
|
||||
|
|
@ -814,6 +743,115 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon May 11 2020 Michal Fabik <mfabik@redhat.com> 2.13.1-1
|
||||
- Fix broken abrt-vmcore.service due to bad namespacing
|
||||
|
||||
* Fri Apr 24 2020 Michal Fabik <mfabik@redhat.com> 2.13.0-2
|
||||
- Support new "time" and "time_for_children" kernel namespaces
|
||||
- Remove preprocessor namespacing in favor of function name prefixes
|
||||
- client-python: Accomodate for multiple debug directories
|
||||
- gui-wizard-gtk: Wrap event log messages
|
||||
- lib: Drop D-Bus code
|
||||
- plugins: reporter-rhtsupport: Drop unused debugging code
|
||||
- Update translations
|
||||
|
||||
* Thu Feb 06 2020 Michal Fabik <mfabik@redhat.com> 2.12.0-1
|
||||
- ureport: Allow printf-like data attaching
|
||||
- plugins: reporter-rhtsupport: Avoid runtime warning
|
||||
- Update translations
|
||||
- lib: Don't include Nettle in a public interface
|
||||
- ureport: Drop HTTP header table
|
||||
- glib_support: Use g_strsplit
|
||||
- glib_support: Drop type initialization
|
||||
- client-python: Drop yumdebuginfo
|
||||
- lib: Use Nettle for computing SHA-1 digests
|
||||
- Move augeas lenses to new subdirectory
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Nov 14 2019 Matěj Grabovský <mgrabovs@redhat.com> 2.11.3-1
|
||||
- Remove unused scripts
|
||||
- gtk: Fix infinite loop crashing the reporting
|
||||
- gtk: Improve logging
|
||||
- gtk: Remove page number from page struct
|
||||
- gtk: Code style adjustments
|
||||
- Make notebook tabs invisible again
|
||||
- gui-wizard-gtk: Remove expert mode
|
||||
- gui-wizard-gtk: Stop allowing overriding UI definitions
|
||||
- pull-trans: Suggest zanata install
|
||||
- shellcheck: Iterating over ls output is fragile. Use globs.
|
||||
- shellcheck: Double quote to prevent globbing and word splitting
|
||||
- zanata: Use python3 zanata client to pull translations
|
||||
- gtk: Fix another possible double-free
|
||||
|
||||
* Mon Nov 11 2019 Ernestas Kulik <ekulik@redhat.com> - 2.11.2-2
|
||||
- Add patch to fix a double-free
|
||||
|
||||
* Wed Oct 23 2019 Matěj Grabovský <mgrabovs@redhat.com> 2.11.2-1
|
||||
- gtk: Improve memory management
|
||||
- gtk: Prevent memory leak
|
||||
- lib: Eliminate GLib inefficiency
|
||||
- gtk,style: Minor style consistency fixes
|
||||
- workflows: Correct name of post_report event
|
||||
|
||||
* Wed Oct 16 2019 Matěj Grabovský <mgrabovs@redhat.com> 2.11.1-1
|
||||
- gtk: Fix a double-free condition
|
||||
|
||||
* Fri Oct 11 2019 Matěj Grabovský <mgrabovs@redhat.com> 2.11.0-1
|
||||
- Remove option for emergency analysis/reporting
|
||||
- tests: proc_helpers: Fix call to errx()
|
||||
- plugins: bugzilla: Add format file for libreport duplicates
|
||||
- dbus: Remove interface introspection files
|
||||
- lib: Don't warn if a configuration key is missing
|
||||
- gtk: Handle event wildcards in command line options
|
||||
- gtk: Better handling of workflows with wildcarded events
|
||||
- lib: Remove unused arguments of prepare_commands
|
||||
- lib: Reintroduce error logging in event XML parser
|
||||
- cli: Continue running even if some events have no commands
|
||||
- cli: Expand event name wildcards
|
||||
- lib: Expand wildcards in workflow XML parser
|
||||
- lib: Add a function to expand wildcards in event names
|
||||
- style: Simplify code; fix typos in comments
|
||||
- gitignore: Update with missing and renamed generated files
|
||||
- dirsize: Skip dirs in which sosreport is being generated
|
||||
- tests: Fix Python tests being skipped unconditionally
|
||||
- Remove Python 2 support
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-4
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-3
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Wed Jul 03 2019 Martin Kutlak <mkutlak@redhat.com> 2.10.1-1
|
||||
- doc: Makefile.am: Use correct path for --conf-file
|
||||
- lib: copy_file_recursive: Use GLib abstractions
|
||||
- gui-wizard-gtk: Fix fix
|
||||
- cli: run-command: Replace use of vfork() with fork()
|
||||
- plugins: rhbz: Don’t call strlen() on attachment data
|
||||
- Check for empty fmt_file name when printing error msgs
|
||||
- cli: Unpack command-line argument parsing logic
|
||||
- lib: event_config: Remove pointless assignment
|
||||
- gui-wizard-gtk: Fix never-read assignment
|
||||
- lib: xatonum: Check string parameters
|
||||
- Rework and refine composition of error messages
|
||||
- Add clearer warnings about missing report elements specified in format files
|
||||
- Move uReport workflow to plugin-ureport subpackage
|
||||
- lib: ureport: Export workflow when saving server response
|
||||
- lib: dump_dir: Clean up on failure in dd_delete()
|
||||
- Use #ifdef to check whether macros are defined
|
||||
- autogen.sh: Use autoreconf
|
||||
- autogen.sh: Allow skipping running configure
|
||||
- tests: forbidden_words: Don’t hardcode sysconfdir
|
||||
- Makefile.am: Use correct locale when getting date
|
||||
|
||||
* Tue Apr 23 2019 Ernestas Kulik <ekulik@redhat.com> - 2.10.0-3
|
||||
- Add patch to fix workflow fields not being added to reported_to when μReport response comes with a Bugzilla URL
|
||||
|
||||
* Mon Feb 04 2019 Ernestas Kulik <ekulik@redhat.com> - 2.10.0-2
|
||||
- Remove unused patch
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (libreport-2.10.0.tar.gz) = 978ea442d82b75abf80b2075f540cb05c5577387a9221f2070c9695c4546d36169738d223f5e903d0b774b7e1566a6111c55a6bb51a0822ad1676095f067c45b
|
||||
SHA512 (libreport-2.13.1.tar.gz) = fc3db46ee6885053387b86e682f9ed1908d050149a5d820b40444b7db413af89afdcd6abef780179c5ca968ea036f3ae245884414b94d426547e58a89b8bbb65
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue