Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Łukasz Nowak
slapos
Commits
9de8cdd5
Commit
9de8cdd5
authored
Jul 05, 2011
by
Vivien Alger
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into kvm
parents
020eafcb
5b18969f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
2 deletions
+13
-2
component/lxml-python/buildout.cfg
component/lxml-python/buildout.cfg
+9
-0
software/slaprunner/software.cfg
software/slaprunner/software.cfg
+1
-0
stack/erp5.cfg
stack/erp5.cfg
+3
-2
No files found.
component/lxml-python/buildout.cfg
View file @
9de8cdd5
...
@@ -13,9 +13,18 @@ PATH = ${libxslt:location}/bin:%(PATH)s
...
@@ -13,9 +13,18 @@ PATH = ${libxslt:location}/bin:%(PATH)s
[lxml-python]
[lxml-python]
recipe = zc.recipe.egg:custom
recipe = zc.recipe.egg:custom
egg = lxml
egg = lxml
# Note: Workaround lxml.de issues blocking buildout runs
# Empty index makes setuptools NOT trying to find any meta information about
# lxml...
index =
# ...so it is wise to tell where lxml can be found
find-links =
find-links =
http://pypi.python.org/pypi/lxml/2.2.8
http://pypi.python.org/pypi/lxml/2.2.8
http://pypi.python.org/pypi/lxml/2.3
http://pypi.python.org/pypi/lxml/2.3
# Note: Whenever someone is going to remove it, one shall check, that buildout
# can run in newest mode, without any locally downloaded cache
rpath =
rpath =
${libxml2:location}/lib/
${libxml2:location}/lib/
${libxslt:location}/lib/
${libxslt:location}/lib/
...
...
software/slaprunner/software.cfg
View file @
9de8cdd5
...
@@ -31,6 +31,7 @@ md5sum = 04b17b8665eb4e11ce3a4661ad98e5e3
...
@@ -31,6 +31,7 @@ md5sum = 04b17b8665eb4e11ce3a4661ad98e5e3
[eggs]
[eggs]
eggs +=
eggs +=
slapos.toolbox
slapos.toolbox
slapos.core
[versions]
[versions]
slapos.cookbook = 0.10
slapos.cookbook = 0.10
...
...
stack/erp5.cfg
View file @
9de8cdd5
...
@@ -244,7 +244,7 @@ initialization =
...
@@ -244,7 +244,7 @@ initialization =
os.environ['SOFTWARE_HOME'] = os.path.abspath(os.path.dirname(os.path.dirname(Zope2.__file__)))
os.environ['SOFTWARE_HOME'] = os.path.abspath(os.path.dirname(os.path.dirname(Zope2.__file__)))
os.environ['ZOPE_SCRIPTS'] = ''
os.environ['ZOPE_SCRIPTS'] = ''
parts_directory = '''${buildout:parts-directory}'''
parts_directory = '''${buildout:parts-directory}'''
repository_id_list =
'''${erp5_repository_list:repository_id_list}'''.split().reverse(
)
repository_id_list =
list(reversed('''${erp5_repository_list:repository_id_list}'''.split())
)
temp_bt5_path_list = ['/'.join([parts_directory, x, 'bt5']) for x in repository_id_list]
temp_bt5_path_list = ['/'.join([parts_directory, x, 'bt5']) for x in repository_id_list]
bt5_path_list = []
bt5_path_list = []
[bt5_path_list.extend([bt5_path, '%s/*' % bt5_path]) for bt5_path in temp_bt5_path_list]
[bt5_path_list.extend([bt5_path, '%s/*' % bt5_path]) for bt5_path in temp_bt5_path_list]
...
@@ -274,7 +274,8 @@ initialization =
...
@@ -274,7 +274,8 @@ initialization =
import Zope2
import Zope2
os.environ['SOFTWARE_HOME'] = os.path.abspath(os.path.dirname(os.path.dirname(Zope2.__file__)))
os.environ['SOFTWARE_HOME'] = os.path.abspath(os.path.dirname(os.path.dirname(Zope2.__file__)))
os.environ['ZOPE_SCRIPTS'] = ''
os.environ['ZOPE_SCRIPTS'] = ''
sys.path[0:0] = ['/'.join(['''${buildout:parts-directory}''', x]) for x in '''${erp5_repository_list:repository_id_list}'''.split()].reverse()
repository_id_list = list(reversed('''${erp5_repository_list:repository_id_list}'''.split()))
sys.path[0:0] = ['/'.join(['''${buildout:parts-directory}''', x]) for x in repository_id_list]
[instance-recipe-egg]
[instance-recipe-egg]
recipe = zc.recipe.egg
recipe = zc.recipe.egg
...
...
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