Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.cmmi
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
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
slapos.recipe.cmmi
Commits
3e54ec0c
Commit
3e54ec0c
authored
Aug 04, 2016
by
Rafael Monnerat
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test update: Url is printed when downloaded by libnetworkcache.
parent
18402f9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
slapos/recipe/cmmi/README.txt
slapos/recipe/cmmi/README.txt
+19
-0
No files found.
slapos/recipe/cmmi/README.txt
View file @
3e54ec0c
...
...
@@ -321,6 +321,7 @@ default build options.
>>> print(system(buildout))
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
configure --prefix=/sample_buildout/parts/package
building package
...
...
@@ -351,6 +352,7 @@ default build options.
Uninstalling package.
Installing packagex.
packagex: [ENV] TMP = /sample_buildout/parts/packagex/tmp
file:///
packagex: Extracting package to /sample_buildout/parts/packagex__compile__
configure --prefix=/sample_buildout/parts/packagex
building package
...
...
@@ -388,6 +390,7 @@ a custom location within the buildout::
Uninstalling packagex.
Installing foobar.
foobar: [ENV] TMP = /sample_buildout/parts/foobar/tmp
file://..
foobar: Extracting package to /sample_buildout/parts/foobar__compile__
building package
installing package
...
...
@@ -428,6 +431,7 @@ Makefile and using explicit ``make`` options to control the build process.
Uninstalling foobar.
Installing haproxy.
haproxy: [ENV] TMP = /sample_buildout/parts/haproxy/tmp
file:///..
haproxy: Extracting package to /sample_buildout/parts/haproxy__compile__
Building HAProxy 1.4.8 (dummy package)
TARGET: linux26
...
...
@@ -530,6 +534,7 @@ targets and also patches the source code before the scripts are run.
package: [ENV] CFLAGS = -I/sw/include
package: [ENV] LDFLAGS = -L/sw/lib -L/some/extra/lib
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Applying patches
patching file configure
...
...
@@ -614,6 +619,7 @@ and a new buildout to try it out
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure-hook
hook: This is pre-configure-hook!
...
...
@@ -655,6 +661,7 @@ shell command in the corresponding stage.
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure
Configure part: package
...
...
@@ -697,6 +704,7 @@ are only ``pre-configure`` and ``post-install``. the output will be
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure
Configure part: Configure in common platform
...
...
@@ -762,6 +770,7 @@ Let's see what happens when set prefix in the buildout section:
package: [ENV] LDFLAGS = /sample-buildout/mylocal/lib
package: [ENV] PATH = /sample_buildout/mylocal/bin:/usr/bin
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure
configure --prefix=/sample_buildout/mylocal
...
...
@@ -794,6 +803,7 @@ example,
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure
configure --prefix=/sample_buildout/parts/package
...
...
@@ -834,6 +844,7 @@ prefix:
package: [ENV] LDFLAGS = /sample-buildout/mylocal/lib
package: [ENV] PATH = /sample_buildout/mylocal/bin:/usr/bin
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
configure --prefix=/sample_buildout/mylocal
building package
...
...
@@ -847,6 +858,7 @@ prefix:
package-2: [ENV] LDFLAGS = /sample-buildout/mylocal/lib
package-2: [ENV] PATH = /sample_buildout/mylocal/bin:/usr/bin
package-2: [ENV] TMP = /sample_buildout/parts/package-2/tmp
file:///
package-2: Extracting package to /sample_buildout/parts/package-2__compile__
configure --prefix=/sample_buildout/mylocal
building package
...
...
@@ -934,6 +946,7 @@ value in the part section. For example,
package: [ENV] LDFLAGS = -L/mytemp/lib
package: [ENV] PATH = /mytemp/bin:/usr/bin
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
Installing package-2.
package-2: [ENV] CFLAGS = -I/mytemp/include
...
...
@@ -942,6 +955,7 @@ value in the part section. For example,
package-2: [ENV] LDFLAGS = -L/mytemp/lib
package-2: [ENV] PATH = /mytemp/bin:/usr/bin
package-2: [ENV] TMP = /sample_buildout/parts/package-2/tmp
file:///
package-2: Extracting package to /sample_buildout/parts/package-2__compile__
package-2: Executing post-install
package magic prefix is /mytemp
...
...
@@ -967,6 +981,7 @@ can display "prefix" value in the stdout.
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
configure
building package
...
...
@@ -994,6 +1009,7 @@ replaced with the recipe final prefix.
Uninstalling package.
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
configure
building package
...
...
@@ -1030,12 +1046,14 @@ of "package":
Uninstalling package.
Installing package-2.
package-2: [ENV] TMP = /sample_buildout/parts/package-2/tmp
file:///
package-2: Extracting package to /sample_buildout/parts/package-2__compile__
configure --prefix=/sample_buildout/parts/package-2
building package
installing package
Installing package.
package: [ENV] TMP = /sample_buildout/parts/package/tmp
file:///
package: Extracting package to /sample_buildout/parts/package__compile__
configure --prefix=/sample_buildout/parts/package
building package
...
...
@@ -1067,6 +1085,7 @@ Look, "package" is reinstalled either:
Uninstalling package-2.
Installing package-2.
package-2: [ENV] TMP = /sample_buildout/parts/package-2/tmp
file:///
package-2: Extracting package to /sample_buildout/parts/package-2__compile__
configure
building package
...
...
Kazuhiko Shiozaki
@kazuhiko
mentioned in commit
10191ed3
·
Mar 08, 2017
mentioned in commit
10191ed3
mentioned in commit 10191ed390da997a95dedf68580a50c41cc66791
Toggle commit list
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