changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > core / annotate lisp/ffi/rocksdb/rocksdb.asd

changeset 18: 61482ce290f9
parent: c953c2a35835
child: 65827de90d54
author: ellis <ellis@rwest.io>
date: Mon, 23 Oct 2023 23:33:06 -0400
permissions: -rw-r--r--
description: migration complete
7
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
1
 ;;; rocksdb.asd --- ROCKSDB SYSTEMS
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
2
 
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
3
 ;; rocksdb for lisp.
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
4
 
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
5
 ;;; Commentary:
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
6
 
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
7
 ;; 
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
8
 
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
9
 ;;; Code:
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
10
 (defsystem "rocksdb"
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
11
   :description "based on Vee's cl-rocksdb: https://github.com/veer66/cl-rocksdb/tree/main"
18
61482ce290f9 migration complete
ellis <ellis@rwest.io>
parents: 14
diff changeset
12
   :defsystem-depends-on (:asdf-package-system)
7
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
13
   :class :package-inferred-system
18
61482ce290f9 migration complete
ellis <ellis@rwest.io>
parents: 14
diff changeset
14
   :depends-on (:std :rocksdb/pkg)
7
05527b920c97 asd cleanups
ellis <ellis@rwest.io>
parents:
diff changeset
15
   :in-order-to ((test-op (test-op "rocksdb/tests")))
14
c953c2a35835 rocksdb symbols and macs
ellis <ellis@rwest.io>
parents: 7
diff changeset
16
   :perform (test-op (op c) (uiop:symbol-call '#:rt '#:do-tests :rocksdb)))