Kind | Covered | All | % |
expression | 0 | 4 | 0.0 |
branch | 0 | 0 | nil |
1
;;; pkg.lisp --- Packy Packages
2
3
;;
4
5
;;; Code:
6
(defpackage :packy
7
(:use :cl :std :id :dat/proto :io :ast :log :config :db :rdb :schema :time :net/core :net/srv)
8
(:export
9
:*packy-url*
10
:pack
11
:unpack
12
:install-package
13
:uninstall-package
14
:update-package
15
:push-package
16
:pull-package
17
:query-package
18
:sync-package
19
:build-package
20
:package-source
21
:bundle-package
22
:package-dependency
23
:package-registry
24
:packy-config
25
:packy-user-config
26
:list-packages
27
:prepare-package
28
:check-package
29
:package-version
30
:*pack*
31
:*packy-registry*
32
:*packy-compressor*
33
:*packy-decompressor*
34
:*packy-db*
35
:*packy-logger*
36
:*packy-home*
37
:packy-condition
38
:packy-error
39
:*packy-dist-targets*
40
:*default-packy-dist-targets*
41
:package-database
42
:init-packy-db
43
:package-id))
44
45
(defpackage :packy/pkgbuild
46
(:use :cl :std :ast :syn/ts :tree-sitter)
47
(:export))
48
49
(defpackage :packy/apkbuild
50
(:use :cl :std :ast :syn/ts :tree-sitter)
51
(:export))
52
53
(defpackage :packy/cli
54
(:use :cl :std :cli :clap :packy)
55
(:export :*packy-cli*))