sentry-devenv 1.15.0__py3-none-any.whl → 1.16.0__py3-none-any.whl

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.
devenv/lib/colima.py CHANGED
@@ -57,14 +57,14 @@ exec {binroot}/colima-bin "$@"
57
57
 
58
58
 
59
59
  def install_global() -> None:
60
- version = "v0.7.5"
60
+ version = "v0.8.1"
61
61
  cfg = {
62
62
  "darwin_x86_64": f"https://github.com/abiosoft/colima/releases/download/{version}/colima-Darwin-x86_64",
63
- "darwin_x86_64_sha256": "53f78b4aaef5fb5dab65cae19fba4504047de1fdafa152fba90435d8a7569c2b",
63
+ "darwin_x86_64_sha256": "791330c62c60389f70e5e1c33a56c35502a9e36e544a418daea0273e539acbf4",
64
64
  "darwin_arm64": f"https://github.com/abiosoft/colima/releases/download/{version}/colima-Darwin-arm64",
65
- "darwin_arm64_sha256": "267696d6cb28eaf6daa3ea9622c626697b4baeb847b882d15b26c732e841913c",
66
- "linux_x86_64": "https://github.com/abiosoft/colima/releases/download/v0.7.5/colima-Linux-x86_64",
67
- "linux_x86_64_sha256": "a3d440033776b2fb0cdd6139a2dbebf6764aabf78a671d4aa13b45c26df21a8a",
65
+ "darwin_arm64_sha256": "c266fcb272b39221ef6152d2093bb02a1ebadc26042233ad359e1ae52d5d5922",
66
+ "linux_x86_64": f"https://github.com/abiosoft/colima/releases/download/{version}/colima-Linux-x86_64",
67
+ "linux_x86_64_sha256": "f2d6664a79ff3aa35f0718aac2ba9f6b531772e1464f3b096c1ac2aab404943e",
68
68
  }
69
69
 
70
70
  binroot = f"{root}/bin"
devenv/lib/limactl.py CHANGED
@@ -62,17 +62,23 @@ def _install(url: str, sha256: str, into: str) -> None:
62
62
 
63
63
 
64
64
  def install_global() -> None:
65
- version = "0.23.2"
65
+ version = "1.0.3"
66
66
  cfg = {
67
- # upstream github releases aren't built for macOS 14, so we use homebrew binaries
68
- "darwin_x86_64": "https://ghcr.io/v2/homebrew/core/lima/blobs/sha256:c2e69a572afa3a3cf895643ede988c87dc0622dae4aebc539d5564d820845841",
69
- "darwin_x86_64_sha256": "c2e69a572afa3a3cf895643ede988c87dc0622dae4aebc539d5564d820845841",
70
- "darwin_arm64": "https://ghcr.io/v2/homebrew/core/lima/blobs/sha256:be8e2b92961eca2f862f1a994dbef367e86d36705a705ebfa16d21c7f1366c35",
71
- "darwin_arm64_sha256": "be8e2b92961eca2f862f1a994dbef367e86d36705a705ebfa16d21c7f1366c35",
67
+ # upstream github releases aren't built for macOS 14, so for now
68
+ # we use homebrew binaries from https://formulae.brew.sh/api/formula/lima.json
69
+ # unfortunately there's no way to view previous versions of a formula
70
+ # so if we ever need to upgrade to a specific non-latest version we'll
71
+ # have to build it ourselves
72
+ # sonoma
73
+ "darwin_x86_64": "https://ghcr.io/v2/homebrew/core/lima/blobs/sha256:f675abee28d0f10f335f7a04dc6ad3de12434c83c2f0f32c913061204c137a94",
74
+ "darwin_x86_64_sha256": "f675abee28d0f10f335f7a04dc6ad3de12434c83c2f0f32c913061204c137a94",
75
+ # arm64_sonoma
76
+ "darwin_arm64": "https://ghcr.io/v2/homebrew/core/lima/blobs/sha256:8aeb0a3b7295f0c3e0c2a7a92a798a44397936e5bb732db825aee6da5e762d7a",
77
+ "darwin_arm64_sha256": "8aeb0a3b7295f0c3e0c2a7a92a798a44397936e5bb732db825aee6da5e762d7a",
72
78
  # on linux we use github releases since most people are probably not using
73
- # linuxbrew and the go binary in homebrew links to homebrew's ld.so
74
- "linux_x86_64": "https://github.com/lima-vm/lima/releases/download/v0.23.2/lima-0.23.2-Linux-x86_64.tar.gz",
75
- "linux_x86_64_sha256": "5d0034316096e3f3ceedcb2e1dcac7c7d380e26defb59a5894eaf1e3265b191e",
79
+ # linuxbrew and the go binary in homebrew links to linuxbrew's ld.so
80
+ "linux_x86_64": f"https://github.com/lima-vm/lima/releases/download/v{version}/lima-{version}-Linux-x86_64.tar.gz",
81
+ "linux_x86_64_sha256": "b109cac29569a4aacab01c588f922ea6c7e2ef06ce9260bbc4c382e475bc3b98",
76
82
  }
77
83
 
78
84
  binroot = f"{root}/bin"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: sentry_devenv
3
- Version: 1.15.0
3
+ Version: 1.16.0
4
4
  Summary: Utilities for setting up a Sentry development environment
5
5
  Author-email: Joshua Li <joshua.li@sentry.io>, Ian Woodard <ian.woodard@sentry.io>, Buck Evan <buck.evan@sentry.io>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -30,9 +30,12 @@ Otherwise, set the `SENTRY_EXTERNAL_CONTRIBUTOR` environment variable.
