pluck-cli 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.
- {pluck_cli-0.2.0/src/pluck_cli.egg-info → pluck_cli-0.2.1}/PKG-INFO +3 -2
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/README.md +2 -1
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/pyproject.toml +1 -1
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/src/gh_install.py +3 -2
- {pluck_cli-0.2.0 → pluck_cli-0.2.1/src/pluck_cli.egg-info}/PKG-INFO +3 -2
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/LICENSE +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/setup.cfg +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/src/pluck_cli.egg-info/SOURCES.txt +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/src/pluck_cli.egg-info/dependency_links.txt +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/src/pluck_cli.egg-info/entry_points.txt +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/src/pluck_cli.egg-info/top_level.txt +0 -0
- {pluck_cli-0.2.0 → pluck_cli-0.2.1}/tests/test_gh_install.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pluck-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Pluck any git repo from any forge — auto-detect, auto-install, done!
|
|
5
5
|
Author: pluck contributors
|
|
6
6
|
License: MIT
|
|
@@ -175,7 +175,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
175
175
|
| `stats` | Show statistics | `pluck stats` |
|
|
176
176
|
| `doctor` | Check tool availability | `pluck doctor` |
|
|
177
177
|
| `config [key] [val]` | View/set config | `pluck config install_dir ~/Apps` |
|
|
178
|
-
| `search <query> [--forge <name>]` | Search repos (github
|
|
178
|
+
| `search <query> [--forge <name>]` | Search repos (github\|gitlab\|codeberg\|bitbucket) | `pluck search python installer --forge gitlab` |
|
|
179
179
|
| `export <file>` | Export registry | `pluck export ~/backup.json` |
|
|
180
180
|
| `import <file>` | Import registry | `pluck import ~/backup.json` |
|
|
181
181
|
| `completion <shell>` | Generate shell completion | `pluck completion bash` |
|
|
@@ -197,6 +197,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
197
197
|
| `--no-color` | Disable colored output |
|
|
198
198
|
| `--timeout <secs>` | Timeout for git clone in seconds |
|
|
199
199
|
| `--retries <n>` | Number of retries for failed git clone |
|
|
200
|
+
| `--verbose` | Show detailed git clone output |
|
|
200
201
|
|
|
201
202
|
## 📥 Installation
|
|
202
203
|
|
|
@@ -150,7 +150,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
150
150
|
| `stats` | Show statistics | `pluck stats` |
|
|
151
151
|
| `doctor` | Check tool availability | `pluck doctor` |
|
|
152
152
|
| `config [key] [val]` | View/set config | `pluck config install_dir ~/Apps` |
|
|
153
|
-
| `search <query> [--forge <name>]` | Search repos (github
|
|
153
|
+
| `search <query> [--forge <name>]` | Search repos (github\|gitlab\|codeberg\|bitbucket) | `pluck search python installer --forge gitlab` |
|
|
154
154
|
| `export <file>` | Export registry | `pluck export ~/backup.json` |
|
|
155
155
|
| `import <file>` | Import registry | `pluck import ~/backup.json` |
|
|
156
156
|
| `completion <shell>` | Generate shell completion | `pluck completion bash` |
|
|
@@ -172,6 +172,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
172
172
|
| `--no-color` | Disable colored output |
|
|
173
173
|
| `--timeout <secs>` | Timeout for git clone in seconds |
|
|
174
174
|
| `--retries <n>` | Number of retries for failed git clone |
|
|
175
|
+
| `--verbose` | Show detailed git clone output |
|
|
175
176
|
|
|
176
177
|
## 📥 Installation
|
|
177
178
|
|
|
@@ -18,7 +18,7 @@ import urllib.request
|
|
|
18
18
|
from datetime import datetime
|
|
19
19
|
from pathlib import Path
|
|
20
20
|
|
|
21
|
-
__version__ = "0.2.
|
|
21
|
+
__version__ = "0.2.1"
|
|
22
22
|
|
|
23
23
|
# Configuration
|
|
24
24
|
DEFAULT_INSTALL_DIR_MACOS = Path.home() / "Applications"
|
|
@@ -88,7 +88,7 @@ def print_usage():
|
|
|
88
88
|
("stats", "Show installation statistics"),
|
|
89
89
|
("doctor", "Check tool availability"),
|
|
90
90
|
("config [key] [value]", "View/set config"),
|
|
91
|
-
("search <query> [--forge <name>]", "Search repos (github|gitlab|codeberg)"),
|
|
91
|
+
("search <query> [--forge <name>]", "Search repos (github|gitlab|codeberg|bitbucket)"),
|
|
92
92
|
("export <file>", "Export registry"),
|
|
93
93
|
("import <file>", "Import registry"),
|
|
94
94
|
("completion <shell>", "Generate shell completion"),
|
|
@@ -107,6 +107,7 @@ def print_usage():
|
|
|
107
107
|
("--no-color", "Disable colored output"),
|
|
108
108
|
("--timeout <secs>", "Timeout for git clone in seconds"),
|
|
109
109
|
("--retries <n>", "Number of retries for failed git clone"),
|
|
110
|
+
("--verbose", "Show detailed git clone output"),
|
|
110
111
|
]
|
|
111
112
|
|
|
112
113
|
print("Usage:")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pluck-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Pluck any git repo from any forge — auto-detect, auto-install, done!
|
|
5
5
|
Author: pluck contributors
|
|
6
6
|
License: MIT
|
|
@@ -175,7 +175,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
175
175
|
| `stats` | Show statistics | `pluck stats` |
|
|
176
176
|
| `doctor` | Check tool availability | `pluck doctor` |
|
|
177
177
|
| `config [key] [val]` | View/set config | `pluck config install_dir ~/Apps` |
|
|
178
|
-
| `search <query> [--forge <name>]` | Search repos (github
|
|
178
|
+
| `search <query> [--forge <name>]` | Search repos (github\|gitlab\|codeberg\|bitbucket) | `pluck search python installer --forge gitlab` |
|
|
179
179
|
| `export <file>` | Export registry | `pluck export ~/backup.json` |
|
|
180
180
|
| `import <file>` | Import registry | `pluck import ~/backup.json` |
|
|
181
181
|
| `completion <shell>` | Generate shell completion | `pluck completion bash` |
|
|
@@ -197,6 +197,7 @@ Any git hosting platform that follows the standard `host/owner/repo` URL pattern
|
|
|
197
197
|
| `--no-color` | Disable colored output |
|
|
198
198
|
| `--timeout <secs>` | Timeout for git clone in seconds |
|
|
199
199
|
| `--retries <n>` | Number of retries for failed git clone |
|
|
200
|
+
| `--verbose` | Show detailed git clone output |
|
|
200
201
|
|
|
201
202
|
## 📥 Installation
|
|
202
203
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|