Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
444c8943
Commit
444c8943
authored
Mar 11, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2369 from leucos/arch-pkgbuild-fix
Fixes Arch building file
parents
e241bb58
04b19062
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
29 deletions
+10
-29
packaging/arch/PKGBUILD
+2
-2
packaging/arch/python-binary.diff
+8
-27
No files found.
packaging/arch/PKGBUILD
View file @
444c8943
#Maintainer: Michel Blanc <mblanc@erasme.org>
#Maintainer: Michel Blanc <mblanc@erasme.org>
pkgname
=
ansible-git
pkgname
=
ansible-git
pkgver
=
20130
13
1
pkgver
=
20130
31
1
pkgrel
=
1
pkgrel
=
1
pkgdesc
=
"A radically simple deployment, model-driven configuration management, and command execution framework"
pkgdesc
=
"A radically simple deployment, model-driven configuration management, and command execution framework"
arch
=(
'any'
)
arch
=(
'any'
)
...
@@ -10,7 +10,7 @@ depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml')
...
@@ -10,7 +10,7 @@ depends=('python2' 'python2-paramiko' 'python2-jinja' 'python2-yaml')
makedepends
=(
'git'
'asciidoc'
'fakeroot'
)
makedepends
=(
'git'
'asciidoc'
'fakeroot'
)
conflicts
=(
'ansible'
)
conflicts
=(
'ansible'
)
source
=(
"python-binary.diff"
)
source
=(
"python-binary.diff"
)
md5sums
=(
"
8f1eb942a01bbf206dbe32bded8725c6
"
)
md5sums
=(
"
ab81876d8d4c86c27d137e3d86c25a3a
"
)
_gitroot
=
"https://github.com/ansible/ansible"
_gitroot
=
"https://github.com/ansible/ansible"
_gitname
=
"ansible"
_gitname
=
"ansible"
...
...
packaging/arch/python-binary.diff
View file @
444c8943
Les fichiers binaires ansible.orig/.git/index et ansible/.git/index sont différents
--- ansible.orig/Makefile 2013-03-11 23:12:32.586322115 +0100
diff -uNr ansible.orig/Makefile ansible/Makefile
+++ ansible/Makefile 2013-03-11 23:12:59.375487971 +0100
--- ansible.orig/Makefile 2012-11-16 09:30:00.232106580 +0100
@@ -28,7 +28,7 @@
+++ ansible/Makefile 2012-11-16 09:31:06.606482546 +0100
ASCII2MAN = @echo "ERROR: AsciiDoc 'a2x' command is not installed but is required to build $(MANPAGES)" && exit 1
@@ -24,7 +24,7 @@
endif
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1 docs/man/man1/ansible-pull.1
-SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
-PYTHON=python
+SITELIB = $(shell python2 -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
+PYTHON=python2
SITELIB = $(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
# VERSION file provides one place to update the software version
# VERSION file provides one place to update the software version
VERSION := $(shell cat VERSION)
@@ -111,13 +111,13 @@
rm -rf docs/js
python:
- python setup.py build
+ python2 setup.py build
install:
- python setup.py install
+ python2 setup.py install
sdist: clean docs
- python setup.py sdist -t MANIFEST.in
+ python2 setup.py sdist -t MANIFEST.in
rpmcommon: sdist
@mkdir -p rpm-build
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment