Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3942474
dev.sls
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
5 KB
Referenced Files
None
Subscribers
None
dev.sls
View Options
# -------------------------------------------------------------
# Salt — Provision dev software
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2017-10-20
# License: Trivial work, not eligible to copyright
# -------------------------------------------------------------
{%
from
"map.jinja"
import
dirs
,
packages
,
packages_prefixes
with context
%}
# -------------------------------------------------------------
# C/C++
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_c
:
pkg.installed
:
-
pkgs
:
-
{{
packages.boost
}}
-
cmocka
-
{{
packages.librabbitmq
}}
# -------------------------------------------------------------
# Java
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_java
:
pkg.installed
:
-
pkgs
:
-
openjdk17
-
apache-ant
-
maven
devserver_software_dev_java_to_prune
:
pkg.removed
:
-
pkgs
:
-
openjdk8
# -------------------------------------------------------------
# .Net languages
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_dotnet
:
pkg.installed
:
-
pkgs
:
-
mono
# -------------------------------------------------------------
# Node
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_node
:
pkg.installed
:
-
pkgs
:
-
{{
packages.node
}}
-
npm
devserver_node_packages
:
npm.installed
:
-
pkgs
:
-
bower
-
browserify
-
csslint
-
eslint
-
gulp
-
grunt
-
jscs
-
jshint
-
jsonlint
-
react-tools
-
require
:
-
pkg
:
devserver_software_dev_node
# -------------------------------------------------------------
# PHP
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_php
:
pkg.installed
:
-
pkgs
:
-
{{
packages.phpunit
}}
-
{{
packages_prefixes.pecl
}}
ast
/opt/phpcpd.phar
:
file.managed
:
-
source
:
https://phar.phpunit.de/phpcpd-6.0.3.phar
-
source_hash
:
2cbaea7cfda1bb4299d863eb075e977c3f49055dd16d88529fae5150d48a84cb
-
mode
:
755
/opt/phpdox.phar
:
file.managed
:
-
source
:
https://github.com/theseer/phpdox/releases/download/0.12.0/phpdox-0.12.0.phar
-
source_hash
:
d60ddb2666e103f417510f59d60654efe616ada344f5366e2d0997aa3da921bf
-
mode
:
755
/opt/phploc.phar
:
file.managed
:
-
source
:
https://phar.phpunit.de/phploc-7.0.2.phar
-
source_hash
:
3d59778ec86faf25fd00e3a329b2f9ad4a3c751ca91601ea7dab70f887b0bf46
-
mode
:
755
{{
dirs.bin
}}
/run-php-script
:
file.managed
:
-
source
:
salt://roles/devserver/userland-software/files/run-php-script.sh
-
mode
:
755
{%
for
command
in
[
"phan"
,
"phpcpd"
,
"phpdox"
,
"phploc"
,
"phpmd"
,
"phpstan"
,
"psalm"
,
"rector"
]
%}
{{
dirs.bin
}}
/
{{
command
}}
:
file.managed
:
-
source
:
salt://roles/devserver/userland-software/files/run-php-script-alias.sh.jinja
-
mode
:
755
-
template
:
jinja
-
context
:
command
:
{{
command
}}
{%
endfor
%}
# -------------------------------------------------------------
# Python
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_python
:
pkg.installed
:
-
pkgs
:
# Modern Python 3 packages
-
{{
packages_prefixes.python3
}}
beautifulsoup
# Legacy packages
-
{{
packages_prefixes.python2
}}
nltk
-
{{
packages_prefixes.python2
}}
numpy
-
{{
packages_prefixes.python2
}}
virtualenv
# -------------------------------------------------------------
# Ruby
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_ruby
:
pkg.installed
:
-
pkgs
:
-
{{
packages_prefixes.rubygem
}}
rubocop
# -------------------------------------------------------------
# Rust
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_rust
:
pkg.installed
:
-
pkgs
:
-
rust
{{
dirs.bin
}}
/rustup-init
:
file.managed
:
-
source
:
salt://roles/devserver/userland-software/files/rustup-init.sh
-
mode
:
755
# -------------------------------------------------------------
# Shell
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_shell
:
pkg.installed
:
-
pkgs
:
-
hs-ShellCheck
# -------------------------------------------------------------
# TCL
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_tcl
:
pkg.installed
:
-
pkgs
:
-
rlwrap
-
tcllib
-
tclsoap
-
{{
packages.tcltls
}}
-
{{
packages.tdom
}}
# -------------------------------------------------------------
# Web development
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_web
:
pkg.installed
:
-
pkgs
:
-
memcached
# -------------------------------------------------------------
# Editors and IDE
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_vim
:
pkg.installed
:
-
pkgs
:
# Vim itself is already declared in core role.
# FreeBSD also offers nvi in base system.
# Neovim
-
neovim
-
{{
packages_prefixes.python3
}}
pynvim
# -------------------------------------------------------------
# Tools like code review utilities
#
# Arcanist is installed in the Phabricator states
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_misctools
:
pkg.installed
:
-
pkgs
:
-
git-review
# -------------------------------------------------------------
# MediaWiki development
#
# Include tools for some extensions like ProofreadPage
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
devserver_software_dev_mediawiki
:
pkg.installed
:
-
pkgs
:
-
netpbm
-
{{
packages
[
'djvulibre'
]
}}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Dec 26, 16:28 (8 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2315214
Default Alt Text
dev.sls (5 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment