changelog shortlog graph tags branches changeset files file revisions raw help

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

changeset 698: 96958d3eb5b0
parent: 345e4fb28bcd
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
109
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
1
 (defsystem :parse
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
2
   :version "0.1.0"
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
3
   :maintainer "ellis <ellis@rwest.io>"
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
4
   :bug-tracker "https://lab.rwest.io/ellis/packy/issues"
388
dec30b6fd500 prelude/user packages init
Richard Westhaver <ellis@rwest.io>
parents: 369
diff changeset
5
   :depends-on (:cl-ppcre :std :babel :sb-cltl2)
109
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
6
   :components ((:file "pkg")
357
7c1383c08493 port xsubseq, proc-parse. work on http and clap
Richard Westhaver <ellis@rwest.io>
parents: 127
diff changeset
7
                (:file "bytes")
109
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
8
                (:file "lex")
483
345e4fb28bcd more sql work
Richard Westhaver <ellis@rwest.io>
parents: 388
diff changeset
9
                (:file "pratt")
127
960c010a23ce replaced lalr parser with YACC, removed vcard and ical data formats (requires xpath), added org elements and objects
ellis <ellis@rwest.io>
parents: 109
diff changeset
10
                (:file "yacc"))
109
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
11
   :in-order-to ((test-op (test-op :parse/tests))))
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
12
 
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
13
 (defsystem :parse/tests
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
14
   :depends-on (:rt :parse)
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
15
   :components ((:file "tests"))
a5adbe8640b0 tests, bug fixes, parser init
ellis <ellis@rwest.io>
parents:
diff changeset
16
   :perform (test-op (o c) (symbol-call :rt :do-tests :parse)))