From 0a807576249de15ffb4164fd7f21f8a2484c59b5 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 30 2014 08:56:22 +0000 Subject: import devassist09-python-progress-1.2-4.el7 --- diff --git a/.devassist09-python-progress.metadata b/.devassist09-python-progress.metadata new file mode 100644 index 0000000..0714495 --- /dev/null +++ b/.devassist09-python-progress.metadata @@ -0,0 +1 @@ +c7d789f621c7bfce9cfa16639570071d6445284b SOURCES/progress-1.2.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15716a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/progress-1.2.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/python-progress.spec b/SPECS/python-progress.spec new file mode 100644 index 0000000..34945e4 --- /dev/null +++ b/SPECS/python-progress.spec @@ -0,0 +1,57 @@ +%{?scl:%scl_package python-%{pypi_name}} +%{!?scl:%global pkg_name %{name}} + +# Created by pyp2rpm-0.5.2 +%global pypi_name progress + +Name: %{?scl_prefix}python-%{pypi_name} +Version: 1.2 +Release: 4%{?dist} +Summary: Easy to use progress bars + +License: ISC +URL: http://github.com/verigak/progress/ +Source0: https://pypi.python.org/packages/source/p/%{pypi_name}/%{pypi_name}-%{version}.tar.gz +BuildArch: noarch + +BuildRequires: python-devel +BuildRequires: python-setuptools +%{?scl:Requires: %{scl}-runtime} +%{?scl:BuildRequires: %{scl}-runtime} + +%description +Collection of easy to use progress bars and spinners. + +%prep +%setup -q -n %{pypi_name}-%{version} +# Remove bundled egg-info +rm -rf %{pypi_name}.egg-info + +%build +%{?scl:scl enable %{scl} - << \EOF} +%{__python} setup.py build +%{?scl:EOF} + +%install +%{?scl:scl enable %{scl} - << \EOF} +%{__python} setup.py install --skip-build --root %{buildroot} \ + --install-purelib %{python_sitelib} +%{?scl:EOF} + +%files +%doc README.rst LICENSE +%{python_sitelib}/%{pypi_name} +%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info + +%changelog +* Wed May 21 2014 Bohuslav Kabrda - 1.2-4 +- Rebuilt for devassist09 + +* Tue May 13 2014 Bohuslav Kabrda - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Tue Feb 18 2014 Bohuslav Kabrda - 1.2-2 +- Add missing BR: python{,3}-setuptools + +* Tue Feb 18 2014 Bohuslav Kabrda - 1.2-1 +- Initial package.