Compare commits

..

No commits in common. "0e0e54bf2a881d1df1de5362c8f32aa10553b549" and "b60858498c8da75c1b4bc60f571a9bb6da840b3e" have entirely different histories.

6 changed files with 10 additions and 112 deletions

View File

@ -15,14 +15,6 @@ quicklisp:
build:
$(LISP) --load eksd.asd \
--eval '(ql:quickload :eksd)' \
--eval '(ql:quickload :eksd/unix)' \
--eval '(asdf:make :eksd/unix)' \
--eval '(quit)'
test:
$(LISP) --load eksd.asd \
--eval '(ql:quickload :eksd)' \
--eval '(ql:quickload :eksd/unix)' \
--eval '(asdf:test-system :eksd)' \
--eval '(asdf:test-system :eksd/unix)' \
--eval '(ql:quickload :eksd.unix)' \
--eval '(asdf:make :eksd.unix)' \
--eval '(quit)'

View File

@ -54,12 +54,9 @@ $ xxd castlevania.nes | grep -A4 "18e80"
## Installation
Making a binary requires [an implementation](https://common-lisp.net/implementations) of Common Lisp installed:
[Steel Bank Common Lisp](https://sbcl.org/) is our implementation-of-choice. Its available on
most operating systems under the package name `sbcl`.
Making a binary requires [an implementation](https://common-lisp.net/implementations) of Common Lisp installed: [Steel Bank Common Lisp](https://sbcl.org/) is our implementation-of-choice. Its available on most operating systems under the package name `sbcl`.
You also need the library-manager [Quicklisp](https://quicklisp.org), which can [be installed](https://www.quicklisp.org/beta/#installation)
quite easily, including via our [Makefile](Makefile).
You also need the library-manager [Quicklisp](https://quicklisp.org), which can [be installed](https://www.quicklisp.org/beta/#installation) quite easily, including via our [Makefile](Makefile).
To install Quicklisp, build a binary, and install it, simply:

View File

@ -7,11 +7,9 @@
:homepage "https://hak.xwx.moe/jadedctrl/eksd"
:description "For reading files into hex— `xxd`-like with text-tables."
:depends-on ()
:components ((:file "src/eksd"))
:in-order-to ((test-op (test-op "eksd/tests"))
(build-op (build-op "eksd/unix"))))
:components ((:file "src/eksd")))
(asdf:defsystem "eksd/unix"
(asdf:defsystem "eksd.unix"
:version "0.11"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
@ -20,42 +18,6 @@
:class asdf:program-system
:build-operation "program-op"
:build-pathname "eksd"
:entry-point "eksd/unix:main"
:entry-point "eksd.unix:main"
:depends-on (:cl-strings :eksd :unix-opts)
:components ((:file "src/unix"))
:in-order-to ((test-op (test-op "eksd/unix/tests"))))
;;; Tests
;;; —————————————————————————————————————
(asdf:defsystem "eksd/tests"
:version "0.11"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
:homepage "https://hak.xwx.moe/jadedctrl/eksd"
:description "Tests for the the eksd package."
:depends-on (:eksd :lisp-unit2)
:components ((:file "t/eksd")))
(asdf:defsystem "eksd/unix/tests"
:version "0.11"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@posteo.at>"
:homepage "https://hak.xwx.moe/jadedctrl/eksd"
:description "Tests for the eksd.unix package."
:depends-on (:eksd/unix :lisp-unit2)
:components ((:file "t/unix")))
;; Following methods borrowed from lisp-unit2s documentation:
;; https://github.com/AccelerationNet/lisp-unit2/blob/master/README.md#asdf
(defmethod asdf:perform ((o asdf:test-op) (c (eql (asdf:find-system :eksd/tests))))
(eval (read-from-string
"(lisp-unit2:with-summary ()
(lisp-unit2:run-tests :package :eksd/tests))")))
(defmethod asdf:perform ((o asdf:test-op) (c (eql (asdf:find-system :eksd/unix/tests))))
(eval (read-from-string
"(lisp-unit2:with-summary ()
(lisp-unit2:run-tests :package :eksd/unix/tests))")))
:components ((:file "src/unix")))

View File

@ -15,12 +15,12 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage :eksd/unix
(defpackage :eksd.unix
(:use :cl :eksd)
(:export :main
*text-table*))
(in-package :eksd/unix)
(in-package :eksd.unix)
;;; —————————————————————————————————————

View File

@ -1,26 +0,0 @@
;;;; eksd.tests: Tests for eksd package.
;; Copyright © 2024 Jaidyn Ann <jadedctrl@posteo.at>
;;
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage :eksd/tests
(:use :cl :lisp-unit2)
(:export :char-hex.space))
(in-package :eksd/tests)
(define-test char-hex.space
(:tags '(char-hex))
(assert-equal (eksd::char-hex #\space) "20"))

View File

@ -1,27 +0,0 @@
;;;; eksd.unix.tests: Tests for eksds UNIX frontend package.
;; Copyright © 2024 Jaidyn Ann <jadedctrl@posteo.at>
;;
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage :eksd/unix/tests
(:use :cl :lisp-unit2)
(:export :de-tail))
(in-package :eksd/unix/tests)
(define-test de-tail
(:tags '(de-tail))
(assert-equal (eksd/unix::de-tail '(1 2 3))
'(1 2)))