python-slip/python-slip.spec
Dirk Mueller f673ce4636 Accepting request 354623 from home:markoschandras:firewalld
I want to maintain python-slip in Factory. This package is a dependency for firewalld which I will submit soon. I would like to use the devel:languages:python as the devel project

OBS-URL: https://build.opensuse.org/request/show/354623
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-slip?expand=0&rev=1
2016-01-21 12:58:41 +00:00

105 lines
3.4 KiB
RPMSpec

#
# spec file for package python-slip
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-slip
Version: 0.6.4
Release: 0
Summary: Miscellaneous convenience, extension and workaround code for Python
License: GPL-2.0+
Group: System/Libraries
Url: https://github.com/nphilipp/python-slip
Source0: https://github.com/nphilipp/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.bz2
BuildRequires: fdupes
BuildRequires: python-devel
BuildArch: noarch
%description
The Simple Library for Python packages contain miscellaneous code for
convenience, extension and workaround purposes.
This package provides the "slip" and the "slip.util" modules.
%package dbus
Summary: Convenience functions for dbus services
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
Requires: dbus-1-python >= 0.80
Requires: polkit >= 0.94
Requires: python-decorator
# Don't require any of python-gobject{,2} because slip.dbus works with either one. In
# theory users of slip.dbus should require one or the other anyway to use the
# main loop.
#
%description dbus
The Simple Library for Python packages contain miscellaneous code for
convenience, extension and workaround purposes.
This package provides slip.dbus.service.Object, which is a dbus.service.Object
derivative that ends itself after a certain time without being used and/or if
there are no clients anymore on the message bus, as well as convenience
functions and decorators for integrating a dbus service with PolicyKit.
%package gtk
Summary: Code to make auto-wrapping gtk labels
Group: System/Libraries
Requires: %{name} = %{version}-%{release}
Requires: python-gtk
%description gtk
The Simple Library for Python packages contain miscellaneous code for
convenience, extension and workaround purposes.
This package provides slip.gtk.set_autowrap(), a convenience function which
lets gtk labels be automatically re-wrapped upon resizing.
%prep
%setup -q
%build
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot}
%fdupes %{buildroot}/%{python_sitelib}
%files
%defattr(-,root,root,-)
%doc COPYING
%dir %{python_sitelib}/slip/
%dir %{python_sitelib}/slip/_wrappers
%{python_sitelib}/slip/__init__.py*
%{python_sitelib}/slip/util
%{python_sitelib}/slip-%{version}-py%{python_version}.egg-info
%{python_sitelib}/slip/_wrappers/__init__.*
%{python_sitelib}/slip/_wrappers/_glib.*
%files dbus
%defattr(-,root,root,-)
%doc doc/dbus/*
%{python_sitelib}/slip/dbus
%{python_sitelib}/slip.dbus-%{version}-py%{python_version}.egg-info
%files gtk
%defattr(-,root,root,-)
%{python_sitelib}/slip/gtk
%{python_sitelib}/slip.gtk-%{version}-py%{python_version}.egg-info
%changelog