changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/packy/pkg.lisp

changeset 698: 96958d3eb5b0
parent: 2bad47888dbf
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; pkg.lisp --- Packy Packages
2 
3 ;;
4 
5 ;;; Code:
6 (defpackage :packy/core
7  (:use :cl :std :obj/id :dat/proto :io/flate)
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 
31 (defpackage :packy/db
32  (:use :cl :std :packy/core :obj/db :rdb)
33  (:export :package-database))
34 
35 (defpackage :packy/client
36  (:use :cl :std :packy/core :net/fetch))
37 
38 (defpackage :packy/server
39  (:use :cl :std :packy/core :net/srv))
40 
41 (defpackage :packy/pkgbuild
42  (:use :cl :std)
43  (:export))
44 
45 (pkg:defpkg :packy
46  (:nicknames :pk)
47  (:use :cl :std)
48  (:use-reexport :packy/client :packy/server :packy/core))
49