New version
- Switch to Zanata for translations (mkolman) - Run both Python 2 and Python 3 tests for "make test" (mkolman) - Python 3 compatibility fixes for the Unicode test (mkolman) - Make it possible to specify file open mode (mkolman) - Add missing six dependency (mkolman) - Fix date in changelog (mkolman)
This commit is contained in:
parent
b4d1c66645
commit
15055d7d40
1
.gitignore
vendored
1
.gitignore
vendored
@ -34,3 +34,4 @@ python-meh-0.13.tar.gz
|
|||||||
/python-meh-0.35.tar.gz
|
/python-meh-0.35.tar.gz
|
||||||
/python-meh-0.36.tar.gz
|
/python-meh-0.36.tar.gz
|
||||||
/python-meh-0.37.tar.gz
|
/python-meh-0.37.tar.gz
|
||||||
|
/python-meh-0.38.tar.gz
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
Summary: A python library for handling exceptions
|
Summary: A python library for handling exceptions
|
||||||
Name: python-meh
|
Name: python-meh
|
||||||
Url: http://git.fedorahosted.org/git/?p=python-meh.git
|
Url: http://git.fedorahosted.org/git/?p=python-meh.git
|
||||||
Version: 0.37
|
Version: 0.38
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
# This is a Red Hat maintained package which is specific to
|
# This is a Red Hat maintained package which is specific to
|
||||||
# our distribution. Thus the source is only available from
|
# our distribution. Thus the source is only available from
|
||||||
@ -20,19 +20,30 @@ License: GPLv2+
|
|||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: python-devel, gettext, python-setuptools, intltool
|
BuildRequires: python-devel
|
||||||
BuildRequires: dbus-python, libreport-gtk >= %{libreportver}, libreport-cli >= %{libreportver}, libreport-python >= %{libreportver}
|
BuildRequires: gettext
|
||||||
|
BuildRequires: python-setuptools
|
||||||
|
BuildRequires: intltool
|
||||||
|
BuildRequires: dbus-python
|
||||||
|
BuildRequires: libreport-gtk >= %{libreportver}
|
||||||
|
BuildRequires: libreport-cli >= %{libreportver}
|
||||||
|
BuildRequires: libreport-python >= %{libreportver}
|
||||||
|
BuildRequires: python-six
|
||||||
|
|
||||||
%if 0%{with_python3}
|
%if 0%{with_python3}
|
||||||
BuildRequires: python3-devel python3-setuptools
|
BuildRequires: python3-devel
|
||||||
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-dbus
|
BuildRequires: python3-dbus
|
||||||
BuildRequires: libreport-python3 >= %{libreportver}
|
BuildRequires: libreport-python3 >= %{libreportver}
|
||||||
|
BuildRequires: python3-six
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Requires: python, dbus-python
|
Requires: python
|
||||||
|
Requires: dbus-python
|
||||||
Requires: rpm-python
|
Requires: rpm-python
|
||||||
Requires: libreport-cli >= %{libreportver}
|
Requires: libreport-cli >= %{libreportver}
|
||||||
Requires: libreport-python >= %{libreportver}
|
Requires: libreport-python >= %{libreportver}
|
||||||
|
Requires: python-six
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The python-meh package is a python library for handling, saving, and reporting
|
The python-meh package is a python library for handling, saving, and reporting
|
||||||
@ -41,7 +52,8 @@ exceptions.
|
|||||||
%package gui
|
%package gui
|
||||||
Summary: Graphical user interface for the python-meh library
|
Summary: Graphical user interface for the python-meh library
|
||||||
Requires: python-meh = %{version}-%{release}
|
Requires: python-meh = %{version}-%{release}
|
||||||
Requires: pygobject3, gtk3
|
Requires: pygobject3
|
||||||
|
Requires: gtk3
|
||||||
Requires: libreport-gtk >= %{libreportver}
|
Requires: libreport-gtk >= %{libreportver}
|
||||||
|
|
||||||
%description gui
|
%description gui
|
||||||
@ -50,10 +62,12 @@ The python-meh-gui package provides a GUI for the python-meh library.
|
|||||||
%if 0%{with_python3}
|
%if 0%{with_python3}
|
||||||
%package -n python3-meh
|
%package -n python3-meh
|
||||||
Summary: A python 3 library for handling exceptions
|
Summary: A python 3 library for handling exceptions
|
||||||
Requires: python3, python3-dbus
|
Requires: python3
|
||||||
|
Requires: python3-dbus
|
||||||
Requires: rpm-python3
|
Requires: rpm-python3
|
||||||
Requires: libreport-cli >= %{libreportver}
|
Requires: libreport-cli >= %{libreportver}
|
||||||
Requires: libreport-python3 >= %{libreportver}
|
Requires: libreport-python3 >= %{libreportver}
|
||||||
|
Requires: python3-six
|
||||||
|
|
||||||
%description -n python3-meh
|
%description -n python3-meh
|
||||||
The python3-meh package is a python 3 library for handling, saving, and reporting
|
The python3-meh package is a python 3 library for handling, saving, and reporting
|
||||||
@ -132,6 +146,14 @@ rm -rf %{buildroot}
|
|||||||
%{_datadir}/python-meh
|
%{_datadir}/python-meh
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 31 2015 Martin Kolman <mkolman@redhat.com> - 0.38-1
|
||||||
|
- Switch to Zanata for translations (mkolman)
|
||||||
|
- Run both Python 2 and Python 3 tests for "make test" (mkolman)
|
||||||
|
- Python 3 compatibility fixes for the Unicode test (mkolman)
|
||||||
|
- Make it possible to specify file open mode (mkolman)
|
||||||
|
- Add missing six dependency (mkolman)
|
||||||
|
- Fix date in changelog (mkolman)
|
||||||
|
|
||||||
* Fri Mar 27 2015 Martin Kolman <mkolman@redhat.com> - 0.37-1
|
* Fri Mar 27 2015 Martin Kolman <mkolman@redhat.com> - 0.37-1
|
||||||
- Fix dumping file attachments in Python 3 (vtrefny)
|
- Fix dumping file attachments in Python 3 (vtrefny)
|
||||||
- meh has not required openssh-clients since 2009 (awilliam)
|
- meh has not required openssh-clients since 2009 (awilliam)
|
||||||
|
Loading…
Reference in New Issue
Block a user