42
43
44
45
46
47
48
49
50
51
52
|
42
43
44
45
46
47
48
49
50
51
52
|
-
+
|
## What’s in this repo
```
.
├─ client/1.0/neutral/
│ ├─ VERSION # current toolset version (e.g., 1.0.10)
│ ├─ VERSION # current toolset version (e.g., 1.0.11)
│ ├─ common.tcl # shared Tcl helpers
│ ├─ pkgIndex.tcl # Tcl-side integration
│ ├─ pkgIndex.eagle # Eagle-side integration (Harpy-signed variants included)
│ ├─ pkgd.eagle # package downloader library (client side)
│ ├─ pkgr.eagle # package repository client library
|
63
64
65
66
67
68
69
70
71
72
73
|
63
64
65
66
67
68
69
70
71
72
73
|
-
+
|
│ └─ pkgr_an_d_install.sh # helper scripts to fetch/install the client
└─ doc/
└─ v1.html # v1 toolset documentation (reference)
```
> File names and layout above come from the initial import. See the commit tree for the authoritative list. The current version is **1.0.10**.
> File names and layout above come from the initial import. See the commit tree for the authoritative list. The current version is **1.0.11**.
---
## Security model at a glance
|
264
265
266
267
268
269
270
271
272
273
274
|
264
265
266
267
268
269
270
271
272
273
274
|
-
+
|
**Q. Can I keep some packages private?**
A. Yes. Repository access uses API keys; file serving can be on a private Fossil instance. Public/private mixes are supported.
**Q. What version of the pkgt client is this?**
A. See `client/1.0/neutral/VERSION` (currently **1.0.10**).
A. See `client/1.0/neutral/VERSION` (currently **1.0.11**).
---
## Contributing
|