d18f1d3651
patch license to follow spdx.org standard OBS-URL: https://build.opensuse.org/request/show/104587 OBS-URL: https://build.opensuse.org/package/show/zypp:Head/zypp-plugin?expand=0&rev=6
44 lines
1.3 KiB
RPMSpec
44 lines
1.3 KiB
RPMSpec
#
|
|
Name: zypp-plugin
|
|
Version: 0.3
|
|
Release: 0
|
|
Group: System/Packages
|
|
License: GPL-2.0
|
|
Url: https://gitorious.org/opensuse/zypp-plugin
|
|
Summary: Helper that makes writing ZYpp plugins easier
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Source0: %{name}-%{version}.tar.bz2
|
|
|
|
# Actually libzypp(plugin) should be required. Unfortunately the corresponing
|
|
# provides was introduced to late for SUSE Manager/SLE-11-SP1. We do not want to
|
|
# enforce libzypp update to satisfy this, so the Requires should saty disabled,
|
|
# until libzypp on SUSE Manager/SLE-11-SP1 was updated and provides libzypp(plugin).
|
|
#Requires: libzypp(plugin)
|
|
BuildRequires: python-devel
|
|
Requires: python
|
|
|
|
%description
|
|
Empty main package. Helper for different languages reside in subpackages.
|
|
|
|
%package python
|
|
Group: System/Packages
|
|
License: GPL-2.0
|
|
Summary: Helper that makes writing ZYpp plugins in python easier
|
|
|
|
%description python
|
|
This API allows writing ZYpp plugins by just subclassing from a python class
|
|
and implementing the commands you want to respond to as python methods.
|
|
|
|
%prep
|
|
%setup -q -n zypp-plugin
|
|
|
|
%build
|
|
|
|
%install
|
|
%{__mkdir_p} %{buildroot}%{py_sitedir}
|
|
%{__install} python/zypp_plugin.py %{buildroot}%{py_sitedir}/zypp_plugin.py
|
|
|
|
%files python
|
|
%defattr(-,root,root)
|
|
%{py_sitedir}/zypp_plugin.py
|