forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixup RPM building: Makefile, Spec File, .gitignore
Fixup distutils: setup.py Clean old cruft: section 5 man pages
- Loading branch information
Showing
8 changed files
with
74 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,7 @@ build | |
# Emacs backup files... | ||
*~ | ||
.\#* | ||
# (s)rpm building stuff | ||
MANIFEST | ||
dist | ||
rpm-build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} | ||
|
||
Summary: Minimal SSH command and control | ||
Name: ansible | ||
Version: 1.0 | ||
Release: 1 | ||
Source0: ansible-%{version}.tar.gz | ||
License: GPLv3 | ||
Group: Development/Libraries | ||
Summary: Minimal SSH command and control | ||
Version: 0.0.1 | ||
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot | ||
Group: Development/Libraries | ||
License: GPLv3 | ||
Prefix: %{_prefix} | ||
Source0: ansible-%{version}.tar.gz | ||
Url: http://ansible.github.com | ||
|
||
BuildArch: noarch | ||
Url: http://github.com/mpdehaan/ansible/ | ||
BuildRequires: asciidoc | ||
BuildRequires: python-devel | ||
|
||
Requires: python-paramiko | ||
Requires: python-jinja2 | ||
|
||
|
@@ -21,7 +25,7 @@ executing commands, running "modules", or executing larger 'playbooks' that | |
can serve as a configuration management or deployment system. | ||
|
||
%prep | ||
%setup -n %{name}-%{version} | ||
%setup -q -n %{name}-%{version} | ||
|
||
%build | ||
python setup.py build | ||
|
@@ -38,13 +42,11 @@ rm -rf $RPM_BUILD_ROOT | |
%doc README.md AUTHORS.md PKG-INFO | ||
%defattr(-,root,root) | ||
%{_mandir}/man1/*.gz | ||
%{_mandir}/man5/*.gz | ||
%{python_sitelib}/* | ||
%{_bindir}/ansible* | ||
%{_datadir}/ansible/* | ||
%{_sysconfdir}/ansible/ | ||
|
||
%changelog | ||
* Mon Mar 5 2012 Seth Vidal <skvidal at fedoraproject.org> | ||
- spec file | ||
|
||
* Sat Mar 10 2012 <[email protected]> - 0.0.1-1 | ||
- Release of 0.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.