changelog shortlog graph tags branches changeset files file revisions raw help

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

changeset 440: 4f1aa8e9ef2f
parent: ea4f008ad13f
author: Richard Westhaver <ellis@rwest.io>
date: Wed, 12 Jun 2024 22:59:22 -0400
permissions: -rw-r--r--
description: cleanup readmes, net/fetch and net/req hacks - need to take a look at keep-alive-streams
86
278fb1d6dfa8 tests, cli/packy, install
ellis <ellis@rwest.io>
parents: 18
diff changeset
1
 ;;; packy.asd --- universal package manager
18
61482ce290f9 migration complete
ellis <ellis@rwest.io>
parents:
diff changeset
2
 (defsystem "packy"
61482ce290f9 migration complete
ellis <ellis@rwest.io>
parents:
diff changeset
3
   :version "0.1.0"
61482ce290f9 migration complete
ellis <ellis@rwest.io>
parents:
diff changeset
4
   :maintainer "ellis <ellis@rwest.io>"
440
4f1aa8e9ef2f cleanup readmes, net/fetch and net/req hacks - need to take a look at keep-alive-streams
Richard Westhaver <ellis@rwest.io>
parents: 439
diff changeset
5
   :depends-on (:uiop :asdf :sb-posix :sb-bsd-sockets :sb-concurrency :std :cl-ppcre :rdb :obj :net :cli :io)
431
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
6
   :components
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
7
   ((:file "pkg")
439
ea4f008ad13f packy work, added json-trailing-whitespace-p variable for json readers
Richard Westhaver <ellis@rwest.io>
parents: 431
diff changeset
8
    (:file "vars")
431
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
9
    (:file "proto")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
10
    (:file "pkgbuild")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
11
    (:file "db")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
12
    (:file "client")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 234
diff changeset
13
    (:file "server"))
92
1ce0d98a13ed packy updates
ellis <ellis@rwest.io>
parents: 86
diff changeset
14
   :in-order-to ((test-op (test-op :packy/tests))))
1ce0d98a13ed packy updates
ellis <ellis@rwest.io>
parents: 86
diff changeset
15
 
1ce0d98a13ed packy updates
ellis <ellis@rwest.io>
parents: 86
diff changeset
16
 (defsystem :packy/tests
96
301fd45bbe73 big refactor of lisp code
ellis <ellis@rwest.io>
parents: 92
diff changeset
17
   :depends-on (:rt :packy)
92
1ce0d98a13ed packy updates
ellis <ellis@rwest.io>
parents: 86
diff changeset
18
   :components ((:file "tests"))
86
278fb1d6dfa8 tests, cli/packy, install
ellis <ellis@rwest.io>
parents: 18
diff changeset
19
   :perform (test-op (o c) (symbol-call :rt :do-tests :packy)))