changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 389: 95b861dff3d8
parent: dec30b6fd500
child: 328e1ff73938
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 31 May 2024 23:28:35 -0400
permissions: -rw-r--r--
description: box,skel,vc,obj upgrades, moved XDB to demo/examples/db
1 (defsystem :vc
2  :depends-on (:std :cli :obj :net :log :parse)
3  :components ((:file "pkg")
4  (:file "proto")
5  (:file "hg")
6  ;; (:module "hg"
7  ;; :components
8  ;; ())
9  (:file "git")
10  ;; (:module "git"
11  ;; :components
12  ;; ())
13  (:file "vc"))
14  :in-order-to ((test-op (test-op :vc/tests))))
15 
16 (defsystem :vc/tests
17  :depends-on (:std :rt :vc)
18  :components ((:file "tests"))
19  :perform (test-op (o c) (symbol-call :rt :do-tests :vc)))