forked from pool/python-termcolor
f65335a928
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-termcolor?expand=0&rev=2
48 lines
1.5 KiB
RPMSpec
48 lines
1.5 KiB
RPMSpec
#norootforbuild
|
|
#
|
|
%define real_name termcolor
|
|
#
|
|
#
|
|
Name: python-%{real_name}
|
|
Group: Development/Libraries/Python
|
|
Version: 0.1.2
|
|
Release: 0
|
|
License: GPLv3+
|
|
Summary: ANSII Color formatting for output in terminal.
|
|
Autoreqprov: on
|
|
Source: %{real_name}-%{version}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: python-setuptools
|
|
Url: http://pypi.python.org/pypi/termcolor
|
|
%{py_requires}
|
|
%define py_vers %(%{__python} -c 'import sys; print int(10*float(sys.version[:3]))')
|
|
%if %{?suse_version: %{suse_version} > 1110} %{!?suse_version:1}
|
|
BuildArch: noarch
|
|
%else
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(True)")}
|
|
%endif
|
|
|
|
%description
|
|
Available text colors: grey, red, green, yellow, blue, magenta, cyan, white.
|
|
Available text highlights: on_grey, on_red, on_green, on_yellow, on_blue, on_magenta, on_cyan, on_white.
|
|
Available attributes: bold, dark, underline, blink, reverse, concealed.
|
|
|
|
%prep
|
|
%setup -n %{real_name}-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=$RPM_BUILD_ROOT --record-rpm=INSTALLED_FILES
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files -f INSTALLED_FILES
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS.txt CHANGES.txt COPYING.txt PKG-INFO README.txt
|
|
|
|
%changelog
|