changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 698: 96958d3eb5b0
parent: 4f1aa8e9ef2f
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; packy.asd --- universal package manager
2 (defsystem "packy"
3  :version "0.1.0"
4  :maintainer "ellis <ellis@rwest.io>"
5  :depends-on (:uiop :asdf :sb-posix :sb-bsd-sockets :sb-concurrency :std :cl-ppcre :rdb :obj :net :cli :io)
6  :components
7  ((:file "pkg")
8  (:file "vars")
9  (:file "proto")
10  (:file "pkgbuild")
11  (:file "db")
12  (:file "client")
13  (:file "server"))
14  :in-order-to ((test-op (test-op :packy/tests))))
15 
16 (defsystem :packy/tests
17  :depends-on (:rt :packy)
18  :components ((:file "tests"))
19  :perform (test-op (o c) (symbol-call :rt :do-tests :packy)))