envrcctl 0.2.0__tar.gz → 0.2.1__tar.gz
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.
- {envrcctl-0.2.0 → envrcctl-0.2.1}/PKG-INFO +31 -4
- {envrcctl-0.2.0 → envrcctl-0.2.1}/README.md +30 -3
- {envrcctl-0.2.0 → envrcctl-0.2.1}/pyproject.toml +1 -1
- {envrcctl-0.2.0 → envrcctl-0.2.1}/.gitignore +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/LICENSE +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/completions/envrcctl.bash +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/completions/envrcctl.fish +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/completions/envrcctl.zsh +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/scripts/build_macos_auth_helper.sh +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/scripts/generate_completions.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/scripts/macos/envrcctl-macos-auth.swift +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/__init__.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/audit.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/auth.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/cli.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/command_runner.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/envrc.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/envrcctl-macos-auth +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/errors.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/keychain.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/main.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/managed_block.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/secrets.py +0 -0
- {envrcctl-0.2.0 → envrcctl-0.2.1}/src/envrcctl/secretservice.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: envrcctl
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Manage .envrc with managed blocks and OS-backed secrets.
|
|
5
5
|
License: MIT License
|
|
6
6
|
|
|
@@ -63,7 +63,7 @@ It is designed for macOS first, with Linux support via SecretService.
|
|
|
63
63
|
|
|
64
64
|
## Installation
|
|
65
65
|
|
|
66
|
-
### macOS (Homebrew)
|
|
66
|
+
### macOS (Homebrew, Apple Silicon)
|
|
67
67
|
|
|
68
68
|
Tap and install:
|
|
69
69
|
|
|
@@ -72,6 +72,17 @@ brew tap rioriost/envrcctl
|
|
|
72
72
|
brew install envrcctl
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
For the next patch release, the Homebrew formula is intended to install a
|
|
76
|
+
prebuilt Apple Silicon macOS authentication helper from a GitHub release
|
|
77
|
+
`tar.gz` asset instead of compiling it at install time.
|
|
78
|
+
|
|
79
|
+
This Homebrew path is therefore intended for:
|
|
80
|
+
|
|
81
|
+
- Apple Silicon (`arm64`) Macs
|
|
82
|
+
- macOS installs that should not require a full Xcode.app build dependency
|
|
83
|
+
|
|
84
|
+
Intel Macs are not a target for this Homebrew distribution path.
|
|
85
|
+
|
|
75
86
|
After release, Homebrew will download the release from GitHub.
|
|
76
87
|
|
|
77
88
|
Install direnv with Homebrew:
|
|
@@ -101,12 +112,28 @@ uv sync
|
|
|
101
112
|
uv run python -m envrcctl.main --help
|
|
102
113
|
```
|
|
103
114
|
|
|
104
|
-
### Build the macOS auth helper (macOS only)
|
|
115
|
+
### Build the macOS auth helper manually (macOS only)
|
|
105
116
|
|
|
106
117
|
The macOS device owner authentication flow requires a native helper named
|
|
107
118
|
`envrcctl-macos-auth`.
|
|
108
119
|
|
|
109
|
-
|
|
120
|
+
On Apple Silicon macOS, the Homebrew installation path for the next patch
|
|
121
|
+
release is intended to install a prebuilt helper automatically from a GitHub
|
|
122
|
+
release `tar.gz` asset, so you should not need to compile it yourself in the
|
|
123
|
+
common case.
|
|
124
|
+
|
|
125
|
+
Manual helper installation is still useful when:
|
|
126
|
+
|
|
127
|
+
- you are running from source
|
|
128
|
+
- you are developing on this repository
|
|
129
|
+
- you want to place the helper in a custom location
|
|
130
|
+
- you are not using the Apple Silicon Homebrew distribution path
|
|
131
|
+
|
|
132
|
+
The Homebrew release asset is expected to be named
|
|
133
|
+
`envrcctl-macos-auth-arm64.tar.gz` and to contain an executable named
|
|
134
|
+
`envrcctl-macos-auth`.
|
|
135
|
+
|
|
136
|
+
If you are building the helper yourself, place the binary at either:
|
|
110
137
|
|
|
111
138
|
- `src/envrcctl/envrcctl-macos-auth`
|
|
112
139
|
- or a custom path set via `ENVRCCTL_MACOS_AUTH_HELPER`
|
|
@@ -29,7 +29,7 @@ It is designed for macOS first, with Linux support via SecretService.
|
|
|
29
29
|
|
|
30
30
|
## Installation
|
|
31
31
|
|
|
32
|
-
### macOS (Homebrew)
|
|
32
|
+
### macOS (Homebrew, Apple Silicon)
|
|
33
33
|
|
|
34
34
|
Tap and install:
|
|
35
35
|
|
|
@@ -38,6 +38,17 @@ brew tap rioriost/envrcctl
|
|
|
38
38
|
brew install envrcctl
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
For the next patch release, the Homebrew formula is intended to install a
|
|
42
|
+
prebuilt Apple Silicon macOS authentication helper from a GitHub release
|
|
43
|
+
`tar.gz` asset instead of compiling it at install time.
|
|
44
|
+
|
|
45
|
+
This Homebrew path is therefore intended for:
|
|
46
|
+
|
|
47
|
+
- Apple Silicon (`arm64`) Macs
|
|
48
|
+
- macOS installs that should not require a full Xcode.app build dependency
|
|
49
|
+
|
|
50
|
+
Intel Macs are not a target for this Homebrew distribution path.
|
|
51
|
+
|
|
41
52
|
After release, Homebrew will download the release from GitHub.
|
|
42
53
|
|
|
43
54
|
Install direnv with Homebrew:
|
|
@@ -67,12 +78,28 @@ uv sync
|
|
|
67
78
|
uv run python -m envrcctl.main --help
|
|
68
79
|
```
|
|
69
80
|
|
|
70
|
-
### Build the macOS auth helper (macOS only)
|
|
81
|
+
### Build the macOS auth helper manually (macOS only)
|
|
71
82
|
|
|
72
83
|
The macOS device owner authentication flow requires a native helper named
|
|
73
84
|
`envrcctl-macos-auth`.
|
|
74
85
|
|
|
75
|
-
|
|
86
|
+
On Apple Silicon macOS, the Homebrew installation path for the next patch
|
|
87
|
+
release is intended to install a prebuilt helper automatically from a GitHub
|
|
88
|
+
release `tar.gz` asset, so you should not need to compile it yourself in the
|
|
89
|
+
common case.
|
|
90
|
+
|
|
91
|
+
Manual helper installation is still useful when:
|
|
92
|
+
|
|
93
|
+
- you are running from source
|
|
94
|
+
- you are developing on this repository
|
|
95
|
+
- you want to place the helper in a custom location
|
|
96
|
+
- you are not using the Apple Silicon Homebrew distribution path
|
|
97
|
+
|
|
98
|
+
The Homebrew release asset is expected to be named
|
|
99
|
+
`envrcctl-macos-auth-arm64.tar.gz` and to contain an executable named
|
|
100
|
+
`envrcctl-macos-auth`.
|
|
101
|
+
|
|
102
|
+
If you are building the helper yourself, place the binary at either:
|
|
76
103
|
|
|
77
104
|
- `src/envrcctl/envrcctl-macos-auth`
|
|
78
105
|
- or a custom path set via `ENVRCCTL_MACOS_AUTH_HELPER`
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|