New version.
- Add test for handling unicode strings and files (vpodzime) - Read files as UTF-8 and ignore errors (#874250) (vpodzime) - Add %check section to the spec file (vpodzime) - Fix tests (vpodzime)
This commit is contained in:
parent
355afd2676
commit
7394e64971
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ python-meh-0.13.tar.gz
|
||||
/python-meh-0.16.tar.gz
|
||||
/python-meh-0.17.tar.gz
|
||||
/python-meh-0.18.tar.gz
|
||||
/python-meh-0.19.tar.gz
|
||||
|
@ -1,9 +1,11 @@
|
||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
%define libreportver 2.0.11-1
|
||||
|
||||
Summary: A python library for handling exceptions
|
||||
Name: python-meh
|
||||
Url: http://git.fedorahosted.org/git/?p=python-meh.git
|
||||
Version: 0.18
|
||||
Version: 0.19
|
||||
Release: 1%{?dist}
|
||||
# This is a Red Hat maintained package which is specific to
|
||||
# our distribution. Thus the source is only available from
|
||||
@ -18,8 +20,10 @@ Group: System Environment/Libraries
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: python-devel, gettext, python-setuptools-devel, intltool
|
||||
BuildRequires: dbus-python, libreport-gtk >= %{libreportver}, libreport-newt >= %{libreportver}
|
||||
Requires: python, dbus-python, pygobject3, gtk3
|
||||
Requires: openssh-clients, rpm-python, yum, newt-python, libreport-gtk >= 2.0.11-1, libreport-newt >= 2.0.11-1
|
||||
Requires: openssh-clients, rpm-python, yum, newt-python
|
||||
Requires: libreport-gtk >= %{libreportver}, libreport-newt >= %{libreportver}
|
||||
|
||||
%description
|
||||
The python-meh package is a python library for handling, saving, and reporting
|
||||
@ -31,6 +35,9 @@ exceptions.
|
||||
%build
|
||||
make
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make DESTDIR=%{buildroot} install
|
||||
@ -46,6 +53,12 @@ rm -rf %{buildroot}
|
||||
%{_datadir}/python-meh
|
||||
|
||||
%changelog
|
||||
* Wed Nov 14 2012 Vratislav Podzimek <vpodzime@redhat.com> - 0.19-1
|
||||
- Add test for handling unicode strings and files (vpodzime)
|
||||
- Read files as UTF-8 and ignore errors (#874250) (vpodzime)
|
||||
- Add %check section to the spec file (vpodzime)
|
||||
- Fix tests (vpodzime)
|
||||
|
||||
* Thu Oct 25 2012 Vratislav Podzimek <vpodzime@redhat.com> - 0.18-1
|
||||
- Handle tracebacks with no stack (#866441) (vpodzime)
|
||||
- Parse component name correctly (#866526) (vpodzime)
|
||||
|
Loading…
Reference in New Issue
Block a user