oh-my-devpod 0.14.3 → 0.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-devpod",
3
- "version": "0.14.3",
3
+ "version": "0.14.5",
4
4
  "description": "Ubuntu productivity tool manager with the omd terminal interface",
5
5
  "license": "MIT",
6
6
  "author": "zhangdw156",
package/runtime/VERSION CHANGED
@@ -1 +1 @@
1
- 0.14.3
1
+ 0.14.5
package/runtime/bin/omd CHANGED
Binary file
@@ -170,6 +170,16 @@ requires = []
170
170
  install_requires = ["linuxbrew"]
171
171
  uninstall = true
172
172
 
173
+ [[component]]
174
+ id = "witr"
175
+ name = "witr"
176
+ description = "Trace processes, ports, containers, and files to their launch chain"
177
+ category = "terminal"
178
+ module = "modules/tools/witr.sh"
179
+ requires = []
180
+ install_requires = ["linuxbrew"]
181
+ uninstall = true
182
+
173
183
  [[component]]
174
184
  id = "neovim"
175
185
  name = "Neovim"
@@ -135,6 +135,7 @@ omd_validate_bundle() {
135
135
  for required in \
136
136
  bin/omd \
137
137
  components.toml \
138
+ install/bootstrap.sh \
138
139
  install/update.sh \
139
140
  modules \
140
141
  build \
@@ -32,6 +32,40 @@ omd_update_archive_version() {
32
32
  printf '%s\n' "${version}"
33
33
  }
34
34
 
35
+ omd_update_install_archive() {
36
+ local archive="$1" prefix="$2" bin_dir="$3" cache_dir="$4"
37
+ local staging_dir candidate_root candidate_bootstrap installed_version
38
+ staging_dir="$(mktemp -d "${cache_dir}/.candidate-bootstrap.XXXXXX")" || return 1
39
+ if ! tar -xzf "${archive}" -C "${staging_dir}"; then
40
+ rm -rf "${staging_dir}"
41
+ return 1
42
+ fi
43
+ candidate_root="${staging_dir}/oh-my-devpod"
44
+ if ! omd_validate_bundle "${candidate_root}"; then
45
+ rm -rf "${staging_dir}"
46
+ return 1
47
+ fi
48
+ candidate_bootstrap="${candidate_root}/install/bootstrap.sh"
49
+ if ! installed_version="$(
50
+ OHMYDEVPOD_BOOTSTRAP_LIB_ONLY=1 \
51
+ bash -c '
52
+ set -euo pipefail
53
+ source "$1"
54
+ omd_install_archive "$2" "$3" "$4"
55
+ ' _ \
56
+ "${candidate_bootstrap}" \
57
+ "${archive}" \
58
+ "${prefix}" \
59
+ "${bin_dir}"
60
+ )"; then
61
+ rm -rf "${staging_dir}"
62
+ return 1
63
+ fi
64
+ rm -rf "${staging_dir}"
65
+ [[ -n "${installed_version}" ]] || return 1
66
+ printf '%s\n' "${installed_version}"
67
+ }
68
+
35
69
  omd_update_snapshot_source_config() {
36
70
  local config_dir="$1" snapshot_dir="$2" name
37
71
  mkdir -p "${snapshot_dir}" || return 1
@@ -374,7 +408,13 @@ omd_update_main() {
374
408
  fi
375
409
 
376
410
  if [[ -n "${archive}" ]]; then
377
- if ! installed_version="$(omd_install_archive "${archive}" "${prefix}" "${bin_dir}")"; then
411
+ if ! installed_version="$(
412
+ omd_update_install_archive \
413
+ "${archive}" \
414
+ "${prefix}" \
415
+ "${bin_dir}" \
416
+ "${cache_dir}"
417
+ )"; then
378
418
  if [[ "${manage_source}" == "1" ]]; then
379
419
  omd_update_abort_with_rollback "Self-update installation failed" "${config_dir}" "${snapshot_dir}"
380
420
  fi
@@ -0,0 +1,26 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+
4
+ source "$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/lib/common.sh"
5
+
6
+ component="witr"
7
+ formula="witr"
8
+ command_name="witr"
9
+
10
+ status() { omd_module_formula_status "${formula}" "${command_name}"; }
11
+ managed() { omd_module_formula_managed "${component}" "${formula}"; }
12
+ install_or_update() {
13
+ local action="$1"
14
+ shift
15
+ omd_module_formula_install_or_update "${component}" "${formula}" "${command_name}" "${action}" "$@"
16
+ }
17
+ uninstall() { omd_module_formula_uninstall "${component}" "${formula}" "$@"; }
18
+
19
+ case "${1:-}" in
20
+ status) status ;;
21
+ managed) managed ;;
22
+ install) shift; install_or_update install "$@" ;;
23
+ update) shift; install_or_update update "$@" ;;
24
+ uninstall) shift; uninstall "$@" ;;
25
+ *) omd_module_unknown_action "${1:-}" ;;
26
+ esac