changelog shortlog graph tags branches changeset files file revisions raw help

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

changeset 441: 9fa3b9154bb2
parent: c40d2a41d7ce
child: 686748796f08
author: Richard Westhaver <ellis@rwest.io>
date: Thu, 13 Jun 2024 21:57:36 -0400
permissions: -rw-r--r--
description: add pod/containerfile, rm pod/buildah, some work on zstd
238
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
1
 (defsystem :io
244
f89fb3fbffd6 io obsessed
Richard Westhaver <ellis@rwest.io>
parents: 238
diff changeset
2
   :description "Lisp IO Interface"
441
9fa3b9154bb2 add pod/containerfile, rm pod/buildah, some work on zstd
Richard Westhaver <ellis@rwest.io>
parents: 431
diff changeset
3
   :depends-on (:cl-ppcre :std :obj :uring :sb-bsd-sockets :zstd)
238
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
4
   :version "0.1.0"
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
5
   :serial t
357
7c1383c08493 port xsubseq, proc-parse. work on http and clap
Richard Westhaver <ellis@rwest.io>
parents: 261
diff changeset
6
   :components ((:file "pkg")
431
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
7
                (:file "ring")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
8
                (:file "socket")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
9
                (:file "stream")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
10
                (:file "proto")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
11
                (:file "flate")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
12
                (:file "port")
c40d2a41d7ce source concatenating std.lisp, more systems, got zstd simple working, IO work, added dat/tar
Richard Westhaver <ellis@rwest.io>
parents: 358
diff changeset
13
                (:file "zstd")
358
ee8a3a0c57b8 add smart-buffer, finish porting of FAST-HTTP
Richard Westhaver <ellis@rwest.io>
parents: 357
diff changeset
14
                (:file "xsubseq")
ee8a3a0c57b8 add smart-buffer, finish porting of FAST-HTTP
Richard Westhaver <ellis@rwest.io>
parents: 357
diff changeset
15
                (:file "smart-buffer"))
238
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
16
   :in-order-to ((test-op (test-op "io/tests"))))
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
17
 
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
18
 (defsystem :io/tests
258
11ef863e0ac0 keyutils init
Richard Westhaver <ellis@rwest.io>
parents: 244
diff changeset
19
   :depends-on (:rt :io :uring :sb-bsd-sockets)
261
2a4f11c0e8c8 slint integrated
Richard Westhaver <ellis@rwest.io>
parents: 258
diff changeset
20
   :components ((:file "tests"))
238
6fa723592550 audio ffi, io work
Richard Westhaver <ellis@rwest.io>
parents:
diff changeset
21
   :perform (test-op (o c) (symbol-call :rt :do-tests :io)))