From 95e2e88f5d0b75ca692eb6a8d4233ade1a21da18 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 14 Feb 2018 12:33:32 -0800 Subject: [PATCH] Move TUI back to main package The TUI bits were inadvertently(?) moved to the -gui subpackage in the 0.46-1 package build. This broke Rawhide composes, as it made anaconda's text interface require python3-meh-gui. This moves the TUI bits back to the main python3-meh package and should fix Rawhide composes. Corresponding pull request for upstream repo is https://github.com/rhinstaller/python-meh/pull/17 . --- python-meh.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/python-meh.spec b/python-meh.spec index da5148e..d6a2f55 100644 --- a/python-meh.spec +++ b/python-meh.spec @@ -4,7 +4,7 @@ Summary: A python library for handling exceptions Name: python-meh Url: https://github.com/rhinstaller/python-meh Version: 0.46 -Release: 1%{?dist} +Release: 2%{?dist} # This is a Red Hat maintained package which is specific to # our distribution. Thus the source is only available from # within this srpm. @@ -75,13 +75,18 @@ make DESTDIR=%{buildroot} install %files -n python3-meh -f %{name}.lang %doc ChangeLog COPYING %{python3_sitelib}/* -%exclude %{python3_sitelib}/meh/ui/ +%exclude %{python3_sitelib}/meh/ui/gui.py* +%exclude %{python3_sitelib}/meh/ui/__pycache__/gui.py* %files -n python3-meh-gui -%{python3_sitelib}/meh/ui/ +%{python3_sitelib}/meh/ui/gui.py* +%{python3_sitelib}/meh/ui/__pycache__/gui.py* %{_datadir}/python-meh %changelog +* Wed Feb 14 2018 Adam Williamson - 0.46-2 +- Move TUI back to main package (inadvertently moved to -gui in 0.46-1) + * Mon Feb 12 2018 Martin Kolman - 0.46-1 - Drop Python 2 support (mkolman)