From b0d3aa2300a6a8e259c9ef31c935858c74525243 Mon Sep 17 00:00:00 2001 From: Jaidyn Ann <10477760+JadedCtrl@users.noreply.github.com> Date: Mon, 27 May 2024 22:38:14 -0500 Subject: [PATCH] =?UTF-8?q?Rename=20sub-package=20eksd.unix=20=E2=86=92=20?= =?UTF-8?q?eksd/unix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This seems to be more common? In any case, ASDF doesn’t complain about this format. --- Makefile | 4 ++-- eksd.asd | 4 ++-- src/unix.lisp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 59e82ad..e5af8d5 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,6 @@ quicklisp: build: $(LISP) --load eksd.asd \ --eval '(ql:quickload :eksd)' \ - --eval '(ql:quickload :eksd.unix)' \ - --eval '(asdf:make :eksd.unix)' \ + --eval '(ql:quickload :eksd/unix)' \ + --eval '(asdf:make :eksd/unix)' \ --eval '(quit)' diff --git a/eksd.asd b/eksd.asd index 1e4a0d2..5c902eb 100644 --- a/eksd.asd +++ b/eksd.asd @@ -9,7 +9,7 @@ :depends-on () :components ((:file "src/eksd"))) -(asdf:defsystem "eksd.unix" +(asdf:defsystem "eksd/unix" :version "0.11" :license "GPLv3" :author "Jaidyn Ann " @@ -18,6 +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"))) diff --git a/src/unix.lisp b/src/unix.lisp index 2ed1f05..ce15e16 100644 --- a/src/unix.lisp +++ b/src/unix.lisp @@ -15,12 +15,12 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . -(defpackage :eksd.unix +(defpackage :eksd/unix (:use :cl :eksd) (:export :main *text-table*)) -(in-package :eksd.unix) +(in-package :eksd/unix) ;;; —————————————————————————————————————