changelog shortlog graph tags branches changeset files revisions annotate raw help

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

changeset 652: 328e1ff73938
parent: 95b861dff3d8
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 14 Sep 2024 23:55:38 -0400
permissions: -rw-r--r--
description: graph and cli updates
1 (defsystem :vc
2  :depends-on (:std :cli :obj :net :log :parse)
3  :components
4  ((:file "pkg")
5  (:file "proto")
6  (:file "hg")
7  ;; (:module "hg"
8  ;; :components
9  ;; ())
10  (:file "git")
11  ;; (:module "git"
12  ;; :components
13  ;; ())
14  (:file "vc"))
15  :in-order-to ((test-op (test-op :vc/tests))))
16 
17 (defsystem :vc/tests
18  :depends-on (:std :rt :vc)
19  :components ((:file "tests"))
20  :perform (test-op (o c) (symbol-call :rt :do-tests :vc)))