baska 1.0.0__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.
- baska-1.0.0/PKG-INFO +85 -0
- baska-1.0.0/README.md +63 -0
- baska-1.0.0/baska.egg-info/PKG-INFO +85 -0
- baska-1.0.0/baska.egg-info/SOURCES.txt +8 -0
- baska-1.0.0/baska.egg-info/dependency_links.txt +1 -0
- baska-1.0.0/baska.egg-info/requires.txt +4 -0
- baska-1.0.0/baska.egg-info/top_level.txt +1 -0
- baska-1.0.0/bin/baska +1312 -0
- baska-1.0.0/pyproject.toml +33 -0
- baska-1.0.0/setup.cfg +4 -0
baska-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: baska
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: BASKA Hub interactive package and repository manager
|
|
5
|
+
Project-URL: Homepage, https://github.com/baska-pro/baska-hub
|
|
6
|
+
Project-URL: Repository, https://github.com/baska-pro/baska-hub
|
|
7
|
+
Project-URL: Issues, https://github.com/baska-pro/baska-hub/issues
|
|
8
|
+
Project-URL: Catalog, https://baska-pro.github.io/baska-hub/
|
|
9
|
+
Keywords: cli,package-manager,github,termux,linux,windows,repository-manager
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
16
|
+
Classifier: Topic :: System :: Software Distribution
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: build>=1.2; extra == "dev"
|
|
21
|
+
Requires-Dist: twine>=6; extra == "dev"
|
|
22
|
+
|
|
23
|
+
# BASKA Hub
|
|
24
|
+
|
|
25
|
+
BASKA Hub adalah package/repository manager pribadi untuk Linux, Termux, dan terminal Windows.
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
### Rekomendasi: pipx
|
|
30
|
+
```bash
|
|
31
|
+
pipx install baska
|
|
32
|
+
baska
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### pip
|
|
36
|
+
```bash
|
|
37
|
+
python -m pip install baska
|
|
38
|
+
baska
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Langsung dari GitHub (tanpa menunggu rilis PyPI)
|
|
42
|
+
```bash
|
|
43
|
+
python -m pip install "git+https://github.com/baska-pro/baska-hub.git"
|
|
44
|
+
baska
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Bootstrap shell lama
|
|
48
|
+
```bash
|
|
49
|
+
curl -fsSL https://raw.githubusercontent.com/baska-pro/baska-hub/main/install.sh | sh
|
|
50
|
+
baska
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
`baska` tanpa argumen membuka dashboard terminal interaktif.
|
|
54
|
+
|
|
55
|
+
## Command
|
|
56
|
+
```bash
|
|
57
|
+
baska list
|
|
58
|
+
baska search <kata>
|
|
59
|
+
baska info <id|slug>
|
|
60
|
+
baska install <id|slug>[@tag]
|
|
61
|
+
baska status
|
|
62
|
+
baska outdated
|
|
63
|
+
baska update <id|slug>
|
|
64
|
+
baska update-all
|
|
65
|
+
baska remove <id|slug>
|
|
66
|
+
baska repair <id|slug>
|
|
67
|
+
baska rollback <id|slug>
|
|
68
|
+
baska versions <id|slug>
|
|
69
|
+
baska profile list
|
|
70
|
+
baska profile setup server
|
|
71
|
+
baska favorite add <id|slug>
|
|
72
|
+
baska notifications
|
|
73
|
+
baska init
|
|
74
|
+
baska refresh
|
|
75
|
+
baska doctor
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## ID policy
|
|
79
|
+
Public repo memakai 5 digit dengan anchor 50000 untuk repo terbaru saat migrasi. Repo lama turun 49999, 49998, dst. Repo publik baru berikutnya mendapat 50001, 50002, dst. Repo private memakai Pxxxxx dan hanya dibuat lokal setelah baska init. Asset memakai Axxxxx.
|
|
80
|
+
|
|
81
|
+
## Private repository
|
|
82
|
+
Metadata private tidak disimpan di katalog publik. `baska init` memverifikasi akun GitHub lokal dan hanya menampilkan private repo bila akun terautentikasi adalah `baska-pro`.
|
|
83
|
+
|
|
84
|
+
## Fitur
|
|
85
|
+
Dashboard interaktif, auto-sync public repos, smart installer, platform/arch detection, install/update/remove/status/repair/rollback, version pinning, dependency resolver, release metadata, SHA-256/provenance, tags/categories, profiles, favorites, notifications, dan web catalog.
|
baska-1.0.0/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# BASKA Hub
|
|
2
|
+
|
|
3
|
+
BASKA Hub adalah package/repository manager pribadi untuk Linux, Termux, dan terminal Windows.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
### Rekomendasi: pipx
|
|
8
|
+
```bash
|
|
9
|
+
pipx install baska
|
|
10
|
+
baska
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### pip
|
|
14
|
+
```bash
|
|
15
|
+
python -m pip install baska
|
|
16
|
+
baska
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Langsung dari GitHub (tanpa menunggu rilis PyPI)
|
|
20
|
+
```bash
|
|
21
|
+
python -m pip install "git+https://github.com/baska-pro/baska-hub.git"
|
|
22
|
+
baska
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Bootstrap shell lama
|
|
26
|
+
```bash
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/baska-pro/baska-hub/main/install.sh | sh
|
|
28
|
+
baska
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
`baska` tanpa argumen membuka dashboard terminal interaktif.
|
|
32
|
+
|
|
33
|
+
## Command
|
|
34
|
+
```bash
|
|
35
|
+
baska list
|
|
36
|
+
baska search <kata>
|
|
37
|
+
baska info <id|slug>
|
|
38
|
+
baska install <id|slug>[@tag]
|
|
39
|
+
baska status
|
|
40
|
+
baska outdated
|
|
41
|
+
baska update <id|slug>
|
|
42
|
+
baska update-all
|
|
43
|
+
baska remove <id|slug>
|
|
44
|
+
baska repair <id|slug>
|
|
45
|
+
baska rollback <id|slug>
|
|
46
|
+
baska versions <id|slug>
|
|
47
|
+
baska profile list
|
|
48
|
+
baska profile setup server
|
|
49
|
+
baska favorite add <id|slug>
|
|
50
|
+
baska notifications
|
|
51
|
+
baska init
|
|
52
|
+
baska refresh
|
|
53
|
+
baska doctor
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## ID policy
|
|
57
|
+
Public repo memakai 5 digit dengan anchor 50000 untuk repo terbaru saat migrasi. Repo lama turun 49999, 49998, dst. Repo publik baru berikutnya mendapat 50001, 50002, dst. Repo private memakai Pxxxxx dan hanya dibuat lokal setelah baska init. Asset memakai Axxxxx.
|
|
58
|
+
|
|
59
|
+
## Private repository
|
|
60
|
+
Metadata private tidak disimpan di katalog publik. `baska init` memverifikasi akun GitHub lokal dan hanya menampilkan private repo bila akun terautentikasi adalah `baska-pro`.
|
|
61
|
+
|
|
62
|
+
## Fitur
|
|
63
|
+
Dashboard interaktif, auto-sync public repos, smart installer, platform/arch detection, install/update/remove/status/repair/rollback, version pinning, dependency resolver, release metadata, SHA-256/provenance, tags/categories, profiles, favorites, notifications, dan web catalog.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: baska
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: BASKA Hub interactive package and repository manager
|
|
5
|
+
Project-URL: Homepage, https://github.com/baska-pro/baska-hub
|
|
6
|
+
Project-URL: Repository, https://github.com/baska-pro/baska-hub
|
|
7
|
+
Project-URL: Issues, https://github.com/baska-pro/baska-hub/issues
|
|
8
|
+
Project-URL: Catalog, https://baska-pro.github.io/baska-hub/
|
|
9
|
+
Keywords: cli,package-manager,github,termux,linux,windows,repository-manager
|
|
10
|
+
Classifier: Environment :: Console
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
16
|
+
Classifier: Topic :: System :: Software Distribution
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: build>=1.2; extra == "dev"
|
|
21
|
+
Requires-Dist: twine>=6; extra == "dev"
|
|
22
|
+
|
|
23
|
+
# BASKA Hub
|
|
24
|
+
|
|
25
|
+
BASKA Hub adalah package/repository manager pribadi untuk Linux, Termux, dan terminal Windows.
|
|
26
|
+
|
|
27
|
+
## Install
|
|
28
|
+
|
|
29
|
+
### Rekomendasi: pipx
|
|
30
|
+
```bash
|
|
31
|
+
pipx install baska
|
|
32
|
+
baska
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### pip
|
|
36
|
+
```bash
|
|
37
|
+
python -m pip install baska
|
|
38
|
+
baska
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Langsung dari GitHub (tanpa menunggu rilis PyPI)
|
|
42
|
+
```bash
|
|
43
|
+
python -m pip install "git+https://github.com/baska-pro/baska-hub.git"
|
|
44
|
+
baska
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### Bootstrap shell lama
|
|
48
|
+
```bash
|
|
49
|
+
curl -fsSL https://raw.githubusercontent.com/baska-pro/baska-hub/main/install.sh | sh
|
|
50
|
+
baska
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
`baska` tanpa argumen membuka dashboard terminal interaktif.
|
|
54
|
+
|
|
55
|
+
## Command
|
|
56
|
+
```bash
|
|
57
|
+
baska list
|
|
58
|
+
baska search <kata>
|
|
59
|
+
baska info <id|slug>
|
|
60
|
+
baska install <id|slug>[@tag]
|
|
61
|
+
baska status
|
|
62
|
+
baska outdated
|
|
63
|
+
baska update <id|slug>
|
|
64
|
+
baska update-all
|
|
65
|
+
baska remove <id|slug>
|
|
66
|
+
baska repair <id|slug>
|
|
67
|
+
baska rollback <id|slug>
|
|
68
|
+
baska versions <id|slug>
|
|
69
|
+
baska profile list
|
|
70
|
+
baska profile setup server
|
|
71
|
+
baska favorite add <id|slug>
|
|
72
|
+
baska notifications
|
|
73
|
+
baska init
|
|
74
|
+
baska refresh
|
|
75
|
+
baska doctor
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## ID policy
|
|
79
|
+
Public repo memakai 5 digit dengan anchor 50000 untuk repo terbaru saat migrasi. Repo lama turun 49999, 49998, dst. Repo publik baru berikutnya mendapat 50001, 50002, dst. Repo private memakai Pxxxxx dan hanya dibuat lokal setelah baska init. Asset memakai Axxxxx.
|
|
80
|
+
|
|
81
|
+
## Private repository
|
|
82
|
+
Metadata private tidak disimpan di katalog publik. `baska init` memverifikasi akun GitHub lokal dan hanya menampilkan private repo bila akun terautentikasi adalah `baska-pro`.
|
|
83
|
+
|
|
84
|
+
## Fitur
|
|
85
|
+
Dashboard interaktif, auto-sync public repos, smart installer, platform/arch detection, install/update/remove/status/repair/rollback, version pinning, dependency resolver, release metadata, SHA-256/provenance, tags/categories, profiles, favorites, notifications, dan web catalog.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|