132 lines
3.5 KiB
RPMSpec
132 lines
3.5 KiB
RPMSpec
%if 0%{?fedora} > 12
|
|
%global with_python3 1
|
|
%endif
|
|
|
|
%global pypi_name colorama
|
|
|
|
Name: python-%{pypi_name}
|
|
Version: 0.3.2
|
|
Release: 1%{?dist}
|
|
Summary: Cross-platform colored terminal text
|
|
|
|
License: BSD
|
|
URL: http://pypi.python.org/pypi/colorama/
|
|
Source0: http://pypi.python.org/packages/source/c/%{pypi_name}/%{pypi_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python2-devel
|
|
|
|
%description
|
|
Makes ANSI escape character sequences, for producing colored
|
|
terminal text and cursor positioning, work under MS Windows.
|
|
|
|
ANSI escape character sequences have long been used to produce colored terminal
|
|
text and cursor positioning on Unix and Macs. Colorama makes this work on
|
|
Windows, too.
|
|
It also provides some shortcuts to help generate ANSI sequences, and works fine
|
|
in conjunction with any other ANSI sequence generation library, such as
|
|
Termcolor.
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
%package -n python3-%{pypi_name}
|
|
Summary: Cross-platform colored terminal text
|
|
|
|
Requires: python3
|
|
BuildRequires: python3-devel
|
|
|
|
%description -n python3-%{pypi_name}
|
|
Makes ANSI escape character sequences, for producing colored
|
|
terminal text and cursor positioning, work under MS Windows.
|
|
|
|
ANSI escape character sequences have long been used to produce colored terminal
|
|
text and cursor positioning on Unix and Macs. Colorama makes this work on
|
|
Windows, too.
|
|
It also provides some shortcuts to help generate ANSI sequences, and works fine
|
|
in conjunction with any other ANSI sequence generation library, such as
|
|
Termcolor.
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{pypi_name}-%{version}
|
|
|
|
# remove bundled egg-info
|
|
rm -rf %{pypi_name}.egg-info
|
|
|
|
%if 0%{?with_python3}
|
|
cp -a . %{py3dir}
|
|
%endif
|
|
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
%if 0%{?with_python3}
|
|
pushd %{py3dir}
|
|
%{__python3} setup.py build
|
|
popd
|
|
%endif # with_python3
|
|
|
|
|
|
%install
|
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
|
|
|
%if 0%{?with_python3}
|
|
pushd %{py3dir}
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
popd
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
%files
|
|
%doc README.rst
|
|
%license LICENSE.txt
|
|
%{python_sitelib}/%{pypi_name}
|
|
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
|
|
%if 0%{?with_python3}
|
|
%files -n python3-%{pypi_name}
|
|
%doc README.rst
|
|
%license LICENSE.txt
|
|
%{python3_sitelib}/%{pypi_name}
|
|
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
|
%endif
|
|
|
|
%changelog
|
|
* Fri Sep 05 2014 Matthias Runge <mrunge@redhat.com> - 0.3.2-1
|
|
- update to 0.3.2 (rhbz#1090014)
|
|
|
|
* Fri Jul 25 2014 Lubomir Rintel <lkundrak@v3.sk> - 0.2.7-5
|
|
- Skip the python3 %%files section if we don't build the python3 package
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.7-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 0.2.7-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
* Wed Mar 12 2014 Matthias Runge <mrunge@redhat.com> - 0.2.7-2
|
|
- introduce python3 package (rhbz#1075410)
|
|
|
|
* Mon Sep 30 2013 Matthias Rugne <mrunge@redhat.com> - 0.2.7-1
|
|
- uddate to 0.2.7 (rhbz#1010924)
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.5-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Fri Mar 22 2013 Matthias Runge <mrunge@redhat.com> - 0.2.5-1
|
|
- update to 0.2.5 (rhbz#913431)
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Tue Sep 11 2012 Matthias Runge <mrunge@redhat.com> - 0.2.4-1
|
|
- Initial package.
|