Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
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
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos
Commits
afbf1b2a
Commit
afbf1b2a
authored
Feb 04, 2023
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into zope4py2
parents
9792ce5b
8472cbcc
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
603 additions
and
547 deletions
+603
-547
component/fish-shell/buildout.cfg
component/fish-shell/buildout.cfg
+9
-6
component/pcre2/buildout.cfg
component/pcre2/buildout.cfg
+16
-0
component/theia/buildout.cfg
component/theia/buildout.cfg
+6
-1
component/theia/buildout.hash.cfg
component/theia/buildout.hash.cfg
+1
-1
component/theia/download-plugins.cfg
component/theia/download-plugins.cfg
+66
-66
component/theia/yarn.lock
component/theia/yarn.lock
+477
-456
software/theia/buildout.hash.cfg
software/theia/buildout.hash.cfg
+1
-1
software/theia/instance-theia.cfg.jinja.in
software/theia/instance-theia.cfg.jinja.in
+15
-6
stack/slapos.cfg
stack/slapos.cfg
+12
-10
No files found.
component/fish-shell/buildout.cfg
View file @
afbf1b2a
...
@@ -3,13 +3,14 @@
...
@@ -3,13 +3,14 @@
[buildout]
[buildout]
parts = fish-shell
parts = fish-shell
extends =
extends =
../cmake/buildout.cfg
../zlib/buildout.cfg
../bzip2/buildout.cfg
../bzip2/buildout.cfg
../cmake/buildout.cfg
../gettext/buildout.cfg
../ncurses/buildout.cfg
../ncurses/buildout.cfg
../pcre2/buildout.cfg
../readline/buildout.cfg
../readline/buildout.cfg
../gettext/buildout.cfg
../xz-utils/buildout.cfg
../xz-utils/buildout.cfg
../zlib/buildout.cfg
[fish-shell]
[fish-shell]
recipe = slapos.recipe.cmmi
recipe = slapos.recipe.cmmi
...
@@ -22,13 +23,15 @@ configure-options =
...
@@ -22,13 +23,15 @@ configure-options =
-DCMAKE_C_FLAGS="${:CMAKE_CFLAGS}"
-DCMAKE_C_FLAGS="${:CMAKE_CFLAGS}"
-DCMAKE_CXX_FLAGS="${:CMAKE_CFLAGS}"
-DCMAKE_CXX_FLAGS="${:CMAKE_CFLAGS}"
-DCMAKE_INSTALL_RPATH=${:CMAKE_LIBRARY_PATH}
-DCMAKE_INSTALL_RPATH=${:CMAKE_LIBRARY_PATH}
-DFISH_USE_SYSTEM_PCRE2=ON
-DSYS_PCRE2_INCLUDE_DIR=${pcre2:location}/include
environment =
environment =
CMAKE_PROGRAM_PATH=${cmake:location}/bin
CMAKE_PROGRAM_PATH=${cmake:location}/bin
CMAKE_INCLUDE_PATH=${bzip2:location}/include:${zlib:location}/include:${ncurses:location}/include:${gettext:location}/include:${readline:location}/include
CMAKE_INCLUDE_PATH=${bzip2:location}/include:${zlib:location}/include:${ncurses:location}/include:${gettext:location}/include:${readline:location}/include
CMAKE_LIBRARY_PATH=${:CMAKE_LIBRARY_PATH}
CMAKE_LIBRARY_PATH=${:CMAKE_LIBRARY_PATH}
LDFLAGS=-L${ncurses:location}/lib -Wl,-rpath=${ncurses:location}/lib -L${gettext:location}/lib -Wl,-rpath=${gettext:location}/lib
LDFLAGS=-L${ncurses:location}/lib -Wl,-rpath=${ncurses:location}/lib -L${gettext:location}/lib -Wl,-rpath=${gettext:location}/lib
-L${pcre2:location}/lib -Wl,-rpath=${pcre2:location}/lib
PATH=${xz-utils:location}/bin/:%(PATH)s
PATH=${xz-utils:location}/bin/:%(PATH)s
CMAKE_CFLAGS = -I${bzip2:location}/include -I${zlib:location}/include -I${ncurses:location}/include -I${gettext:location}/include -I${readline:location}/include
CMAKE_CFLAGS = -I${bzip2:location}/include -I${zlib:location}/include -I${ncurses:location}/include -I${gettext:location}/include -I${readline:location}/include
-I${pcre2:location}/include
CMAKE_LIBRARY_PATH = ${bzip2:location}/lib:${zlib:location}/lib:${ncurses:location}/lib:${gettext:location}/lib:${readline:location}/lib
CMAKE_LIBRARY_PATH = ${bzip2:location}/lib:${zlib:location}/lib:${ncurses:location}/lib:${gettext:location}/lib:${readline:location}/lib
:${pcre2:location}/lib
location = @@LOCATION@@
location = @@LOCATION@@
component/pcre2/buildout.cfg
0 → 100644
View file @
afbf1b2a
[buildout]
extends =
../cmake/buildout.cfg
parts =
pcre2
[pcre2]
recipe = slapos.recipe.cmmi
shared = true
url = https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.42/pcre2-10.42.tar.bz2
md5sum = a8e9ab2935d428a4807461f183034abe
configure-command = ${cmake:location}/bin/cmake
configure-options =
-DCMAKE_INSTALL_PREFIX=@@LOCATION@@
-DPCRE2_BUILD_PCRE2_16=ON
-DPCRE2_BUILD_PCRE2_32=ON
component/theia/buildout.cfg
View file @
afbf1b2a
...
@@ -70,6 +70,10 @@ post-install =
...
@@ -70,6 +70,10 @@ post-install =
# and anyway not used once the software is installed
# and anyway not used once the software is installed
rm -f %(location)s/node_modules/@msgpackr-extract/*/*.node
rm -f %(location)s/node_modules/@msgpackr-extract/*/*.node
rm -rf $HOME/.cache/yarn/
rm -rf $HOME/.cache/yarn/
# remove "which" command added in $PATH that does not correctly
# handle executables thanks to a secondary group of the user.
# https://www.npmjs.com/package/which https://www.npmjs.com/package/isexe
rm -f %(location)s/node_modules/.bin/which
[theia-wrapper]
[theia-wrapper]
recipe = slapos.recipe.template
recipe = slapos.recipe.template
...
@@ -77,7 +81,7 @@ output = ${buildout:bin-directory}/${:_buildout_section_name_}
...
@@ -77,7 +81,7 @@ output = ${buildout:bin-directory}/${:_buildout_section_name_}
inline =
inline =
#!/bin/sh
#!/bin/sh
cd ${theia:location}
cd ${theia:location}
exec ${
yarn:location}/bin/yarn
theia start "$@"
exec ${
nodejs:location}/bin/node ${theia:location}/node_modules/.bin/
theia start "$@"
[theia-open]
[theia-open]
recipe = slapos.recipe.template
recipe = slapos.recipe.template
...
@@ -144,6 +148,7 @@ content =
...
@@ -144,6 +148,7 @@ content =
"editor.tabSize": 2,
"editor.tabSize": 2,
"plantuml.server": "https://plantuml.host.vifib.net/svg/",
"plantuml.server": "https://plantuml.host.vifib.net/svg/",
"plantuml.render": "PlantUMLServer",
"plantuml.render": "PlantUMLServer",
"python.pythonPath": "${python:executable}",
"gitlens.remotes": [{ "domain": "lab.nexedi.com", "type": "GitLab" }]
"gitlens.remotes": [{ "domain": "lab.nexedi.com", "type": "GitLab" }]
},
},
"warnOnPotentiallyInsecureHostPattern": false
"warnOnPotentiallyInsecureHostPattern": false
...
...
component/theia/buildout.hash.cfg
View file @
afbf1b2a
...
@@ -19,7 +19,7 @@ md5sum = 6343592161a349bb40e0de16ce67aa51
...
@@ -19,7 +19,7 @@ md5sum = 6343592161a349bb40e0de16ce67aa51
[yarn.lock]
[yarn.lock]
_update_hash_filename_ = yarn.lock
_update_hash_filename_ = yarn.lock
md5sum =
ff5b37cac09580b885e6d269f62cdbad
md5sum =
c28b0fa56592066e7031de696a5d02b3
[ms-python-disable-jedi-buildout.patch]
[ms-python-disable-jedi-buildout.patch]
_update_hash_filename_ = ms-python-disable-jedi-buildout.patch
_update_hash_filename_ = ms-python-disable-jedi-buildout.patch
...
...
component/theia/download-plugins.cfg
View file @
afbf1b2a
This diff is collapsed.
Click to expand it.
component/theia/yarn.lock
View file @
afbf1b2a
This diff is collapsed.
Click to expand it.
software/theia/buildout.hash.cfg
View file @
afbf1b2a
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
[instance-theia]
[instance-theia]
_update_hash_filename_ = instance-theia.cfg.jinja.in
_update_hash_filename_ = instance-theia.cfg.jinja.in
md5sum =
8a6efc1054b60f3cbd114a9f6097bae5
md5sum =
3648844f372a96974582e7281c9987dd
[instance]
[instance]
_update_hash_filename_ = instance.cfg.in
_update_hash_filename_ = instance.cfg.in
...
...
software/theia/instance-theia.cfg.jinja.in
View file @
afbf1b2a
...
@@ -11,6 +11,7 @@ theia-environment-parts =
...
@@ -11,6 +11,7 @@ theia-environment-parts =
slapos-repository
slapos-repository
runner-link
runner-link
settings.json
settings.json
python-enable-user-pip
theia-parts =
theia-parts =
frontend-instance
frontend-instance
...
@@ -407,7 +408,7 @@ output = $${directory:bin}/$${:_buildout_section_name_}
...
@@ -407,7 +408,7 @@ output = $${directory:bin}/$${:_buildout_section_name_}
inline =
inline =
#!/bin/sh
#!/bin/sh
export HOME=$${directory:home}
export HOME=$${directory:home}
export PATH=${cli-utilities:PATH}:$HOME/.cargo/bin:$PATH
export PATH=${cli-utilities:PATH}:$HOME/.cargo/bin:$
HOME/.local/bin:$
PATH
export IPV6_SLAPRUNNER={{ ipv6_random }}
export IPV6_SLAPRUNNER={{ ipv6_random }}
# Theia Backend
# Theia Backend
...
@@ -461,8 +462,9 @@ inline =
...
@@ -461,8 +462,9 @@ inline =
{% raw -%}
{% raw -%}
#!{{ bash }}
#!{{ bash }}
SHELL=$BASH
SHELL=$BASH
# when running interactively, activate slapos configuration and reset GIT_EXEC_PATH to workaround https://github.com/eclipse-theia/theia/issues/7555
# when running interactively, or as a login shell, activate slapos configuration
if [ $# = 0 ]; then
# and reset GIT_EXEC_PATH to workaround https://github.com/eclipse-theia/theia/issues/7555
if [ $# = 0 ] || [ $# = 1 -a "$1" = -l ]; then
. {{ activate }}
. {{ activate }}
unset GIT_EXEC_PATH
unset GIT_EXEC_PATH
set -- --rcfile {{ bashrc }}
set -- --rcfile {{ bashrc }}
...
@@ -480,6 +482,9 @@ output = $${directory:etc}/$${:_buildout_section_name_}
...
@@ -480,6 +482,9 @@ output = $${directory:etc}/$${:_buildout_section_name_}
inline =
inline =
# enable bash completion
# enable bash completion
. ${bash-completion:location}/etc/profile.d/bash_completion.sh
. ${bash-completion:location}/etc/profile.d/bash_completion.sh
# enable color for ls
eval "$(${coreutils:location}/bin/dircolors -b)"
alias ls='ls --color=auto'
# source user's .bashrc
# source user's .bashrc
[ -f ~/.bashrc ] && . ~/.bashrc
[ -f ~/.bashrc ] && . ~/.bashrc
depends =
depends =
...
@@ -492,6 +497,12 @@ command =
...
@@ -492,6 +497,12 @@ command =
${buildout:bin-directory}/slapos complete > $${directory:bash-completions}/slapos
${buildout:bin-directory}/slapos complete > $${directory:bash-completions}/slapos
${buildout:bin-directory}/slapos complete --shell fish > $${directory:fish-completions}/slapos.fish
${buildout:bin-directory}/slapos complete --shell fish > $${directory:fish-completions}/slapos.fish
[python-enable-user-pip]
# enable pip user installation for python extension
recipe = plone.recipe.command
stop-on-error = true
command =
${python:executable} -m ensurepip --user
# Embedded Instance
# Embedded Instance
# -----------------
# -----------------
...
@@ -590,8 +601,6 @@ output = $${directory:bin}/$${:_buildout_section_name_}
...
@@ -590,8 +601,6 @@ output = $${directory:bin}/$${:_buildout_section_name_}
inline =
inline =
#!/bin/sh
#!/bin/sh
. $${common-environment:output}
. $${common-environment:output}
#XXX find out where the extra nodejs in theia's PATH comes from
export PATH=${nodejs:location}/bin/:$PATH
. $${slapos-standalone-activate:output}
. $${slapos-standalone-activate:output}
exec $${slapos-standalone-script:output}
exec $${slapos-standalone-script:output}
...
@@ -709,7 +718,7 @@ inline =
...
@@ -709,7 +718,7 @@ inline =
},
},
"git.terminalAuthentication": false,
"git.terminalAuthentication": false,
"security.workspace.trust.startupPrompt": "once",
"security.workspace.trust.startupPrompt": "once",
"zc-buildout.python.executable": "$
{python-for-buildout-languageserver:executable
}"
"zc-buildout.python.executable": "$
${buildout:directory}/software_release/bin/${python-for-buildout-languageserver:interpreter
}"
}
}
[runner-link]
[runner-link]
...
...
stack/slapos.cfg
View file @
afbf1b2a
...
@@ -136,8 +136,8 @@ zc.buildout = 2.7.1+slapos019
...
@@ -136,8 +136,8 @@ zc.buildout = 2.7.1+slapos019
# Use SlapOS patched zc.recipe.egg (zc.recipe.egg 2.x is for Buildout 2)
# Use SlapOS patched zc.recipe.egg (zc.recipe.egg 2.x is for Buildout 2)
zc.recipe.egg = 2.0.3+slapos003
zc.recipe.egg = 2.0.3+slapos003
aiohttp = 3.8.
1
:whl
aiohttp = 3.8.
3
:whl
aiosignal = 1.
2.0
aiosignal = 1.
3.1:whl
apache-libcloud = 2.4.0
apache-libcloud = 2.4.0
argon2-cffi = 20.1.0
argon2-cffi = 20.1.0
asn1crypto = 1.3.0
asn1crypto = 1.3.0
...
@@ -146,7 +146,7 @@ async-generator = 1.10
...
@@ -146,7 +146,7 @@ async-generator = 1.10
async-timeout = 4.0.2
async-timeout = 4.0.2
atomicwrites = 1.4.0
atomicwrites = 1.4.0
atomize = 0.2.0
atomize = 0.2.0
attrs = 22.
1
.0
attrs = 22.
2
.0
backcall = 0.2.0
backcall = 0.2.0
backports-abc = 0.5
backports-abc = 0.5
backports.functools-lru-cache = 1.6.1:whl
backports.functools-lru-cache = 1.6.1:whl
...
@@ -156,6 +156,7 @@ bcrypt = 3.1.4
...
@@ -156,6 +156,7 @@ bcrypt = 3.1.4
bleach = 5.0.1
bleach = 5.0.1
CacheControl = 0.12.6:whl
CacheControl = 0.12.6:whl
cachetools = 5.2.0
cachetools = 5.2.0
cattrs = 22.2.0
certifi = 2022.12.7
certifi = 2022.12.7
cffi = 1.15.0
cffi = 1.15.0
chardet = 3.0.4
chardet = 3.0.4
...
@@ -182,7 +183,7 @@ et-xmlfile = 1.0.1
...
@@ -182,7 +183,7 @@ et-xmlfile = 1.0.1
exceptiongroup = 1.0.0:whl
exceptiongroup = 1.0.0:whl
feedparser = 6.0.10
feedparser = 6.0.10
Flask = 1.1.2
Flask = 1.1.2
frozenlist = 1.3.
0
frozenlist = 1.3.
3:whl
funcsigs = 1.0.2
funcsigs = 1.0.2
functools32 = 3.2.3.post2
functools32 = 3.2.3.post2
gevent = 20.9.0
gevent = 20.9.0
...
@@ -192,7 +193,7 @@ GitPython = 3.1.30
...
@@ -192,7 +193,7 @@ GitPython = 3.1.30
greenlet = 0.4.17
greenlet = 0.4.17
h11 = 0.14.0
h11 = 0.14.0
h5py = 2.7.1
h5py = 2.7.1
idna = 3.
3
idna = 3.
4:whl
igmp = 1.0.4
igmp = 1.0.4
Importing = 1.10
Importing = 1.10
importlib-metadata = 1.7.0:whl
importlib-metadata = 1.7.0:whl
...
@@ -217,6 +218,7 @@ jupyterlab-launcher = 0.3.1
...
@@ -217,6 +218,7 @@ jupyterlab-launcher = 0.3.1
jupyterlab-pygments = 0.1.2
jupyterlab-pygments = 0.1.2
lock-file = 2.0
lock-file = 2.0
lockfile = 0.12.2:whl
lockfile = 0.12.2:whl
lsprotocol = 2022.0.0a9:whl
lxml = 4.9.1
lxml = 4.9.1
MarkupSafe = 2.0.1
MarkupSafe = 2.0.1
matplotlib = 2.1.2
matplotlib = 2.1.2
...
@@ -226,7 +228,7 @@ mock = 3.0.5
...
@@ -226,7 +228,7 @@ mock = 3.0.5
more-itertools = 5.0.0
more-itertools = 5.0.0
mpmath = 1.0.0
mpmath = 1.0.0
msgpack = 0.6.2
msgpack = 0.6.2
multidict = 6.0.
2
multidict = 6.0.
4
nbclient = 0.5.1
nbclient = 0.5.1
nbconvert = 6.0.7
nbconvert = 6.0.7
nbformat = 5.0.8
nbformat = 5.0.8
...
@@ -236,7 +238,7 @@ netifaces = 0.10.7
...
@@ -236,7 +238,7 @@ netifaces = 0.10.7
notebook = 6.1.5
notebook = 6.1.5
openpyxl = 2.5.2
openpyxl = 2.5.2
outcome = 1.2.0
outcome = 1.2.0
packaging = 2
1.3
packaging = 2
2.0:whl
pandocfilters = 1.4.3
pandocfilters = 1.4.3
paramiko = 2.11.0
paramiko = 2.11.0
parso = 0.7.1
parso = 0.7.1
...
@@ -263,7 +265,7 @@ pyasn1 = 0.4.5
...
@@ -263,7 +265,7 @@ pyasn1 = 0.4.5
pycparser = 2.20
pycparser = 2.20
pycurl = 7.43.0
pycurl = 7.43.0
pydantic = 1.9.1
pydantic = 1.9.1
pygls =
0.12
:whl
pygls =
1.0.0
:whl
Pygments = 2.9.0
Pygments = 2.9.0
PyNaCl = 1.3.0
PyNaCl = 1.3.0
pyOpenSSL = 19.1.0
pyOpenSSL = 19.1.0
...
@@ -329,8 +331,8 @@ widgetsnbextension = 2.0.0
...
@@ -329,8 +331,8 @@ widgetsnbextension = 2.0.0
wsproto = 1.2.0
wsproto = 1.2.0
xlrd = 1.1.0
xlrd = 1.1.0
xml-marshaller = 1.0.2
xml-marshaller = 1.0.2
yarl = 1.
7
.2
yarl = 1.
8
.2
zc.buildout.languageserver = 0.
8.3
zc.buildout.languageserver = 0.
9.0
zc.lockfile = 1.4
zc.lockfile = 1.4
ZConfig = 3.6.1
ZConfig = 3.6.1
zdaemon = 4.2.0
zdaemon = 4.2.0
...
...
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