85 lines
2.4 KiB
RPMSpec
85 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package python-xapp
|
|
#
|
|
# Copyright (c) 2017 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-xapp
|
|
Version: 1.0.0
|
|
Release: 0
|
|
Summary: XApp library and common files
|
|
License: GPL-2.0+
|
|
Group: Development/Languages/Python
|
|
Url: https://github.com/linuxmint/python-xapp
|
|
Source: https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: python-devel
|
|
BuildRequires: python3-devel
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This project gathers the components which are common to multiple
|
|
desktop environments and required to implement cross-DE solutions.
|
|
|
|
%package -n python2-xapp
|
|
Summary: Python 2 XApp library
|
|
Group: Development/Languages/Python
|
|
%if 0%{?suse_version} > 1320 || 0%{?sle_version} > 120200
|
|
Requires: python2-psutil
|
|
%else
|
|
Requires: python-psutil
|
|
%endif
|
|
|
|
%description -n python2-xapp
|
|
This package contains the Python 2 version of the library.
|
|
|
|
%package -n python3-xapp
|
|
Summary: Python 3 XApp library
|
|
Group: Development/Languages/Python
|
|
Requires: python3-psutil
|
|
|
|
%description -n python3-xapp
|
|
This package contains the Python 3 version of the library.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
for py in python2 python3; do
|
|
$py setup.py build
|
|
mv build build-$py
|
|
done
|
|
|
|
%install
|
|
for py in python2 python3; do
|
|
mv build-$py build
|
|
$py setup.py install \
|
|
--root=%{buildroot} --prefix=%{_prefix}
|
|
mv build build-$py
|
|
done
|
|
|
|
%files -n python2-xapp
|
|
%defattr(-,root,root)
|
|
%doc COPYING debian/changelog
|
|
%{python_sitelib}/xapp/
|
|
%{python_sitelib}/python_xapp-%{version}-*.egg-info
|
|
|
|
%files -n python3-xapp
|
|
%defattr(-,root,root)
|
|
%doc COPYING debian/changelog
|
|
%{python3_sitelib}/xapp/
|
|
%{python3_sitelib}/python_xapp-%{version}-*.egg-info
|
|
|
|
%changelog
|