2009-07-22 23:05:28 -03:00
|
|
|
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
|
|
|
|
Name: tito
|
2009-07-22 23:24:00 -03:00
|
|
|
Version: 0.0.1
|
2009-07-22 23:05:28 -03:00
|
|
|
Release: 1%{?dist}
|
|
|
|
Summary: A tool for managing rpm based git projects.
|
|
|
|
|
|
|
|
Group: Development/Tools
|
|
|
|
License: GPLv2
|
|
|
|
URL: http://rm-rf.ca/tito
|
|
|
|
Source0: http://rm-rf.ca/files/tito/tito-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python-devel
|
|
|
|
|
|
|
|
%description
|
|
|
|
Tito is a tool for managing tarballs, rpms, and builds for projects using
|
|
|
|
git.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n tito-%{version}
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
|
|
|
rm -f $RPM_BUILD_ROOT%{python_sitelib}/*egg-info/requires.txt
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
#%doc AUTHORS
|
|
|
|
#%doc LICENSE
|
|
|
|
#%doc README
|
|
|
|
%{_bindir}/tito
|
|
|
|
%{_bindir}/bump-version.pl
|
|
|
|
%{_bindir}/tar-fixup-stamp-comment.pl
|
|
|
|
%{_bindir}/test-setup-specfile.pl
|
2009-07-22 23:21:59 -03:00
|
|
|
%dir %{python_sitelib}/spacewalk
|
2009-07-22 23:13:22 -03:00
|
|
|
%{python_sitelib}/spacewalk/*
|
2009-07-22 23:05:28 -03:00
|
|
|
%{python_sitelib}/tito-*.egg-info
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2009-07-22 23:24:00 -03:00
|
|
|
* Wed Jul 22 2009 Devan Goodwin <dgoodwin@rm-rf.ca> 0.0.1-1
|
2009-07-22 23:05:28 -03:00
|
|
|
- Initial packaging.
|
2009-07-22 23:21:59 -03:00
|
|
|
|