30
30
  Download [this](https://raw.githubusercontent.com/getsentry/devenv/main/install-devenv.sh) and run it:
31
31
 
32
32
  ```
33
+ curl https://raw.githubusercontent.com/getsentry/devenv/main/install-devenv.sh > install-devenv.sh
33
34
  bash install-devenv.sh
34
35
  ```
35
36
 
37
+ Make sure to call this file `install-devenv.sh` as the script calls itself when you run it.
38
+
36
39
  This "global" devenv is installed to `~/.local/share/sentry-devenv/bin/devenv`.
37
40
 
38
41
  To update this installation, run `devenv update`.
@@ -18,7 +18,7 @@ devenv/checks/test.py,sha256=AvxoA2W5qTO2ZpoXmjScLiJxXD3Y_limYp5yTjGSZ9U,701
18
18
  devenv/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  devenv/lib/archive.py,sha256=LlVETRsf3J53yY_8sjL4P8plLNEMKoS9G48kfoVoseA,4503
20
20
  devenv/lib/brew.py,sha256=_7recvYh-LnUJC0eKnYK7F8AzGRL5bi_Khv0f_mgrlM,1795
21
- devenv/lib/colima.py,sha256=_im7bcaJeZbbw1xw7zK7eLwJEvlhO5rOiXT7qkXsvLE,6836
21
+ devenv/lib/colima.py,sha256=fcCnH6H1uZnSPG28tt9dQZXgLZPvKTfiQynw6Ty137M,6840
22
22
  devenv/lib/config.py,sha256=5eXYwM44AJ3w2VfVbCDqchYOL1zAjazNcirtM6kxxGw,3344
23
23
  devenv/lib/context.py,sha256=4EDImK9pvTp3FqeNigevC9lbJsgdDO9D1t2_Y4NyPlc,207
24
24
  devenv/lib/direnv.py,sha256=HDRUaIR0PMAQYiiTaw3gEQuh6Tdb7BUJmV7dBZdPztM,1325
@@ -26,7 +26,7 @@ devenv/lib/docker.py,sha256=vfEThxKqQGrGPPUZvw5yo2IZ25XG_HoUYjDyBPHnIN4,3480
26
26
  devenv/lib/fs.py,sha256=IBahQ9fB-o9cK9HipK_L0gso2OVinIDTxFWoeMte9ww,2764
27
27
  devenv/lib/gcloud.py,sha256=G8rhKC89TqWcFzIVsFd64d4ouD6M6s-TaMX5ZxtKypw,3550
28
28
  devenv/lib/github.py,sha256=AMtcz6gTVKy7qvCP1zTUdHQlnSM32TVaji0aOXJ_F9A,3463
29
- devenv/lib/limactl.py,sha256=HHUsS4lpnXzf2xQd6syMs5PgSQqOylrz1gFsJ34HRfk,3943
29
+ devenv/lib/limactl.py,sha256=uGcRkXQACDvbwKWhgEqgoUSVZjX6vEUGOutJDEw3kNM,4254
30
30
  devenv/lib/modules.py,sha256=shoqgja0b-xzXr601Ryz0JOy3Vxbw53I3cRYezVt77g,859
31
31
  devenv/lib/node.py,sha256=0LobIBWRQMzBiTKgv-WCva0Q1ZK3sR2NXNmnSa0Pcow,4156
32
32
  devenv/lib/proc.py,sha256=eU7DHIk_66wgkHRmdtKbBKZTa6q4tl9QJbrlnQOQCls,2743
@@ -69,8 +69,8 @@ tests/lib/test_github.py,sha256=IMEG2cmRaK_PMJprFE_ZMqPnZ0StwWqgznhhT_zVk3U,4526
69
69
  tests/lib/test_proc.py,sha256=XH6OnxKPSSm3HvDjYHApputMKwgOE8lYqDuK2vK0Z0U,2626
70
70
  tests/lib/test_repository.py,sha256=gUi1lkY7bha5WwZ5xcnENOlFYboVV8TFW1lCESvS0VA,787
71
71
  tests/lib/test_venv.py,sha256=wscU7Enp8fK6o_2HgIT4WwDnvHbKwaKvJhNyJUrDNqk,3262
72
- sentry_devenv-1.15.0.dist-info/METADATA,sha256=kJJJ8eaE-2p2yKdrYPZVr0vr-mcDHZBn9Jrep6XQYBM,13429
73
- sentry_devenv-1.15.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
74
- sentry_devenv-1.15.0.dist-info/entry_points.txt,sha256=StsIuNugcoEU8jsPy6H9ECjzoDzOVKXl1vUaYTIGbzM,44
75
- sentry_devenv-1.15.0.dist-info/top_level.txt,sha256=dOQExvIA0fj_EQjCrMTS7CCHNH7WZFHxEU0M7LlNcKQ,16
76
- sentry_devenv-1.15.0.dist-info/RECORD,,
72
+ sentry_devenv-1.16.0.dist-info/METADATA,sha256=XtKwpwoQvjbWUcMYCrUrhEutRyZWwBV-JP6zJeBV6l4,13621
73
+ sentry_devenv-1.16.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
74
+ sentry_devenv-1.16.0.dist-info/entry_points.txt,sha256=StsIuNugcoEU8jsPy6H9ECjzoDzOVKXl1vUaYTIGbzM,44
75
+ sentry_devenv-1.16.0.dist-info/top_level.txt,sha256=dOQExvIA0fj_EQjCrMTS7CCHNH7WZFHxEU0M7LlNcKQ,16
76
+ sentry_devenv-1.16.0.dist-info/RECORD,,